aws-sdk-core 2.10.127 → 2.10.128

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0a4bf3f1dbed15a03d747dd6bd54f1325e1b356
4
- data.tar.gz: 1dca076a56270d99a0a4a5db2585b090cef9f194
3
+ metadata.gz: 3eed035dc010ce45c597fb27c200d1ab338feb90
4
+ data.tar.gz: d73714cccc68a88f7e32fc9ef015859b3514ea58
5
5
  SHA512:
6
- metadata.gz: ced7a2f34041e2910b4b6e96da40c710462586ad634caf381b4f9e223f5ddd13491262da7fe5cb526d74ba38c69ee29f7943a85b41d948fe79b6e48d19128655
7
- data.tar.gz: 8dd42437f90644c6ecd1302f1a2e100146c7341abc039e120d5ccb0ba31adb7e0be4e570952afe583d8f7302b1c11badae150783295bf1df787703f2f6db05a7
6
+ metadata.gz: 41fc705f57a19c78c8b568697899a09a4bf8abc6fa3c87a311a8813d5f2181a4a0db811b5196435f21bbadcd54c48d6ea7ec5fcc3a0ec04f8e5c2fd4d7011680
7
+ data.tar.gz: 435392868d4060113380cde67cf412aaa1fe0ccdf507c6598b07d8f8f46e8ff4d7a0b6a3b0e09f6e9861cb2034c7fdeeb10bc3c9b4afbc3e3c1510a1031de723
@@ -636,7 +636,8 @@
636
636
  "Name":{"shape":"String"},
637
637
  "Description":{"shape":"Description"},
638
638
  "DisplayName":{"shape":"DisplayName"},
639
- "StorageConnectors":{"shape":"StorageConnectorList"}
639
+ "StorageConnectors":{"shape":"StorageConnectorList"},
640
+ "RedirectURL":{"shape":"RedirectURL"}
640
641
  }
641
642
  },
642
643
  "CreateStackResult":{
@@ -1189,6 +1190,10 @@
1189
1190
  "type":"string",
1190
1191
  "enum":["WINDOWS"]
1191
1192
  },
1193
+ "RedirectURL":{
1194
+ "type":"string",
1195
+ "max":1000
1196
+ },
1192
1197
  "ResourceAlreadyExistsException":{
1193
1198
  "type":"structure",
1194
1199
  "members":{
@@ -1289,9 +1294,21 @@
1289
1294
  "DisplayName":{"shape":"String"},
1290
1295
  "CreatedTime":{"shape":"Timestamp"},
1291
1296
  "StorageConnectors":{"shape":"StorageConnectorList"},
1297
+ "RedirectURL":{"shape":"RedirectURL"},
1292
1298
  "StackErrors":{"shape":"StackErrors"}
1293
1299
  }
1294
1300
  },
1301
+ "StackAttribute":{
1302
+ "type":"string",
1303
+ "enum":[
1304
+ "STORAGE_CONNECTORS",
1305
+ "REDIRECT_URL"
1306
+ ]
1307
+ },
1308
+ "StackAttributes":{
1309
+ "type":"list",
1310
+ "member":{"shape":"StackAttribute"}
1311
+ },
1295
1312
  "StackError":{
1296
1313
  "type":"structure",
1297
1314
  "members":{
@@ -1508,7 +1525,12 @@
1508
1525
  "Description":{"shape":"Description"},
1509
1526
  "Name":{"shape":"String"},
1510
1527
  "StorageConnectors":{"shape":"StorageConnectorList"},
1511
- "DeleteStorageConnectors":{"shape":"Boolean"}
1528
+ "DeleteStorageConnectors":{
1529
+ "shape":"Boolean",
1530
+ "deprecated":true
1531
+ },
1532
+ "RedirectURL":{"shape":"RedirectURL"},
1533
+ "AttributesToDelete":{"shape":"StackAttributes"}
1512
1534
  }
1513
1535
  },
1514
1536
  "UpdateStackResult":{
@@ -218,9 +218,7 @@
218
218
  "type":"structure",
219
219
  "required":[
220
220
  "BudgetName",
221
- "BudgetLimit",
222
221
  "TimeUnit",
223
- "TimePeriod",
224
222
  "BudgetType"
225
223
  ],
226
224
  "members":{
@@ -637,10 +635,6 @@
637
635
  },
638
636
  "TimePeriod":{
639
637
  "type":"structure",
640
- "required":[
641
- "Start",
642
- "End"
643
- ],
644
638
  "members":{
645
639
  "Start":{"shape":"GenericTimestamp"},
646
640
  "End":{"shape":"GenericTimestamp"}
@@ -296,6 +296,19 @@
296
296
  {"shape":"ResourceNotFoundFault"}
297
297
  ]
298
298
  },
299
+ "DescribeReplicationInstanceTaskLogs":{
300
+ "name":"DescribeReplicationInstanceTaskLogs",
301
+ "http":{
302
+ "method":"POST",
303
+ "requestUri":"/"
304
+ },
305
+ "input":{"shape":"DescribeReplicationInstanceTaskLogsMessage"},
306
+ "output":{"shape":"DescribeReplicationInstanceTaskLogsResponse"},
307
+ "errors":[
308
+ {"shape":"ResourceNotFoundFault"},
309
+ {"shape":"InvalidResourceStateFault"}
310
+ ]
311
+ },
299
312
  "DescribeReplicationInstances":{
300
313
  "name":"DescribeReplicationInstances",
301
314
  "http":{
@@ -380,7 +393,8 @@
380
393
  "output":{"shape":"ImportCertificateResponse"},
381
394
  "errors":[
382
395
  {"shape":"ResourceAlreadyExistsFault"},
383
- {"shape":"InvalidCertificateFault"}
396
+ {"shape":"InvalidCertificateFault"},
397
+ {"shape":"ResourceQuotaExceededFault"}
384
398
  ]
385
399
  },
386
400
  "ListTagsForResource":{
@@ -475,6 +489,19 @@
475
489
  {"shape":"KMSKeyNotAccessibleFault"}
476
490
  ]
477
491
  },
492
+ "RebootReplicationInstance":{
493
+ "name":"RebootReplicationInstance",
494
+ "http":{
495
+ "method":"POST",
496
+ "requestUri":"/"
497
+ },
498
+ "input":{"shape":"RebootReplicationInstanceMessage"},
499
+ "output":{"shape":"RebootReplicationInstanceResponse"},
500
+ "errors":[
501
+ {"shape":"ResourceNotFoundFault"},
502
+ {"shape":"InvalidResourceStateFault"}
503
+ ]
504
+ },
478
505
  "RefreshSchemas":{
479
506
  "name":"RefreshSchemas",
480
507
  "http":{
@@ -1026,6 +1053,23 @@
1026
1053
  "RefreshSchemasStatus":{"shape":"RefreshSchemasStatus"}
1027
1054
  }
1028
1055
  },
1056
+ "DescribeReplicationInstanceTaskLogsMessage":{
1057
+ "type":"structure",
1058
+ "required":["ReplicationInstanceArn"],
1059
+ "members":{
1060
+ "ReplicationInstanceArn":{"shape":"String"},
1061
+ "MaxRecords":{"shape":"IntegerOptional"},
1062
+ "Marker":{"shape":"String"}
1063
+ }
1064
+ },
1065
+ "DescribeReplicationInstanceTaskLogsResponse":{
1066
+ "type":"structure",
1067
+ "members":{
1068
+ "ReplicationInstanceArn":{"shape":"String"},
1069
+ "ReplicationInstanceTaskLogs":{"shape":"ReplicationInstanceTaskLogsList"},
1070
+ "Marker":{"shape":"String"}
1071
+ }
1072
+ },
1029
1073
  "DescribeReplicationInstancesMessage":{
1030
1074
  "type":"structure",
1031
1075
  "members":{
@@ -1451,6 +1495,20 @@
1451
1495
  "type":"list",
1452
1496
  "member":{"shape":"OrderableReplicationInstance"}
1453
1497
  },
1498
+ "RebootReplicationInstanceMessage":{
1499
+ "type":"structure",
1500
+ "required":["ReplicationInstanceArn"],
1501
+ "members":{
1502
+ "ReplicationInstanceArn":{"shape":"String"},
1503
+ "ForceFailover":{"shape":"BooleanOptional"}
1504
+ }
1505
+ },
1506
+ "RebootReplicationInstanceResponse":{
1507
+ "type":"structure",
1508
+ "members":{
1509
+ "ReplicationInstance":{"shape":"ReplicationInstance"}
1510
+ }
1511
+ },
1454
1512
  "RefreshSchemasMessage":{
1455
1513
  "type":"structure",
1456
1514
  "required":[
@@ -1570,6 +1628,18 @@
1570
1628
  "type":"list",
1571
1629
  "member":{"shape":"String"}
1572
1630
  },
1631
+ "ReplicationInstanceTaskLog":{
1632
+ "type":"structure",
1633
+ "members":{
1634
+ "ReplicationTaskName":{"shape":"String"},
1635
+ "ReplicationTaskArn":{"shape":"String"},
1636
+ "ReplicationInstanceTaskLogSize":{"shape":"Long"}
1637
+ }
1638
+ },
1639
+ "ReplicationInstanceTaskLogsList":{
1640
+ "type":"list",
1641
+ "member":{"shape":"ReplicationInstanceTaskLog"}
1642
+ },
1573
1643
  "ReplicationPendingModifiedValues":{
1574
1644
  "type":"structure",
1575
1645
  "members":{
@@ -35,6 +35,11 @@
35
35
  "output_token": "Marker",
36
36
  "limit_key": "MaxRecords"
37
37
  },
38
+ "DescribeReplicationInstanceTaskLogs": {
39
+ "input_token": "Marker",
40
+ "output_token": "Marker",
41
+ "limit_key": "MaxRecords"
42
+ },
38
43
  "DescribeReplicationInstances": {
39
44
  "input_token": "Marker",
40
45
  "output_token": "Marker",
@@ -7,6 +7,7 @@
7
7
  "protocol":"json",
8
8
  "serviceAbbreviation":"Directory Service",
9
9
  "serviceFullName":"AWS Directory Service",
10
+ "serviceId":"Directory Service",
10
11
  "signatureVersion":"v4",
11
12
  "targetPrefix":"DirectoryService_20150416",
12
13
  "uid":"ds-2015-04-16"
@@ -1784,7 +1785,7 @@
1784
1785
  },
1785
1786
  "SecurityGroupId":{
1786
1787
  "type":"string",
1787
- "pattern":"^(sg-[0-9a-f]{8})$"
1788
+ "pattern":"^(sg-[0-9a-f]{8}|sg-[0-9a-f]{17})$"
1788
1789
  },
1789
1790
  "Server":{
1790
1791
  "type":"string",
@@ -1892,7 +1893,7 @@
1892
1893
  "StateLastUpdatedDateTime":{"type":"timestamp"},
1893
1894
  "SubnetId":{
1894
1895
  "type":"string",
1895
- "pattern":"^(subnet-[0-9a-f]{8})$"
1896
+ "pattern":"^(subnet-[0-9a-f]{8}|subnet-[0-9a-f]{17})$"
1896
1897
  },
1897
1898
  "SubnetIds":{
1898
1899
  "type":"list",
@@ -2096,7 +2097,7 @@
2096
2097
  },
2097
2098
  "VpcId":{
2098
2099
  "type":"string",
2099
- "pattern":"^(vpc-[0-9a-f]{8})$"
2100
+ "pattern":"^(vpc-[0-9a-f]{8}|vpc-[0-9a-f]{17})$"
2100
2101
  }
2101
2102
  }
2102
2103
  }
@@ -536,7 +536,8 @@
536
536
  "BackupName":{
537
537
  "type":"string",
538
538
  "max":255,
539
- "min":3
539
+ "min":3,
540
+ "pattern":"[a-zA-Z0-9_.-]+"
540
541
  },
541
542
  "BackupNotFoundException":{
542
543
  "type":"structure",
@@ -793,7 +794,8 @@
793
794
  "LocalSecondaryIndexes":{"shape":"LocalSecondaryIndexList"},
794
795
  "GlobalSecondaryIndexes":{"shape":"GlobalSecondaryIndexList"},
795
796
  "ProvisionedThroughput":{"shape":"ProvisionedThroughput"},
796
- "StreamSpecification":{"shape":"StreamSpecification"}
797
+ "StreamSpecification":{"shape":"StreamSpecification"},
798
+ "SSESpecification":{"shape":"SSESpecification"}
797
799
  }
798
800
  },
799
801
  "CreateTableOutput":{
@@ -1631,6 +1633,29 @@
1631
1633
  "UPDATED_NEW"
1632
1634
  ]
1633
1635
  },
1636
+ "SSEDescription":{
1637
+ "type":"structure",
1638
+ "members":{
1639
+ "Status":{"shape":"SSEStatus"}
1640
+ }
1641
+ },
1642
+ "SSEEnabled":{"type":"boolean"},
1643
+ "SSESpecification":{
1644
+ "type":"structure",
1645
+ "required":["Enabled"],
1646
+ "members":{
1647
+ "Enabled":{"shape":"SSEEnabled"}
1648
+ }
1649
+ },
1650
+ "SSEStatus":{
1651
+ "type":"string",
1652
+ "enum":[
1653
+ "ENABLING",
1654
+ "ENABLED",
1655
+ "DISABLING",
1656
+ "DISABLED"
1657
+ ]
1658
+ },
1634
1659
  "ScalarAttributeType":{
1635
1660
  "type":"string",
1636
1661
  "enum":[
@@ -1721,7 +1746,8 @@
1721
1746
  "LocalSecondaryIndexes":{"shape":"LocalSecondaryIndexes"},
1722
1747
  "GlobalSecondaryIndexes":{"shape":"GlobalSecondaryIndexes"},
1723
1748
  "StreamDescription":{"shape":"StreamSpecification"},
1724
- "TimeToLiveDescription":{"shape":"TimeToLiveDescription"}
1749
+ "TimeToLiveDescription":{"shape":"TimeToLiveDescription"},
1750
+ "SSEDescription":{"shape":"SSEDescription"}
1725
1751
  }
1726
1752
  },
1727
1753
  "StreamArn":{
@@ -1779,7 +1805,8 @@
1779
1805
  "StreamSpecification":{"shape":"StreamSpecification"},
1780
1806
  "LatestStreamLabel":{"shape":"String"},
1781
1807
  "LatestStreamArn":{"shape":"StreamArn"},
1782
- "RestoreSummary":{"shape":"RestoreSummary"}
1808
+ "RestoreSummary":{"shape":"RestoreSummary"},
1809
+ "SSEDescription":{"shape":"SSEDescription"}
1783
1810
  }
1784
1811
  },
1785
1812
  "TableId":{
@@ -786,6 +786,21 @@
786
786
  {"shape":"UnauthorizedException"}
787
787
  ]
788
788
  },
789
+ "StartMatchBackfill":{
790
+ "name":"StartMatchBackfill",
791
+ "http":{
792
+ "method":"POST",
793
+ "requestUri":"/"
794
+ },
795
+ "input":{"shape":"StartMatchBackfillInput"},
796
+ "output":{"shape":"StartMatchBackfillOutput"},
797
+ "errors":[
798
+ {"shape":"InvalidRequestException"},
799
+ {"shape":"NotFoundException"},
800
+ {"shape":"InternalServiceException"},
801
+ {"shape":"UnsupportedRegionException"}
802
+ ]
803
+ },
789
804
  "StartMatchmaking":{
790
805
  "name":"StartMatchmaking",
791
806
  "http":{
@@ -1003,7 +1018,7 @@
1003
1018
  ],
1004
1019
  "members":{
1005
1020
  "TicketId":{"shape":"MatchmakingIdStringModel"},
1006
- "PlayerIds":{"shape":"MatchmakingPlayerIdList"},
1021
+ "PlayerIds":{"shape":"StringList"},
1007
1022
  "AcceptanceType":{"shape":"AcceptanceType"}
1008
1023
  }
1009
1024
  },
@@ -1063,7 +1078,7 @@
1063
1078
  },
1064
1079
  "sensitive":true
1065
1080
  },
1066
- "Boolean":{"type":"boolean"},
1081
+ "BooleanModel":{"type":"boolean"},
1067
1082
  "Build":{
1068
1083
  "type":"structure",
1069
1084
  "members":{
@@ -1225,7 +1240,7 @@
1225
1240
  "GameSessionQueueArns":{"shape":"QueueArnsList"},
1226
1241
  "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
1227
1242
  "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
1228
- "AcceptanceRequired":{"shape":"Boolean"},
1243
+ "AcceptanceRequired":{"shape":"BooleanModel"},
1229
1244
  "RuleSetName":{"shape":"MatchmakingIdStringModel"},
1230
1245
  "NotificationTarget":{"shape":"SnsArnStringModel"},
1231
1246
  "AdditionalPlayerCount":{"shape":"WholeNumber"},
@@ -1983,7 +1998,8 @@
1983
1998
  "Port":{"shape":"PortNumber"},
1984
1999
  "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"},
1985
2000
  "CreatorId":{"shape":"NonZeroAndMaxString"},
1986
- "GameSessionData":{"shape":"GameSessionData"}
2001
+ "GameSessionData":{"shape":"GameSessionData"},
2002
+ "MatchmakerData":{"shape":"MatchmakerData"}
1987
2003
  }
1988
2004
  },
1989
2005
  "GameSessionActivationTimeoutSeconds":{
@@ -2045,7 +2061,8 @@
2045
2061
  "IpAddress":{"shape":"IpAddress"},
2046
2062
  "Port":{"shape":"PortNumber"},
2047
2063
  "PlacedPlayerSessions":{"shape":"PlacedPlayerSessionList"},
2048
- "GameSessionData":{"shape":"GameSessionData"}
2064
+ "GameSessionData":{"shape":"GameSessionData"},
2065
+ "MatchmakerData":{"shape":"MatchmakerData"}
2049
2066
  }
2050
2067
  },
2051
2068
  "GameSessionPlacementState":{
@@ -2317,6 +2334,11 @@
2317
2334
  "type":"list",
2318
2335
  "member":{"shape":"MatchedPlayerSession"}
2319
2336
  },
2337
+ "MatchmakerData":{
2338
+ "type":"string",
2339
+ "max":390000,
2340
+ "min":1
2341
+ },
2320
2342
  "MatchmakingAcceptanceTimeoutInteger":{
2321
2343
  "type":"integer",
2322
2344
  "max":600,
@@ -2330,7 +2352,7 @@
2330
2352
  "GameSessionQueueArns":{"shape":"QueueArnsList"},
2331
2353
  "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
2332
2354
  "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
2333
- "AcceptanceRequired":{"shape":"Boolean"},
2355
+ "AcceptanceRequired":{"shape":"BooleanModel"},
2334
2356
  "RuleSetName":{"shape":"MatchmakingIdStringModel"},
2335
2357
  "NotificationTarget":{"shape":"SnsArnStringModel"},
2336
2358
  "AdditionalPlayerCount":{"shape":"WholeNumber"},
@@ -2367,10 +2389,6 @@
2367
2389
  "min":1,
2368
2390
  "pattern":"[a-zA-Z0-9-\\.]+"
2369
2391
  },
2370
- "MatchmakingPlayerIdList":{
2371
- "type":"list",
2372
- "member":{"shape":"PlayerIdStringModel"}
2373
- },
2374
2392
  "MatchmakingRequestTimeoutInteger":{
2375
2393
  "type":"integer",
2376
2394
  "max":43200,
@@ -2492,7 +2510,7 @@
2492
2510
  "Player":{
2493
2511
  "type":"structure",
2494
2512
  "members":{
2495
- "PlayerId":{"shape":"PlayerIdStringModel"},
2513
+ "PlayerId":{"shape":"NonZeroAndMaxString"},
2496
2514
  "PlayerAttributes":{"shape":"PlayerAttributeMap"},
2497
2515
  "Team":{"shape":"NonZeroAndMaxString"},
2498
2516
  "LatencyInMs":{"shape":"LatencyMap"}
@@ -2519,12 +2537,6 @@
2519
2537
  "max":25,
2520
2538
  "min":1
2521
2539
  },
2522
- "PlayerIdStringModel":{
2523
- "type":"string",
2524
- "max":128,
2525
- "min":1,
2526
- "pattern":"[a-zA-Z0-9-\\.]+"
2527
- },
2528
2540
  "PlayerLatency":{
2529
2541
  "type":"structure",
2530
2542
  "members":{
@@ -2823,6 +2835,26 @@
2823
2835
  "GameSessionPlacement":{"shape":"GameSessionPlacement"}
2824
2836
  }
2825
2837
  },
2838
+ "StartMatchBackfillInput":{
2839
+ "type":"structure",
2840
+ "required":[
2841
+ "ConfigurationName",
2842
+ "GameSessionArn",
2843
+ "Players"
2844
+ ],
2845
+ "members":{
2846
+ "TicketId":{"shape":"MatchmakingIdStringModel"},
2847
+ "ConfigurationName":{"shape":"MatchmakingIdStringModel"},
2848
+ "GameSessionArn":{"shape":"ArnStringModel"},
2849
+ "Players":{"shape":"PlayerList"}
2850
+ }
2851
+ },
2852
+ "StartMatchBackfillOutput":{
2853
+ "type":"structure",
2854
+ "members":{
2855
+ "MatchmakingTicket":{"shape":"MatchmakingTicket"}
2856
+ }
2857
+ },
2826
2858
  "StartMatchmakingInput":{
2827
2859
  "type":"structure",
2828
2860
  "required":[
@@ -3020,7 +3052,7 @@
3020
3052
  "GameSessionQueueArns":{"shape":"QueueArnsList"},
3021
3053
  "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
3022
3054
  "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
3023
- "AcceptanceRequired":{"shape":"Boolean"},
3055
+ "AcceptanceRequired":{"shape":"BooleanModel"},
3024
3056
  "RuleSetName":{"shape":"MatchmakingIdStringModel"},
3025
3057
  "NotificationTarget":{"shape":"SnsArnStringModel"},
3026
3058
  "AdditionalPlayerCount":{"shape":"WholeNumber"},
@@ -3062,7 +3094,7 @@
3062
3094
  "ValidateMatchmakingRuleSetOutput":{
3063
3095
  "type":"structure",
3064
3096
  "members":{
3065
- "Valid":{"shape":"Boolean"}
3097
+ "Valid":{"shape":"BooleanModel"}
3066
3098
  }
3067
3099
  },
3068
3100
  "VpcPeeringAuthorization":{
@@ -529,6 +529,43 @@
529
529
  "shape": "ConflictException"
530
530
  }
531
531
  ]
532
+ },
533
+ "UpdateChannel": {
534
+ "name": "UpdateChannel",
535
+ "http": {
536
+ "method": "PUT",
537
+ "requestUri": "/prod/channels/{channelId}",
538
+ "responseCode": 200
539
+ },
540
+ "input": {
541
+ "shape": "UpdateChannelRequest"
542
+ },
543
+ "output": {
544
+ "shape": "UpdateChannelResponse"
545
+ },
546
+ "errors": [
547
+ {
548
+ "shape": "UnprocessableEntityException"
549
+ },
550
+ {
551
+ "shape": "BadRequestException"
552
+ },
553
+ {
554
+ "shape": "InternalServerErrorException"
555
+ },
556
+ {
557
+ "shape": "ForbiddenException"
558
+ },
559
+ {
560
+ "shape": "BadGatewayException"
561
+ },
562
+ {
563
+ "shape": "GatewayTimeoutException"
564
+ },
565
+ {
566
+ "shape": "ConflictException"
567
+ }
568
+ ]
532
569
  }
533
570
  },
534
571
  "shapes": {
@@ -1530,7 +1567,8 @@
1530
1567
  },
1531
1568
  "Reserved": {
1532
1569
  "shape": "__string",
1533
- "locationName": "reserved"
1570
+ "locationName": "reserved",
1571
+ "deprecated": true
1534
1572
  },
1535
1573
  "RoleArn": {
1536
1574
  "shape": "__string",
@@ -1568,7 +1606,8 @@
1568
1606
  },
1569
1607
  "Reserved": {
1570
1608
  "shape": "__string",
1571
- "locationName": "reserved"
1609
+ "locationName": "reserved",
1610
+ "deprecated": true
1572
1611
  },
1573
1612
  "RoleArn": {
1574
1613
  "shape": "__string",
@@ -5164,6 +5203,82 @@
5164
5203
  "httpStatusCode": 422
5165
5204
  }
5166
5205
  },
5206
+ "UpdateChannel": {
5207
+ "type": "structure",
5208
+ "members": {
5209
+ "Destinations": {
5210
+ "shape": "ListOfOutputDestination",
5211
+ "locationName": "destinations"
5212
+ },
5213
+ "EncoderSettings": {
5214
+ "shape": "EncoderSettings",
5215
+ "locationName": "encoderSettings"
5216
+ },
5217
+ "InputSpecification": {
5218
+ "shape": "InputSpecification",
5219
+ "locationName": "inputSpecification"
5220
+ },
5221
+ "Name": {
5222
+ "shape": "__string",
5223
+ "locationName": "name"
5224
+ },
5225
+ "RoleArn": {
5226
+ "shape": "__string",
5227
+ "locationName": "roleArn"
5228
+ }
5229
+ }
5230
+ },
5231
+ "UpdateChannelRequest": {
5232
+ "type": "structure",
5233
+ "members": {
5234
+ "ChannelId": {
5235
+ "shape": "__string",
5236
+ "location": "uri",
5237
+ "locationName": "channelId"
5238
+ },
5239
+ "Destinations": {
5240
+ "shape": "ListOfOutputDestination",
5241
+ "locationName": "destinations"
5242
+ },
5243
+ "EncoderSettings": {
5244
+ "shape": "EncoderSettings",
5245
+ "locationName": "encoderSettings"
5246
+ },
5247
+ "InputSpecification": {
5248
+ "shape": "InputSpecification",
5249
+ "locationName": "inputSpecification"
5250
+ },
5251
+ "Name": {
5252
+ "shape": "__string",
5253
+ "locationName": "name"
5254
+ },
5255
+ "RoleArn": {
5256
+ "shape": "__string",
5257
+ "locationName": "roleArn"
5258
+ }
5259
+ },
5260
+ "required": [
5261
+ "ChannelId"
5262
+ ]
5263
+ },
5264
+ "UpdateChannelResponse": {
5265
+ "type": "structure",
5266
+ "members": {
5267
+ "Channel": {
5268
+ "shape": "Channel",
5269
+ "locationName": "channel"
5270
+ }
5271
+ }
5272
+ },
5273
+ "UpdateChannelResultModel": {
5274
+ "type": "structure",
5275
+ "members": {
5276
+ "Channel": {
5277
+ "shape": "Channel",
5278
+ "locationName": "channel"
5279
+ }
5280
+ }
5281
+ },
5167
5282
  "ValidationError": {
5168
5283
  "type": "structure",
5169
5284
  "members": {
@@ -57,6 +57,21 @@
57
57
  {"shape":"InternalServerError"}
58
58
  ]
59
59
  },
60
+ "DeleteCorsPolicy":{
61
+ "name":"DeleteCorsPolicy",
62
+ "http":{
63
+ "method":"POST",
64
+ "requestUri":"/"
65
+ },
66
+ "input":{"shape":"DeleteCorsPolicyInput"},
67
+ "output":{"shape":"DeleteCorsPolicyOutput"},
68
+ "errors":[
69
+ {"shape":"ContainerInUseException"},
70
+ {"shape":"ContainerNotFoundException"},
71
+ {"shape":"CorsPolicyNotFoundException"},
72
+ {"shape":"InternalServerError"}
73
+ ]
74
+ },
60
75
  "DescribeContainer":{
61
76
  "name":"DescribeContainer",
62
77
  "http":{
@@ -85,6 +100,21 @@
85
100
  {"shape":"InternalServerError"}
86
101
  ]
87
102
  },
103
+ "GetCorsPolicy":{
104
+ "name":"GetCorsPolicy",
105
+ "http":{
106
+ "method":"POST",
107
+ "requestUri":"/"
108
+ },
109
+ "input":{"shape":"GetCorsPolicyInput"},
110
+ "output":{"shape":"GetCorsPolicyOutput"},
111
+ "errors":[
112
+ {"shape":"ContainerInUseException"},
113
+ {"shape":"ContainerNotFoundException"},
114
+ {"shape":"CorsPolicyNotFoundException"},
115
+ {"shape":"InternalServerError"}
116
+ ]
117
+ },
88
118
  "ListContainers":{
89
119
  "name":"ListContainers",
90
120
  "http":{
@@ -110,9 +140,37 @@
110
140
  {"shape":"ContainerInUseException"},
111
141
  {"shape":"InternalServerError"}
112
142
  ]
143
+ },
144
+ "PutCorsPolicy":{
145
+ "name":"PutCorsPolicy",
146
+ "http":{
147
+ "method":"POST",
148
+ "requestUri":"/"
149
+ },
150
+ "input":{"shape":"PutCorsPolicyInput"},
151
+ "output":{"shape":"PutCorsPolicyOutput"},
152
+ "errors":[
153
+ {"shape":"ContainerNotFoundException"},
154
+ {"shape":"ContainerInUseException"},
155
+ {"shape":"InternalServerError"}
156
+ ]
113
157
  }
114
158
  },
115
159
  "shapes":{
160
+ "AllowedHeaders":{
161
+ "type":"list",
162
+ "member":{"shape":"Header"},
163
+ "max":100,
164
+ "min":0
165
+ },
166
+ "AllowedMethods":{
167
+ "type":"list",
168
+ "member":{"shape":"MethodName"}
169
+ },
170
+ "AllowedOrigins":{
171
+ "type":"list",
172
+ "member":{"shape":"Origin"}
173
+ },
116
174
  "Container":{
117
175
  "type":"structure",
118
176
  "members":{
@@ -174,6 +232,29 @@
174
232
  "max":16,
175
233
  "min":1
176
234
  },
235
+ "CorsPolicy":{
236
+ "type":"list",
237
+ "member":{"shape":"CorsRule"},
238
+ "max":100,
239
+ "min":1
240
+ },
241
+ "CorsPolicyNotFoundException":{
242
+ "type":"structure",
243
+ "members":{
244
+ "Message":{"shape":"ErrorMessage"}
245
+ },
246
+ "exception":true
247
+ },
248
+ "CorsRule":{
249
+ "type":"structure",
250
+ "members":{
251
+ "AllowedOrigins":{"shape":"AllowedOrigins"},
252
+ "AllowedMethods":{"shape":"AllowedMethods"},
253
+ "AllowedHeaders":{"shape":"AllowedHeaders"},
254
+ "MaxAgeSeconds":{"shape":"MaxAgeSeconds"},
255
+ "ExposeHeaders":{"shape":"ExposeHeaders"}
256
+ }
257
+ },
177
258
  "CreateContainerInput":{
178
259
  "type":"structure",
179
260
  "required":["ContainerName"],
@@ -212,6 +293,18 @@
212
293
  "members":{
213
294
  }
214
295
  },
296
+ "DeleteCorsPolicyInput":{
297
+ "type":"structure",
298
+ "required":["ContainerName"],
299
+ "members":{
300
+ "ContainerName":{"shape":"ContainerName"}
301
+ }
302
+ },
303
+ "DeleteCorsPolicyOutput":{
304
+ "type":"structure",
305
+ "members":{
306
+ }
307
+ },
215
308
  "DescribeContainerInput":{
216
309
  "type":"structure",
217
310
  "members":{
@@ -235,6 +328,12 @@
235
328
  "min":1,
236
329
  "pattern":"[ \\w:\\.\\?-]+"
237
330
  },
331
+ "ExposeHeaders":{
332
+ "type":"list",
333
+ "member":{"shape":"Header"},
334
+ "max":100,
335
+ "min":0
336
+ },
238
337
  "GetContainerPolicyInput":{
239
338
  "type":"structure",
240
339
  "required":["ContainerName"],
@@ -249,6 +348,26 @@
249
348
  "Policy":{"shape":"ContainerPolicy"}
250
349
  }
251
350
  },
351
+ "GetCorsPolicyInput":{
352
+ "type":"structure",
353
+ "required":["ContainerName"],
354
+ "members":{
355
+ "ContainerName":{"shape":"ContainerName"}
356
+ }
357
+ },
358
+ "GetCorsPolicyOutput":{
359
+ "type":"structure",
360
+ "required":["CorsPolicy"],
361
+ "members":{
362
+ "CorsPolicy":{"shape":"CorsPolicy"}
363
+ }
364
+ },
365
+ "Header":{
366
+ "type":"string",
367
+ "max":8192,
368
+ "min":1,
369
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
370
+ },
252
371
  "InternalServerError":{
253
372
  "type":"structure",
254
373
  "members":{
@@ -279,6 +398,24 @@
279
398
  "NextToken":{"shape":"PaginationToken"}
280
399
  }
281
400
  },
401
+ "MaxAgeSeconds":{
402
+ "type":"integer",
403
+ "max":2147483647,
404
+ "min":0
405
+ },
406
+ "MethodName":{
407
+ "type":"string",
408
+ "enum":[
409
+ "PUT",
410
+ "GET",
411
+ "DELETE",
412
+ "HEAD"
413
+ ]
414
+ },
415
+ "Origin":{
416
+ "type":"string",
417
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
418
+ },
282
419
  "PaginationToken":{
283
420
  "type":"string",
284
421
  "max":255,
@@ -308,6 +445,22 @@
308
445
  "members":{
309
446
  }
310
447
  },
448
+ "PutCorsPolicyInput":{
449
+ "type":"structure",
450
+ "required":[
451
+ "ContainerName",
452
+ "CorsPolicy"
453
+ ],
454
+ "members":{
455
+ "ContainerName":{"shape":"ContainerName"},
456
+ "CorsPolicy":{"shape":"CorsPolicy"}
457
+ }
458
+ },
459
+ "PutCorsPolicyOutput":{
460
+ "type":"structure",
461
+ "members":{
462
+ }
463
+ },
311
464
  "TimeStamp":{"type":"timestamp"}
312
465
  }
313
466
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.127'
2
+ VERSION = '2.10.128'
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.10.127
4
+ version: 2.10.128
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-02-06 00:00:00.000000000 Z
11
+ date: 2018-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath