aws-sdk-core 2.11.39 → 2.11.40

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ae682c13b49e1953d2ba0cddf95a85b6118688ac
4
- data.tar.gz: a7a74e59c6715e948f476dcdc2936e717038c904
3
+ metadata.gz: 5c934de3b2de27d5309df44feba2ee1a9dcd2bc1
4
+ data.tar.gz: a11ddcdf465bd55132b60e687c1d64ba2dd09c91
5
5
  SHA512:
6
- metadata.gz: aab8a91066a11fe6502b8eab72f6896e2055fab6f8d12d4f1d7f5369731af7278d2f57918b1fbc973d081855edd2589fd3912bc9d1433f3d3f6ade331774147d
7
- data.tar.gz: b1eba343ce1de593a1700200d07bdbe2889f7bb7453296fc7d2f73ab64f3f8c746b10e4903a4508c81dcb69233eca0b32680d7ea4dafd10a7b9932a75cba272d
6
+ metadata.gz: b92c72d2ee04215e28d2e54072ae7be990557833762547969cae6c8b7d6deeca76397fd02fc99979afab709ac246673927503309ba03141c598c77e07123fb6f
7
+ data.tar.gz: 4c468347cb2f8116dc89c4cec87f30f9a553bd41de259bb93a30799887f670ec2871b1e032f6148d52cec352cdd55028087a8d5cf282d6f6a6b62d1b613f2510
@@ -18,7 +18,10 @@
18
18
  "requestUri":"/"
19
19
  },
20
20
  "input":{"shape":"AssociateContactWithAddressBookRequest"},
21
- "output":{"shape":"AssociateContactWithAddressBookResponse"}
21
+ "output":{"shape":"AssociateContactWithAddressBookResponse"},
22
+ "errors":[
23
+ {"shape":"LimitExceededException"}
24
+ ]
22
25
  },
23
26
  "AssociateDeviceWithRoom":{
24
27
  "name":"AssociateDeviceWithRoom",
@@ -311,6 +314,18 @@
311
314
  {"shape":"NotFoundException"}
312
315
  ]
313
316
  },
317
+ "ListDeviceEvents":{
318
+ "name":"ListDeviceEvents",
319
+ "http":{
320
+ "method":"POST",
321
+ "requestUri":"/"
322
+ },
323
+ "input":{"shape":"ListDeviceEventsRequest"},
324
+ "output":{"shape":"ListDeviceEventsResponse"},
325
+ "errors":[
326
+ {"shape":"NotFoundException"}
327
+ ]
328
+ },
314
329
  "ListSkills":{
315
330
  "name":"ListSkills",
316
331
  "http":{
@@ -647,6 +662,13 @@
647
662
  "min":10,
648
663
  "pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*"
649
664
  },
665
+ "ConnectionStatus":{
666
+ "type":"string",
667
+ "enum":[
668
+ "ONLINE",
669
+ "OFFLINE"
670
+ ]
671
+ },
650
672
  "Contact":{
651
673
  "type":"structure",
652
674
  "members":{
@@ -930,6 +952,23 @@
930
952
  "type":"list",
931
953
  "member":{"shape":"DeviceData"}
932
954
  },
955
+ "DeviceEvent":{
956
+ "type":"structure",
957
+ "members":{
958
+ "Type":{"shape":"DeviceEventType"},
959
+ "Value":{"shape":"DeviceEventValue"},
960
+ "Timestamp":{"shape":"Timestamp"}
961
+ }
962
+ },
963
+ "DeviceEventList":{
964
+ "type":"list",
965
+ "member":{"shape":"DeviceEvent"}
966
+ },
967
+ "DeviceEventType":{
968
+ "type":"string",
969
+ "enum":["CONNECTION_STATUS"]
970
+ },
971
+ "DeviceEventValue":{"type":"string"},
933
972
  "DeviceName":{
934
973
  "type":"string",
935
974
  "max":100,
@@ -968,7 +1007,8 @@
968
1007
  "DeviceStatusInfo":{
969
1008
  "type":"structure",
970
1009
  "members":{
971
- "DeviceStatusDetails":{"shape":"DeviceStatusDetails"}
1010
+ "DeviceStatusDetails":{"shape":"DeviceStatusDetails"},
1011
+ "ConnectionStatus":{"shape":"ConnectionStatus"}
972
1012
  }
973
1013
  },
974
1014
  "DeviceType":{
@@ -1042,6 +1082,7 @@
1042
1082
  "INITIALIZED",
1043
1083
  "PENDING",
1044
1084
  "REGISTERED",
1085
+ "DISASSOCIATING",
1045
1086
  "DEREGISTERING"
1046
1087
  ]
1047
1088
  },
@@ -1198,6 +1239,23 @@
1198
1239
  },
1199
1240
  "exception":true
1200
1241
  },
1242
+ "ListDeviceEventsRequest":{
1243
+ "type":"structure",
1244
+ "required":["DeviceArn"],
1245
+ "members":{
1246
+ "DeviceArn":{"shape":"Arn"},
1247
+ "EventType":{"shape":"DeviceEventType"},
1248
+ "NextToken":{"shape":"NextToken"},
1249
+ "MaxResults":{"shape":"MaxResults"}
1250
+ }
1251
+ },
1252
+ "ListDeviceEventsResponse":{
1253
+ "type":"structure",
1254
+ "members":{
1255
+ "DeviceEvents":{"shape":"DeviceEventList"},
1256
+ "NextToken":{"shape":"NextToken"}
1257
+ }
1258
+ },
1201
1259
  "ListSkillsRequest":{
1202
1260
  "type":"structure",
1203
1261
  "members":{
@@ -1697,6 +1755,7 @@
1697
1755
  "CELSIUS"
1698
1756
  ]
1699
1757
  },
1758
+ "Timestamp":{"type":"timestamp"},
1700
1759
  "Timezone":{
1701
1760
  "type":"string",
1702
1761
  "max":100,
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListDeviceEvents": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
3
8
  "ListSkills": {
4
9
  "input_token": "NextToken",
5
10
  "output_token": "NextToken",
@@ -173,6 +173,19 @@
173
173
  {"shape":"GlobalTableNotFoundException"}
174
174
  ]
175
175
  },
176
+ "DescribeGlobalTableSettings":{
177
+ "name":"DescribeGlobalTableSettings",
178
+ "http":{
179
+ "method":"POST",
180
+ "requestUri":"/"
181
+ },
182
+ "input":{"shape":"DescribeGlobalTableSettingsInput"},
183
+ "output":{"shape":"DescribeGlobalTableSettingsOutput"},
184
+ "errors":[
185
+ {"shape":"GlobalTableNotFoundException"},
186
+ {"shape":"InternalServerError"}
187
+ ]
188
+ },
176
189
  "DescribeLimits":{
177
190
  "name":"DescribeLimits",
178
191
  "http":{
@@ -411,6 +424,23 @@
411
424
  {"shape":"TableNotFoundException"}
412
425
  ]
413
426
  },
427
+ "UpdateGlobalTableSettings":{
428
+ "name":"UpdateGlobalTableSettings",
429
+ "http":{
430
+ "method":"POST",
431
+ "requestUri":"/"
432
+ },
433
+ "input":{"shape":"UpdateGlobalTableSettingsInput"},
434
+ "output":{"shape":"UpdateGlobalTableSettingsOutput"},
435
+ "errors":[
436
+ {"shape":"GlobalTableNotFoundException"},
437
+ {"shape":"ReplicaNotFoundException"},
438
+ {"shape":"IndexNotFoundException"},
439
+ {"shape":"LimitExceededException"},
440
+ {"shape":"ResourceInUseException"},
441
+ {"shape":"InternalServerError"}
442
+ ]
443
+ },
414
444
  "UpdateItem":{
415
445
  "name":"UpdateItem",
416
446
  "http":{
@@ -951,6 +981,20 @@
951
981
  "GlobalTableDescription":{"shape":"GlobalTableDescription"}
952
982
  }
953
983
  },
984
+ "DescribeGlobalTableSettingsInput":{
985
+ "type":"structure",
986
+ "required":["GlobalTableName"],
987
+ "members":{
988
+ "GlobalTableName":{"shape":"TableName"}
989
+ }
990
+ },
991
+ "DescribeGlobalTableSettingsOutput":{
992
+ "type":"structure",
993
+ "members":{
994
+ "GlobalTableName":{"shape":"TableName"},
995
+ "ReplicaSettings":{"shape":"ReplicaSettingsDescriptionList"}
996
+ }
997
+ },
954
998
  "DescribeLimitsInput":{
955
999
  "type":"structure",
956
1000
  "members":{
@@ -1133,6 +1177,20 @@
1133
1177
  "GlobalTableName":{"shape":"TableName"}
1134
1178
  }
1135
1179
  },
1180
+ "GlobalTableGlobalSecondaryIndexSettingsUpdate":{
1181
+ "type":"structure",
1182
+ "required":["IndexName"],
1183
+ "members":{
1184
+ "IndexName":{"shape":"IndexName"},
1185
+ "ProvisionedWriteCapacityUnits":{"shape":"PositiveLongObject"}
1186
+ }
1187
+ },
1188
+ "GlobalTableGlobalSecondaryIndexSettingsUpdateList":{
1189
+ "type":"list",
1190
+ "member":{"shape":"GlobalTableGlobalSecondaryIndexSettingsUpdate"},
1191
+ "max":20,
1192
+ "min":1
1193
+ },
1136
1194
  "GlobalTableList":{
1137
1195
  "type":"list",
1138
1196
  "member":{"shape":"GlobalTable"}
@@ -1159,6 +1217,13 @@
1159
1217
  "min":3,
1160
1218
  "pattern":"[a-zA-Z0-9_.-]+"
1161
1219
  },
1220
+ "IndexNotFoundException":{
1221
+ "type":"structure",
1222
+ "members":{
1223
+ "message":{"shape":"ErrorMessage"}
1224
+ },
1225
+ "exception":true
1226
+ },
1162
1227
  "IndexStatus":{
1163
1228
  "type":"string",
1164
1229
  "enum":[
@@ -1604,6 +1669,34 @@
1604
1669
  "type":"list",
1605
1670
  "member":{"shape":"ReplicaDescription"}
1606
1671
  },
1672
+ "ReplicaGlobalSecondaryIndexSettingsDescription":{
1673
+ "type":"structure",
1674
+ "required":["IndexName"],
1675
+ "members":{
1676
+ "IndexName":{"shape":"IndexName"},
1677
+ "IndexStatus":{"shape":"IndexStatus"},
1678
+ "ProvisionedReadCapacityUnits":{"shape":"PositiveLongObject"},
1679
+ "ProvisionedWriteCapacityUnits":{"shape":"PositiveLongObject"}
1680
+ }
1681
+ },
1682
+ "ReplicaGlobalSecondaryIndexSettingsDescriptionList":{
1683
+ "type":"list",
1684
+ "member":{"shape":"ReplicaGlobalSecondaryIndexSettingsDescription"}
1685
+ },
1686
+ "ReplicaGlobalSecondaryIndexSettingsUpdate":{
1687
+ "type":"structure",
1688
+ "required":["IndexName"],
1689
+ "members":{
1690
+ "IndexName":{"shape":"IndexName"},
1691
+ "ProvisionedReadCapacityUnits":{"shape":"PositiveLongObject"}
1692
+ }
1693
+ },
1694
+ "ReplicaGlobalSecondaryIndexSettingsUpdateList":{
1695
+ "type":"list",
1696
+ "member":{"shape":"ReplicaGlobalSecondaryIndexSettingsUpdate"},
1697
+ "max":20,
1698
+ "min":1
1699
+ },
1607
1700
  "ReplicaList":{
1608
1701
  "type":"list",
1609
1702
  "member":{"shape":"Replica"}
@@ -1615,6 +1708,45 @@
1615
1708
  },
1616
1709
  "exception":true
1617
1710
  },
1711
+ "ReplicaSettingsDescription":{
1712
+ "type":"structure",
1713
+ "required":["RegionName"],
1714
+ "members":{
1715
+ "RegionName":{"shape":"RegionName"},
1716
+ "ReplicaStatus":{"shape":"ReplicaStatus"},
1717
+ "ReplicaProvisionedReadCapacityUnits":{"shape":"PositiveLongObject"},
1718
+ "ReplicaProvisionedWriteCapacityUnits":{"shape":"PositiveLongObject"},
1719
+ "ReplicaGlobalSecondaryIndexSettings":{"shape":"ReplicaGlobalSecondaryIndexSettingsDescriptionList"}
1720
+ }
1721
+ },
1722
+ "ReplicaSettingsDescriptionList":{
1723
+ "type":"list",
1724
+ "member":{"shape":"ReplicaSettingsDescription"}
1725
+ },
1726
+ "ReplicaSettingsUpdate":{
1727
+ "type":"structure",
1728
+ "required":["RegionName"],
1729
+ "members":{
1730
+ "RegionName":{"shape":"RegionName"},
1731
+ "ReplicaProvisionedReadCapacityUnits":{"shape":"PositiveLongObject"},
1732
+ "ReplicaGlobalSecondaryIndexSettingsUpdate":{"shape":"ReplicaGlobalSecondaryIndexSettingsUpdateList"}
1733
+ }
1734
+ },
1735
+ "ReplicaSettingsUpdateList":{
1736
+ "type":"list",
1737
+ "member":{"shape":"ReplicaSettingsUpdate"},
1738
+ "max":50,
1739
+ "min":1
1740
+ },
1741
+ "ReplicaStatus":{
1742
+ "type":"string",
1743
+ "enum":[
1744
+ "CREATING",
1745
+ "UPDATING",
1746
+ "DELETING",
1747
+ "ACTIVE"
1748
+ ]
1749
+ },
1618
1750
  "ReplicaUpdate":{
1619
1751
  "type":"structure",
1620
1752
  "members":{
@@ -2065,6 +2197,23 @@
2065
2197
  "GlobalTableDescription":{"shape":"GlobalTableDescription"}
2066
2198
  }
2067
2199
  },
2200
+ "UpdateGlobalTableSettingsInput":{
2201
+ "type":"structure",
2202
+ "required":["GlobalTableName"],
2203
+ "members":{
2204
+ "GlobalTableName":{"shape":"TableName"},
2205
+ "GlobalTableProvisionedWriteCapacityUnits":{"shape":"PositiveLongObject"},
2206
+ "GlobalTableGlobalSecondaryIndexSettingsUpdate":{"shape":"GlobalTableGlobalSecondaryIndexSettingsUpdateList"},
2207
+ "ReplicaSettingsUpdate":{"shape":"ReplicaSettingsUpdateList"}
2208
+ }
2209
+ },
2210
+ "UpdateGlobalTableSettingsOutput":{
2211
+ "type":"structure",
2212
+ "members":{
2213
+ "GlobalTableName":{"shape":"TableName"},
2214
+ "ReplicaSettings":{"shape":"ReplicaSettingsDescriptionList"}
2215
+ }
2216
+ },
2068
2217
  "UpdateItemInput":{
2069
2218
  "type":"structure",
2070
2219
  "required":[
@@ -771,7 +771,8 @@
771
771
  "shape" : "Email",
772
772
  "locationName" : "email"
773
773
  }
774
- }
774
+ },
775
+ "required" : [ "Email", "AccountId" ]
775
776
  },
776
777
  "AccountDetails" : {
777
778
  "type" : "list",
@@ -1345,13 +1346,14 @@
1345
1346
  "shape" : "UpdatedAt",
1346
1347
  "locationName" : "updatedAt"
1347
1348
  }
1348
- }
1349
+ },
1350
+ "required" : [ "AccountId", "SchemaVersion", "CreatedAt", "Resource", "Severity", "UpdatedAt", "Type", "Region", "Id", "Arn" ]
1349
1351
  },
1350
1352
  "FindingCriteria" : {
1351
1353
  "type" : "structure",
1352
1354
  "members" : {
1353
1355
  "Criterion" : {
1354
- "shape" : "MapOfCondition",
1356
+ "shape" : "__mapOfCondition",
1355
1357
  "locationName" : "criterion"
1356
1358
  }
1357
1359
  }
@@ -1379,7 +1381,7 @@
1379
1381
  "type" : "structure",
1380
1382
  "members" : {
1381
1383
  "CountBySeverity" : {
1382
- "shape" : "MapOfCountBySeverityFindingStatistic",
1384
+ "shape" : "__mapOfCountBySeverityFindingStatistic",
1383
1385
  "locationName" : "countBySeverity"
1384
1386
  }
1385
1387
  }
@@ -1756,6 +1758,10 @@
1756
1758
  "location" : "uri",
1757
1759
  "locationName" : "detectorId"
1758
1760
  },
1761
+ "DisableEmailNotification" : {
1762
+ "shape" : "__boolean",
1763
+ "locationName" : "disableEmailNotification"
1764
+ },
1759
1765
  "Message" : {
1760
1766
  "shape" : "Message",
1761
1767
  "locationName" : "message"
@@ -1970,12 +1976,6 @@
1970
1976
  }
1971
1977
  }
1972
1978
  },
1973
- "ListOfPortProbeDetail" : {
1974
- "type" : "list",
1975
- "member" : {
1976
- "shape" : "PortProbeDetail"
1977
- }
1978
- },
1979
1979
  "ListThreatIntelSetsRequest" : {
1980
1980
  "type" : "structure",
1981
1981
  "members" : {
@@ -2026,24 +2026,6 @@
2026
2026
  "Location" : {
2027
2027
  "type" : "string"
2028
2028
  },
2029
- "MapOfCondition" : {
2030
- "type" : "map",
2031
- "key" : {
2032
- "shape" : "__string"
2033
- },
2034
- "value" : {
2035
- "shape" : "Condition"
2036
- }
2037
- },
2038
- "MapOfCountBySeverityFindingStatistic" : {
2039
- "type" : "map",
2040
- "key" : {
2041
- "shape" : "__string"
2042
- },
2043
- "value" : {
2044
- "shape" : "CountBySeverityFindingStatistic"
2045
- }
2046
- },
2047
2029
  "Master" : {
2048
2030
  "type" : "structure",
2049
2031
  "members" : {
@@ -2104,7 +2086,8 @@
2104
2086
  "shape" : "UpdatedAt",
2105
2087
  "locationName" : "updatedAt"
2106
2088
  }
2107
- }
2089
+ },
2090
+ "required" : [ "Email", "AccountId", "MasterId", "UpdatedAt", "RelationshipStatus" ]
2108
2091
  },
2109
2092
  "Members" : {
2110
2093
  "type" : "list",
@@ -2236,7 +2219,7 @@
2236
2219
  "locationName" : "blocked"
2237
2220
  },
2238
2221
  "PortProbeDetails" : {
2239
- "shape" : "ListOfPortProbeDetail",
2222
+ "shape" : "__listOfPortProbeDetail",
2240
2223
  "locationName" : "portProbeDetails"
2241
2224
  }
2242
2225
  }
@@ -2543,7 +2526,8 @@
2543
2526
  "shape" : "__string",
2544
2527
  "locationName" : "result"
2545
2528
  }
2546
- }
2529
+ },
2530
+ "required" : [ "AccountId", "Result" ]
2547
2531
  },
2548
2532
  "UnprocessedAccounts" : {
2549
2533
  "type" : "list",
@@ -2673,6 +2657,33 @@
2673
2657
  "__integer" : {
2674
2658
  "type" : "integer"
2675
2659
  },
2660
+ "__listOfPortProbeDetail" : {
2661
+ "type" : "list",
2662
+ "member" : {
2663
+ "shape" : "PortProbeDetail"
2664
+ }
2665
+ },
2666
+ "__long" : {
2667
+ "type" : "long"
2668
+ },
2669
+ "__mapOfCondition" : {
2670
+ "type" : "map",
2671
+ "key" : {
2672
+ "shape" : "__string"
2673
+ },
2674
+ "value" : {
2675
+ "shape" : "Condition"
2676
+ }
2677
+ },
2678
+ "__mapOfCountBySeverityFindingStatistic" : {
2679
+ "type" : "map",
2680
+ "key" : {
2681
+ "shape" : "__string"
2682
+ },
2683
+ "value" : {
2684
+ "shape" : "CountBySeverityFindingStatistic"
2685
+ }
2686
+ },
2676
2687
  "__string" : {
2677
2688
  "type" : "string"
2678
2689
  },
@@ -2680,4 +2691,4 @@
2680
2691
  "type" : "timestamp"
2681
2692
  }
2682
2693
  }
2683
- }
2694
+ }
@@ -1015,6 +1015,7 @@
1015
1015
  "ListOperationsRequest":{
1016
1016
  "type":"structure",
1017
1017
  "members":{
1018
+ "SubmittedSince":{"shape":"Timestamp"},
1018
1019
  "Marker":{"shape":"PageMarker"},
1019
1020
  "MaxItems":{"shape":"PageMaxItems"}
1020
1021
  }
@@ -481,7 +481,8 @@
481
481
  "ModelName":{"shape":"ModelName"},
482
482
  "PrimaryContainer":{"shape":"ContainerDefinition"},
483
483
  "ExecutionRoleArn":{"shape":"RoleArn"},
484
- "Tags":{"shape":"TagList"}
484
+ "Tags":{"shape":"TagList"},
485
+ "VpcConfig":{"shape":"VpcConfig"}
485
486
  }
486
487
  },
487
488
  "CreateModelOutput":{
@@ -564,6 +565,7 @@
564
565
  "InputDataConfig":{"shape":"InputDataConfig"},
565
566
  "OutputDataConfig":{"shape":"OutputDataConfig"},
566
567
  "ResourceConfig":{"shape":"ResourceConfig"},
568
+ "VpcConfig":{"shape":"VpcConfig"},
567
569
  "StoppingCondition":{"shape":"StoppingCondition"},
568
570
  "Tags":{"shape":"TagList"}
569
571
  }
@@ -705,6 +707,7 @@
705
707
  "ModelName":{"shape":"ModelName"},
706
708
  "PrimaryContainer":{"shape":"ContainerDefinition"},
707
709
  "ExecutionRoleArn":{"shape":"RoleArn"},
710
+ "VpcConfig":{"shape":"VpcConfig"},
708
711
  "CreationTime":{"shape":"Timestamp"},
709
712
  "ModelArn":{"shape":"ModelArn"}
710
713
  }
@@ -788,6 +791,7 @@
788
791
  "InputDataConfig":{"shape":"InputDataConfig"},
789
792
  "OutputDataConfig":{"shape":"OutputDataConfig"},
790
793
  "ResourceConfig":{"shape":"ResourceConfig"},
794
+ "VpcConfig":{"shape":"VpcConfig"},
791
795
  "StoppingCondition":{"shape":"StoppingCondition"},
792
796
  "CreationTime":{"shape":"Timestamp"},
793
797
  "TrainingStartTime":{"shape":"Timestamp"},
@@ -1568,6 +1572,12 @@
1568
1572
  "type":"string",
1569
1573
  "max":32
1570
1574
  },
1575
+ "Subnets":{
1576
+ "type":"list",
1577
+ "member":{"shape":"SubnetId"},
1578
+ "max":16,
1579
+ "min":1
1580
+ },
1571
1581
  "Tag":{
1572
1582
  "type":"structure",
1573
1583
  "required":[
@@ -1773,6 +1783,23 @@
1773
1783
  "VolumeSizeInGB":{
1774
1784
  "type":"integer",
1775
1785
  "min":1
1786
+ },
1787
+ "VpcConfig":{
1788
+ "type":"structure",
1789
+ "required":[
1790
+ "SecurityGroupIds",
1791
+ "Subnets"
1792
+ ],
1793
+ "members":{
1794
+ "SecurityGroupIds":{"shape":"VpcSecurityGroupIds"},
1795
+ "Subnets":{"shape":"Subnets"}
1796
+ }
1797
+ },
1798
+ "VpcSecurityGroupIds":{
1799
+ "type":"list",
1800
+ "member":{"shape":"SecurityGroupId"},
1801
+ "max":5,
1802
+ "min":1
1776
1803
  }
1777
1804
  }
1778
1805
  }
@@ -6,11 +6,61 @@
6
6
  "jsonVersion":"1.1",
7
7
  "protocol":"json",
8
8
  "serviceFullName":"Amazon WorkSpaces",
9
+ "serviceId":"WorkSpaces",
9
10
  "signatureVersion":"v4",
10
11
  "targetPrefix":"WorkspacesService",
11
12
  "uid":"workspaces-2015-04-08"
12
13
  },
13
14
  "operations":{
15
+ "AssociateIpGroups":{
16
+ "name":"AssociateIpGroups",
17
+ "http":{
18
+ "method":"POST",
19
+ "requestUri":"/"
20
+ },
21
+ "input":{"shape":"AssociateIpGroupsRequest"},
22
+ "output":{"shape":"AssociateIpGroupsResult"},
23
+ "errors":[
24
+ {"shape":"InvalidParameterValuesException"},
25
+ {"shape":"ResourceNotFoundException"},
26
+ {"shape":"ResourceLimitExceededException"},
27
+ {"shape":"InvalidResourceStateException"},
28
+ {"shape":"AccessDeniedException"},
29
+ {"shape":"OperationNotSupportedException"}
30
+ ]
31
+ },
32
+ "AuthorizeIpRules":{
33
+ "name":"AuthorizeIpRules",
34
+ "http":{
35
+ "method":"POST",
36
+ "requestUri":"/"
37
+ },
38
+ "input":{"shape":"AuthorizeIpRulesRequest"},
39
+ "output":{"shape":"AuthorizeIpRulesResult"},
40
+ "errors":[
41
+ {"shape":"InvalidParameterValuesException"},
42
+ {"shape":"ResourceNotFoundException"},
43
+ {"shape":"ResourceLimitExceededException"},
44
+ {"shape":"InvalidResourceStateException"},
45
+ {"shape":"AccessDeniedException"}
46
+ ]
47
+ },
48
+ "CreateIpGroup":{
49
+ "name":"CreateIpGroup",
50
+ "http":{
51
+ "method":"POST",
52
+ "requestUri":"/"
53
+ },
54
+ "input":{"shape":"CreateIpGroupRequest"},
55
+ "output":{"shape":"CreateIpGroupResult"},
56
+ "errors":[
57
+ {"shape":"InvalidParameterValuesException"},
58
+ {"shape":"ResourceLimitExceededException"},
59
+ {"shape":"ResourceAlreadyExistsException"},
60
+ {"shape":"ResourceCreationFailedException"},
61
+ {"shape":"AccessDeniedException"}
62
+ ]
63
+ },
14
64
  "CreateTags":{
15
65
  "name":"CreateTags",
16
66
  "http":{
@@ -38,6 +88,21 @@
38
88
  {"shape":"InvalidParameterValuesException"}
39
89
  ]
40
90
  },
91
+ "DeleteIpGroup":{
92
+ "name":"DeleteIpGroup",
93
+ "http":{
94
+ "method":"POST",
95
+ "requestUri":"/"
96
+ },
97
+ "input":{"shape":"DeleteIpGroupRequest"},
98
+ "output":{"shape":"DeleteIpGroupResult"},
99
+ "errors":[
100
+ {"shape":"InvalidParameterValuesException"},
101
+ {"shape":"ResourceNotFoundException"},
102
+ {"shape":"ResourceAssociatedException"},
103
+ {"shape":"AccessDeniedException"}
104
+ ]
105
+ },
41
106
  "DeleteTags":{
42
107
  "name":"DeleteTags",
43
108
  "http":{
@@ -51,6 +116,19 @@
51
116
  {"shape":"InvalidParameterValuesException"}
52
117
  ]
53
118
  },
119
+ "DescribeIpGroups":{
120
+ "name":"DescribeIpGroups",
121
+ "http":{
122
+ "method":"POST",
123
+ "requestUri":"/"
124
+ },
125
+ "input":{"shape":"DescribeIpGroupsRequest"},
126
+ "output":{"shape":"DescribeIpGroupsResult"},
127
+ "errors":[
128
+ {"shape":"InvalidParameterValuesException"},
129
+ {"shape":"AccessDeniedException"}
130
+ ]
131
+ },
54
132
  "DescribeTags":{
55
133
  "name":"DescribeTags",
56
134
  "http":{
@@ -112,6 +190,21 @@
112
190
  {"shape":"InvalidParameterValuesException"}
113
191
  ]
114
192
  },
193
+ "DisassociateIpGroups":{
194
+ "name":"DisassociateIpGroups",
195
+ "http":{
196
+ "method":"POST",
197
+ "requestUri":"/"
198
+ },
199
+ "input":{"shape":"DisassociateIpGroupsRequest"},
200
+ "output":{"shape":"DisassociateIpGroupsResult"},
201
+ "errors":[
202
+ {"shape":"InvalidParameterValuesException"},
203
+ {"shape":"ResourceNotFoundException"},
204
+ {"shape":"InvalidResourceStateException"},
205
+ {"shape":"AccessDeniedException"}
206
+ ]
207
+ },
115
208
  "ModifyWorkspaceProperties":{
116
209
  "name":"ModifyWorkspaceProperties",
117
210
  "http":{
@@ -130,6 +223,20 @@
130
223
  {"shape":"ResourceUnavailableException"}
131
224
  ]
132
225
  },
226
+ "ModifyWorkspaceState":{
227
+ "name":"ModifyWorkspaceState",
228
+ "http":{
229
+ "method":"POST",
230
+ "requestUri":"/"
231
+ },
232
+ "input":{"shape":"ModifyWorkspaceStateRequest"},
233
+ "output":{"shape":"ModifyWorkspaceStateResult"},
234
+ "errors":[
235
+ {"shape":"InvalidParameterValuesException"},
236
+ {"shape":"InvalidResourceStateException"},
237
+ {"shape":"ResourceNotFoundException"}
238
+ ]
239
+ },
133
240
  "RebootWorkspaces":{
134
241
  "name":"RebootWorkspaces",
135
242
  "http":{
@@ -148,6 +255,21 @@
148
255
  "input":{"shape":"RebuildWorkspacesRequest"},
149
256
  "output":{"shape":"RebuildWorkspacesResult"}
150
257
  },
258
+ "RevokeIpRules":{
259
+ "name":"RevokeIpRules",
260
+ "http":{
261
+ "method":"POST",
262
+ "requestUri":"/"
263
+ },
264
+ "input":{"shape":"RevokeIpRulesRequest"},
265
+ "output":{"shape":"RevokeIpRulesResult"},
266
+ "errors":[
267
+ {"shape":"InvalidParameterValuesException"},
268
+ {"shape":"ResourceNotFoundException"},
269
+ {"shape":"InvalidResourceStateException"},
270
+ {"shape":"AccessDeniedException"}
271
+ ]
272
+ },
151
273
  "StartWorkspaces":{
152
274
  "name":"StartWorkspaces",
153
275
  "http":{
@@ -174,6 +296,22 @@
174
296
  },
175
297
  "input":{"shape":"TerminateWorkspacesRequest"},
176
298
  "output":{"shape":"TerminateWorkspacesResult"}
299
+ },
300
+ "UpdateRulesOfIpGroup":{
301
+ "name":"UpdateRulesOfIpGroup",
302
+ "http":{
303
+ "method":"POST",
304
+ "requestUri":"/"
305
+ },
306
+ "input":{"shape":"UpdateRulesOfIpGroupRequest"},
307
+ "output":{"shape":"UpdateRulesOfIpGroupResult"},
308
+ "errors":[
309
+ {"shape":"InvalidParameterValuesException"},
310
+ {"shape":"ResourceNotFoundException"},
311
+ {"shape":"ResourceLimitExceededException"},
312
+ {"shape":"InvalidResourceStateException"},
313
+ {"shape":"AccessDeniedException"}
314
+ ]
177
315
  }
178
316
  },
179
317
  "shapes":{
@@ -189,6 +327,38 @@
189
327
  "exception":true
190
328
  },
191
329
  "Alias":{"type":"string"},
330
+ "AssociateIpGroupsRequest":{
331
+ "type":"structure",
332
+ "required":[
333
+ "DirectoryId",
334
+ "GroupIds"
335
+ ],
336
+ "members":{
337
+ "DirectoryId":{"shape":"DirectoryId"},
338
+ "GroupIds":{"shape":"IpGroupIdList"}
339
+ }
340
+ },
341
+ "AssociateIpGroupsResult":{
342
+ "type":"structure",
343
+ "members":{
344
+ }
345
+ },
346
+ "AuthorizeIpRulesRequest":{
347
+ "type":"structure",
348
+ "required":[
349
+ "GroupId",
350
+ "UserRules"
351
+ ],
352
+ "members":{
353
+ "GroupId":{"shape":"IpGroupId"},
354
+ "UserRules":{"shape":"IpRuleList"}
355
+ }
356
+ },
357
+ "AuthorizeIpRulesResult":{
358
+ "type":"structure",
359
+ "members":{
360
+ }
361
+ },
192
362
  "BooleanObject":{"type":"boolean"},
193
363
  "BundleId":{
194
364
  "type":"string",
@@ -230,6 +400,21 @@
230
400
  "UNKNOWN"
231
401
  ]
232
402
  },
403
+ "CreateIpGroupRequest":{
404
+ "type":"structure",
405
+ "required":["GroupName"],
406
+ "members":{
407
+ "GroupName":{"shape":"IpGroupName"},
408
+ "GroupDesc":{"shape":"IpGroupDesc"},
409
+ "UserRules":{"shape":"IpRuleList"}
410
+ }
411
+ },
412
+ "CreateIpGroupResult":{
413
+ "type":"structure",
414
+ "members":{
415
+ "GroupId":{"shape":"IpGroupId"}
416
+ }
417
+ },
233
418
  "CreateTagsRequest":{
234
419
  "type":"structure",
235
420
  "required":[
@@ -271,6 +456,18 @@
271
456
  "UserEnabledAsLocalAdministrator":{"shape":"BooleanObject"}
272
457
  }
273
458
  },
459
+ "DeleteIpGroupRequest":{
460
+ "type":"structure",
461
+ "required":["GroupId"],
462
+ "members":{
463
+ "GroupId":{"shape":"IpGroupId"}
464
+ }
465
+ },
466
+ "DeleteIpGroupResult":{
467
+ "type":"structure",
468
+ "members":{
469
+ }
470
+ },
274
471
  "DeleteTagsRequest":{
275
472
  "type":"structure",
276
473
  "required":[
@@ -287,6 +484,21 @@
287
484
  "members":{
288
485
  }
289
486
  },
487
+ "DescribeIpGroupsRequest":{
488
+ "type":"structure",
489
+ "members":{
490
+ "GroupIds":{"shape":"IpGroupIdList"},
491
+ "NextToken":{"shape":"PaginationToken"},
492
+ "MaxResults":{"shape":"Limit"}
493
+ }
494
+ },
495
+ "DescribeIpGroupsResult":{
496
+ "type":"structure",
497
+ "members":{
498
+ "Result":{"shape":"WorkspacesIpGroupsList"},
499
+ "NextToken":{"shape":"PaginationToken"}
500
+ }
501
+ },
290
502
  "DescribeTagsRequest":{
291
503
  "type":"structure",
292
504
  "required":["ResourceId"],
@@ -377,6 +589,22 @@
377
589
  "member":{"shape":"WorkspaceDirectory"}
378
590
  },
379
591
  "DirectoryName":{"type":"string"},
592
+ "DisassociateIpGroupsRequest":{
593
+ "type":"structure",
594
+ "required":[
595
+ "DirectoryId",
596
+ "GroupIds"
597
+ ],
598
+ "members":{
599
+ "DirectoryId":{"shape":"DirectoryId"},
600
+ "GroupIds":{"shape":"IpGroupIdList"}
601
+ }
602
+ },
603
+ "DisassociateIpGroupsResult":{
604
+ "type":"structure",
605
+ "members":{
606
+ }
607
+ },
380
608
  "DnsIpAddresses":{
381
609
  "type":"list",
382
610
  "member":{"shape":"IpAddress"}
@@ -438,6 +666,33 @@
438
666
  "exception":true
439
667
  },
440
668
  "IpAddress":{"type":"string"},
669
+ "IpGroupDesc":{"type":"string"},
670
+ "IpGroupId":{
671
+ "type":"string",
672
+ "pattern":"wsipg-[0-9a-z]{8,63}$"
673
+ },
674
+ "IpGroupIdList":{
675
+ "type":"list",
676
+ "member":{"shape":"IpGroupId"}
677
+ },
678
+ "IpGroupName":{"type":"string"},
679
+ "IpRevokedRuleList":{
680
+ "type":"list",
681
+ "member":{"shape":"IpRule"}
682
+ },
683
+ "IpRule":{"type":"string"},
684
+ "IpRuleDesc":{"type":"string"},
685
+ "IpRuleItem":{
686
+ "type":"structure",
687
+ "members":{
688
+ "ipRule":{"shape":"IpRule"},
689
+ "ruleDesc":{"shape":"IpRuleDesc"}
690
+ }
691
+ },
692
+ "IpRuleList":{
693
+ "type":"list",
694
+ "member":{"shape":"IpRuleItem"}
695
+ },
441
696
  "Limit":{
442
697
  "type":"integer",
443
698
  "max":25,
@@ -485,6 +740,22 @@
485
740
  "members":{
486
741
  }
487
742
  },
743
+ "ModifyWorkspaceStateRequest":{
744
+ "type":"structure",
745
+ "required":[
746
+ "WorkspaceId",
747
+ "WorkspaceState"
748
+ ],
749
+ "members":{
750
+ "WorkspaceId":{"shape":"WorkspaceId"},
751
+ "WorkspaceState":{"shape":"TargetWorkspaceState"}
752
+ }
753
+ },
754
+ "ModifyWorkspaceStateResult":{
755
+ "type":"structure",
756
+ "members":{
757
+ }
758
+ },
488
759
  "NonEmptyString":{
489
760
  "type":"string",
490
761
  "min":1
@@ -496,6 +767,13 @@
496
767
  },
497
768
  "exception":true
498
769
  },
770
+ "OperationNotSupportedException":{
771
+ "type":"structure",
772
+ "members":{
773
+ "message":{"shape":"ExceptionMessage"}
774
+ },
775
+ "exception":true
776
+ },
499
777
  "PaginationToken":{
500
778
  "type":"string",
501
779
  "max":63,
@@ -558,6 +836,27 @@
558
836
  "max":20,
559
837
  "min":1
560
838
  },
839
+ "ResourceAlreadyExistsException":{
840
+ "type":"structure",
841
+ "members":{
842
+ "message":{"shape":"ExceptionMessage"}
843
+ },
844
+ "exception":true
845
+ },
846
+ "ResourceAssociatedException":{
847
+ "type":"structure",
848
+ "members":{
849
+ "message":{"shape":"ExceptionMessage"}
850
+ },
851
+ "exception":true
852
+ },
853
+ "ResourceCreationFailedException":{
854
+ "type":"structure",
855
+ "members":{
856
+ "message":{"shape":"ExceptionMessage"}
857
+ },
858
+ "exception":true
859
+ },
561
860
  "ResourceLimitExceededException":{
562
861
  "type":"structure",
563
862
  "members":{
@@ -581,6 +880,22 @@
581
880
  },
582
881
  "exception":true
583
882
  },
883
+ "RevokeIpRulesRequest":{
884
+ "type":"structure",
885
+ "required":[
886
+ "GroupId",
887
+ "UserRules"
888
+ ],
889
+ "members":{
890
+ "GroupId":{"shape":"IpGroupId"},
891
+ "UserRules":{"shape":"IpRevokedRuleList"}
892
+ }
893
+ },
894
+ "RevokeIpRulesResult":{
895
+ "type":"structure",
896
+ "members":{
897
+ }
898
+ },
584
899
  "RootStorage":{
585
900
  "type":"structure",
586
901
  "members":{
@@ -683,6 +998,13 @@
683
998
  "type":"string",
684
999
  "max":255
685
1000
  },
1001
+ "TargetWorkspaceState":{
1002
+ "type":"string",
1003
+ "enum":[
1004
+ "AVAILABLE",
1005
+ "ADMIN_MAINTENANCE"
1006
+ ]
1007
+ },
686
1008
  "TerminateRequest":{
687
1009
  "type":"structure",
688
1010
  "required":["WorkspaceId"],
@@ -717,6 +1039,22 @@
717
1039
  },
718
1040
  "exception":true
719
1041
  },
1042
+ "UpdateRulesOfIpGroupRequest":{
1043
+ "type":"structure",
1044
+ "required":[
1045
+ "GroupId",
1046
+ "UserRules"
1047
+ ],
1048
+ "members":{
1049
+ "GroupId":{"shape":"IpGroupId"},
1050
+ "UserRules":{"shape":"IpRuleList"}
1051
+ }
1052
+ },
1053
+ "UpdateRulesOfIpGroupResult":{
1054
+ "type":"structure",
1055
+ "members":{
1056
+ }
1057
+ },
720
1058
  "UserName":{
721
1059
  "type":"string",
722
1060
  "max":63,
@@ -789,7 +1127,8 @@
789
1127
  "DirectoryType":{"shape":"WorkspaceDirectoryType"},
790
1128
  "WorkspaceSecurityGroupId":{"shape":"SecurityGroupId"},
791
1129
  "State":{"shape":"WorkspaceDirectoryState"},
792
- "WorkspaceCreationProperties":{"shape":"DefaultWorkspaceCreationProperties"}
1130
+ "WorkspaceCreationProperties":{"shape":"DefaultWorkspaceCreationProperties"},
1131
+ "ipGroupIds":{"shape":"IpGroupIdList"}
793
1132
  }
794
1133
  },
795
1134
  "WorkspaceDirectoryState":{
@@ -869,6 +1208,7 @@
869
1208
  "STARTING",
870
1209
  "REBUILDING",
871
1210
  "MAINTENANCE",
1211
+ "ADMIN_MAINTENANCE",
872
1212
  "TERMINATING",
873
1213
  "TERMINATED",
874
1214
  "SUSPENDED",
@@ -877,6 +1217,19 @@
877
1217
  "STOPPED",
878
1218
  "ERROR"
879
1219
  ]
1220
+ },
1221
+ "WorkspacesIpGroup":{
1222
+ "type":"structure",
1223
+ "members":{
1224
+ "groupId":{"shape":"IpGroupId"},
1225
+ "groupName":{"shape":"IpGroupName"},
1226
+ "groupDesc":{"shape":"IpGroupDesc"},
1227
+ "userRules":{"shape":"IpRuleList"}
1228
+ }
1229
+ },
1230
+ "WorkspacesIpGroupsList":{
1231
+ "type":"list",
1232
+ "member":{"shape":"WorkspacesIpGroup"}
880
1233
  }
881
1234
  }
882
1235
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.39'
2
+ VERSION = '2.11.40'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.39
4
+ version: 2.11.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-26 00:00:00.000000000 Z
11
+ date: 2018-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath