aws-sdk-core 2.11.173 → 2.11.174
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.
- checksums.yaml +4 -4
- data/apis/batch/2016-08-10/api-2.json +92 -11
- data/apis/cloudformation/2010-05-15/api-2.json +2 -1
- data/apis/cloudtrail/2013-11-01/api-2.json +74 -13
- data/apis/config/2014-11-12/api-2.json +211 -0
- data/apis/devicefarm/2015-06-23/api-2.json +81 -4
- data/apis/ec2/2016-11-15/api-2.json +22 -1
- data/apis/iot/2015-05-28/api-2.json +750 -18
- data/apis/iot/2015-05-28/smoke.json +18 -0
- data/apis/lambda/2015-03-31/api-2.json +1 -0
- data/apis/lightsail/2016-11-28/api-2.json +11 -1
- data/apis/mediaconvert/2017-08-29/api-2.json +281 -8
- data/apis/rds/2014-10-31/api-2.json +3 -0
- data/apis/workdocs/2016-05-01/api-2.json +121 -2
- data/apis/workspaces/2015-04-08/api-2.json +84 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +3 -2
|
@@ -1392,7 +1392,8 @@
|
|
|
1392
1392
|
"remoteDebugEnabled":{"shape":"Boolean"},
|
|
1393
1393
|
"fleetType":{"shape":"String"},
|
|
1394
1394
|
"fleetName":{"shape":"String"},
|
|
1395
|
-
"instances":{"shape":"DeviceInstances"}
|
|
1395
|
+
"instances":{"shape":"DeviceInstances"},
|
|
1396
|
+
"availability":{"shape":"DeviceAvailability"}
|
|
1396
1397
|
}
|
|
1397
1398
|
},
|
|
1398
1399
|
"DeviceAttribute":{
|
|
@@ -1410,6 +1411,61 @@
|
|
|
1410
1411
|
"FLEET_TYPE"
|
|
1411
1412
|
]
|
|
1412
1413
|
},
|
|
1414
|
+
"DeviceAvailability":{
|
|
1415
|
+
"type":"string",
|
|
1416
|
+
"enum":[
|
|
1417
|
+
"TEMPORARY_NOT_AVAILABLE",
|
|
1418
|
+
"BUSY",
|
|
1419
|
+
"AVAILABLE",
|
|
1420
|
+
"HIGHLY_AVAILABLE"
|
|
1421
|
+
]
|
|
1422
|
+
},
|
|
1423
|
+
"DeviceFilter":{
|
|
1424
|
+
"type":"structure",
|
|
1425
|
+
"members":{
|
|
1426
|
+
"attribute":{"shape":"DeviceFilterAttribute"},
|
|
1427
|
+
"operator":{"shape":"DeviceFilterOperator"},
|
|
1428
|
+
"values":{"shape":"DeviceFilterValues"}
|
|
1429
|
+
}
|
|
1430
|
+
},
|
|
1431
|
+
"DeviceFilterAttribute":{
|
|
1432
|
+
"type":"string",
|
|
1433
|
+
"enum":[
|
|
1434
|
+
"ARN",
|
|
1435
|
+
"PLATFORM",
|
|
1436
|
+
"OS_VERSION",
|
|
1437
|
+
"MODEL",
|
|
1438
|
+
"AVAILABILITY",
|
|
1439
|
+
"FORM_FACTOR",
|
|
1440
|
+
"MANUFACTURER",
|
|
1441
|
+
"REMOTE_ACCESS_ENABLED",
|
|
1442
|
+
"REMOTE_DEBUG_ENABLED",
|
|
1443
|
+
"INSTANCE_ARN",
|
|
1444
|
+
"INSTANCE_LABELS",
|
|
1445
|
+
"FLEET_TYPE"
|
|
1446
|
+
]
|
|
1447
|
+
},
|
|
1448
|
+
"DeviceFilterOperator":{
|
|
1449
|
+
"type":"string",
|
|
1450
|
+
"enum":[
|
|
1451
|
+
"EQUALS",
|
|
1452
|
+
"LESS_THAN",
|
|
1453
|
+
"LESS_THAN_OR_EQUALS",
|
|
1454
|
+
"GREATER_THAN",
|
|
1455
|
+
"GREATER_THAN_OR_EQUALS",
|
|
1456
|
+
"IN",
|
|
1457
|
+
"NOT_IN",
|
|
1458
|
+
"CONTAINS"
|
|
1459
|
+
]
|
|
1460
|
+
},
|
|
1461
|
+
"DeviceFilterValues":{
|
|
1462
|
+
"type":"list",
|
|
1463
|
+
"member":{"shape":"String"}
|
|
1464
|
+
},
|
|
1465
|
+
"DeviceFilters":{
|
|
1466
|
+
"type":"list",
|
|
1467
|
+
"member":{"shape":"DeviceFilter"}
|
|
1468
|
+
},
|
|
1413
1469
|
"DeviceFormFactor":{
|
|
1414
1470
|
"type":"string",
|
|
1415
1471
|
"enum":[
|
|
@@ -1484,6 +1540,25 @@
|
|
|
1484
1540
|
"type":"list",
|
|
1485
1541
|
"member":{"shape":"DevicePool"}
|
|
1486
1542
|
},
|
|
1543
|
+
"DeviceSelectionConfiguration":{
|
|
1544
|
+
"type":"structure",
|
|
1545
|
+
"required":[
|
|
1546
|
+
"filters",
|
|
1547
|
+
"maxDevices"
|
|
1548
|
+
],
|
|
1549
|
+
"members":{
|
|
1550
|
+
"filters":{"shape":"DeviceFilters"},
|
|
1551
|
+
"maxDevices":{"shape":"Integer"}
|
|
1552
|
+
}
|
|
1553
|
+
},
|
|
1554
|
+
"DeviceSelectionResult":{
|
|
1555
|
+
"type":"structure",
|
|
1556
|
+
"members":{
|
|
1557
|
+
"filters":{"shape":"DeviceFilters"},
|
|
1558
|
+
"matchedDevicesCount":{"shape":"Integer"},
|
|
1559
|
+
"maxDevices":{"shape":"Integer"}
|
|
1560
|
+
}
|
|
1561
|
+
},
|
|
1487
1562
|
"Devices":{
|
|
1488
1563
|
"type":"list",
|
|
1489
1564
|
"member":{"shape":"Device"}
|
|
@@ -1923,7 +1998,8 @@
|
|
|
1923
1998
|
"type":"structure",
|
|
1924
1999
|
"members":{
|
|
1925
2000
|
"arn":{"shape":"AmazonResourceName"},
|
|
1926
|
-
"nextToken":{"shape":"PaginationToken"}
|
|
2001
|
+
"nextToken":{"shape":"PaginationToken"},
|
|
2002
|
+
"filters":{"shape":"DeviceFilters"}
|
|
1927
2003
|
}
|
|
1928
2004
|
},
|
|
1929
2005
|
"ListDevicesResult":{
|
|
@@ -2503,7 +2579,8 @@
|
|
|
2503
2579
|
"customerArtifactPaths":{"shape":"CustomerArtifactPaths"},
|
|
2504
2580
|
"webUrl":{"shape":"String"},
|
|
2505
2581
|
"skipAppResign":{"shape":"SkipAppResign"},
|
|
2506
|
-
"testSpecArn":{"shape":"AmazonResourceName"}
|
|
2582
|
+
"testSpecArn":{"shape":"AmazonResourceName"},
|
|
2583
|
+
"deviceSelectionResult":{"shape":"DeviceSelectionResult"}
|
|
2507
2584
|
}
|
|
2508
2585
|
},
|
|
2509
2586
|
"Runs":{
|
|
@@ -2562,13 +2639,13 @@
|
|
|
2562
2639
|
"type":"structure",
|
|
2563
2640
|
"required":[
|
|
2564
2641
|
"projectArn",
|
|
2565
|
-
"devicePoolArn",
|
|
2566
2642
|
"test"
|
|
2567
2643
|
],
|
|
2568
2644
|
"members":{
|
|
2569
2645
|
"projectArn":{"shape":"AmazonResourceName"},
|
|
2570
2646
|
"appArn":{"shape":"AmazonResourceName"},
|
|
2571
2647
|
"devicePoolArn":{"shape":"AmazonResourceName"},
|
|
2648
|
+
"deviceSelectionConfiguration":{"shape":"DeviceSelectionConfiguration"},
|
|
2572
2649
|
"name":{"shape":"Name"},
|
|
2573
2650
|
"test":{"shape":"ScheduleRunTest"},
|
|
2574
2651
|
"configuration":{"shape":"ScheduleRunConfiguration"},
|
|
@@ -3342,6 +3342,10 @@
|
|
|
3342
3342
|
"ZoneName":{
|
|
3343
3343
|
"shape":"String",
|
|
3344
3344
|
"locationName":"zoneName"
|
|
3345
|
+
},
|
|
3346
|
+
"ZoneId":{
|
|
3347
|
+
"shape":"String",
|
|
3348
|
+
"locationName":"zoneId"
|
|
3345
3349
|
}
|
|
3346
3350
|
}
|
|
3347
3351
|
},
|
|
@@ -6355,6 +6359,10 @@
|
|
|
6355
6359
|
"shape":"ZoneNameStringList",
|
|
6356
6360
|
"locationName":"ZoneName"
|
|
6357
6361
|
},
|
|
6362
|
+
"ZoneIds":{
|
|
6363
|
+
"shape":"ZoneIdStringList",
|
|
6364
|
+
"locationName":"ZoneId"
|
|
6365
|
+
},
|
|
6358
6366
|
"DryRun":{
|
|
6359
6367
|
"shape":"Boolean",
|
|
6360
6368
|
"locationName":"dryRun"
|
|
@@ -16707,19 +16715,25 @@
|
|
|
16707
16715
|
"customer-gateway",
|
|
16708
16716
|
"dedicated-host",
|
|
16709
16717
|
"dhcp-options",
|
|
16718
|
+
"elastic-ip",
|
|
16719
|
+
"fleet",
|
|
16720
|
+
"fpga-image",
|
|
16710
16721
|
"image",
|
|
16711
16722
|
"instance",
|
|
16712
16723
|
"internet-gateway",
|
|
16724
|
+
"launch-template",
|
|
16725
|
+
"natgateway",
|
|
16713
16726
|
"network-acl",
|
|
16714
16727
|
"network-interface",
|
|
16715
16728
|
"reserved-instances",
|
|
16716
16729
|
"route-table",
|
|
16730
|
+
"security-group",
|
|
16717
16731
|
"snapshot",
|
|
16718
16732
|
"spot-instances-request",
|
|
16719
16733
|
"subnet",
|
|
16720
|
-
"security-group",
|
|
16721
16734
|
"volume",
|
|
16722
16735
|
"vpc",
|
|
16736
|
+
"vpc-peering-connection",
|
|
16723
16737
|
"vpn-connection",
|
|
16724
16738
|
"vpn-gateway"
|
|
16725
16739
|
]
|
|
@@ -20357,6 +20371,13 @@
|
|
|
20357
20371
|
}
|
|
20358
20372
|
}
|
|
20359
20373
|
},
|
|
20374
|
+
"ZoneIdStringList":{
|
|
20375
|
+
"type":"list",
|
|
20376
|
+
"member":{
|
|
20377
|
+
"shape":"String",
|
|
20378
|
+
"locationName":"ZoneId"
|
|
20379
|
+
}
|
|
20380
|
+
},
|
|
20360
20381
|
"ZoneNameStringList":{
|
|
20361
20382
|
"type":"list",
|
|
20362
20383
|
"member":{
|
|
@@ -28,6 +28,21 @@
|
|
|
28
28
|
{"shape":"InternalFailureException"}
|
|
29
29
|
]
|
|
30
30
|
},
|
|
31
|
+
"AddThingToBillingGroup":{
|
|
32
|
+
"name":"AddThingToBillingGroup",
|
|
33
|
+
"http":{
|
|
34
|
+
"method":"PUT",
|
|
35
|
+
"requestUri":"/billing-groups/addThingToBillingGroup"
|
|
36
|
+
},
|
|
37
|
+
"input":{"shape":"AddThingToBillingGroupRequest"},
|
|
38
|
+
"output":{"shape":"AddThingToBillingGroupResponse"},
|
|
39
|
+
"errors":[
|
|
40
|
+
{"shape":"InvalidRequestException"},
|
|
41
|
+
{"shape":"ThrottlingException"},
|
|
42
|
+
{"shape":"InternalFailureException"},
|
|
43
|
+
{"shape":"ResourceNotFoundException"}
|
|
44
|
+
]
|
|
45
|
+
},
|
|
31
46
|
"AddThingToThingGroup":{
|
|
32
47
|
"name":"AddThingToThingGroup",
|
|
33
48
|
"http":{
|
|
@@ -226,6 +241,21 @@
|
|
|
226
241
|
{"shape":"InternalFailureException"}
|
|
227
242
|
]
|
|
228
243
|
},
|
|
244
|
+
"CreateBillingGroup":{
|
|
245
|
+
"name":"CreateBillingGroup",
|
|
246
|
+
"http":{
|
|
247
|
+
"method":"POST",
|
|
248
|
+
"requestUri":"/billing-groups/{billingGroupName}"
|
|
249
|
+
},
|
|
250
|
+
"input":{"shape":"CreateBillingGroupRequest"},
|
|
251
|
+
"output":{"shape":"CreateBillingGroupResponse"},
|
|
252
|
+
"errors":[
|
|
253
|
+
{"shape":"InvalidRequestException"},
|
|
254
|
+
{"shape":"ResourceAlreadyExistsException"},
|
|
255
|
+
{"shape":"ThrottlingException"},
|
|
256
|
+
{"shape":"InternalFailureException"}
|
|
257
|
+
]
|
|
258
|
+
},
|
|
229
259
|
"CreateCertificateFromCsr":{
|
|
230
260
|
"name":"CreateCertificateFromCsr",
|
|
231
261
|
"http":{
|
|
@@ -242,6 +272,24 @@
|
|
|
242
272
|
{"shape":"InternalFailureException"}
|
|
243
273
|
]
|
|
244
274
|
},
|
|
275
|
+
"CreateDynamicThingGroup":{
|
|
276
|
+
"name":"CreateDynamicThingGroup",
|
|
277
|
+
"http":{
|
|
278
|
+
"method":"POST",
|
|
279
|
+
"requestUri":"/dynamic-thing-groups/{thingGroupName}"
|
|
280
|
+
},
|
|
281
|
+
"input":{"shape":"CreateDynamicThingGroupRequest"},
|
|
282
|
+
"output":{"shape":"CreateDynamicThingGroupResponse"},
|
|
283
|
+
"errors":[
|
|
284
|
+
{"shape":"InvalidRequestException"},
|
|
285
|
+
{"shape":"ResourceAlreadyExistsException"},
|
|
286
|
+
{"shape":"ResourceNotFoundException"},
|
|
287
|
+
{"shape":"ThrottlingException"},
|
|
288
|
+
{"shape":"InternalFailureException"},
|
|
289
|
+
{"shape":"InvalidQueryException"},
|
|
290
|
+
{"shape":"LimitExceededException"}
|
|
291
|
+
]
|
|
292
|
+
},
|
|
245
293
|
"CreateJob":{
|
|
246
294
|
"name":"CreateJob",
|
|
247
295
|
"http":{
|
|
@@ -460,7 +508,8 @@
|
|
|
460
508
|
{"shape":"InternalException"},
|
|
461
509
|
{"shape":"InvalidRequestException"},
|
|
462
510
|
{"shape":"ResourceAlreadyExistsException"},
|
|
463
|
-
{"shape":"ServiceUnavailableException"}
|
|
511
|
+
{"shape":"ServiceUnavailableException"},
|
|
512
|
+
{"shape":"ConflictingResourceUpdateException"}
|
|
464
513
|
]
|
|
465
514
|
},
|
|
466
515
|
"DeleteAccountAuditConfiguration":{
|
|
@@ -496,6 +545,21 @@
|
|
|
496
545
|
{"shape":"InternalFailureException"}
|
|
497
546
|
]
|
|
498
547
|
},
|
|
548
|
+
"DeleteBillingGroup":{
|
|
549
|
+
"name":"DeleteBillingGroup",
|
|
550
|
+
"http":{
|
|
551
|
+
"method":"DELETE",
|
|
552
|
+
"requestUri":"/billing-groups/{billingGroupName}"
|
|
553
|
+
},
|
|
554
|
+
"input":{"shape":"DeleteBillingGroupRequest"},
|
|
555
|
+
"output":{"shape":"DeleteBillingGroupResponse"},
|
|
556
|
+
"errors":[
|
|
557
|
+
{"shape":"InvalidRequestException"},
|
|
558
|
+
{"shape":"VersionConflictException"},
|
|
559
|
+
{"shape":"ThrottlingException"},
|
|
560
|
+
{"shape":"InternalFailureException"}
|
|
561
|
+
]
|
|
562
|
+
},
|
|
499
563
|
"DeleteCACertificate":{
|
|
500
564
|
"name":"DeleteCACertificate",
|
|
501
565
|
"http":{
|
|
@@ -532,6 +596,21 @@
|
|
|
532
596
|
{"shape":"ResourceNotFoundException"}
|
|
533
597
|
]
|
|
534
598
|
},
|
|
599
|
+
"DeleteDynamicThingGroup":{
|
|
600
|
+
"name":"DeleteDynamicThingGroup",
|
|
601
|
+
"http":{
|
|
602
|
+
"method":"DELETE",
|
|
603
|
+
"requestUri":"/dynamic-thing-groups/{thingGroupName}"
|
|
604
|
+
},
|
|
605
|
+
"input":{"shape":"DeleteDynamicThingGroupRequest"},
|
|
606
|
+
"output":{"shape":"DeleteDynamicThingGroupResponse"},
|
|
607
|
+
"errors":[
|
|
608
|
+
{"shape":"InvalidRequestException"},
|
|
609
|
+
{"shape":"VersionConflictException"},
|
|
610
|
+
{"shape":"ThrottlingException"},
|
|
611
|
+
{"shape":"InternalFailureException"}
|
|
612
|
+
]
|
|
613
|
+
},
|
|
535
614
|
"DeleteJob":{
|
|
536
615
|
"name":"DeleteJob",
|
|
537
616
|
"http":{
|
|
@@ -758,7 +837,8 @@
|
|
|
758
837
|
{"shape":"InternalException"},
|
|
759
838
|
{"shape":"InvalidRequestException"},
|
|
760
839
|
{"shape":"ServiceUnavailableException"},
|
|
761
|
-
{"shape":"UnauthorizedException"}
|
|
840
|
+
{"shape":"UnauthorizedException"},
|
|
841
|
+
{"shape":"ConflictingResourceUpdateException"}
|
|
762
842
|
]
|
|
763
843
|
},
|
|
764
844
|
"DeleteV2LoggingLevel":{
|
|
@@ -836,6 +916,21 @@
|
|
|
836
916
|
{"shape":"InternalFailureException"}
|
|
837
917
|
]
|
|
838
918
|
},
|
|
919
|
+
"DescribeBillingGroup":{
|
|
920
|
+
"name":"DescribeBillingGroup",
|
|
921
|
+
"http":{
|
|
922
|
+
"method":"GET",
|
|
923
|
+
"requestUri":"/billing-groups/{billingGroupName}"
|
|
924
|
+
},
|
|
925
|
+
"input":{"shape":"DescribeBillingGroupRequest"},
|
|
926
|
+
"output":{"shape":"DescribeBillingGroupResponse"},
|
|
927
|
+
"errors":[
|
|
928
|
+
{"shape":"InvalidRequestException"},
|
|
929
|
+
{"shape":"ThrottlingException"},
|
|
930
|
+
{"shape":"InternalFailureException"},
|
|
931
|
+
{"shape":"ResourceNotFoundException"}
|
|
932
|
+
]
|
|
933
|
+
},
|
|
839
934
|
"DescribeCACertificate":{
|
|
840
935
|
"name":"DescribeCACertificate",
|
|
841
936
|
"http":{
|
|
@@ -1167,7 +1262,8 @@
|
|
|
1167
1262
|
{"shape":"InternalException"},
|
|
1168
1263
|
{"shape":"InvalidRequestException"},
|
|
1169
1264
|
{"shape":"ServiceUnavailableException"},
|
|
1170
|
-
{"shape":"UnauthorizedException"}
|
|
1265
|
+
{"shape":"UnauthorizedException"},
|
|
1266
|
+
{"shape":"ConflictingResourceUpdateException"}
|
|
1171
1267
|
]
|
|
1172
1268
|
},
|
|
1173
1269
|
"EnableTopicRule":{
|
|
@@ -1181,7 +1277,8 @@
|
|
|
1181
1277
|
{"shape":"InternalException"},
|
|
1182
1278
|
{"shape":"InvalidRequestException"},
|
|
1183
1279
|
{"shape":"ServiceUnavailableException"},
|
|
1184
|
-
{"shape":"UnauthorizedException"}
|
|
1280
|
+
{"shape":"UnauthorizedException"},
|
|
1281
|
+
{"shape":"ConflictingResourceUpdateException"}
|
|
1185
1282
|
]
|
|
1186
1283
|
},
|
|
1187
1284
|
"GetEffectivePolicies":{
|
|
@@ -1420,6 +1517,21 @@
|
|
|
1420
1517
|
{"shape":"InternalFailureException"}
|
|
1421
1518
|
]
|
|
1422
1519
|
},
|
|
1520
|
+
"ListBillingGroups":{
|
|
1521
|
+
"name":"ListBillingGroups",
|
|
1522
|
+
"http":{
|
|
1523
|
+
"method":"GET",
|
|
1524
|
+
"requestUri":"/billing-groups"
|
|
1525
|
+
},
|
|
1526
|
+
"input":{"shape":"ListBillingGroupsRequest"},
|
|
1527
|
+
"output":{"shape":"ListBillingGroupsResponse"},
|
|
1528
|
+
"errors":[
|
|
1529
|
+
{"shape":"InvalidRequestException"},
|
|
1530
|
+
{"shape":"InternalFailureException"},
|
|
1531
|
+
{"shape":"ResourceNotFoundException"},
|
|
1532
|
+
{"shape":"ThrottlingException"}
|
|
1533
|
+
]
|
|
1534
|
+
},
|
|
1423
1535
|
"ListCACertificates":{
|
|
1424
1536
|
"name":"ListCACertificates",
|
|
1425
1537
|
"http":{
|
|
@@ -1722,6 +1834,21 @@
|
|
|
1722
1834
|
{"shape":"InternalFailureException"}
|
|
1723
1835
|
]
|
|
1724
1836
|
},
|
|
1837
|
+
"ListTagsForResource":{
|
|
1838
|
+
"name":"ListTagsForResource",
|
|
1839
|
+
"http":{
|
|
1840
|
+
"method":"GET",
|
|
1841
|
+
"requestUri":"/tags"
|
|
1842
|
+
},
|
|
1843
|
+
"input":{"shape":"ListTagsForResourceRequest"},
|
|
1844
|
+
"output":{"shape":"ListTagsForResourceResponse"},
|
|
1845
|
+
"errors":[
|
|
1846
|
+
{"shape":"InvalidRequestException"},
|
|
1847
|
+
{"shape":"InternalFailureException"},
|
|
1848
|
+
{"shape":"ResourceNotFoundException"},
|
|
1849
|
+
{"shape":"ThrottlingException"}
|
|
1850
|
+
]
|
|
1851
|
+
},
|
|
1725
1852
|
"ListTargetsForPolicy":{
|
|
1726
1853
|
"name":"ListTargetsForPolicy",
|
|
1727
1854
|
"http":{
|
|
@@ -1862,6 +1989,21 @@
|
|
|
1862
1989
|
{"shape":"InternalFailureException"}
|
|
1863
1990
|
]
|
|
1864
1991
|
},
|
|
1992
|
+
"ListThingsInBillingGroup":{
|
|
1993
|
+
"name":"ListThingsInBillingGroup",
|
|
1994
|
+
"http":{
|
|
1995
|
+
"method":"GET",
|
|
1996
|
+
"requestUri":"/billing-groups/{billingGroupName}/things"
|
|
1997
|
+
},
|
|
1998
|
+
"input":{"shape":"ListThingsInBillingGroupRequest"},
|
|
1999
|
+
"output":{"shape":"ListThingsInBillingGroupResponse"},
|
|
2000
|
+
"errors":[
|
|
2001
|
+
{"shape":"InvalidRequestException"},
|
|
2002
|
+
{"shape":"InternalFailureException"},
|
|
2003
|
+
{"shape":"ResourceNotFoundException"},
|
|
2004
|
+
{"shape":"ThrottlingException"}
|
|
2005
|
+
]
|
|
2006
|
+
},
|
|
1865
2007
|
"ListThingsInThingGroup":{
|
|
1866
2008
|
"name":"ListThingsInThingGroup",
|
|
1867
2009
|
"http":{
|
|
@@ -1994,6 +2136,21 @@
|
|
|
1994
2136
|
{"shape":"InternalFailureException"}
|
|
1995
2137
|
]
|
|
1996
2138
|
},
|
|
2139
|
+
"RemoveThingFromBillingGroup":{
|
|
2140
|
+
"name":"RemoveThingFromBillingGroup",
|
|
2141
|
+
"http":{
|
|
2142
|
+
"method":"PUT",
|
|
2143
|
+
"requestUri":"/billing-groups/removeThingFromBillingGroup"
|
|
2144
|
+
},
|
|
2145
|
+
"input":{"shape":"RemoveThingFromBillingGroupRequest"},
|
|
2146
|
+
"output":{"shape":"RemoveThingFromBillingGroupResponse"},
|
|
2147
|
+
"errors":[
|
|
2148
|
+
{"shape":"InvalidRequestException"},
|
|
2149
|
+
{"shape":"ThrottlingException"},
|
|
2150
|
+
{"shape":"InternalFailureException"},
|
|
2151
|
+
{"shape":"ResourceNotFoundException"}
|
|
2152
|
+
]
|
|
2153
|
+
},
|
|
1997
2154
|
"RemoveThingFromThingGroup":{
|
|
1998
2155
|
"name":"RemoveThingFromThingGroup",
|
|
1999
2156
|
"http":{
|
|
@@ -2021,7 +2178,8 @@
|
|
|
2021
2178
|
{"shape":"InternalException"},
|
|
2022
2179
|
{"shape":"InvalidRequestException"},
|
|
2023
2180
|
{"shape":"ServiceUnavailableException"},
|
|
2024
|
-
{"shape":"UnauthorizedException"}
|
|
2181
|
+
{"shape":"UnauthorizedException"},
|
|
2182
|
+
{"shape":"ConflictingResourceUpdateException"}
|
|
2025
2183
|
]
|
|
2026
2184
|
},
|
|
2027
2185
|
"SearchIndex":{
|
|
@@ -2163,6 +2321,22 @@
|
|
|
2163
2321
|
{"shape":"ResourceNotFoundException"}
|
|
2164
2322
|
]
|
|
2165
2323
|
},
|
|
2324
|
+
"TagResource":{
|
|
2325
|
+
"name":"TagResource",
|
|
2326
|
+
"http":{
|
|
2327
|
+
"method":"POST",
|
|
2328
|
+
"requestUri":"/tags"
|
|
2329
|
+
},
|
|
2330
|
+
"input":{"shape":"TagResourceRequest"},
|
|
2331
|
+
"output":{"shape":"TagResourceResponse"},
|
|
2332
|
+
"errors":[
|
|
2333
|
+
{"shape":"InvalidRequestException"},
|
|
2334
|
+
{"shape":"InternalFailureException"},
|
|
2335
|
+
{"shape":"ResourceNotFoundException"},
|
|
2336
|
+
{"shape":"ThrottlingException"},
|
|
2337
|
+
{"shape":"LimitExceededException"}
|
|
2338
|
+
]
|
|
2339
|
+
},
|
|
2166
2340
|
"TestAuthorization":{
|
|
2167
2341
|
"name":"TestAuthorization",
|
|
2168
2342
|
"http":{
|
|
@@ -2218,6 +2392,21 @@
|
|
|
2218
2392
|
{"shape":"InternalFailureException"}
|
|
2219
2393
|
]
|
|
2220
2394
|
},
|
|
2395
|
+
"UntagResource":{
|
|
2396
|
+
"name":"UntagResource",
|
|
2397
|
+
"http":{
|
|
2398
|
+
"method":"POST",
|
|
2399
|
+
"requestUri":"/untag"
|
|
2400
|
+
},
|
|
2401
|
+
"input":{"shape":"UntagResourceRequest"},
|
|
2402
|
+
"output":{"shape":"UntagResourceResponse"},
|
|
2403
|
+
"errors":[
|
|
2404
|
+
{"shape":"InvalidRequestException"},
|
|
2405
|
+
{"shape":"InternalFailureException"},
|
|
2406
|
+
{"shape":"ResourceNotFoundException"},
|
|
2407
|
+
{"shape":"ThrottlingException"}
|
|
2408
|
+
]
|
|
2409
|
+
},
|
|
2221
2410
|
"UpdateAccountAuditConfiguration":{
|
|
2222
2411
|
"name":"UpdateAccountAuditConfiguration",
|
|
2223
2412
|
"http":{
|
|
@@ -2250,6 +2439,22 @@
|
|
|
2250
2439
|
{"shape":"InternalFailureException"}
|
|
2251
2440
|
]
|
|
2252
2441
|
},
|
|
2442
|
+
"UpdateBillingGroup":{
|
|
2443
|
+
"name":"UpdateBillingGroup",
|
|
2444
|
+
"http":{
|
|
2445
|
+
"method":"PATCH",
|
|
2446
|
+
"requestUri":"/billing-groups/{billingGroupName}"
|
|
2447
|
+
},
|
|
2448
|
+
"input":{"shape":"UpdateBillingGroupRequest"},
|
|
2449
|
+
"output":{"shape":"UpdateBillingGroupResponse"},
|
|
2450
|
+
"errors":[
|
|
2451
|
+
{"shape":"InvalidRequestException"},
|
|
2452
|
+
{"shape":"VersionConflictException"},
|
|
2453
|
+
{"shape":"ThrottlingException"},
|
|
2454
|
+
{"shape":"InternalFailureException"},
|
|
2455
|
+
{"shape":"ResourceNotFoundException"}
|
|
2456
|
+
]
|
|
2457
|
+
},
|
|
2253
2458
|
"UpdateCACertificate":{
|
|
2254
2459
|
"name":"UpdateCACertificate",
|
|
2255
2460
|
"http":{
|
|
@@ -2283,6 +2488,23 @@
|
|
|
2283
2488
|
{"shape":"InternalFailureException"}
|
|
2284
2489
|
]
|
|
2285
2490
|
},
|
|
2491
|
+
"UpdateDynamicThingGroup":{
|
|
2492
|
+
"name":"UpdateDynamicThingGroup",
|
|
2493
|
+
"http":{
|
|
2494
|
+
"method":"PATCH",
|
|
2495
|
+
"requestUri":"/dynamic-thing-groups/{thingGroupName}"
|
|
2496
|
+
},
|
|
2497
|
+
"input":{"shape":"UpdateDynamicThingGroupRequest"},
|
|
2498
|
+
"output":{"shape":"UpdateDynamicThingGroupResponse"},
|
|
2499
|
+
"errors":[
|
|
2500
|
+
{"shape":"InvalidRequestException"},
|
|
2501
|
+
{"shape":"VersionConflictException"},
|
|
2502
|
+
{"shape":"ThrottlingException"},
|
|
2503
|
+
{"shape":"InternalFailureException"},
|
|
2504
|
+
{"shape":"ResourceNotFoundException"},
|
|
2505
|
+
{"shape":"InvalidQueryException"}
|
|
2506
|
+
]
|
|
2507
|
+
},
|
|
2286
2508
|
"UpdateEventConfigurations":{
|
|
2287
2509
|
"name":"UpdateEventConfigurations",
|
|
2288
2510
|
"http":{
|
|
@@ -2313,6 +2535,20 @@
|
|
|
2313
2535
|
{"shape":"InternalFailureException"}
|
|
2314
2536
|
]
|
|
2315
2537
|
},
|
|
2538
|
+
"UpdateJob":{
|
|
2539
|
+
"name":"UpdateJob",
|
|
2540
|
+
"http":{
|
|
2541
|
+
"method":"PATCH",
|
|
2542
|
+
"requestUri":"/jobs/{jobId}"
|
|
2543
|
+
},
|
|
2544
|
+
"input":{"shape":"UpdateJobRequest"},
|
|
2545
|
+
"errors":[
|
|
2546
|
+
{"shape":"InvalidRequestException"},
|
|
2547
|
+
{"shape":"ResourceNotFoundException"},
|
|
2548
|
+
{"shape":"ThrottlingException"},
|
|
2549
|
+
{"shape":"ServiceUnavailableException"}
|
|
2550
|
+
]
|
|
2551
|
+
},
|
|
2316
2552
|
"UpdateRoleAlias":{
|
|
2317
2553
|
"name":"UpdateRoleAlias",
|
|
2318
2554
|
"http":{
|
|
@@ -2443,6 +2679,41 @@
|
|
|
2443
2679
|
}
|
|
2444
2680
|
},
|
|
2445
2681
|
"shapes":{
|
|
2682
|
+
"AbortAction":{
|
|
2683
|
+
"type":"string",
|
|
2684
|
+
"enum":["CANCEL"]
|
|
2685
|
+
},
|
|
2686
|
+
"AbortConfig":{
|
|
2687
|
+
"type":"structure",
|
|
2688
|
+
"required":["criteriaList"],
|
|
2689
|
+
"members":{
|
|
2690
|
+
"criteriaList":{"shape":"AbortCriteriaList"}
|
|
2691
|
+
}
|
|
2692
|
+
},
|
|
2693
|
+
"AbortCriteria":{
|
|
2694
|
+
"type":"structure",
|
|
2695
|
+
"required":[
|
|
2696
|
+
"failureType",
|
|
2697
|
+
"action",
|
|
2698
|
+
"thresholdPercentage",
|
|
2699
|
+
"minNumberOfExecutedThings"
|
|
2700
|
+
],
|
|
2701
|
+
"members":{
|
|
2702
|
+
"failureType":{"shape":"JobExecutionFailureType"},
|
|
2703
|
+
"action":{"shape":"AbortAction"},
|
|
2704
|
+
"thresholdPercentage":{"shape":"AbortThresholdPercentage"},
|
|
2705
|
+
"minNumberOfExecutedThings":{"shape":"MinimumNumberOfExecutedThings"}
|
|
2706
|
+
}
|
|
2707
|
+
},
|
|
2708
|
+
"AbortCriteriaList":{
|
|
2709
|
+
"type":"list",
|
|
2710
|
+
"member":{"shape":"AbortCriteria"},
|
|
2711
|
+
"min":1
|
|
2712
|
+
},
|
|
2713
|
+
"AbortThresholdPercentage":{
|
|
2714
|
+
"type":"double",
|
|
2715
|
+
"max":100
|
|
2716
|
+
},
|
|
2446
2717
|
"AcceptCertificateTransferRequest":{
|
|
2447
2718
|
"type":"structure",
|
|
2448
2719
|
"required":["certificateId"],
|
|
@@ -2510,13 +2781,28 @@
|
|
|
2510
2781
|
"type":"list",
|
|
2511
2782
|
"member":{"shape":"ActiveViolation"}
|
|
2512
2783
|
},
|
|
2784
|
+
"AddThingToBillingGroupRequest":{
|
|
2785
|
+
"type":"structure",
|
|
2786
|
+
"members":{
|
|
2787
|
+
"billingGroupName":{"shape":"BillingGroupName"},
|
|
2788
|
+
"billingGroupArn":{"shape":"BillingGroupArn"},
|
|
2789
|
+
"thingName":{"shape":"ThingName"},
|
|
2790
|
+
"thingArn":{"shape":"ThingArn"}
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2793
|
+
"AddThingToBillingGroupResponse":{
|
|
2794
|
+
"type":"structure",
|
|
2795
|
+
"members":{
|
|
2796
|
+
}
|
|
2797
|
+
},
|
|
2513
2798
|
"AddThingToThingGroupRequest":{
|
|
2514
2799
|
"type":"structure",
|
|
2515
2800
|
"members":{
|
|
2516
2801
|
"thingGroupName":{"shape":"ThingGroupName"},
|
|
2517
2802
|
"thingGroupArn":{"shape":"ThingGroupArn"},
|
|
2518
2803
|
"thingName":{"shape":"ThingName"},
|
|
2519
|
-
"thingArn":{"shape":"ThingArn"}
|
|
2804
|
+
"thingArn":{"shape":"ThingArn"},
|
|
2805
|
+
"overrideDynamicGroups":{"shape":"OverrideDynamicGroups"}
|
|
2520
2806
|
}
|
|
2521
2807
|
},
|
|
2522
2808
|
"AddThingToThingGroupResponse":{
|
|
@@ -2946,6 +3232,40 @@
|
|
|
2946
3232
|
"member":{"shape":"Behavior"},
|
|
2947
3233
|
"max":100
|
|
2948
3234
|
},
|
|
3235
|
+
"BillingGroupArn":{"type":"string"},
|
|
3236
|
+
"BillingGroupDescription":{
|
|
3237
|
+
"type":"string",
|
|
3238
|
+
"max":2028,
|
|
3239
|
+
"pattern":"[\\p{Graph}\\x20]*"
|
|
3240
|
+
},
|
|
3241
|
+
"BillingGroupId":{
|
|
3242
|
+
"type":"string",
|
|
3243
|
+
"max":128,
|
|
3244
|
+
"min":1,
|
|
3245
|
+
"pattern":"[a-zA-Z0-9\\-]+"
|
|
3246
|
+
},
|
|
3247
|
+
"BillingGroupMetadata":{
|
|
3248
|
+
"type":"structure",
|
|
3249
|
+
"members":{
|
|
3250
|
+
"creationDate":{"shape":"CreationDate"}
|
|
3251
|
+
}
|
|
3252
|
+
},
|
|
3253
|
+
"BillingGroupName":{
|
|
3254
|
+
"type":"string",
|
|
3255
|
+
"max":128,
|
|
3256
|
+
"min":1,
|
|
3257
|
+
"pattern":"[a-zA-Z0-9:_-]+"
|
|
3258
|
+
},
|
|
3259
|
+
"BillingGroupNameAndArnList":{
|
|
3260
|
+
"type":"list",
|
|
3261
|
+
"member":{"shape":"GroupNameAndArn"}
|
|
3262
|
+
},
|
|
3263
|
+
"BillingGroupProperties":{
|
|
3264
|
+
"type":"structure",
|
|
3265
|
+
"members":{
|
|
3266
|
+
"billingGroupDescription":{"shape":"BillingGroupDescription"}
|
|
3267
|
+
}
|
|
3268
|
+
},
|
|
2949
3269
|
"Boolean":{"type":"boolean"},
|
|
2950
3270
|
"BucketName":{"type":"string"},
|
|
2951
3271
|
"CACertificate":{
|
|
@@ -3046,6 +3366,7 @@
|
|
|
3046
3366
|
"location":"uri",
|
|
3047
3367
|
"locationName":"jobId"
|
|
3048
3368
|
},
|
|
3369
|
+
"reasonCode":{"shape":"ReasonCode"},
|
|
3049
3370
|
"comment":{"shape":"Comment"},
|
|
3050
3371
|
"force":{
|
|
3051
3372
|
"shape":"ForceFlag",
|
|
@@ -3280,6 +3601,7 @@
|
|
|
3280
3601
|
"error":{"httpStatusCode":409},
|
|
3281
3602
|
"exception":true
|
|
3282
3603
|
},
|
|
3604
|
+
"ConnectivityTimestamp":{"type":"long"},
|
|
3283
3605
|
"Count":{"type":"integer"},
|
|
3284
3606
|
"CreateAuthorizerRequest":{
|
|
3285
3607
|
"type":"structure",
|
|
@@ -3308,6 +3630,27 @@
|
|
|
3308
3630
|
"authorizerArn":{"shape":"AuthorizerArn"}
|
|
3309
3631
|
}
|
|
3310
3632
|
},
|
|
3633
|
+
"CreateBillingGroupRequest":{
|
|
3634
|
+
"type":"structure",
|
|
3635
|
+
"required":["billingGroupName"],
|
|
3636
|
+
"members":{
|
|
3637
|
+
"billingGroupName":{
|
|
3638
|
+
"shape":"BillingGroupName",
|
|
3639
|
+
"location":"uri",
|
|
3640
|
+
"locationName":"billingGroupName"
|
|
3641
|
+
},
|
|
3642
|
+
"billingGroupProperties":{"shape":"BillingGroupProperties"},
|
|
3643
|
+
"tags":{"shape":"TagList"}
|
|
3644
|
+
}
|
|
3645
|
+
},
|
|
3646
|
+
"CreateBillingGroupResponse":{
|
|
3647
|
+
"type":"structure",
|
|
3648
|
+
"members":{
|
|
3649
|
+
"billingGroupName":{"shape":"BillingGroupName"},
|
|
3650
|
+
"billingGroupArn":{"shape":"BillingGroupArn"},
|
|
3651
|
+
"billingGroupId":{"shape":"BillingGroupId"}
|
|
3652
|
+
}
|
|
3653
|
+
},
|
|
3311
3654
|
"CreateCertificateFromCsrRequest":{
|
|
3312
3655
|
"type":"structure",
|
|
3313
3656
|
"required":["certificateSigningRequest"],
|
|
@@ -3328,6 +3671,36 @@
|
|
|
3328
3671
|
"certificatePem":{"shape":"CertificatePem"}
|
|
3329
3672
|
}
|
|
3330
3673
|
},
|
|
3674
|
+
"CreateDynamicThingGroupRequest":{
|
|
3675
|
+
"type":"structure",
|
|
3676
|
+
"required":[
|
|
3677
|
+
"thingGroupName",
|
|
3678
|
+
"queryString"
|
|
3679
|
+
],
|
|
3680
|
+
"members":{
|
|
3681
|
+
"thingGroupName":{
|
|
3682
|
+
"shape":"ThingGroupName",
|
|
3683
|
+
"location":"uri",
|
|
3684
|
+
"locationName":"thingGroupName"
|
|
3685
|
+
},
|
|
3686
|
+
"thingGroupProperties":{"shape":"ThingGroupProperties"},
|
|
3687
|
+
"indexName":{"shape":"IndexName"},
|
|
3688
|
+
"queryString":{"shape":"QueryString"},
|
|
3689
|
+
"queryVersion":{"shape":"QueryVersion"},
|
|
3690
|
+
"tags":{"shape":"TagList"}
|
|
3691
|
+
}
|
|
3692
|
+
},
|
|
3693
|
+
"CreateDynamicThingGroupResponse":{
|
|
3694
|
+
"type":"structure",
|
|
3695
|
+
"members":{
|
|
3696
|
+
"thingGroupName":{"shape":"ThingGroupName"},
|
|
3697
|
+
"thingGroupArn":{"shape":"ThingGroupArn"},
|
|
3698
|
+
"thingGroupId":{"shape":"ThingGroupId"},
|
|
3699
|
+
"indexName":{"shape":"IndexName"},
|
|
3700
|
+
"queryString":{"shape":"QueryString"},
|
|
3701
|
+
"queryVersion":{"shape":"QueryVersion"}
|
|
3702
|
+
}
|
|
3703
|
+
},
|
|
3331
3704
|
"CreateJobRequest":{
|
|
3332
3705
|
"type":"structure",
|
|
3333
3706
|
"required":[
|
|
@@ -3347,7 +3720,9 @@
|
|
|
3347
3720
|
"presignedUrlConfig":{"shape":"PresignedUrlConfig"},
|
|
3348
3721
|
"targetSelection":{"shape":"TargetSelection"},
|
|
3349
3722
|
"jobExecutionsRolloutConfig":{"shape":"JobExecutionsRolloutConfig"},
|
|
3350
|
-
"
|
|
3723
|
+
"abortConfig":{"shape":"AbortConfig"},
|
|
3724
|
+
"timeoutConfig":{"shape":"TimeoutConfig"},
|
|
3725
|
+
"tags":{"shape":"TagList"}
|
|
3351
3726
|
}
|
|
3352
3727
|
},
|
|
3353
3728
|
"CreateJobResponse":{
|
|
@@ -3525,7 +3900,8 @@
|
|
|
3525
3900
|
},
|
|
3526
3901
|
"securityProfileDescription":{"shape":"SecurityProfileDescription"},
|
|
3527
3902
|
"behaviors":{"shape":"Behaviors"},
|
|
3528
|
-
"alertTargets":{"shape":"AlertTargets"}
|
|
3903
|
+
"alertTargets":{"shape":"AlertTargets"},
|
|
3904
|
+
"tags":{"shape":"TagList"}
|
|
3529
3905
|
}
|
|
3530
3906
|
},
|
|
3531
3907
|
"CreateSecurityProfileResponse":{
|
|
@@ -3572,7 +3948,8 @@
|
|
|
3572
3948
|
"locationName":"thingGroupName"
|
|
3573
3949
|
},
|
|
3574
3950
|
"parentGroupName":{"shape":"ThingGroupName"},
|
|
3575
|
-
"thingGroupProperties":{"shape":"ThingGroupProperties"}
|
|
3951
|
+
"thingGroupProperties":{"shape":"ThingGroupProperties"},
|
|
3952
|
+
"tags":{"shape":"TagList"}
|
|
3576
3953
|
}
|
|
3577
3954
|
},
|
|
3578
3955
|
"CreateThingGroupResponse":{
|
|
@@ -3593,7 +3970,8 @@
|
|
|
3593
3970
|
"locationName":"thingName"
|
|
3594
3971
|
},
|
|
3595
3972
|
"thingTypeName":{"shape":"ThingTypeName"},
|
|
3596
|
-
"attributePayload":{"shape":"AttributePayload"}
|
|
3973
|
+
"attributePayload":{"shape":"AttributePayload"},
|
|
3974
|
+
"billingGroupName":{"shape":"BillingGroupName"}
|
|
3597
3975
|
}
|
|
3598
3976
|
},
|
|
3599
3977
|
"CreateThingResponse":{
|
|
@@ -3613,7 +3991,8 @@
|
|
|
3613
3991
|
"location":"uri",
|
|
3614
3992
|
"locationName":"thingTypeName"
|
|
3615
3993
|
},
|
|
3616
|
-
"thingTypeProperties":{"shape":"ThingTypeProperties"}
|
|
3994
|
+
"thingTypeProperties":{"shape":"ThingTypeProperties"},
|
|
3995
|
+
"tags":{"shape":"TagList"}
|
|
3617
3996
|
}
|
|
3618
3997
|
},
|
|
3619
3998
|
"CreateThingTypeResponse":{
|
|
@@ -3708,6 +4087,27 @@
|
|
|
3708
4087
|
"members":{
|
|
3709
4088
|
}
|
|
3710
4089
|
},
|
|
4090
|
+
"DeleteBillingGroupRequest":{
|
|
4091
|
+
"type":"structure",
|
|
4092
|
+
"required":["billingGroupName"],
|
|
4093
|
+
"members":{
|
|
4094
|
+
"billingGroupName":{
|
|
4095
|
+
"shape":"BillingGroupName",
|
|
4096
|
+
"location":"uri",
|
|
4097
|
+
"locationName":"billingGroupName"
|
|
4098
|
+
},
|
|
4099
|
+
"expectedVersion":{
|
|
4100
|
+
"shape":"OptionalVersion",
|
|
4101
|
+
"location":"querystring",
|
|
4102
|
+
"locationName":"expectedVersion"
|
|
4103
|
+
}
|
|
4104
|
+
}
|
|
4105
|
+
},
|
|
4106
|
+
"DeleteBillingGroupResponse":{
|
|
4107
|
+
"type":"structure",
|
|
4108
|
+
"members":{
|
|
4109
|
+
}
|
|
4110
|
+
},
|
|
3711
4111
|
"DeleteCACertificateRequest":{
|
|
3712
4112
|
"type":"structure",
|
|
3713
4113
|
"required":["certificateId"],
|
|
@@ -3748,6 +4148,27 @@
|
|
|
3748
4148
|
"error":{"httpStatusCode":409},
|
|
3749
4149
|
"exception":true
|
|
3750
4150
|
},
|
|
4151
|
+
"DeleteDynamicThingGroupRequest":{
|
|
4152
|
+
"type":"structure",
|
|
4153
|
+
"required":["thingGroupName"],
|
|
4154
|
+
"members":{
|
|
4155
|
+
"thingGroupName":{
|
|
4156
|
+
"shape":"ThingGroupName",
|
|
4157
|
+
"location":"uri",
|
|
4158
|
+
"locationName":"thingGroupName"
|
|
4159
|
+
},
|
|
4160
|
+
"expectedVersion":{
|
|
4161
|
+
"shape":"OptionalVersion",
|
|
4162
|
+
"location":"querystring",
|
|
4163
|
+
"locationName":"expectedVersion"
|
|
4164
|
+
}
|
|
4165
|
+
}
|
|
4166
|
+
},
|
|
4167
|
+
"DeleteDynamicThingGroupResponse":{
|
|
4168
|
+
"type":"structure",
|
|
4169
|
+
"members":{
|
|
4170
|
+
}
|
|
4171
|
+
},
|
|
3751
4172
|
"DeleteJobExecutionRequest":{
|
|
3752
4173
|
"type":"structure",
|
|
3753
4174
|
"required":[
|
|
@@ -4097,6 +4518,28 @@
|
|
|
4097
4518
|
"authorizerDescription":{"shape":"AuthorizerDescription"}
|
|
4098
4519
|
}
|
|
4099
4520
|
},
|
|
4521
|
+
"DescribeBillingGroupRequest":{
|
|
4522
|
+
"type":"structure",
|
|
4523
|
+
"required":["billingGroupName"],
|
|
4524
|
+
"members":{
|
|
4525
|
+
"billingGroupName":{
|
|
4526
|
+
"shape":"BillingGroupName",
|
|
4527
|
+
"location":"uri",
|
|
4528
|
+
"locationName":"billingGroupName"
|
|
4529
|
+
}
|
|
4530
|
+
}
|
|
4531
|
+
},
|
|
4532
|
+
"DescribeBillingGroupResponse":{
|
|
4533
|
+
"type":"structure",
|
|
4534
|
+
"members":{
|
|
4535
|
+
"billingGroupName":{"shape":"BillingGroupName"},
|
|
4536
|
+
"billingGroupId":{"shape":"BillingGroupId"},
|
|
4537
|
+
"billingGroupArn":{"shape":"BillingGroupArn"},
|
|
4538
|
+
"version":{"shape":"Version"},
|
|
4539
|
+
"billingGroupProperties":{"shape":"BillingGroupProperties"},
|
|
4540
|
+
"billingGroupMetadata":{"shape":"BillingGroupMetadata"}
|
|
4541
|
+
}
|
|
4542
|
+
},
|
|
4100
4543
|
"DescribeCACertificateRequest":{
|
|
4101
4544
|
"type":"structure",
|
|
4102
4545
|
"required":["certificateId"],
|
|
@@ -4338,7 +4781,11 @@
|
|
|
4338
4781
|
"thingGroupArn":{"shape":"ThingGroupArn"},
|
|
4339
4782
|
"version":{"shape":"Version"},
|
|
4340
4783
|
"thingGroupProperties":{"shape":"ThingGroupProperties"},
|
|
4341
|
-
"thingGroupMetadata":{"shape":"ThingGroupMetadata"}
|
|
4784
|
+
"thingGroupMetadata":{"shape":"ThingGroupMetadata"},
|
|
4785
|
+
"indexName":{"shape":"IndexName"},
|
|
4786
|
+
"queryString":{"shape":"QueryString"},
|
|
4787
|
+
"queryVersion":{"shape":"QueryVersion"},
|
|
4788
|
+
"status":{"shape":"DynamicGroupStatus"}
|
|
4342
4789
|
}
|
|
4343
4790
|
},
|
|
4344
4791
|
"DescribeThingRegistrationTaskRequest":{
|
|
@@ -4389,7 +4836,8 @@
|
|
|
4389
4836
|
"thingArn":{"shape":"ThingArn"},
|
|
4390
4837
|
"thingTypeName":{"shape":"ThingTypeName"},
|
|
4391
4838
|
"attributes":{"shape":"Attributes"},
|
|
4392
|
-
"version":{"shape":"Version"}
|
|
4839
|
+
"version":{"shape":"Version"},
|
|
4840
|
+
"billingGroupName":{"shape":"BillingGroupName"}
|
|
4393
4841
|
}
|
|
4394
4842
|
},
|
|
4395
4843
|
"DescribeThingTypeRequest":{
|
|
@@ -4532,6 +4980,14 @@
|
|
|
4532
4980
|
}
|
|
4533
4981
|
},
|
|
4534
4982
|
"DurationSeconds":{"type":"integer"},
|
|
4983
|
+
"DynamicGroupStatus":{
|
|
4984
|
+
"type":"string",
|
|
4985
|
+
"enum":[
|
|
4986
|
+
"ACTIVE",
|
|
4987
|
+
"BUILDING",
|
|
4988
|
+
"REBUILDING"
|
|
4989
|
+
]
|
|
4990
|
+
},
|
|
4535
4991
|
"DynamoDBAction":{
|
|
4536
4992
|
"type":"structure",
|
|
4537
4993
|
"required":[
|
|
@@ -4665,6 +5121,19 @@
|
|
|
4665
5121
|
"policies":{"shape":"Policies"}
|
|
4666
5122
|
}
|
|
4667
5123
|
},
|
|
5124
|
+
"ExponentialRolloutRate":{
|
|
5125
|
+
"type":"structure",
|
|
5126
|
+
"required":[
|
|
5127
|
+
"baseRatePerMinute",
|
|
5128
|
+
"incrementFactor",
|
|
5129
|
+
"rateIncreaseCriteria"
|
|
5130
|
+
],
|
|
5131
|
+
"members":{
|
|
5132
|
+
"baseRatePerMinute":{"shape":"RolloutRatePerMinute"},
|
|
5133
|
+
"incrementFactor":{"shape":"IncrementFactor"},
|
|
5134
|
+
"rateIncreaseCriteria":{"shape":"RateIncreaseCriteria"}
|
|
5135
|
+
}
|
|
5136
|
+
},
|
|
4668
5137
|
"FailedChecksCount":{"type":"integer"},
|
|
4669
5138
|
"FailedThings":{"type":"integer"},
|
|
4670
5139
|
"FileId":{
|
|
@@ -4900,6 +5369,11 @@
|
|
|
4900
5369
|
"InProgressChecksCount":{"type":"integer"},
|
|
4901
5370
|
"InProgressThings":{"type":"integer"},
|
|
4902
5371
|
"InProgressTimeoutInMinutes":{"type":"long"},
|
|
5372
|
+
"IncrementFactor":{
|
|
5373
|
+
"type":"double",
|
|
5374
|
+
"max":5,
|
|
5375
|
+
"min":1
|
|
5376
|
+
},
|
|
4903
5377
|
"IndexName":{
|
|
4904
5378
|
"type":"string",
|
|
4905
5379
|
"max":128,
|
|
@@ -4997,11 +5471,13 @@
|
|
|
4997
5471
|
"targetSelection":{"shape":"TargetSelection"},
|
|
4998
5472
|
"status":{"shape":"JobStatus"},
|
|
4999
5473
|
"forceCanceled":{"shape":"Forced"},
|
|
5474
|
+
"reasonCode":{"shape":"ReasonCode"},
|
|
5000
5475
|
"comment":{"shape":"Comment"},
|
|
5001
5476
|
"targets":{"shape":"JobTargets"},
|
|
5002
5477
|
"description":{"shape":"JobDescription"},
|
|
5003
5478
|
"presignedUrlConfig":{"shape":"PresignedUrlConfig"},
|
|
5004
5479
|
"jobExecutionsRolloutConfig":{"shape":"JobExecutionsRolloutConfig"},
|
|
5480
|
+
"abortConfig":{"shape":"AbortConfig"},
|
|
5005
5481
|
"createdAt":{"shape":"DateType"},
|
|
5006
5482
|
"lastUpdatedAt":{"shape":"DateType"},
|
|
5007
5483
|
"completedAt":{"shape":"DateType"},
|
|
@@ -5040,6 +5516,15 @@
|
|
|
5040
5516
|
"approximateSecondsBeforeTimedOut":{"shape":"ApproximateSecondsBeforeTimedOut"}
|
|
5041
5517
|
}
|
|
5042
5518
|
},
|
|
5519
|
+
"JobExecutionFailureType":{
|
|
5520
|
+
"type":"string",
|
|
5521
|
+
"enum":[
|
|
5522
|
+
"FAILED",
|
|
5523
|
+
"REJECTED",
|
|
5524
|
+
"TIMED_OUT",
|
|
5525
|
+
"ALL"
|
|
5526
|
+
]
|
|
5527
|
+
},
|
|
5043
5528
|
"JobExecutionStatus":{
|
|
5044
5529
|
"type":"string",
|
|
5045
5530
|
"enum":[
|
|
@@ -5094,7 +5579,8 @@
|
|
|
5094
5579
|
"JobExecutionsRolloutConfig":{
|
|
5095
5580
|
"type":"structure",
|
|
5096
5581
|
"members":{
|
|
5097
|
-
"maximumPerMinute":{"shape":"MaxJobExecutionsPerMin"}
|
|
5582
|
+
"maximumPerMinute":{"shape":"MaxJobExecutionsPerMin"},
|
|
5583
|
+
"exponentialRate":{"shape":"ExponentialRolloutRate"}
|
|
5098
5584
|
}
|
|
5099
5585
|
},
|
|
5100
5586
|
"JobId":{
|
|
@@ -5362,6 +5848,33 @@
|
|
|
5362
5848
|
"nextMarker":{"shape":"Marker"}
|
|
5363
5849
|
}
|
|
5364
5850
|
},
|
|
5851
|
+
"ListBillingGroupsRequest":{
|
|
5852
|
+
"type":"structure",
|
|
5853
|
+
"members":{
|
|
5854
|
+
"nextToken":{
|
|
5855
|
+
"shape":"NextToken",
|
|
5856
|
+
"location":"querystring",
|
|
5857
|
+
"locationName":"nextToken"
|
|
5858
|
+
},
|
|
5859
|
+
"maxResults":{
|
|
5860
|
+
"shape":"RegistryMaxResults",
|
|
5861
|
+
"location":"querystring",
|
|
5862
|
+
"locationName":"maxResults"
|
|
5863
|
+
},
|
|
5864
|
+
"namePrefixFilter":{
|
|
5865
|
+
"shape":"BillingGroupName",
|
|
5866
|
+
"location":"querystring",
|
|
5867
|
+
"locationName":"namePrefixFilter"
|
|
5868
|
+
}
|
|
5869
|
+
}
|
|
5870
|
+
},
|
|
5871
|
+
"ListBillingGroupsResponse":{
|
|
5872
|
+
"type":"structure",
|
|
5873
|
+
"members":{
|
|
5874
|
+
"billingGroups":{"shape":"BillingGroupNameAndArnList"},
|
|
5875
|
+
"nextToken":{"shape":"NextToken"}
|
|
5876
|
+
}
|
|
5877
|
+
},
|
|
5365
5878
|
"ListCACertificatesRequest":{
|
|
5366
5879
|
"type":"structure",
|
|
5367
5880
|
"members":{
|
|
@@ -5902,6 +6415,29 @@
|
|
|
5902
6415
|
"nextToken":{"shape":"NextToken"}
|
|
5903
6416
|
}
|
|
5904
6417
|
},
|
|
6418
|
+
"ListTagsForResourceRequest":{
|
|
6419
|
+
"type":"structure",
|
|
6420
|
+
"required":["resourceArn"],
|
|
6421
|
+
"members":{
|
|
6422
|
+
"resourceArn":{
|
|
6423
|
+
"shape":"ResourceArn",
|
|
6424
|
+
"location":"querystring",
|
|
6425
|
+
"locationName":"resourceArn"
|
|
6426
|
+
},
|
|
6427
|
+
"nextToken":{
|
|
6428
|
+
"shape":"NextToken",
|
|
6429
|
+
"location":"querystring",
|
|
6430
|
+
"locationName":"nextToken"
|
|
6431
|
+
}
|
|
6432
|
+
}
|
|
6433
|
+
},
|
|
6434
|
+
"ListTagsForResourceResponse":{
|
|
6435
|
+
"type":"structure",
|
|
6436
|
+
"members":{
|
|
6437
|
+
"tags":{"shape":"TagList"},
|
|
6438
|
+
"nextToken":{"shape":"NextToken"}
|
|
6439
|
+
}
|
|
6440
|
+
},
|
|
5905
6441
|
"ListTargetsForPolicyRequest":{
|
|
5906
6442
|
"type":"structure",
|
|
5907
6443
|
"required":["policyName"],
|
|
@@ -6131,6 +6667,34 @@
|
|
|
6131
6667
|
"nextToken":{"shape":"NextToken"}
|
|
6132
6668
|
}
|
|
6133
6669
|
},
|
|
6670
|
+
"ListThingsInBillingGroupRequest":{
|
|
6671
|
+
"type":"structure",
|
|
6672
|
+
"required":["billingGroupName"],
|
|
6673
|
+
"members":{
|
|
6674
|
+
"billingGroupName":{
|
|
6675
|
+
"shape":"BillingGroupName",
|
|
6676
|
+
"location":"uri",
|
|
6677
|
+
"locationName":"billingGroupName"
|
|
6678
|
+
},
|
|
6679
|
+
"nextToken":{
|
|
6680
|
+
"shape":"NextToken",
|
|
6681
|
+
"location":"querystring",
|
|
6682
|
+
"locationName":"nextToken"
|
|
6683
|
+
},
|
|
6684
|
+
"maxResults":{
|
|
6685
|
+
"shape":"RegistryMaxResults",
|
|
6686
|
+
"location":"querystring",
|
|
6687
|
+
"locationName":"maxResults"
|
|
6688
|
+
}
|
|
6689
|
+
}
|
|
6690
|
+
},
|
|
6691
|
+
"ListThingsInBillingGroupResponse":{
|
|
6692
|
+
"type":"structure",
|
|
6693
|
+
"members":{
|
|
6694
|
+
"things":{"shape":"ThingNameList"},
|
|
6695
|
+
"nextToken":{"shape":"NextToken"}
|
|
6696
|
+
}
|
|
6697
|
+
},
|
|
6134
6698
|
"ListThingsInThingGroupRequest":{
|
|
6135
6699
|
"type":"structure",
|
|
6136
6700
|
"required":["thingGroupName"],
|
|
@@ -6365,7 +6929,6 @@
|
|
|
6365
6929
|
},
|
|
6366
6930
|
"MaxJobExecutionsPerMin":{
|
|
6367
6931
|
"type":"integer",
|
|
6368
|
-
"max":1000,
|
|
6369
6932
|
"min":1
|
|
6370
6933
|
},
|
|
6371
6934
|
"MaxResults":{
|
|
@@ -6397,6 +6960,10 @@
|
|
|
6397
6960
|
"ports":{"shape":"Ports"}
|
|
6398
6961
|
}
|
|
6399
6962
|
},
|
|
6963
|
+
"MinimumNumberOfExecutedThings":{
|
|
6964
|
+
"type":"integer",
|
|
6965
|
+
"min":1
|
|
6966
|
+
},
|
|
6400
6967
|
"MissingContextValue":{"type":"string"},
|
|
6401
6968
|
"MissingContextValues":{
|
|
6402
6969
|
"type":"list",
|
|
@@ -6421,6 +6988,10 @@
|
|
|
6421
6988
|
"error":{"httpStatusCode":404},
|
|
6422
6989
|
"exception":true
|
|
6423
6990
|
},
|
|
6991
|
+
"NumberOfThings":{
|
|
6992
|
+
"type":"integer",
|
|
6993
|
+
"min":1
|
|
6994
|
+
},
|
|
6424
6995
|
"OTAUpdateArn":{"type":"string"},
|
|
6425
6996
|
"OTAUpdateDescription":{
|
|
6426
6997
|
"type":"string",
|
|
@@ -6507,6 +7078,7 @@
|
|
|
6507
7078
|
"type":"list",
|
|
6508
7079
|
"member":{"shape":"OutgoingCertificate"}
|
|
6509
7080
|
},
|
|
7081
|
+
"OverrideDynamicGroups":{"type":"boolean"},
|
|
6510
7082
|
"PageSize":{
|
|
6511
7083
|
"type":"integer",
|
|
6512
7084
|
"max":250,
|
|
@@ -6650,6 +7222,18 @@
|
|
|
6650
7222
|
"QueuedThings":{"type":"integer"},
|
|
6651
7223
|
"RangeKeyField":{"type":"string"},
|
|
6652
7224
|
"RangeKeyValue":{"type":"string"},
|
|
7225
|
+
"RateIncreaseCriteria":{
|
|
7226
|
+
"type":"structure",
|
|
7227
|
+
"members":{
|
|
7228
|
+
"numberOfNotifiedThings":{"shape":"NumberOfThings"},
|
|
7229
|
+
"numberOfSucceededThings":{"shape":"NumberOfThings"}
|
|
7230
|
+
}
|
|
7231
|
+
},
|
|
7232
|
+
"ReasonCode":{
|
|
7233
|
+
"type":"string",
|
|
7234
|
+
"max":128,
|
|
7235
|
+
"pattern":"[\\p{Upper}\\p{Digit}_]+"
|
|
7236
|
+
},
|
|
6653
7237
|
"ReasonForNonCompliance":{"type":"string"},
|
|
6654
7238
|
"ReasonForNonComplianceCode":{"type":"string"},
|
|
6655
7239
|
"Recursive":{"type":"boolean"},
|
|
@@ -6784,6 +7368,20 @@
|
|
|
6784
7368
|
"member":{"shape":"RelatedResource"}
|
|
6785
7369
|
},
|
|
6786
7370
|
"RemoveAutoRegistration":{"type":"boolean"},
|
|
7371
|
+
"RemoveThingFromBillingGroupRequest":{
|
|
7372
|
+
"type":"structure",
|
|
7373
|
+
"members":{
|
|
7374
|
+
"billingGroupName":{"shape":"BillingGroupName"},
|
|
7375
|
+
"billingGroupArn":{"shape":"BillingGroupArn"},
|
|
7376
|
+
"thingName":{"shape":"ThingName"},
|
|
7377
|
+
"thingArn":{"shape":"ThingArn"}
|
|
7378
|
+
}
|
|
7379
|
+
},
|
|
7380
|
+
"RemoveThingFromBillingGroupResponse":{
|
|
7381
|
+
"type":"structure",
|
|
7382
|
+
"members":{
|
|
7383
|
+
}
|
|
7384
|
+
},
|
|
6787
7385
|
"RemoveThingFromThingGroupRequest":{
|
|
6788
7386
|
"type":"structure",
|
|
6789
7387
|
"members":{
|
|
@@ -6922,6 +7520,11 @@
|
|
|
6922
7520
|
"max":2048,
|
|
6923
7521
|
"min":20
|
|
6924
7522
|
},
|
|
7523
|
+
"RolloutRatePerMinute":{
|
|
7524
|
+
"type":"integer",
|
|
7525
|
+
"max":1000,
|
|
7526
|
+
"min":1
|
|
7527
|
+
},
|
|
6925
7528
|
"RuleArn":{"type":"string"},
|
|
6926
7529
|
"RuleName":{
|
|
6927
7530
|
"type":"string",
|
|
@@ -7367,6 +7970,39 @@
|
|
|
7367
7970
|
},
|
|
7368
7971
|
"SucceededThings":{"type":"integer"},
|
|
7369
7972
|
"TableName":{"type":"string"},
|
|
7973
|
+
"Tag":{
|
|
7974
|
+
"type":"structure",
|
|
7975
|
+
"members":{
|
|
7976
|
+
"Key":{"shape":"TagKey"},
|
|
7977
|
+
"Value":{"shape":"TagValue"}
|
|
7978
|
+
}
|
|
7979
|
+
},
|
|
7980
|
+
"TagKey":{"type":"string"},
|
|
7981
|
+
"TagKeyList":{
|
|
7982
|
+
"type":"list",
|
|
7983
|
+
"member":{"shape":"TagKey"}
|
|
7984
|
+
},
|
|
7985
|
+
"TagList":{
|
|
7986
|
+
"type":"list",
|
|
7987
|
+
"member":{"shape":"Tag"}
|
|
7988
|
+
},
|
|
7989
|
+
"TagResourceRequest":{
|
|
7990
|
+
"type":"structure",
|
|
7991
|
+
"required":[
|
|
7992
|
+
"resourceArn",
|
|
7993
|
+
"tags"
|
|
7994
|
+
],
|
|
7995
|
+
"members":{
|
|
7996
|
+
"resourceArn":{"shape":"ResourceArn"},
|
|
7997
|
+
"tags":{"shape":"TagList"}
|
|
7998
|
+
}
|
|
7999
|
+
},
|
|
8000
|
+
"TagResourceResponse":{
|
|
8001
|
+
"type":"structure",
|
|
8002
|
+
"members":{
|
|
8003
|
+
}
|
|
8004
|
+
},
|
|
8005
|
+
"TagValue":{"type":"string"},
|
|
7370
8006
|
"Target":{"type":"string"},
|
|
7371
8007
|
"TargetArn":{"type":"string"},
|
|
7372
8008
|
"TargetAuditCheckNames":{
|
|
@@ -7470,6 +8106,20 @@
|
|
|
7470
8106
|
"type":"list",
|
|
7471
8107
|
"member":{"shape":"ThingAttribute"}
|
|
7472
8108
|
},
|
|
8109
|
+
"ThingConnectivity":{
|
|
8110
|
+
"type":"structure",
|
|
8111
|
+
"members":{
|
|
8112
|
+
"connected":{"shape":"Boolean"},
|
|
8113
|
+
"timestamp":{"shape":"ConnectivityTimestamp"}
|
|
8114
|
+
}
|
|
8115
|
+
},
|
|
8116
|
+
"ThingConnectivityIndexingMode":{
|
|
8117
|
+
"type":"string",
|
|
8118
|
+
"enum":[
|
|
8119
|
+
"OFF",
|
|
8120
|
+
"STATUS"
|
|
8121
|
+
]
|
|
8122
|
+
},
|
|
7473
8123
|
"ThingDocument":{
|
|
7474
8124
|
"type":"structure",
|
|
7475
8125
|
"members":{
|
|
@@ -7478,7 +8128,8 @@
|
|
|
7478
8128
|
"thingTypeName":{"shape":"ThingTypeName"},
|
|
7479
8129
|
"thingGroupNames":{"shape":"ThingGroupNameList"},
|
|
7480
8130
|
"attributes":{"shape":"Attributes"},
|
|
7481
|
-
"shadow":{"shape":"JsonDocument"}
|
|
8131
|
+
"shadow":{"shape":"JsonDocument"},
|
|
8132
|
+
"connectivity":{"shape":"ThingConnectivity"}
|
|
7482
8133
|
}
|
|
7483
8134
|
},
|
|
7484
8135
|
"ThingDocumentList":{
|
|
@@ -7563,7 +8214,8 @@
|
|
|
7563
8214
|
"type":"structure",
|
|
7564
8215
|
"required":["thingIndexingMode"],
|
|
7565
8216
|
"members":{
|
|
7566
|
-
"thingIndexingMode":{"shape":"ThingIndexingMode"}
|
|
8217
|
+
"thingIndexingMode":{"shape":"ThingIndexingMode"},
|
|
8218
|
+
"thingConnectivityIndexingMode":{"shape":"ThingConnectivityIndexingMode"}
|
|
7567
8219
|
}
|
|
7568
8220
|
},
|
|
7569
8221
|
"ThingIndexingMode":{
|
|
@@ -7769,6 +8421,22 @@
|
|
|
7769
8421
|
"type":"long",
|
|
7770
8422
|
"min":0
|
|
7771
8423
|
},
|
|
8424
|
+
"UntagResourceRequest":{
|
|
8425
|
+
"type":"structure",
|
|
8426
|
+
"required":[
|
|
8427
|
+
"resourceArn",
|
|
8428
|
+
"tagKeys"
|
|
8429
|
+
],
|
|
8430
|
+
"members":{
|
|
8431
|
+
"resourceArn":{"shape":"ResourceArn"},
|
|
8432
|
+
"tagKeys":{"shape":"TagKeyList"}
|
|
8433
|
+
}
|
|
8434
|
+
},
|
|
8435
|
+
"UntagResourceResponse":{
|
|
8436
|
+
"type":"structure",
|
|
8437
|
+
"members":{
|
|
8438
|
+
}
|
|
8439
|
+
},
|
|
7772
8440
|
"UpdateAccountAuditConfigurationRequest":{
|
|
7773
8441
|
"type":"structure",
|
|
7774
8442
|
"members":{
|
|
@@ -7804,6 +8472,28 @@
|
|
|
7804
8472
|
"authorizerArn":{"shape":"AuthorizerArn"}
|
|
7805
8473
|
}
|
|
7806
8474
|
},
|
|
8475
|
+
"UpdateBillingGroupRequest":{
|
|
8476
|
+
"type":"structure",
|
|
8477
|
+
"required":[
|
|
8478
|
+
"billingGroupName",
|
|
8479
|
+
"billingGroupProperties"
|
|
8480
|
+
],
|
|
8481
|
+
"members":{
|
|
8482
|
+
"billingGroupName":{
|
|
8483
|
+
"shape":"BillingGroupName",
|
|
8484
|
+
"location":"uri",
|
|
8485
|
+
"locationName":"billingGroupName"
|
|
8486
|
+
},
|
|
8487
|
+
"billingGroupProperties":{"shape":"BillingGroupProperties"},
|
|
8488
|
+
"expectedVersion":{"shape":"OptionalVersion"}
|
|
8489
|
+
}
|
|
8490
|
+
},
|
|
8491
|
+
"UpdateBillingGroupResponse":{
|
|
8492
|
+
"type":"structure",
|
|
8493
|
+
"members":{
|
|
8494
|
+
"version":{"shape":"Version"}
|
|
8495
|
+
}
|
|
8496
|
+
},
|
|
7807
8497
|
"UpdateCACertificateRequest":{
|
|
7808
8498
|
"type":"structure",
|
|
7809
8499
|
"required":["certificateId"],
|
|
@@ -7846,6 +8536,31 @@
|
|
|
7846
8536
|
}
|
|
7847
8537
|
}
|
|
7848
8538
|
},
|
|
8539
|
+
"UpdateDynamicThingGroupRequest":{
|
|
8540
|
+
"type":"structure",
|
|
8541
|
+
"required":[
|
|
8542
|
+
"thingGroupName",
|
|
8543
|
+
"thingGroupProperties"
|
|
8544
|
+
],
|
|
8545
|
+
"members":{
|
|
8546
|
+
"thingGroupName":{
|
|
8547
|
+
"shape":"ThingGroupName",
|
|
8548
|
+
"location":"uri",
|
|
8549
|
+
"locationName":"thingGroupName"
|
|
8550
|
+
},
|
|
8551
|
+
"thingGroupProperties":{"shape":"ThingGroupProperties"},
|
|
8552
|
+
"expectedVersion":{"shape":"OptionalVersion"},
|
|
8553
|
+
"indexName":{"shape":"IndexName"},
|
|
8554
|
+
"queryString":{"shape":"QueryString"},
|
|
8555
|
+
"queryVersion":{"shape":"QueryVersion"}
|
|
8556
|
+
}
|
|
8557
|
+
},
|
|
8558
|
+
"UpdateDynamicThingGroupResponse":{
|
|
8559
|
+
"type":"structure",
|
|
8560
|
+
"members":{
|
|
8561
|
+
"version":{"shape":"Version"}
|
|
8562
|
+
}
|
|
8563
|
+
},
|
|
7849
8564
|
"UpdateEventConfigurationsRequest":{
|
|
7850
8565
|
"type":"structure",
|
|
7851
8566
|
"members":{
|
|
@@ -7869,6 +8584,22 @@
|
|
|
7869
8584
|
"members":{
|
|
7870
8585
|
}
|
|
7871
8586
|
},
|
|
8587
|
+
"UpdateJobRequest":{
|
|
8588
|
+
"type":"structure",
|
|
8589
|
+
"required":["jobId"],
|
|
8590
|
+
"members":{
|
|
8591
|
+
"jobId":{
|
|
8592
|
+
"shape":"JobId",
|
|
8593
|
+
"location":"uri",
|
|
8594
|
+
"locationName":"jobId"
|
|
8595
|
+
},
|
|
8596
|
+
"description":{"shape":"JobDescription"},
|
|
8597
|
+
"presignedUrlConfig":{"shape":"PresignedUrlConfig"},
|
|
8598
|
+
"jobExecutionsRolloutConfig":{"shape":"JobExecutionsRolloutConfig"},
|
|
8599
|
+
"abortConfig":{"shape":"AbortConfig"},
|
|
8600
|
+
"timeoutConfig":{"shape":"TimeoutConfig"}
|
|
8601
|
+
}
|
|
8602
|
+
},
|
|
7872
8603
|
"UpdateRoleAliasRequest":{
|
|
7873
8604
|
"type":"structure",
|
|
7874
8605
|
"required":["roleAlias"],
|
|
@@ -7992,7 +8723,8 @@
|
|
|
7992
8723
|
"members":{
|
|
7993
8724
|
"thingName":{"shape":"ThingName"},
|
|
7994
8725
|
"thingGroupsToAdd":{"shape":"ThingGroupList"},
|
|
7995
|
-
"thingGroupsToRemove":{"shape":"ThingGroupList"}
|
|
8726
|
+
"thingGroupsToRemove":{"shape":"ThingGroupList"},
|
|
8727
|
+
"overrideDynamicGroups":{"shape":"OverrideDynamicGroups"}
|
|
7996
8728
|
}
|
|
7997
8729
|
},
|
|
7998
8730
|
"UpdateThingGroupsForThingResponse":{
|