aws-sdk-core 2.11.593 → 2.11.598
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/application-autoscaling/2016-02-06/api-2.json +7 -3
- data/apis/batch/2016-08-10/api-2.json +71 -3
- data/apis/config/2014-11-12/api-2.json +5 -13
- data/apis/datasync/2018-11-09/api-2.json +6 -3
- data/apis/ec2/2016-11-15/api-2.json +32 -0
- data/apis/elasticmapreduce/2009-03-31/api-2.json +25 -2
- data/apis/frauddetector/2019-11-15/api-2.json +3 -3
- data/apis/imagebuilder/2019-12-02/api-2.json +22 -7
- data/apis/iot/2015-05-28/api-2.json +53 -2
- data/apis/mediaconnect/2018-11-14/api-2.json +459 -1
- data/apis/mediaconnect/2018-11-14/paginators-1.json +12 -0
- data/apis/pinpoint/2016-12-01/api-2.json +50 -5
- data/apis/rds/2014-10-31/api-2.json +13 -1
- data/apis/s3/2006-03-01/api-2.json +4 -2
- data/apis/s3/2006-03-01/examples-1.json +138 -138
- data/apis/s3control/2018-08-20/api-2.json +836 -19
- data/apis/s3control/2018-08-20/paginators-1.json +5 -0
- data/apis/s3outposts/2017-07-25/api-2.json +250 -0
- data/apis/s3outposts/2017-07-25/examples-1.json +5 -0
- data/apis/s3outposts/2017-07-25/paginators-1.json +10 -0
- data/apis/schemas/2019-12-02/api-2.json +113 -0
- data/apis/securityhub/2018-10-26/api-2.json +751 -2
- data/apis/sts/2011-06-15/api-2.json +4 -5
- data/apis/timestream-query/2018-11-01/api-2.json +299 -0
- data/apis/timestream-query/2018-11-01/examples-1.json +5 -0
- data/apis/timestream-query/2018-11-01/paginators-1.json +14 -0
- data/apis/timestream-write/2018-11-01/api-2.json +775 -0
- data/apis/timestream-write/2018-11-01/examples-1.json +5 -0
- data/apis/timestream-write/2018-11-01/paginators-1.json +14 -0
- data/endpoints.json +43 -0
- data/lib/aws-sdk-core.rb +3 -0
- data/lib/aws-sdk-core/eager_loader.rb +1 -0
- data/lib/aws-sdk-core/s3outposts.rb +6 -0
- data/lib/aws-sdk-core/timestreamquery.rb +6 -0
- data/lib/aws-sdk-core/timestreamwrite.rb +6 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/service-models.json +12 -0
- metadata +14 -2
@@ -2886,7 +2886,8 @@
|
|
2886
2886
|
{"shape":"InternalException"},
|
2887
2887
|
{"shape":"NotConfiguredException"},
|
2888
2888
|
{"shape":"InvalidRequestException"},
|
2889
|
-
{"shape":"ServiceUnavailableException"}
|
2889
|
+
{"shape":"ServiceUnavailableException"},
|
2890
|
+
{"shape":"LimitExceededException"}
|
2890
2891
|
]
|
2891
2892
|
},
|
2892
2893
|
"SetV2LoggingOptions":{
|
@@ -3495,6 +3496,7 @@
|
|
3495
3496
|
"iotEvents":{"shape":"IotEventsAction"},
|
3496
3497
|
"iotSiteWise":{"shape":"IotSiteWiseAction"},
|
3497
3498
|
"stepFunctions":{"shape":"StepFunctionsAction"},
|
3499
|
+
"timestream":{"shape":"TimestreamAction"},
|
3498
3500
|
"http":{"shape":"HttpAction"}
|
3499
3501
|
}
|
3500
3502
|
},
|
@@ -3618,7 +3620,6 @@
|
|
3618
3620
|
"AssetId":{"type":"string"},
|
3619
3621
|
"AssetPropertyAlias":{
|
3620
3622
|
"type":"string",
|
3621
|
-
"max":2048,
|
3622
3623
|
"min":1
|
3623
3624
|
},
|
3624
3625
|
"AssetPropertyBooleanValue":{"type":"string"},
|
@@ -10962,6 +10963,56 @@
|
|
10962
10963
|
}
|
10963
10964
|
},
|
10964
10965
|
"Timestamp":{"type":"timestamp"},
|
10966
|
+
"TimestreamAction":{
|
10967
|
+
"type":"structure",
|
10968
|
+
"required":[
|
10969
|
+
"roleArn",
|
10970
|
+
"databaseName",
|
10971
|
+
"tableName",
|
10972
|
+
"dimensions"
|
10973
|
+
],
|
10974
|
+
"members":{
|
10975
|
+
"roleArn":{"shape":"AwsArn"},
|
10976
|
+
"databaseName":{"shape":"TimestreamDatabaseName"},
|
10977
|
+
"tableName":{"shape":"TimestreamTableName"},
|
10978
|
+
"dimensions":{"shape":"TimestreamDimensionList"},
|
10979
|
+
"timestamp":{"shape":"TimestreamTimestamp"}
|
10980
|
+
}
|
10981
|
+
},
|
10982
|
+
"TimestreamDatabaseName":{"type":"string"},
|
10983
|
+
"TimestreamDimension":{
|
10984
|
+
"type":"structure",
|
10985
|
+
"required":[
|
10986
|
+
"name",
|
10987
|
+
"value"
|
10988
|
+
],
|
10989
|
+
"members":{
|
10990
|
+
"name":{"shape":"TimestreamDimensionName"},
|
10991
|
+
"value":{"shape":"TimestreamDimensionValue"}
|
10992
|
+
}
|
10993
|
+
},
|
10994
|
+
"TimestreamDimensionList":{
|
10995
|
+
"type":"list",
|
10996
|
+
"member":{"shape":"TimestreamDimension"},
|
10997
|
+
"max":128,
|
10998
|
+
"min":1
|
10999
|
+
},
|
11000
|
+
"TimestreamDimensionName":{"type":"string"},
|
11001
|
+
"TimestreamDimensionValue":{"type":"string"},
|
11002
|
+
"TimestreamTableName":{"type":"string"},
|
11003
|
+
"TimestreamTimestamp":{
|
11004
|
+
"type":"structure",
|
11005
|
+
"required":[
|
11006
|
+
"value",
|
11007
|
+
"unit"
|
11008
|
+
],
|
11009
|
+
"members":{
|
11010
|
+
"value":{"shape":"TimestreamTimestampValue"},
|
11011
|
+
"unit":{"shape":"TimestreamTimestampUnit"}
|
11012
|
+
}
|
11013
|
+
},
|
11014
|
+
"TimestreamTimestampUnit":{"type":"string"},
|
11015
|
+
"TimestreamTimestampValue":{"type":"string"},
|
10965
11016
|
"TlsContext":{
|
10966
11017
|
"type":"structure",
|
10967
11018
|
"members":{
|
@@ -218,6 +218,68 @@
|
|
218
218
|
}
|
219
219
|
]
|
220
220
|
},
|
221
|
+
"DescribeOffering": {
|
222
|
+
"name": "DescribeOffering",
|
223
|
+
"http": {
|
224
|
+
"method": "GET",
|
225
|
+
"requestUri": "/v1/offerings/{offeringArn}",
|
226
|
+
"responseCode": 200
|
227
|
+
},
|
228
|
+
"input": {
|
229
|
+
"shape": "DescribeOfferingRequest"
|
230
|
+
},
|
231
|
+
"output": {
|
232
|
+
"shape": "DescribeOfferingResponse"
|
233
|
+
},
|
234
|
+
"errors": [
|
235
|
+
{
|
236
|
+
"shape": "NotFoundException"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"shape": "ServiceUnavailableException"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"shape": "TooManyRequestsException"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"shape": "BadRequestException"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"shape": "InternalServerErrorException"
|
249
|
+
}
|
250
|
+
]
|
251
|
+
},
|
252
|
+
"DescribeReservation": {
|
253
|
+
"name": "DescribeReservation",
|
254
|
+
"http": {
|
255
|
+
"method": "GET",
|
256
|
+
"requestUri": "/v1/reservations/{reservationArn}",
|
257
|
+
"responseCode": 200
|
258
|
+
},
|
259
|
+
"input": {
|
260
|
+
"shape": "DescribeReservationRequest"
|
261
|
+
},
|
262
|
+
"output": {
|
263
|
+
"shape": "DescribeReservationResponse"
|
264
|
+
},
|
265
|
+
"errors": [
|
266
|
+
{
|
267
|
+
"shape": "NotFoundException"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"shape": "ServiceUnavailableException"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"shape": "TooManyRequestsException"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"shape": "BadRequestException"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"shape": "InternalServerErrorException"
|
280
|
+
}
|
281
|
+
]
|
282
|
+
},
|
221
283
|
"GrantFlowEntitlements": {
|
222
284
|
"name": "GrantFlowEntitlements",
|
223
285
|
"http": {
|
@@ -311,6 +373,62 @@
|
|
311
373
|
}
|
312
374
|
]
|
313
375
|
},
|
376
|
+
"ListOfferings": {
|
377
|
+
"name": "ListOfferings",
|
378
|
+
"http": {
|
379
|
+
"method": "GET",
|
380
|
+
"requestUri": "/v1/offerings",
|
381
|
+
"responseCode": 200
|
382
|
+
},
|
383
|
+
"input": {
|
384
|
+
"shape": "ListOfferingsRequest"
|
385
|
+
},
|
386
|
+
"output": {
|
387
|
+
"shape": "ListOfferingsResponse"
|
388
|
+
},
|
389
|
+
"errors": [
|
390
|
+
{
|
391
|
+
"shape": "ServiceUnavailableException"
|
392
|
+
},
|
393
|
+
{
|
394
|
+
"shape": "TooManyRequestsException"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"shape": "BadRequestException"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"shape": "InternalServerErrorException"
|
401
|
+
}
|
402
|
+
]
|
403
|
+
},
|
404
|
+
"ListReservations": {
|
405
|
+
"name": "ListReservations",
|
406
|
+
"http": {
|
407
|
+
"method": "GET",
|
408
|
+
"requestUri": "/v1/reservations",
|
409
|
+
"responseCode": 200
|
410
|
+
},
|
411
|
+
"input": {
|
412
|
+
"shape": "ListReservationsRequest"
|
413
|
+
},
|
414
|
+
"output": {
|
415
|
+
"shape": "ListReservationsResponse"
|
416
|
+
},
|
417
|
+
"errors": [
|
418
|
+
{
|
419
|
+
"shape": "ServiceUnavailableException"
|
420
|
+
},
|
421
|
+
{
|
422
|
+
"shape": "TooManyRequestsException"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"shape": "BadRequestException"
|
426
|
+
},
|
427
|
+
{
|
428
|
+
"shape": "InternalServerErrorException"
|
429
|
+
}
|
430
|
+
]
|
431
|
+
},
|
314
432
|
"ListTagsForResource": {
|
315
433
|
"name": "ListTagsForResource",
|
316
434
|
"http": {
|
@@ -336,6 +454,40 @@
|
|
336
454
|
}
|
337
455
|
]
|
338
456
|
},
|
457
|
+
"PurchaseOffering": {
|
458
|
+
"name": "PurchaseOffering",
|
459
|
+
"http": {
|
460
|
+
"method": "POST",
|
461
|
+
"requestUri": "/v1/offerings/{offeringArn}",
|
462
|
+
"responseCode": 201
|
463
|
+
},
|
464
|
+
"input": {
|
465
|
+
"shape": "PurchaseOfferingRequest"
|
466
|
+
},
|
467
|
+
"output": {
|
468
|
+
"shape": "PurchaseOfferingResponse"
|
469
|
+
},
|
470
|
+
"errors": [
|
471
|
+
{
|
472
|
+
"shape": "BadRequestException"
|
473
|
+
},
|
474
|
+
{
|
475
|
+
"shape": "InternalServerErrorException"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"shape": "ForbiddenException"
|
479
|
+
},
|
480
|
+
{
|
481
|
+
"shape": "NotFoundException"
|
482
|
+
},
|
483
|
+
{
|
484
|
+
"shape": "ServiceUnavailableException"
|
485
|
+
},
|
486
|
+
{
|
487
|
+
"shape": "TooManyRequestsException"
|
488
|
+
}
|
489
|
+
]
|
490
|
+
},
|
339
491
|
"RemoveFlowOutput": {
|
340
492
|
"name": "RemoveFlowOutput",
|
341
493
|
"http": {
|
@@ -1028,6 +1180,56 @@
|
|
1028
1180
|
}
|
1029
1181
|
}
|
1030
1182
|
},
|
1183
|
+
"DescribeOfferingRequest": {
|
1184
|
+
"type": "structure",
|
1185
|
+
"members": {
|
1186
|
+
"OfferingArn": {
|
1187
|
+
"shape": "__string",
|
1188
|
+
"location": "uri",
|
1189
|
+
"locationName": "offeringArn"
|
1190
|
+
}
|
1191
|
+
},
|
1192
|
+
"required": [
|
1193
|
+
"OfferingArn"
|
1194
|
+
]
|
1195
|
+
},
|
1196
|
+
"DescribeOfferingResponse": {
|
1197
|
+
"type": "structure",
|
1198
|
+
"members": {
|
1199
|
+
"Offering": {
|
1200
|
+
"shape": "Offering",
|
1201
|
+
"locationName": "offering"
|
1202
|
+
}
|
1203
|
+
}
|
1204
|
+
},
|
1205
|
+
"DescribeReservationRequest": {
|
1206
|
+
"type": "structure",
|
1207
|
+
"members": {
|
1208
|
+
"ReservationArn": {
|
1209
|
+
"shape": "__string",
|
1210
|
+
"location": "uri",
|
1211
|
+
"locationName": "reservationArn"
|
1212
|
+
}
|
1213
|
+
},
|
1214
|
+
"required": [
|
1215
|
+
"ReservationArn"
|
1216
|
+
]
|
1217
|
+
},
|
1218
|
+
"DescribeReservationResponse": {
|
1219
|
+
"type": "structure",
|
1220
|
+
"members": {
|
1221
|
+
"Reservation": {
|
1222
|
+
"shape": "Reservation",
|
1223
|
+
"locationName": "reservation"
|
1224
|
+
}
|
1225
|
+
}
|
1226
|
+
},
|
1227
|
+
"DurationUnits": {
|
1228
|
+
"type": "string",
|
1229
|
+
"enum": [
|
1230
|
+
"MONTHS"
|
1231
|
+
]
|
1232
|
+
},
|
1031
1233
|
"Encryption": {
|
1032
1234
|
"type": "structure",
|
1033
1235
|
"members": {
|
@@ -1367,6 +1569,62 @@
|
|
1367
1569
|
}
|
1368
1570
|
}
|
1369
1571
|
},
|
1572
|
+
"ListOfferingsRequest": {
|
1573
|
+
"type": "structure",
|
1574
|
+
"members": {
|
1575
|
+
"MaxResults": {
|
1576
|
+
"shape": "MaxResults",
|
1577
|
+
"location": "querystring",
|
1578
|
+
"locationName": "maxResults"
|
1579
|
+
},
|
1580
|
+
"NextToken": {
|
1581
|
+
"shape": "__string",
|
1582
|
+
"location": "querystring",
|
1583
|
+
"locationName": "nextToken"
|
1584
|
+
}
|
1585
|
+
}
|
1586
|
+
},
|
1587
|
+
"ListOfferingsResponse": {
|
1588
|
+
"type": "structure",
|
1589
|
+
"members": {
|
1590
|
+
"NextToken": {
|
1591
|
+
"shape": "__string",
|
1592
|
+
"locationName": "nextToken"
|
1593
|
+
},
|
1594
|
+
"Offerings": {
|
1595
|
+
"shape": "__listOfOffering",
|
1596
|
+
"locationName": "offerings"
|
1597
|
+
}
|
1598
|
+
}
|
1599
|
+
},
|
1600
|
+
"ListReservationsRequest": {
|
1601
|
+
"type": "structure",
|
1602
|
+
"members": {
|
1603
|
+
"MaxResults": {
|
1604
|
+
"shape": "MaxResults",
|
1605
|
+
"location": "querystring",
|
1606
|
+
"locationName": "maxResults"
|
1607
|
+
},
|
1608
|
+
"NextToken": {
|
1609
|
+
"shape": "__string",
|
1610
|
+
"location": "querystring",
|
1611
|
+
"locationName": "nextToken"
|
1612
|
+
}
|
1613
|
+
}
|
1614
|
+
},
|
1615
|
+
"ListReservationsResponse": {
|
1616
|
+
"type": "structure",
|
1617
|
+
"members": {
|
1618
|
+
"NextToken": {
|
1619
|
+
"shape": "__string",
|
1620
|
+
"locationName": "nextToken"
|
1621
|
+
},
|
1622
|
+
"Reservations": {
|
1623
|
+
"shape": "__listOfReservation",
|
1624
|
+
"locationName": "reservations"
|
1625
|
+
}
|
1626
|
+
}
|
1627
|
+
},
|
1370
1628
|
"ListTagsForResourceRequest": {
|
1371
1629
|
"type": "structure",
|
1372
1630
|
"members": {
|
@@ -1480,6 +1738,53 @@
|
|
1480
1738
|
"httpStatusCode": 404
|
1481
1739
|
}
|
1482
1740
|
},
|
1741
|
+
"Offering": {
|
1742
|
+
"type": "structure",
|
1743
|
+
"members": {
|
1744
|
+
"CurrencyCode": {
|
1745
|
+
"shape": "__string",
|
1746
|
+
"locationName": "currencyCode"
|
1747
|
+
},
|
1748
|
+
"Duration": {
|
1749
|
+
"shape": "__integer",
|
1750
|
+
"locationName": "duration"
|
1751
|
+
},
|
1752
|
+
"DurationUnits": {
|
1753
|
+
"shape": "DurationUnits",
|
1754
|
+
"locationName": "durationUnits"
|
1755
|
+
},
|
1756
|
+
"OfferingArn": {
|
1757
|
+
"shape": "__string",
|
1758
|
+
"locationName": "offeringArn"
|
1759
|
+
},
|
1760
|
+
"OfferingDescription": {
|
1761
|
+
"shape": "__string",
|
1762
|
+
"locationName": "offeringDescription"
|
1763
|
+
},
|
1764
|
+
"PricePerUnit": {
|
1765
|
+
"shape": "__string",
|
1766
|
+
"locationName": "pricePerUnit"
|
1767
|
+
},
|
1768
|
+
"PriceUnits": {
|
1769
|
+
"shape": "PriceUnits",
|
1770
|
+
"locationName": "priceUnits"
|
1771
|
+
},
|
1772
|
+
"ResourceSpecification": {
|
1773
|
+
"shape": "ResourceSpecification",
|
1774
|
+
"locationName": "resourceSpecification"
|
1775
|
+
}
|
1776
|
+
},
|
1777
|
+
"required": [
|
1778
|
+
"CurrencyCode",
|
1779
|
+
"OfferingArn",
|
1780
|
+
"OfferingDescription",
|
1781
|
+
"DurationUnits",
|
1782
|
+
"Duration",
|
1783
|
+
"PricePerUnit",
|
1784
|
+
"ResourceSpecification",
|
1785
|
+
"PriceUnits"
|
1786
|
+
]
|
1787
|
+
},
|
1483
1788
|
"Output": {
|
1484
1789
|
"type": "structure",
|
1485
1790
|
"members": {
|
@@ -1533,6 +1838,12 @@
|
|
1533
1838
|
"Name"
|
1534
1839
|
]
|
1535
1840
|
},
|
1841
|
+
"PriceUnits": {
|
1842
|
+
"type": "string",
|
1843
|
+
"enum": [
|
1844
|
+
"HOURLY"
|
1845
|
+
]
|
1846
|
+
},
|
1536
1847
|
"Protocol": {
|
1537
1848
|
"type": "string",
|
1538
1849
|
"enum": [
|
@@ -1543,6 +1854,38 @@
|
|
1543
1854
|
"rist"
|
1544
1855
|
]
|
1545
1856
|
},
|
1857
|
+
"PurchaseOfferingRequest": {
|
1858
|
+
"type": "structure",
|
1859
|
+
"members": {
|
1860
|
+
"OfferingArn": {
|
1861
|
+
"shape": "__string",
|
1862
|
+
"location": "uri",
|
1863
|
+
"locationName": "offeringArn"
|
1864
|
+
},
|
1865
|
+
"ReservationName": {
|
1866
|
+
"shape": "__string",
|
1867
|
+
"locationName": "reservationName"
|
1868
|
+
},
|
1869
|
+
"Start": {
|
1870
|
+
"shape": "__string",
|
1871
|
+
"locationName": "start"
|
1872
|
+
}
|
1873
|
+
},
|
1874
|
+
"required": [
|
1875
|
+
"OfferingArn",
|
1876
|
+
"Start",
|
1877
|
+
"ReservationName"
|
1878
|
+
]
|
1879
|
+
},
|
1880
|
+
"PurchaseOfferingResponse": {
|
1881
|
+
"type": "structure",
|
1882
|
+
"members": {
|
1883
|
+
"Reservation": {
|
1884
|
+
"shape": "Reservation",
|
1885
|
+
"locationName": "reservation"
|
1886
|
+
}
|
1887
|
+
}
|
1888
|
+
},
|
1546
1889
|
"RemoveFlowOutputRequest": {
|
1547
1890
|
"type": "structure",
|
1548
1891
|
"members": {
|
@@ -1643,6 +1986,109 @@
|
|
1643
1986
|
}
|
1644
1987
|
}
|
1645
1988
|
},
|
1989
|
+
"Reservation": {
|
1990
|
+
"type": "structure",
|
1991
|
+
"members": {
|
1992
|
+
"CurrencyCode": {
|
1993
|
+
"shape": "__string",
|
1994
|
+
"locationName": "currencyCode"
|
1995
|
+
},
|
1996
|
+
"Duration": {
|
1997
|
+
"shape": "__integer",
|
1998
|
+
"locationName": "duration"
|
1999
|
+
},
|
2000
|
+
"DurationUnits": {
|
2001
|
+
"shape": "DurationUnits",
|
2002
|
+
"locationName": "durationUnits"
|
2003
|
+
},
|
2004
|
+
"End": {
|
2005
|
+
"shape": "__string",
|
2006
|
+
"locationName": "end"
|
2007
|
+
},
|
2008
|
+
"OfferingArn": {
|
2009
|
+
"shape": "__string",
|
2010
|
+
"locationName": "offeringArn"
|
2011
|
+
},
|
2012
|
+
"OfferingDescription": {
|
2013
|
+
"shape": "__string",
|
2014
|
+
"locationName": "offeringDescription"
|
2015
|
+
},
|
2016
|
+
"PricePerUnit": {
|
2017
|
+
"shape": "__string",
|
2018
|
+
"locationName": "pricePerUnit"
|
2019
|
+
},
|
2020
|
+
"PriceUnits": {
|
2021
|
+
"shape": "PriceUnits",
|
2022
|
+
"locationName": "priceUnits"
|
2023
|
+
},
|
2024
|
+
"ReservationArn": {
|
2025
|
+
"shape": "__string",
|
2026
|
+
"locationName": "reservationArn"
|
2027
|
+
},
|
2028
|
+
"ReservationName": {
|
2029
|
+
"shape": "__string",
|
2030
|
+
"locationName": "reservationName"
|
2031
|
+
},
|
2032
|
+
"ReservationState": {
|
2033
|
+
"shape": "ReservationState",
|
2034
|
+
"locationName": "reservationState"
|
2035
|
+
},
|
2036
|
+
"ResourceSpecification": {
|
2037
|
+
"shape": "ResourceSpecification",
|
2038
|
+
"locationName": "resourceSpecification"
|
2039
|
+
},
|
2040
|
+
"Start": {
|
2041
|
+
"shape": "__string",
|
2042
|
+
"locationName": "start"
|
2043
|
+
}
|
2044
|
+
},
|
2045
|
+
"required": [
|
2046
|
+
"CurrencyCode",
|
2047
|
+
"ReservationState",
|
2048
|
+
"OfferingArn",
|
2049
|
+
"ReservationArn",
|
2050
|
+
"Start",
|
2051
|
+
"OfferingDescription",
|
2052
|
+
"ReservationName",
|
2053
|
+
"End",
|
2054
|
+
"Duration",
|
2055
|
+
"DurationUnits",
|
2056
|
+
"PricePerUnit",
|
2057
|
+
"ResourceSpecification",
|
2058
|
+
"PriceUnits"
|
2059
|
+
]
|
2060
|
+
},
|
2061
|
+
"ReservationState": {
|
2062
|
+
"type": "string",
|
2063
|
+
"enum": [
|
2064
|
+
"ACTIVE",
|
2065
|
+
"EXPIRED",
|
2066
|
+
"PROCESSING",
|
2067
|
+
"CANCELED"
|
2068
|
+
]
|
2069
|
+
},
|
2070
|
+
"ResourceSpecification": {
|
2071
|
+
"type": "structure",
|
2072
|
+
"members": {
|
2073
|
+
"ReservedBitrate": {
|
2074
|
+
"shape": "__integer",
|
2075
|
+
"locationName": "reservedBitrate"
|
2076
|
+
},
|
2077
|
+
"ResourceType": {
|
2078
|
+
"shape": "ResourceType",
|
2079
|
+
"locationName": "resourceType"
|
2080
|
+
}
|
2081
|
+
},
|
2082
|
+
"required": [
|
2083
|
+
"ResourceType"
|
2084
|
+
]
|
2085
|
+
},
|
2086
|
+
"ResourceType": {
|
2087
|
+
"type": "string",
|
2088
|
+
"enum": [
|
2089
|
+
"Mbps_Outbound_Bandwidth"
|
2090
|
+
]
|
2091
|
+
},
|
1646
2092
|
"ResponseError": {
|
1647
2093
|
"type": "structure",
|
1648
2094
|
"members": {
|
@@ -2355,12 +2801,24 @@
|
|
2355
2801
|
"shape": "ListedFlow"
|
2356
2802
|
}
|
2357
2803
|
},
|
2804
|
+
"__listOfOffering": {
|
2805
|
+
"type": "list",
|
2806
|
+
"member": {
|
2807
|
+
"shape": "Offering"
|
2808
|
+
}
|
2809
|
+
},
|
2358
2810
|
"__listOfOutput": {
|
2359
2811
|
"type": "list",
|
2360
2812
|
"member": {
|
2361
2813
|
"shape": "Output"
|
2362
2814
|
}
|
2363
2815
|
},
|
2816
|
+
"__listOfReservation": {
|
2817
|
+
"type": "list",
|
2818
|
+
"member": {
|
2819
|
+
"shape": "Reservation"
|
2820
|
+
}
|
2821
|
+
},
|
2364
2822
|
"__listOfSetSourceRequest": {
|
2365
2823
|
"type": "list",
|
2366
2824
|
"member": {
|
@@ -2421,4 +2879,4 @@
|
|
2421
2879
|
"timestampFormat": "unixTimestamp"
|
2422
2880
|
}
|
2423
2881
|
}
|
2424
|
-
}
|
2882
|
+
}
|