aws-sdk 2.1211.0 → 2.1214.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -1
- package/README.md +1 -1
- package/apis/cloudtrail-2013-11-01.min.json +81 -8
- package/apis/cloudtrail-2013-11-01.paginators.json +5 -0
- package/apis/ec2-2016-11-15.min.json +4 -0
- package/apis/eks-2017-11-01.min.json +90 -45
- package/apis/emr-containers-2020-10-01.min.json +34 -19
- package/apis/lookoutmetrics-2017-07-25.min.json +39 -11
- package/apis/medialive-2017-10-14.min.json +249 -213
- package/apis/models.lex.v2-2020-08-07.min.json +217 -122
- package/apis/runtime.lex.v2-2020-08-07.min.json +64 -40
- package/apis/sagemaker-2017-07-24.min.json +696 -695
- package/apis/ssm-2014-11-06.min.json +3 -0
- package/clients/cloudtrail.d.ts +108 -6
- package/clients/ec2.d.ts +47 -39
- package/clients/eks.d.ts +67 -9
- package/clients/emrcontainers.d.ts +16 -1
- package/clients/lexmodelsv2.d.ts +90 -2
- package/clients/lexruntimev2.d.ts +25 -3
- package/clients/lookoutmetrics.d.ts +35 -0
- package/clients/medialive.d.ts +38 -0
- package/clients/redshift.d.ts +15 -15
- package/clients/route53.d.ts +2 -2
- package/clients/sagemaker.d.ts +10 -5
- package/clients/ssm.d.ts +10 -6
- package/dist/aws-sdk-core-react-native.js +14 -6
- package/dist/aws-sdk-react-native.js +38 -22
- package/dist/aws-sdk.js +160 -51
- package/dist/aws-sdk.min.js +82 -82
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,25 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1214.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1214.0
|
|
6
|
+
* feature: EKS: Adding support for local Amazon EKS clusters on Outposts
|
|
7
|
+
|
|
8
|
+
## 2.1213.0
|
|
9
|
+
* feature: CloudTrail: This release adds CloudTrail getChannel and listChannels APIs to allow customer to view the ServiceLinkedChannel configurations.
|
|
10
|
+
* feature: LexModelsV2: This release is for supporting Composite Slot Type feature in AWS Lex V2. Composite Slot Type will help developer to logically group coherent slots and maintain their inter-relationships in runtime conversation.
|
|
11
|
+
* feature: LexRuntimeV2: Updates API to latest version.
|
|
12
|
+
* feature: PI: Increases the maximum values of two RDS Performance Insights APIs. The maximum value of the Limit parameter of DimensionGroup is 25. The MaxResult maximum is now 25 for the following APIs: DescribeDimensionKeys, GetResourceMetrics, ListAvailableResourceDimensions, and ListAvailableResourceMetrics.
|
|
13
|
+
|
|
14
|
+
## 2.1212.0
|
|
15
|
+
* feature: EC2: This release adds support to send VPC Flow Logs to kinesis-data-firehose as new destination type
|
|
16
|
+
* feature: EMRcontainers: EMR on EKS now allows running Spark SQL using the newly introduced Spark SQL Job Driver in the Start Job Run API
|
|
17
|
+
* feature: LookoutMetrics: Release dimension value filtering feature to allow customers to define dimension filters for including only a subset of their dataset to be used by LookoutMetrics.
|
|
18
|
+
* feature: MediaLive: This change exposes API settings which allow Dolby Atmos and Dolby Vision to be used when running a channel using Elemental Media Live
|
|
19
|
+
* feature: Route53: Amazon Route 53 now supports the Middle East (UAE) Region (me-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
|
|
20
|
+
* feature: SSM: This release adds support for Systems Manager State Manager Association tagging.
|
|
21
|
+
* feature: SageMaker: This release adds Mode to AutoMLJobConfig.
|
|
22
|
+
|
|
5
23
|
## 2.1211.0
|
|
6
24
|
* bugfix: SSO: sso did not allow httpOptions to be passed through
|
|
7
25
|
* feature: DataExchange: Documentation updates for AWS Data Exchange.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1214.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -281,6 +281,51 @@
|
|
|
281
281
|
},
|
|
282
282
|
"idempotent": true
|
|
283
283
|
},
|
|
284
|
+
"GetChannel": {
|
|
285
|
+
"input": {
|
|
286
|
+
"type": "structure",
|
|
287
|
+
"required": [
|
|
288
|
+
"Channel"
|
|
289
|
+
],
|
|
290
|
+
"members": {
|
|
291
|
+
"Channel": {}
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"output": {
|
|
295
|
+
"type": "structure",
|
|
296
|
+
"members": {
|
|
297
|
+
"ChannelArn": {},
|
|
298
|
+
"Name": {},
|
|
299
|
+
"Source": {},
|
|
300
|
+
"SourceConfig": {
|
|
301
|
+
"type": "structure",
|
|
302
|
+
"members": {
|
|
303
|
+
"ApplyToAllRegions": {
|
|
304
|
+
"type": "boolean"
|
|
305
|
+
},
|
|
306
|
+
"AdvancedEventSelectors": {
|
|
307
|
+
"shape": "Sf"
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"Destinations": {
|
|
312
|
+
"type": "list",
|
|
313
|
+
"member": {
|
|
314
|
+
"type": "structure",
|
|
315
|
+
"required": [
|
|
316
|
+
"Type",
|
|
317
|
+
"Location"
|
|
318
|
+
],
|
|
319
|
+
"members": {
|
|
320
|
+
"Type": {},
|
|
321
|
+
"Location": {}
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
"idempotent": true
|
|
328
|
+
},
|
|
284
329
|
"GetEventDataStore": {
|
|
285
330
|
"input": {
|
|
286
331
|
"type": "structure",
|
|
@@ -337,7 +382,7 @@
|
|
|
337
382
|
"members": {
|
|
338
383
|
"TrailARN": {},
|
|
339
384
|
"EventSelectors": {
|
|
340
|
-
"shape": "
|
|
385
|
+
"shape": "S1p"
|
|
341
386
|
},
|
|
342
387
|
"AdvancedEventSelectors": {
|
|
343
388
|
"shape": "Sf"
|
|
@@ -361,7 +406,7 @@
|
|
|
361
406
|
"members": {
|
|
362
407
|
"TrailARN": {},
|
|
363
408
|
"InsightSelectors": {
|
|
364
|
-
"shape": "
|
|
409
|
+
"shape": "S1y"
|
|
365
410
|
}
|
|
366
411
|
}
|
|
367
412
|
},
|
|
@@ -485,6 +530,34 @@
|
|
|
485
530
|
},
|
|
486
531
|
"idempotent": true
|
|
487
532
|
},
|
|
533
|
+
"ListChannels": {
|
|
534
|
+
"input": {
|
|
535
|
+
"type": "structure",
|
|
536
|
+
"members": {
|
|
537
|
+
"MaxResults": {
|
|
538
|
+
"type": "integer"
|
|
539
|
+
},
|
|
540
|
+
"NextToken": {}
|
|
541
|
+
}
|
|
542
|
+
},
|
|
543
|
+
"output": {
|
|
544
|
+
"type": "structure",
|
|
545
|
+
"members": {
|
|
546
|
+
"Channels": {
|
|
547
|
+
"type": "list",
|
|
548
|
+
"member": {
|
|
549
|
+
"type": "structure",
|
|
550
|
+
"members": {
|
|
551
|
+
"ChannelArn": {},
|
|
552
|
+
"Name": {}
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
"NextToken": {}
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"idempotent": true
|
|
560
|
+
},
|
|
488
561
|
"ListEventDataStores": {
|
|
489
562
|
"input": {
|
|
490
563
|
"type": "structure",
|
|
@@ -769,7 +842,7 @@
|
|
|
769
842
|
"members": {
|
|
770
843
|
"TrailName": {},
|
|
771
844
|
"EventSelectors": {
|
|
772
|
-
"shape": "
|
|
845
|
+
"shape": "S1p"
|
|
773
846
|
},
|
|
774
847
|
"AdvancedEventSelectors": {
|
|
775
848
|
"shape": "Sf"
|
|
@@ -781,7 +854,7 @@
|
|
|
781
854
|
"members": {
|
|
782
855
|
"TrailARN": {},
|
|
783
856
|
"EventSelectors": {
|
|
784
|
-
"shape": "
|
|
857
|
+
"shape": "S1p"
|
|
785
858
|
},
|
|
786
859
|
"AdvancedEventSelectors": {
|
|
787
860
|
"shape": "Sf"
|
|
@@ -800,7 +873,7 @@
|
|
|
800
873
|
"members": {
|
|
801
874
|
"TrailName": {},
|
|
802
875
|
"InsightSelectors": {
|
|
803
|
-
"shape": "
|
|
876
|
+
"shape": "S1y"
|
|
804
877
|
}
|
|
805
878
|
}
|
|
806
879
|
},
|
|
@@ -809,7 +882,7 @@
|
|
|
809
882
|
"members": {
|
|
810
883
|
"TrailARN": {},
|
|
811
884
|
"InsightSelectors": {
|
|
812
|
-
"shape": "
|
|
885
|
+
"shape": "S1y"
|
|
813
886
|
}
|
|
814
887
|
}
|
|
815
888
|
},
|
|
@@ -1136,7 +1209,7 @@
|
|
|
1136
1209
|
}
|
|
1137
1210
|
}
|
|
1138
1211
|
},
|
|
1139
|
-
"
|
|
1212
|
+
"S1p": {
|
|
1140
1213
|
"type": "list",
|
|
1141
1214
|
"member": {
|
|
1142
1215
|
"type": "structure",
|
|
@@ -1165,7 +1238,7 @@
|
|
|
1165
1238
|
}
|
|
1166
1239
|
}
|
|
1167
1240
|
},
|
|
1168
|
-
"
|
|
1241
|
+
"S1y": {
|
|
1169
1242
|
"type": "list",
|
|
1170
1243
|
"member": {
|
|
1171
1244
|
"type": "structure",
|
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|
"input_token": "NextToken",
|
|
8
8
|
"output_token": "NextToken"
|
|
9
9
|
},
|
|
10
|
+
"ListChannels": {
|
|
11
|
+
"input_token": "NextToken",
|
|
12
|
+
"limit_key": "MaxResults",
|
|
13
|
+
"output_token": "NextToken"
|
|
14
|
+
},
|
|
10
15
|
"ListEventDataStores": {
|
|
11
16
|
"input_token": "NextToken",
|
|
12
17
|
"limit_key": "MaxResults",
|
|
@@ -2218,6 +2218,7 @@
|
|
|
2218
2218
|
},
|
|
2219
2219
|
"ClientToken": {},
|
|
2220
2220
|
"DeliverLogsPermissionArn": {},
|
|
2221
|
+
"DeliverCrossAccountRole": {},
|
|
2221
2222
|
"LogGroupName": {},
|
|
2222
2223
|
"ResourceIds": {
|
|
2223
2224
|
"locationName": "ResourceId",
|
|
@@ -8295,6 +8296,9 @@
|
|
|
8295
8296
|
"DeliverLogsPermissionArn": {
|
|
8296
8297
|
"locationName": "deliverLogsPermissionArn"
|
|
8297
8298
|
},
|
|
8299
|
+
"DeliverCrossAccountRole": {
|
|
8300
|
+
"locationName": "deliverCrossAccountRole"
|
|
8301
|
+
},
|
|
8298
8302
|
"DeliverLogsStatus": {
|
|
8299
8303
|
"locationName": "deliverLogsStatus"
|
|
8300
8304
|
},
|
|
@@ -172,6 +172,19 @@
|
|
|
172
172
|
},
|
|
173
173
|
"encryptionConfig": {
|
|
174
174
|
"shape": "S3"
|
|
175
|
+
},
|
|
176
|
+
"outpostConfig": {
|
|
177
|
+
"type": "structure",
|
|
178
|
+
"required": [
|
|
179
|
+
"outpostArns",
|
|
180
|
+
"controlPlaneInstanceType"
|
|
181
|
+
],
|
|
182
|
+
"members": {
|
|
183
|
+
"outpostArns": {
|
|
184
|
+
"shape": "S5"
|
|
185
|
+
},
|
|
186
|
+
"controlPlaneInstanceType": {}
|
|
187
|
+
}
|
|
175
188
|
}
|
|
176
189
|
}
|
|
177
190
|
},
|
|
@@ -179,7 +192,7 @@
|
|
|
179
192
|
"type": "structure",
|
|
180
193
|
"members": {
|
|
181
194
|
"cluster": {
|
|
182
|
-
"shape": "
|
|
195
|
+
"shape": "S1e"
|
|
183
196
|
}
|
|
184
197
|
}
|
|
185
198
|
}
|
|
@@ -206,7 +219,7 @@
|
|
|
206
219
|
"shape": "S5"
|
|
207
220
|
},
|
|
208
221
|
"selectors": {
|
|
209
|
-
"shape": "
|
|
222
|
+
"shape": "S1t"
|
|
210
223
|
},
|
|
211
224
|
"clientRequestToken": {
|
|
212
225
|
"idempotencyToken": true
|
|
@@ -220,7 +233,7 @@
|
|
|
220
233
|
"type": "structure",
|
|
221
234
|
"members": {
|
|
222
235
|
"fargateProfile": {
|
|
223
|
-
"shape": "
|
|
236
|
+
"shape": "S1x"
|
|
224
237
|
}
|
|
225
238
|
}
|
|
226
239
|
}
|
|
@@ -244,7 +257,7 @@
|
|
|
244
257
|
},
|
|
245
258
|
"nodegroupName": {},
|
|
246
259
|
"scalingConfig": {
|
|
247
|
-
"shape": "
|
|
260
|
+
"shape": "S20"
|
|
248
261
|
},
|
|
249
262
|
"diskSize": {
|
|
250
263
|
"type": "integer"
|
|
@@ -257,14 +270,14 @@
|
|
|
257
270
|
},
|
|
258
271
|
"amiType": {},
|
|
259
272
|
"remoteAccess": {
|
|
260
|
-
"shape": "
|
|
273
|
+
"shape": "S25"
|
|
261
274
|
},
|
|
262
275
|
"nodeRole": {},
|
|
263
276
|
"labels": {
|
|
264
|
-
"shape": "
|
|
277
|
+
"shape": "S26"
|
|
265
278
|
},
|
|
266
279
|
"taints": {
|
|
267
|
-
"shape": "
|
|
280
|
+
"shape": "S29"
|
|
268
281
|
},
|
|
269
282
|
"tags": {
|
|
270
283
|
"shape": "Sn"
|
|
@@ -273,10 +286,10 @@
|
|
|
273
286
|
"idempotencyToken": true
|
|
274
287
|
},
|
|
275
288
|
"launchTemplate": {
|
|
276
|
-
"shape": "
|
|
289
|
+
"shape": "S2e"
|
|
277
290
|
},
|
|
278
291
|
"updateConfig": {
|
|
279
|
-
"shape": "
|
|
292
|
+
"shape": "S2f"
|
|
280
293
|
},
|
|
281
294
|
"capacityType": {},
|
|
282
295
|
"version": {},
|
|
@@ -287,7 +300,7 @@
|
|
|
287
300
|
"type": "structure",
|
|
288
301
|
"members": {
|
|
289
302
|
"nodegroup": {
|
|
290
|
-
"shape": "
|
|
303
|
+
"shape": "S2k"
|
|
291
304
|
}
|
|
292
305
|
}
|
|
293
306
|
}
|
|
@@ -349,7 +362,7 @@
|
|
|
349
362
|
"type": "structure",
|
|
350
363
|
"members": {
|
|
351
364
|
"cluster": {
|
|
352
|
-
"shape": "
|
|
365
|
+
"shape": "S1e"
|
|
353
366
|
}
|
|
354
367
|
}
|
|
355
368
|
}
|
|
@@ -380,7 +393,7 @@
|
|
|
380
393
|
"type": "structure",
|
|
381
394
|
"members": {
|
|
382
395
|
"fargateProfile": {
|
|
383
|
-
"shape": "
|
|
396
|
+
"shape": "S1x"
|
|
384
397
|
}
|
|
385
398
|
}
|
|
386
399
|
}
|
|
@@ -411,7 +424,7 @@
|
|
|
411
424
|
"type": "structure",
|
|
412
425
|
"members": {
|
|
413
426
|
"nodegroup": {
|
|
414
|
-
"shape": "
|
|
427
|
+
"shape": "S2k"
|
|
415
428
|
}
|
|
416
429
|
}
|
|
417
430
|
}
|
|
@@ -437,7 +450,7 @@
|
|
|
437
450
|
"type": "structure",
|
|
438
451
|
"members": {
|
|
439
452
|
"cluster": {
|
|
440
|
-
"shape": "
|
|
453
|
+
"shape": "S1e"
|
|
441
454
|
}
|
|
442
455
|
}
|
|
443
456
|
}
|
|
@@ -565,7 +578,7 @@
|
|
|
565
578
|
"type": "structure",
|
|
566
579
|
"members": {
|
|
567
580
|
"cluster": {
|
|
568
|
-
"shape": "
|
|
581
|
+
"shape": "S1e"
|
|
569
582
|
}
|
|
570
583
|
}
|
|
571
584
|
}
|
|
@@ -596,7 +609,7 @@
|
|
|
596
609
|
"type": "structure",
|
|
597
610
|
"members": {
|
|
598
611
|
"fargateProfile": {
|
|
599
|
-
"shape": "
|
|
612
|
+
"shape": "S1x"
|
|
600
613
|
}
|
|
601
614
|
}
|
|
602
615
|
}
|
|
@@ -617,7 +630,7 @@
|
|
|
617
630
|
"locationName": "name"
|
|
618
631
|
},
|
|
619
632
|
"identityProviderConfig": {
|
|
620
|
-
"shape": "
|
|
633
|
+
"shape": "S3j"
|
|
621
634
|
}
|
|
622
635
|
}
|
|
623
636
|
},
|
|
@@ -679,7 +692,7 @@
|
|
|
679
692
|
"type": "structure",
|
|
680
693
|
"members": {
|
|
681
694
|
"nodegroup": {
|
|
682
|
-
"shape": "
|
|
695
|
+
"shape": "S2k"
|
|
683
696
|
}
|
|
684
697
|
}
|
|
685
698
|
}
|
|
@@ -739,7 +752,7 @@
|
|
|
739
752
|
"locationName": "name"
|
|
740
753
|
},
|
|
741
754
|
"identityProviderConfig": {
|
|
742
|
-
"shape": "
|
|
755
|
+
"shape": "S3j"
|
|
743
756
|
},
|
|
744
757
|
"clientRequestToken": {
|
|
745
758
|
"idempotencyToken": true
|
|
@@ -894,7 +907,7 @@
|
|
|
894
907
|
"identityProviderConfigs": {
|
|
895
908
|
"type": "list",
|
|
896
909
|
"member": {
|
|
897
|
-
"shape": "
|
|
910
|
+
"shape": "S3j"
|
|
898
911
|
}
|
|
899
912
|
},
|
|
900
913
|
"nextToken": {}
|
|
@@ -1042,7 +1055,7 @@
|
|
|
1042
1055
|
"type": "structure",
|
|
1043
1056
|
"members": {
|
|
1044
1057
|
"cluster": {
|
|
1045
|
-
"shape": "
|
|
1058
|
+
"shape": "S1e"
|
|
1046
1059
|
}
|
|
1047
1060
|
}
|
|
1048
1061
|
}
|
|
@@ -1224,7 +1237,7 @@
|
|
|
1224
1237
|
"type": "structure",
|
|
1225
1238
|
"members": {
|
|
1226
1239
|
"addOrUpdateLabels": {
|
|
1227
|
-
"shape": "
|
|
1240
|
+
"shape": "S26"
|
|
1228
1241
|
},
|
|
1229
1242
|
"removeLabels": {
|
|
1230
1243
|
"type": "list",
|
|
@@ -1236,18 +1249,18 @@
|
|
|
1236
1249
|
"type": "structure",
|
|
1237
1250
|
"members": {
|
|
1238
1251
|
"addOrUpdateTaints": {
|
|
1239
|
-
"shape": "
|
|
1252
|
+
"shape": "S29"
|
|
1240
1253
|
},
|
|
1241
1254
|
"removeTaints": {
|
|
1242
|
-
"shape": "
|
|
1255
|
+
"shape": "S29"
|
|
1243
1256
|
}
|
|
1244
1257
|
}
|
|
1245
1258
|
},
|
|
1246
1259
|
"scalingConfig": {
|
|
1247
|
-
"shape": "
|
|
1260
|
+
"shape": "S20"
|
|
1248
1261
|
},
|
|
1249
1262
|
"updateConfig": {
|
|
1250
|
-
"shape": "
|
|
1263
|
+
"shape": "S2f"
|
|
1251
1264
|
},
|
|
1252
1265
|
"clientRequestToken": {
|
|
1253
1266
|
"idempotencyToken": true
|
|
@@ -1285,7 +1298,7 @@
|
|
|
1285
1298
|
"version": {},
|
|
1286
1299
|
"releaseVersion": {},
|
|
1287
1300
|
"launchTemplate": {
|
|
1288
|
-
"shape": "
|
|
1301
|
+
"shape": "S2e"
|
|
1289
1302
|
},
|
|
1290
1303
|
"force": {
|
|
1291
1304
|
"type": "boolean"
|
|
@@ -1449,7 +1462,7 @@
|
|
|
1449
1462
|
}
|
|
1450
1463
|
}
|
|
1451
1464
|
},
|
|
1452
|
-
"
|
|
1465
|
+
"S1e": {
|
|
1453
1466
|
"type": "structure",
|
|
1454
1467
|
"members": {
|
|
1455
1468
|
"name": {},
|
|
@@ -1530,10 +1543,42 @@
|
|
|
1530
1543
|
"provider": {},
|
|
1531
1544
|
"roleArn": {}
|
|
1532
1545
|
}
|
|
1546
|
+
},
|
|
1547
|
+
"id": {},
|
|
1548
|
+
"health": {
|
|
1549
|
+
"type": "structure",
|
|
1550
|
+
"members": {
|
|
1551
|
+
"issues": {
|
|
1552
|
+
"type": "list",
|
|
1553
|
+
"member": {
|
|
1554
|
+
"type": "structure",
|
|
1555
|
+
"members": {
|
|
1556
|
+
"code": {},
|
|
1557
|
+
"message": {},
|
|
1558
|
+
"resourceIds": {
|
|
1559
|
+
"shape": "S5"
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
}
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
"outpostConfig": {
|
|
1567
|
+
"type": "structure",
|
|
1568
|
+
"required": [
|
|
1569
|
+
"outpostArns",
|
|
1570
|
+
"controlPlaneInstanceType"
|
|
1571
|
+
],
|
|
1572
|
+
"members": {
|
|
1573
|
+
"outpostArns": {
|
|
1574
|
+
"shape": "S5"
|
|
1575
|
+
},
|
|
1576
|
+
"controlPlaneInstanceType": {}
|
|
1577
|
+
}
|
|
1533
1578
|
}
|
|
1534
1579
|
}
|
|
1535
1580
|
},
|
|
1536
|
-
"
|
|
1581
|
+
"S1t": {
|
|
1537
1582
|
"type": "list",
|
|
1538
1583
|
"member": {
|
|
1539
1584
|
"type": "structure",
|
|
@@ -1547,7 +1592,7 @@
|
|
|
1547
1592
|
}
|
|
1548
1593
|
}
|
|
1549
1594
|
},
|
|
1550
|
-
"
|
|
1595
|
+
"S1x": {
|
|
1551
1596
|
"type": "structure",
|
|
1552
1597
|
"members": {
|
|
1553
1598
|
"fargateProfileName": {},
|
|
@@ -1561,7 +1606,7 @@
|
|
|
1561
1606
|
"shape": "S5"
|
|
1562
1607
|
},
|
|
1563
1608
|
"selectors": {
|
|
1564
|
-
"shape": "
|
|
1609
|
+
"shape": "S1t"
|
|
1565
1610
|
},
|
|
1566
1611
|
"status": {},
|
|
1567
1612
|
"tags": {
|
|
@@ -1569,7 +1614,7 @@
|
|
|
1569
1614
|
}
|
|
1570
1615
|
}
|
|
1571
1616
|
},
|
|
1572
|
-
"
|
|
1617
|
+
"S20": {
|
|
1573
1618
|
"type": "structure",
|
|
1574
1619
|
"members": {
|
|
1575
1620
|
"minSize": {
|
|
@@ -1583,7 +1628,7 @@
|
|
|
1583
1628
|
}
|
|
1584
1629
|
}
|
|
1585
1630
|
},
|
|
1586
|
-
"
|
|
1631
|
+
"S25": {
|
|
1587
1632
|
"type": "structure",
|
|
1588
1633
|
"members": {
|
|
1589
1634
|
"ec2SshKey": {},
|
|
@@ -1592,12 +1637,12 @@
|
|
|
1592
1637
|
}
|
|
1593
1638
|
}
|
|
1594
1639
|
},
|
|
1595
|
-
"
|
|
1640
|
+
"S26": {
|
|
1596
1641
|
"type": "map",
|
|
1597
1642
|
"key": {},
|
|
1598
1643
|
"value": {}
|
|
1599
1644
|
},
|
|
1600
|
-
"
|
|
1645
|
+
"S29": {
|
|
1601
1646
|
"type": "list",
|
|
1602
1647
|
"member": {
|
|
1603
1648
|
"type": "structure",
|
|
@@ -1608,7 +1653,7 @@
|
|
|
1608
1653
|
}
|
|
1609
1654
|
}
|
|
1610
1655
|
},
|
|
1611
|
-
"
|
|
1656
|
+
"S2e": {
|
|
1612
1657
|
"type": "structure",
|
|
1613
1658
|
"members": {
|
|
1614
1659
|
"name": {},
|
|
@@ -1616,7 +1661,7 @@
|
|
|
1616
1661
|
"id": {}
|
|
1617
1662
|
}
|
|
1618
1663
|
},
|
|
1619
|
-
"
|
|
1664
|
+
"S2f": {
|
|
1620
1665
|
"type": "structure",
|
|
1621
1666
|
"members": {
|
|
1622
1667
|
"maxUnavailable": {
|
|
@@ -1627,7 +1672,7 @@
|
|
|
1627
1672
|
}
|
|
1628
1673
|
}
|
|
1629
1674
|
},
|
|
1630
|
-
"
|
|
1675
|
+
"S2k": {
|
|
1631
1676
|
"type": "structure",
|
|
1632
1677
|
"members": {
|
|
1633
1678
|
"nodegroupName": {},
|
|
@@ -1644,7 +1689,7 @@
|
|
|
1644
1689
|
"status": {},
|
|
1645
1690
|
"capacityType": {},
|
|
1646
1691
|
"scalingConfig": {
|
|
1647
|
-
"shape": "
|
|
1692
|
+
"shape": "S20"
|
|
1648
1693
|
},
|
|
1649
1694
|
"instanceTypes": {
|
|
1650
1695
|
"shape": "S5"
|
|
@@ -1653,15 +1698,15 @@
|
|
|
1653
1698
|
"shape": "S5"
|
|
1654
1699
|
},
|
|
1655
1700
|
"remoteAccess": {
|
|
1656
|
-
"shape": "
|
|
1701
|
+
"shape": "S25"
|
|
1657
1702
|
},
|
|
1658
1703
|
"amiType": {},
|
|
1659
1704
|
"nodeRole": {},
|
|
1660
1705
|
"labels": {
|
|
1661
|
-
"shape": "
|
|
1706
|
+
"shape": "S26"
|
|
1662
1707
|
},
|
|
1663
1708
|
"taints": {
|
|
1664
|
-
"shape": "
|
|
1709
|
+
"shape": "S29"
|
|
1665
1710
|
},
|
|
1666
1711
|
"resources": {
|
|
1667
1712
|
"type": "structure",
|
|
@@ -1700,17 +1745,17 @@
|
|
|
1700
1745
|
}
|
|
1701
1746
|
},
|
|
1702
1747
|
"updateConfig": {
|
|
1703
|
-
"shape": "
|
|
1748
|
+
"shape": "S2f"
|
|
1704
1749
|
},
|
|
1705
1750
|
"launchTemplate": {
|
|
1706
|
-
"shape": "
|
|
1751
|
+
"shape": "S2e"
|
|
1707
1752
|
},
|
|
1708
1753
|
"tags": {
|
|
1709
1754
|
"shape": "Sn"
|
|
1710
1755
|
}
|
|
1711
1756
|
}
|
|
1712
1757
|
},
|
|
1713
|
-
"
|
|
1758
|
+
"S3j": {
|
|
1714
1759
|
"type": "structure",
|
|
1715
1760
|
"required": [
|
|
1716
1761
|
"type",
|