aws-sdk-core 2.11.398 → 2.11.399

Sign up to get free protection for your applications and to get access to all the features.
@@ -109,6 +109,27 @@
109
109
  "id": "to-list-your-available-clusters-1527868801040",
110
110
  "title": "To list your available clusters"
111
111
  }
112
+ ],
113
+ "ListTagsForResource": [
114
+ {
115
+ "input": {
116
+ "resourceArn": "arn:aws:eks:us-west-2:012345678910:cluster/beta"
117
+ },
118
+ "output": {
119
+ "tags": {
120
+ "aws:tag:domain": "beta"
121
+ }
122
+ },
123
+ "comments": {
124
+ "input": {
125
+ },
126
+ "output": {
127
+ }
128
+ },
129
+ "description": "This example lists all of the tags for the `beta` cluster.",
130
+ "id": "to-list-tags-for-a-cluster-1568666903378",
131
+ "title": "To list tags for a cluster"
132
+ }
112
133
  ]
113
134
  }
114
135
  }
@@ -6,6 +6,12 @@
6
6
  "output_token": "nextToken",
7
7
  "result_key": "clusters"
8
8
  },
9
+ "ListNodegroups": {
10
+ "input_token": "nextToken",
11
+ "limit_key": "maxResults",
12
+ "output_token": "nextToken",
13
+ "result_key": "nodegroups"
14
+ },
9
15
  "ListUpdates": {
10
16
  "input_token": "nextToken",
11
17
  "limit_key": "maxResults",
@@ -49,6 +49,43 @@
49
49
  "state": "success"
50
50
  }
51
51
  ]
52
+ },
53
+ "NodegroupActive": {
54
+ "delay": 30,
55
+ "operation": "DescribeNodegroup",
56
+ "maxAttempts": 80,
57
+ "acceptors": [
58
+ {
59
+ "expected": "CREATE_FAILED",
60
+ "matcher": "path",
61
+ "state": "failure",
62
+ "argument": "nodegroup.status"
63
+ },
64
+ {
65
+ "expected": "ACTIVE",
66
+ "matcher": "path",
67
+ "state": "success",
68
+ "argument": "nodegroup.status"
69
+ }
70
+ ]
71
+ },
72
+ "NodegroupDeleted": {
73
+ "delay": 30,
74
+ "operation": "DescribeNodegroup",
75
+ "maxAttempts": 40,
76
+ "acceptors": [
77
+ {
78
+ "expected": "DELETE_FAILED",
79
+ "matcher": "path",
80
+ "state": "failure",
81
+ "argument": "nodegroup.status"
82
+ },
83
+ {
84
+ "expected": "ResourceNotFoundException",
85
+ "matcher": "error",
86
+ "state": "success"
87
+ }
88
+ ]
52
89
  }
53
90
  }
54
91
  }
@@ -396,7 +396,8 @@
396
396
  "type":"structure",
397
397
  "members":{
398
398
  "ClusterId":{"shape":"XmlStringMaxLen256"},
399
- "InstanceFleetId":{"shape":"InstanceFleetId"}
399
+ "InstanceFleetId":{"shape":"InstanceFleetId"},
400
+ "ClusterArn":{"shape":"ArnType"}
400
401
  }
401
402
  },
402
403
  "AddInstanceGroupsInput":{
@@ -414,7 +415,8 @@
414
415
  "type":"structure",
415
416
  "members":{
416
417
  "JobFlowId":{"shape":"XmlStringMaxLen256"},
417
- "InstanceGroupIds":{"shape":"InstanceGroupIdsList"}
418
+ "InstanceGroupIds":{"shape":"InstanceGroupIdsList"},
419
+ "ClusterArn":{"shape":"ArnType"}
418
420
  }
419
421
  },
420
422
  "AddJobFlowStepsInput":{
@@ -653,7 +655,8 @@
653
655
  "CustomAmiId":{"shape":"XmlStringMaxLen256"},
654
656
  "EbsRootVolumeSize":{"shape":"Integer"},
655
657
  "RepoUpgradeOnBoot":{"shape":"RepoUpgradeOnBoot"},
656
- "KerberosAttributes":{"shape":"KerberosAttributes"}
658
+ "KerberosAttributes":{"shape":"KerberosAttributes"},
659
+ "ClusterArn":{"shape":"ArnType"}
657
660
  }
658
661
  },
659
662
  "ClusterId":{"type":"string"},
@@ -707,7 +710,8 @@
707
710
  "Id":{"shape":"ClusterId"},
708
711
  "Name":{"shape":"String"},
709
712
  "Status":{"shape":"ClusterStatus"},
710
- "NormalizedInstanceHours":{"shape":"Integer"}
713
+ "NormalizedInstanceHours":{"shape":"Integer"},
714
+ "ClusterArn":{"shape":"ArnType"}
711
715
  }
712
716
  },
713
717
  "ClusterSummaryList":{
@@ -1712,7 +1716,8 @@
1712
1716
  "members":{
1713
1717
  "ClusterId":{"shape":"ClusterId"},
1714
1718
  "InstanceGroupId":{"shape":"InstanceGroupId"},
1715
- "AutoScalingPolicy":{"shape":"AutoScalingPolicyDescription"}
1719
+ "AutoScalingPolicy":{"shape":"AutoScalingPolicyDescription"},
1720
+ "ClusterArn":{"shape":"ArnType"}
1716
1721
  }
1717
1722
  },
1718
1723
  "PutBlockPublicAccessConfigurationInput":{
@@ -1802,7 +1807,8 @@
1802
1807
  "RunJobFlowOutput":{
1803
1808
  "type":"structure",
1804
1809
  "members":{
1805
- "JobFlowId":{"shape":"XmlStringMaxLen256"}
1810
+ "JobFlowId":{"shape":"XmlStringMaxLen256"},
1811
+ "ClusterArn":{"shape":"ArnType"}
1806
1812
  }
1807
1813
  },
1808
1814
  "ScaleDownBehavior":{
@@ -96,6 +96,20 @@
96
96
  {"shape":"InternalServerErrorException"}
97
97
  ]
98
98
  },
99
+ "CreatePublishingDestination":{
100
+ "name":"CreatePublishingDestination",
101
+ "http":{
102
+ "method":"POST",
103
+ "requestUri":"/detector/{detectorId}/publishingDestination",
104
+ "responseCode":200
105
+ },
106
+ "input":{"shape":"CreatePublishingDestinationRequest"},
107
+ "output":{"shape":"CreatePublishingDestinationResponse"},
108
+ "errors":[
109
+ {"shape":"BadRequestException"},
110
+ {"shape":"InternalServerErrorException"}
111
+ ]
112
+ },
99
113
  "CreateSampleFindings":{
100
114
  "name":"CreateSampleFindings",
101
115
  "http":{
@@ -208,6 +222,20 @@
208
222
  {"shape":"InternalServerErrorException"}
209
223
  ]
210
224
  },
225
+ "DeletePublishingDestination":{
226
+ "name":"DeletePublishingDestination",
227
+ "http":{
228
+ "method":"DELETE",
229
+ "requestUri":"/detector/{detectorId}/publishingDestination/{destinationId}",
230
+ "responseCode":200
231
+ },
232
+ "input":{"shape":"DeletePublishingDestinationRequest"},
233
+ "output":{"shape":"DeletePublishingDestinationResponse"},
234
+ "errors":[
235
+ {"shape":"BadRequestException"},
236
+ {"shape":"InternalServerErrorException"}
237
+ ]
238
+ },
211
239
  "DeleteThreatIntelSet":{
212
240
  "name":"DeleteThreatIntelSet",
213
241
  "http":{
@@ -222,6 +250,20 @@
222
250
  {"shape":"InternalServerErrorException"}
223
251
  ]
224
252
  },
253
+ "DescribePublishingDestination":{
254
+ "name":"DescribePublishingDestination",
255
+ "http":{
256
+ "method":"GET",
257
+ "requestUri":"/detector/{detectorId}/publishingDestination/{destinationId}",
258
+ "responseCode":200
259
+ },
260
+ "input":{"shape":"DescribePublishingDestinationRequest"},
261
+ "output":{"shape":"DescribePublishingDestinationResponse"},
262
+ "errors":[
263
+ {"shape":"BadRequestException"},
264
+ {"shape":"InternalServerErrorException"}
265
+ ]
266
+ },
225
267
  "DisassociateFromMasterAccount":{
226
268
  "name":"DisassociateFromMasterAccount",
227
269
  "http":{
@@ -474,6 +516,20 @@
474
516
  {"shape":"InternalServerErrorException"}
475
517
  ]
476
518
  },
519
+ "ListPublishingDestinations":{
520
+ "name":"ListPublishingDestinations",
521
+ "http":{
522
+ "method":"GET",
523
+ "requestUri":"/detector/{detectorId}/publishingDestination",
524
+ "responseCode":200
525
+ },
526
+ "input":{"shape":"ListPublishingDestinationsRequest"},
527
+ "output":{"shape":"ListPublishingDestinationsResponse"},
528
+ "errors":[
529
+ {"shape":"BadRequestException"},
530
+ {"shape":"InternalServerErrorException"}
531
+ ]
532
+ },
477
533
  "ListTagsForResource":{
478
534
  "name":"ListTagsForResource",
479
535
  "http":{
@@ -628,6 +684,20 @@
628
684
  {"shape":"InternalServerErrorException"}
629
685
  ]
630
686
  },
687
+ "UpdatePublishingDestination":{
688
+ "name":"UpdatePublishingDestination",
689
+ "http":{
690
+ "method":"POST",
691
+ "requestUri":"/detector/{detectorId}/publishingDestination/{destinationId}",
692
+ "responseCode":200
693
+ },
694
+ "input":{"shape":"UpdatePublishingDestinationRequest"},
695
+ "output":{"shape":"UpdatePublishingDestinationResponse"},
696
+ "errors":[
697
+ {"shape":"BadRequestException"},
698
+ {"shape":"InternalServerErrorException"}
699
+ ]
700
+ },
631
701
  "UpdateThreatIntelSet":{
632
702
  "name":"UpdateThreatIntelSet",
633
703
  "http":{
@@ -1073,6 +1143,44 @@
1073
1143
  }
1074
1144
  }
1075
1145
  },
1146
+ "CreatePublishingDestinationRequest":{
1147
+ "type":"structure",
1148
+ "required":[
1149
+ "DetectorId",
1150
+ "DestinationType",
1151
+ "DestinationProperties"
1152
+ ],
1153
+ "members":{
1154
+ "DetectorId":{
1155
+ "shape":"DetectorId",
1156
+ "location":"uri",
1157
+ "locationName":"detectorId"
1158
+ },
1159
+ "DestinationType":{
1160
+ "shape":"DestinationType",
1161
+ "locationName":"destinationType"
1162
+ },
1163
+ "DestinationProperties":{
1164
+ "shape":"DestinationProperties",
1165
+ "locationName":"destinationProperties"
1166
+ },
1167
+ "ClientToken":{
1168
+ "shape":"ClientToken",
1169
+ "idempotencyToken":true,
1170
+ "locationName":"clientToken"
1171
+ }
1172
+ }
1173
+ },
1174
+ "CreatePublishingDestinationResponse":{
1175
+ "type":"structure",
1176
+ "required":["DestinationId"],
1177
+ "members":{
1178
+ "DestinationId":{
1179
+ "shape":"String",
1180
+ "locationName":"destinationId"
1181
+ }
1182
+ }
1183
+ },
1076
1184
  "CreateSampleFindingsRequest":{
1077
1185
  "type":"structure",
1078
1186
  "required":["DetectorId"],
@@ -1282,6 +1390,30 @@
1282
1390
  }
1283
1391
  }
1284
1392
  },
1393
+ "DeletePublishingDestinationRequest":{
1394
+ "type":"structure",
1395
+ "required":[
1396
+ "DetectorId",
1397
+ "DestinationId"
1398
+ ],
1399
+ "members":{
1400
+ "DetectorId":{
1401
+ "shape":"DetectorId",
1402
+ "location":"uri",
1403
+ "locationName":"detectorId"
1404
+ },
1405
+ "DestinationId":{
1406
+ "shape":"String",
1407
+ "location":"uri",
1408
+ "locationName":"destinationId"
1409
+ }
1410
+ }
1411
+ },
1412
+ "DeletePublishingDestinationResponse":{
1413
+ "type":"structure",
1414
+ "members":{
1415
+ }
1416
+ },
1285
1417
  "DeleteThreatIntelSetRequest":{
1286
1418
  "type":"structure",
1287
1419
  "required":[
@@ -1306,6 +1438,102 @@
1306
1438
  "members":{
1307
1439
  }
1308
1440
  },
1441
+ "DescribePublishingDestinationRequest":{
1442
+ "type":"structure",
1443
+ "required":[
1444
+ "DetectorId",
1445
+ "DestinationId"
1446
+ ],
1447
+ "members":{
1448
+ "DetectorId":{
1449
+ "shape":"DetectorId",
1450
+ "location":"uri",
1451
+ "locationName":"detectorId"
1452
+ },
1453
+ "DestinationId":{
1454
+ "shape":"String",
1455
+ "location":"uri",
1456
+ "locationName":"destinationId"
1457
+ }
1458
+ }
1459
+ },
1460
+ "DescribePublishingDestinationResponse":{
1461
+ "type":"structure",
1462
+ "required":[
1463
+ "DestinationId",
1464
+ "DestinationType",
1465
+ "Status",
1466
+ "PublishingFailureStartTimestamp",
1467
+ "DestinationProperties"
1468
+ ],
1469
+ "members":{
1470
+ "DestinationId":{
1471
+ "shape":"String",
1472
+ "locationName":"destinationId"
1473
+ },
1474
+ "DestinationType":{
1475
+ "shape":"DestinationType",
1476
+ "locationName":"destinationType"
1477
+ },
1478
+ "Status":{
1479
+ "shape":"PublishingStatus",
1480
+ "locationName":"status"
1481
+ },
1482
+ "PublishingFailureStartTimestamp":{
1483
+ "shape":"Long",
1484
+ "locationName":"publishingFailureStartTimestamp"
1485
+ },
1486
+ "DestinationProperties":{
1487
+ "shape":"DestinationProperties",
1488
+ "locationName":"destinationProperties"
1489
+ }
1490
+ }
1491
+ },
1492
+ "Destination":{
1493
+ "type":"structure",
1494
+ "required":[
1495
+ "DestinationId",
1496
+ "DestinationType",
1497
+ "Status"
1498
+ ],
1499
+ "members":{
1500
+ "DestinationId":{
1501
+ "shape":"String",
1502
+ "locationName":"destinationId"
1503
+ },
1504
+ "DestinationType":{
1505
+ "shape":"DestinationType",
1506
+ "locationName":"destinationType"
1507
+ },
1508
+ "Status":{
1509
+ "shape":"PublishingStatus",
1510
+ "locationName":"status"
1511
+ }
1512
+ }
1513
+ },
1514
+ "DestinationProperties":{
1515
+ "type":"structure",
1516
+ "members":{
1517
+ "DestinationArn":{
1518
+ "shape":"String",
1519
+ "locationName":"destinationArn"
1520
+ },
1521
+ "KmsKeyArn":{
1522
+ "shape":"String",
1523
+ "locationName":"kmsKeyArn"
1524
+ }
1525
+ }
1526
+ },
1527
+ "DestinationType":{
1528
+ "type":"string",
1529
+ "enum":["S3"],
1530
+ "max":300,
1531
+ "min":1
1532
+ },
1533
+ "Destinations":{
1534
+ "type":"list",
1535
+ "member":{"shape":"Destination"}
1536
+ },
1309
1537
  "DetectorId":{
1310
1538
  "type":"string",
1311
1539
  "max":300,
@@ -2326,6 +2554,41 @@
2326
2554
  }
2327
2555
  }
2328
2556
  },
2557
+ "ListPublishingDestinationsRequest":{
2558
+ "type":"structure",
2559
+ "required":["DetectorId"],
2560
+ "members":{
2561
+ "DetectorId":{
2562
+ "shape":"DetectorId",
2563
+ "location":"uri",
2564
+ "locationName":"detectorId"
2565
+ },
2566
+ "MaxResults":{
2567
+ "shape":"MaxResults",
2568
+ "location":"querystring",
2569
+ "locationName":"maxResults"
2570
+ },
2571
+ "NextToken":{
2572
+ "shape":"String",
2573
+ "location":"querystring",
2574
+ "locationName":"nextToken"
2575
+ }
2576
+ }
2577
+ },
2578
+ "ListPublishingDestinationsResponse":{
2579
+ "type":"structure",
2580
+ "required":["Destinations"],
2581
+ "members":{
2582
+ "Destinations":{
2583
+ "shape":"Destinations",
2584
+ "locationName":"destinations"
2585
+ },
2586
+ "NextToken":{
2587
+ "shape":"String",
2588
+ "locationName":"nextToken"
2589
+ }
2590
+ }
2591
+ },
2329
2592
  "ListTagsForResourceRequest":{
2330
2593
  "type":"structure",
2331
2594
  "required":["ResourceArn"],
@@ -2655,6 +2918,17 @@
2655
2918
  "type":"list",
2656
2919
  "member":{"shape":"ProductCode"}
2657
2920
  },
2921
+ "PublishingStatus":{
2922
+ "type":"string",
2923
+ "enum":[
2924
+ "PENDING_VERIFICATION",
2925
+ "PUBLISHING",
2926
+ "UNABLE_TO_PUBLISH_FIX_DESTINATION_PROPERTY",
2927
+ "STOPPED"
2928
+ ],
2929
+ "max":300,
2930
+ "min":1
2931
+ },
2658
2932
  "RemoteIpDetails":{
2659
2933
  "type":"structure",
2660
2934
  "members":{
@@ -3166,6 +3440,34 @@
3166
3440
  "members":{
3167
3441
  }
3168
3442
  },
3443
+ "UpdatePublishingDestinationRequest":{
3444
+ "type":"structure",
3445
+ "required":[
3446
+ "DetectorId",
3447
+ "DestinationId"
3448
+ ],
3449
+ "members":{
3450
+ "DetectorId":{
3451
+ "shape":"DetectorId",
3452
+ "location":"uri",
3453
+ "locationName":"detectorId"
3454
+ },
3455
+ "DestinationId":{
3456
+ "shape":"String",
3457
+ "location":"uri",
3458
+ "locationName":"destinationId"
3459
+ },
3460
+ "DestinationProperties":{
3461
+ "shape":"DestinationProperties",
3462
+ "locationName":"destinationProperties"
3463
+ }
3464
+ }
3465
+ },
3466
+ "UpdatePublishingDestinationResponse":{
3467
+ "type":"structure",
3468
+ "members":{
3469
+ }
3470
+ },
3169
3471
  "UpdateThreatIntelSetRequest":{
3170
3472
  "type":"structure",
3171
3473
  "required":[