aws-sdk-core 2.11.571 → 2.11.576

Sign up to get free protection for your applications and to get access to all the features.
@@ -560,6 +560,12 @@
560
560
  "output_token": "NextToken",
561
561
  "result_key": "MulticastDomainAssociations"
562
562
  },
563
+ "GetTransitGatewayPrefixListReferences": {
564
+ "input_token": "NextToken",
565
+ "limit_key": "MaxResults",
566
+ "output_token": "NextToken",
567
+ "result_key": "TransitGatewayPrefixListReferences"
568
+ },
563
569
  "GetTransitGatewayRouteTableAssociations": {
564
570
  "input_token": "NextToken",
565
571
  "limit_key": "MaxResults",
@@ -128,6 +128,19 @@
128
128
  ],
129
129
  "deprecated":true
130
130
  },
131
+ "DescribeNotebookExecution":{
132
+ "name":"DescribeNotebookExecution",
133
+ "http":{
134
+ "method":"POST",
135
+ "requestUri":"/"
136
+ },
137
+ "input":{"shape":"DescribeNotebookExecutionInput"},
138
+ "output":{"shape":"DescribeNotebookExecutionOutput"},
139
+ "errors":[
140
+ {"shape":"InternalServerError"},
141
+ {"shape":"InvalidRequestException"}
142
+ ]
143
+ },
131
144
  "DescribeSecurityConfiguration":{
132
145
  "name":"DescribeSecurityConfiguration",
133
146
  "http":{
@@ -241,6 +254,19 @@
241
254
  {"shape":"InvalidRequestException"}
242
255
  ]
243
256
  },
257
+ "ListNotebookExecutions":{
258
+ "name":"ListNotebookExecutions",
259
+ "http":{
260
+ "method":"POST",
261
+ "requestUri":"/"
262
+ },
263
+ "input":{"shape":"ListNotebookExecutionsInput"},
264
+ "output":{"shape":"ListNotebookExecutionsOutput"},
265
+ "errors":[
266
+ {"shape":"InternalServerError"},
267
+ {"shape":"InvalidRequestException"}
268
+ ]
269
+ },
244
270
  "ListSecurityConfigurations":{
245
271
  "name":"ListSecurityConfigurations",
246
272
  "http":{
@@ -399,6 +425,31 @@
399
425
  {"shape":"InternalServerError"}
400
426
  ]
401
427
  },
428
+ "StartNotebookExecution":{
429
+ "name":"StartNotebookExecution",
430
+ "http":{
431
+ "method":"POST",
432
+ "requestUri":"/"
433
+ },
434
+ "input":{"shape":"StartNotebookExecutionInput"},
435
+ "output":{"shape":"StartNotebookExecutionOutput"},
436
+ "errors":[
437
+ {"shape":"InternalServerException"},
438
+ {"shape":"InvalidRequestException"}
439
+ ]
440
+ },
441
+ "StopNotebookExecution":{
442
+ "name":"StopNotebookExecution",
443
+ "http":{
444
+ "method":"POST",
445
+ "requestUri":"/"
446
+ },
447
+ "input":{"shape":"StopNotebookExecutionInput"},
448
+ "errors":[
449
+ {"shape":"InternalServerError"},
450
+ {"shape":"InvalidRequestException"}
451
+ ]
452
+ },
402
453
  "TerminateJobFlows":{
403
454
  "name":"TerminateJobFlows",
404
455
  "http":{
@@ -894,6 +945,19 @@
894
945
  "JobFlows":{"shape":"JobFlowDetailList"}
895
946
  }
896
947
  },
948
+ "DescribeNotebookExecutionInput":{
949
+ "type":"structure",
950
+ "required":["NotebookExecutionId"],
951
+ "members":{
952
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"}
953
+ }
954
+ },
955
+ "DescribeNotebookExecutionOutput":{
956
+ "type":"structure",
957
+ "members":{
958
+ "NotebookExecution":{"shape":"NotebookExecution"}
959
+ }
960
+ },
897
961
  "DescribeSecurityConfigurationInput":{
898
962
  "type":"structure",
899
963
  "required":["Name"],
@@ -997,6 +1061,19 @@
997
1061
  "min":1
998
1062
  },
999
1063
  "ErrorMessage":{"type":"string"},
1064
+ "ExecutionEngineConfig":{
1065
+ "type":"structure",
1066
+ "required":["Id"],
1067
+ "members":{
1068
+ "Id":{"shape":"XmlStringMaxLen256"},
1069
+ "Type":{"shape":"ExecutionEngineType"},
1070
+ "MasterInstanceSecurityGroupId":{"shape":"XmlStringMaxLen256"}
1071
+ }
1072
+ },
1073
+ "ExecutionEngineType":{
1074
+ "type":"string",
1075
+ "enum":["EMR"]
1076
+ },
1000
1077
  "FailureDetails":{
1001
1078
  "type":"structure",
1002
1079
  "members":{
@@ -1684,6 +1761,23 @@
1684
1761
  "Marker":{"shape":"Marker"}
1685
1762
  }
1686
1763
  },
1764
+ "ListNotebookExecutionsInput":{
1765
+ "type":"structure",
1766
+ "members":{
1767
+ "EditorId":{"shape":"XmlStringMaxLen256"},
1768
+ "Status":{"shape":"NotebookExecutionStatus"},
1769
+ "From":{"shape":"Date"},
1770
+ "To":{"shape":"Date"},
1771
+ "Marker":{"shape":"Marker"}
1772
+ }
1773
+ },
1774
+ "ListNotebookExecutionsOutput":{
1775
+ "type":"structure",
1776
+ "members":{
1777
+ "NotebookExecutions":{"shape":"NotebookExecutionSummaryList"},
1778
+ "Marker":{"shape":"Marker"}
1779
+ }
1780
+ },
1687
1781
  "ListSecurityConfigurationsInput":{
1688
1782
  "type":"structure",
1689
1783
  "members":{
@@ -1780,6 +1874,54 @@
1780
1874
  "type":"double",
1781
1875
  "min":0.0
1782
1876
  },
1877
+ "NotebookExecution":{
1878
+ "type":"structure",
1879
+ "members":{
1880
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"},
1881
+ "EditorId":{"shape":"XmlStringMaxLen256"},
1882
+ "ExecutionEngine":{"shape":"ExecutionEngineConfig"},
1883
+ "NotebookExecutionName":{"shape":"XmlStringMaxLen256"},
1884
+ "NotebookParams":{"shape":"XmlString"},
1885
+ "Status":{"shape":"NotebookExecutionStatus"},
1886
+ "StartTime":{"shape":"Date"},
1887
+ "EndTime":{"shape":"Date"},
1888
+ "Arn":{"shape":"XmlStringMaxLen256"},
1889
+ "OutputNotebookURI":{"shape":"XmlString"},
1890
+ "LastStateChangeReason":{"shape":"XmlString"},
1891
+ "NotebookInstanceSecurityGroupId":{"shape":"XmlStringMaxLen256"},
1892
+ "Tags":{"shape":"TagList"}
1893
+ }
1894
+ },
1895
+ "NotebookExecutionStatus":{
1896
+ "type":"string",
1897
+ "enum":[
1898
+ "START_PENDING",
1899
+ "STARTING",
1900
+ "RUNNING",
1901
+ "FINISHING",
1902
+ "FINISHED",
1903
+ "FAILING",
1904
+ "FAILED",
1905
+ "STOP_PENDING",
1906
+ "STOPPING",
1907
+ "STOPPED"
1908
+ ]
1909
+ },
1910
+ "NotebookExecutionSummary":{
1911
+ "type":"structure",
1912
+ "members":{
1913
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"},
1914
+ "EditorId":{"shape":"XmlStringMaxLen256"},
1915
+ "NotebookExecutionName":{"shape":"XmlStringMaxLen256"},
1916
+ "Status":{"shape":"NotebookExecutionStatus"},
1917
+ "StartTime":{"shape":"Date"},
1918
+ "EndTime":{"shape":"Date"}
1919
+ }
1920
+ },
1921
+ "NotebookExecutionSummaryList":{
1922
+ "type":"list",
1923
+ "member":{"shape":"NotebookExecutionSummary"}
1924
+ },
1783
1925
  "OnDemandProvisioningAllocationStrategy":{
1784
1926
  "type":"string",
1785
1927
  "enum":["lowest-price"]
@@ -1806,7 +1948,7 @@
1806
1948
  "Port":{
1807
1949
  "type":"integer",
1808
1950
  "max":65535,
1809
- "min":0
1951
+ "min":-1
1810
1952
  },
1811
1953
  "PortRange":{
1812
1954
  "type":"structure",
@@ -2100,6 +2242,31 @@
2100
2242
  "TERMINATE_CLUSTER"
2101
2243
  ]
2102
2244
  },
2245
+ "StartNotebookExecutionInput":{
2246
+ "type":"structure",
2247
+ "required":[
2248
+ "EditorId",
2249
+ "RelativePath",
2250
+ "ExecutionEngine",
2251
+ "ServiceRole"
2252
+ ],
2253
+ "members":{
2254
+ "EditorId":{"shape":"XmlStringMaxLen256"},
2255
+ "RelativePath":{"shape":"XmlString"},
2256
+ "NotebookExecutionName":{"shape":"XmlStringMaxLen256"},
2257
+ "NotebookParams":{"shape":"XmlString"},
2258
+ "ExecutionEngine":{"shape":"ExecutionEngineConfig"},
2259
+ "ServiceRole":{"shape":"XmlString"},
2260
+ "NotebookInstanceSecurityGroupId":{"shape":"XmlStringMaxLen256"},
2261
+ "Tags":{"shape":"TagList"}
2262
+ }
2263
+ },
2264
+ "StartNotebookExecutionOutput":{
2265
+ "type":"structure",
2266
+ "members":{
2267
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"}
2268
+ }
2269
+ },
2103
2270
  "Statistic":{
2104
2271
  "type":"string",
2105
2272
  "enum":[
@@ -2247,6 +2414,13 @@
2247
2414
  "EndDateTime":{"shape":"Date"}
2248
2415
  }
2249
2416
  },
2417
+ "StopNotebookExecutionInput":{
2418
+ "type":"structure",
2419
+ "required":["NotebookExecutionId"],
2420
+ "members":{
2421
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"}
2422
+ }
2423
+ },
2250
2424
  "String":{"type":"string"},
2251
2425
  "StringList":{
2252
2426
  "type":"list",
@@ -28,6 +28,11 @@
28
28
  "output_token": "Marker",
29
29
  "result_key": "Instances"
30
30
  },
31
+ "ListNotebookExecutions": {
32
+ "input_token": "Marker",
33
+ "output_token": "Marker",
34
+ "result_key": "NotebookExecutions"
35
+ },
31
36
  "ListSecurityConfigurations": {
32
37
  "input_token": "Marker",
33
38
  "output_token": "Marker",
@@ -593,6 +593,21 @@
593
593
  {"shape":"InternalServiceException"}
594
594
  ]
595
595
  },
596
+ "DescribeGameServerInstances":{
597
+ "name":"DescribeGameServerInstances",
598
+ "http":{
599
+ "method":"POST",
600
+ "requestUri":"/"
601
+ },
602
+ "input":{"shape":"DescribeGameServerInstancesInput"},
603
+ "output":{"shape":"DescribeGameServerInstancesOutput"},
604
+ "errors":[
605
+ {"shape":"InvalidRequestException"},
606
+ {"shape":"NotFoundException"},
607
+ {"shape":"UnauthorizedException"},
608
+ {"shape":"InternalServiceException"}
609
+ ]
610
+ },
596
611
  "DescribeGameSessionDetails":{
597
612
  "name":"DescribeGameSessionDetails",
598
613
  "http":{
@@ -1482,7 +1497,8 @@
1482
1497
  "type":"string",
1483
1498
  "enum":[
1484
1499
  "SPOT_ONLY",
1485
- "SPOT_PREFERRED"
1500
+ "SPOT_PREFERRED",
1501
+ "ON_DEMAND_ONLY"
1486
1502
  ]
1487
1503
  },
1488
1504
  "BooleanModel":{"type":"boolean"},
@@ -2120,6 +2136,23 @@
2120
2136
  "GameServerId":{"shape":"GameServerId"}
2121
2137
  }
2122
2138
  },
2139
+ "DescribeGameServerInstancesInput":{
2140
+ "type":"structure",
2141
+ "required":["GameServerGroupName"],
2142
+ "members":{
2143
+ "GameServerGroupName":{"shape":"GameServerGroupNameOrArn"},
2144
+ "InstanceIds":{"shape":"GameServerInstanceIds"},
2145
+ "Limit":{"shape":"PositiveInteger"},
2146
+ "NextToken":{"shape":"NonZeroAndMaxString"}
2147
+ }
2148
+ },
2149
+ "DescribeGameServerInstancesOutput":{
2150
+ "type":"structure",
2151
+ "members":{
2152
+ "GameServerInstances":{"shape":"GameServerInstances"},
2153
+ "NextToken":{"shape":"NonZeroAndMaxString"}
2154
+ }
2155
+ },
2123
2156
  "DescribeGameServerOutput":{
2124
2157
  "type":"structure",
2125
2158
  "members":{
@@ -2643,7 +2676,6 @@
2643
2676
  "InstanceId":{"shape":"GameServerInstanceId"},
2644
2677
  "ConnectionInfo":{"shape":"GameServerConnectionInfo"},
2645
2678
  "GameServerData":{"shape":"GameServerData"},
2646
- "CustomSortKey":{"shape":"GameServerSortKey"},
2647
2679
  "ClaimStatus":{"shape":"GameServerClaimStatus"},
2648
2680
  "UtilizationStatus":{"shape":"GameServerUtilizationStatus"},
2649
2681
  "RegistrationTime":{"shape":"Timestamp"},
@@ -2799,12 +2831,39 @@
2799
2831
  "min":3,
2800
2832
  "pattern":"[a-zA-Z0-9-\\.]+"
2801
2833
  },
2834
+ "GameServerInstance":{
2835
+ "type":"structure",
2836
+ "members":{
2837
+ "GameServerGroupName":{"shape":"GameServerGroupName"},
2838
+ "GameServerGroupArn":{"shape":"GameServerGroupArn"},
2839
+ "InstanceId":{"shape":"GameServerInstanceId"},
2840
+ "InstanceStatus":{"shape":"GameServerInstanceStatus"}
2841
+ }
2842
+ },
2802
2843
  "GameServerInstanceId":{
2803
2844
  "type":"string",
2804
2845
  "max":19,
2805
2846
  "min":19,
2806
2847
  "pattern":"^i-[0-9a-zA-Z]{17}$"
2807
2848
  },
2849
+ "GameServerInstanceIds":{
2850
+ "type":"list",
2851
+ "member":{"shape":"GameServerInstanceId"},
2852
+ "max":20,
2853
+ "min":1
2854
+ },
2855
+ "GameServerInstanceStatus":{
2856
+ "type":"string",
2857
+ "enum":[
2858
+ "ACTIVE",
2859
+ "DRAINING",
2860
+ "SPOT_TERMINATING"
2861
+ ]
2862
+ },
2863
+ "GameServerInstances":{
2864
+ "type":"list",
2865
+ "member":{"shape":"GameServerInstance"}
2866
+ },
2808
2867
  "GameServerProtectionPolicy":{
2809
2868
  "type":"string",
2810
2869
  "enum":[
@@ -2812,12 +2871,6 @@
2812
2871
  "FULL_PROTECTION"
2813
2872
  ]
2814
2873
  },
2815
- "GameServerSortKey":{
2816
- "type":"string",
2817
- "max":64,
2818
- "min":1,
2819
- "pattern":"[a-zA-Z0-9-\\.]+"
2820
- },
2821
2874
  "GameServerUtilizationStatus":{
2822
2875
  "type":"string",
2823
2876
  "enum":[
@@ -3689,9 +3742,7 @@
3689
3742
  "GameServerId":{"shape":"GameServerId"},
3690
3743
  "InstanceId":{"shape":"GameServerInstanceId"},
3691
3744
  "ConnectionInfo":{"shape":"GameServerConnectionInfo"},
3692
- "GameServerData":{"shape":"GameServerData"},
3693
- "CustomSortKey":{"shape":"GameServerSortKey"},
3694
- "Tags":{"shape":"TagList"}
3745
+ "GameServerData":{"shape":"GameServerData"}
3695
3746
  }
3696
3747
  },
3697
3748
  "RegisterGameServerOutput":{
@@ -4272,7 +4323,6 @@
4272
4323
  "GameServerGroupName":{"shape":"GameServerGroupNameOrArn"},
4273
4324
  "GameServerId":{"shape":"GameServerId"},
4274
4325
  "GameServerData":{"shape":"GameServerData"},
4275
- "CustomSortKey":{"shape":"GameServerSortKey"},
4276
4326
  "UtilizationStatus":{"shape":"GameServerUtilizationStatus"},
4277
4327
  "HealthCheck":{"shape":"GameServerHealthCheck"}
4278
4328
  }
@@ -4427,9 +4477,9 @@
4427
4477
  },
4428
4478
  "VpcSubnet":{
4429
4479
  "type":"string",
4430
- "max":15,
4480
+ "max":24,
4431
4481
  "min":15,
4432
- "pattern":"^subnet-[0-9a-z]{8}$"
4482
+ "pattern":"^subnet-[0-9a-z]+$"
4433
4483
  },
4434
4484
  "VpcSubnets":{
4435
4485
  "type":"list",
@@ -1,4 +1,124 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeFleetAttributes": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "Limit",
7
+ "result_key": "FleetAttributes"
8
+ },
9
+ "DescribeFleetCapacity": {
10
+ "input_token": "NextToken",
11
+ "output_token": "NextToken",
12
+ "limit_key": "Limit",
13
+ "result_key": "FleetCapacity"
14
+ },
15
+ "DescribeFleetEvents": {
16
+ "input_token": "NextToken",
17
+ "output_token": "NextToken",
18
+ "limit_key": "Limit",
19
+ "result_key": "Events"
20
+ },
21
+ "DescribeFleetUtilization": {
22
+ "input_token": "NextToken",
23
+ "output_token": "NextToken",
24
+ "limit_key": "Limit",
25
+ "result_key": "FleetUtilization"
26
+ },
27
+ "DescribeGameServerInstances": {
28
+ "input_token": "NextToken",
29
+ "output_token": "NextToken",
30
+ "limit_key": "Limit",
31
+ "result_key": "GameServerInstances"
32
+ },
33
+ "DescribeGameSessionDetails": {
34
+ "input_token": "NextToken",
35
+ "output_token": "NextToken",
36
+ "limit_key": "Limit",
37
+ "result_key": "GameSessionDetails"
38
+ },
39
+ "DescribeGameSessionQueues": {
40
+ "input_token": "NextToken",
41
+ "output_token": "NextToken",
42
+ "limit_key": "Limit",
43
+ "result_key": "GameSessionQueues"
44
+ },
45
+ "DescribeGameSessions": {
46
+ "input_token": "NextToken",
47
+ "output_token": "NextToken",
48
+ "limit_key": "Limit",
49
+ "result_key": "GameSessions"
50
+ },
51
+ "DescribeInstances": {
52
+ "input_token": "NextToken",
53
+ "output_token": "NextToken",
54
+ "limit_key": "Limit",
55
+ "result_key": "Instances"
56
+ },
57
+ "DescribeMatchmakingConfigurations": {
58
+ "input_token": "NextToken",
59
+ "output_token": "NextToken",
60
+ "limit_key": "Limit",
61
+ "result_key": "Configurations"
62
+ },
63
+ "DescribeMatchmakingRuleSets": {
64
+ "input_token": "NextToken",
65
+ "output_token": "NextToken",
66
+ "limit_key": "Limit",
67
+ "result_key": "RuleSets"
68
+ },
69
+ "DescribePlayerSessions": {
70
+ "input_token": "NextToken",
71
+ "output_token": "NextToken",
72
+ "limit_key": "Limit",
73
+ "result_key": "PlayerSessions"
74
+ },
75
+ "DescribeScalingPolicies": {
76
+ "input_token": "NextToken",
77
+ "output_token": "NextToken",
78
+ "limit_key": "Limit",
79
+ "result_key": "ScalingPolicies"
80
+ },
81
+ "ListAliases": {
82
+ "input_token": "NextToken",
83
+ "output_token": "NextToken",
84
+ "limit_key": "Limit",
85
+ "result_key": "Aliases"
86
+ },
87
+ "ListBuilds": {
88
+ "input_token": "NextToken",
89
+ "output_token": "NextToken",
90
+ "limit_key": "Limit",
91
+ "result_key": "Builds"
92
+ },
93
+ "ListFleets": {
94
+ "input_token": "NextToken",
95
+ "output_token": "NextToken",
96
+ "limit_key": "Limit",
97
+ "result_key": "FleetIds"
98
+ },
99
+ "ListGameServerGroups": {
100
+ "input_token": "NextToken",
101
+ "output_token": "NextToken",
102
+ "limit_key": "Limit",
103
+ "result_key": "GameServerGroups"
104
+ },
105
+ "ListGameServers": {
106
+ "input_token": "NextToken",
107
+ "output_token": "NextToken",
108
+ "limit_key": "Limit",
109
+ "result_key": "GameServers"
110
+ },
111
+ "ListScripts": {
112
+ "input_token": "NextToken",
113
+ "output_token": "NextToken",
114
+ "limit_key": "Limit",
115
+ "result_key": "Scripts"
116
+ },
117
+ "SearchGameSessions": {
118
+ "input_token": "NextToken",
119
+ "output_token": "NextToken",
120
+ "limit_key": "Limit",
121
+ "result_key": "GameSessions"
122
+ }
3
123
  }
4
124
  }