aws-sdk-core 2.11.71 → 2.11.72

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: 6e34c03d67cd388add220efba3bcf847bb68e40e
4
- data.tar.gz: f567f1cf0783f6670065a797e0c6ac2343a9989b
3
+ metadata.gz: 98ae0ba5401c3bc270da57edaba1375688c89dfc
4
+ data.tar.gz: 1c35a7d387cbf99c177601ff9dad7eebc1457612
5
5
  SHA512:
6
- metadata.gz: b707811940f2e09251738763cbc82b2a87a1ff6589abf6758e32a4fb987567ee5cea12786f99916709a0c3e2d045787647b9e8ad2fce9f68a59403a7855d14c4
7
- data.tar.gz: 82641026f449f6f28198f2cd63097cd7563e6bd1d5d02ccc547a492d645436117a2c809ecd9c935e9a8890c3290a6e8ea457f2055496e30d0f0b7b7b151f5e97
6
+ metadata.gz: e1510fb13adc06bd076462dad0010b4d622a6740645e13ef36d93900bb6ec8bd41f7d506d33e6a17c1e6b8b2eabc8e59e6bdaa1b9ac9f41e4e8ae29145daca43
7
+ data.tar.gz: 541201b9c77de10350177fb768861d2808b74707b8939fe14a66b14338174525213733098924ba238cd5f730706083da60187b5e9d2c6ed81c0186db5f33747b
@@ -83,6 +83,7 @@
83
83
  "output":{"shape":"DescribeCertificateAuthorityAuditReportResponse"},
84
84
  "errors":[
85
85
  {"shape":"ResourceNotFoundException"},
86
+ {"shape":"InvalidArnException"},
86
87
  {"shape":"InvalidArgsException"}
87
88
  ]
88
89
  },
@@ -128,7 +129,8 @@
128
129
  {"shape":"RequestInProgressException"},
129
130
  {"shape":"RequestFailedException"},
130
131
  {"shape":"ResourceNotFoundException"},
131
- {"shape":"InvalidArnException"}
132
+ {"shape":"InvalidArnException"},
133
+ {"shape":"InvalidStateException"}
132
134
  ]
133
135
  },
134
136
  "ImportCertificateAuthorityCertificate":{
@@ -144,6 +146,7 @@
144
146
  {"shape":"RequestFailedException"},
145
147
  {"shape":"ResourceNotFoundException"},
146
148
  {"shape":"InvalidArnException"},
149
+ {"shape":"InvalidStateException"},
147
150
  {"shape":"MalformedCertificateException"},
148
151
  {"shape":"CertificateMismatchException"}
149
152
  ]
@@ -191,6 +194,19 @@
191
194
  {"shape":"InvalidArnException"}
192
195
  ]
193
196
  },
197
+ "RestoreCertificateAuthority":{
198
+ "name":"RestoreCertificateAuthority",
199
+ "http":{
200
+ "method":"POST",
201
+ "requestUri":"/"
202
+ },
203
+ "input":{"shape":"RestoreCertificateAuthorityRequest"},
204
+ "errors":[
205
+ {"shape":"ResourceNotFoundException"},
206
+ {"shape":"InvalidStateException"},
207
+ {"shape":"InvalidArnException"}
208
+ ]
209
+ },
194
210
  "RevokeCertificate":{
195
211
  "name":"RevokeCertificate",
196
212
  "http":{
@@ -218,6 +234,7 @@
218
234
  "errors":[
219
235
  {"shape":"ResourceNotFoundException"},
220
236
  {"shape":"InvalidArnException"},
237
+ {"shape":"InvalidStateException"},
221
238
  {"shape":"InvalidTagException"},
222
239
  {"shape":"TooManyTagsException"}
223
240
  ]
@@ -232,6 +249,7 @@
232
249
  "errors":[
233
250
  {"shape":"ResourceNotFoundException"},
234
251
  {"shape":"InvalidArnException"},
252
+ {"shape":"InvalidStateException"},
235
253
  {"shape":"InvalidTagException"}
236
254
  ]
237
255
  },
@@ -317,7 +335,8 @@
317
335
  "NotAfter":{"shape":"TStamp"},
318
336
  "FailureReason":{"shape":"FailureReason"},
319
337
  "CertificateAuthorityConfiguration":{"shape":"CertificateAuthorityConfiguration"},
320
- "RevocationConfiguration":{"shape":"RevocationConfiguration"}
338
+ "RevocationConfiguration":{"shape":"RevocationConfiguration"},
339
+ "RestorableUntil":{"shape":"TStamp"}
321
340
  }
322
341
  },
323
342
  "CertificateAuthorityConfiguration":{
@@ -339,6 +358,7 @@
339
358
  "CREATING",
340
359
  "PENDING_CERTIFICATE",
341
360
  "ACTIVE",
361
+ "DELETED",
342
362
  "DISABLED",
343
363
  "EXPIRED",
344
364
  "FAILED"
@@ -443,7 +463,8 @@
443
463
  "type":"structure",
444
464
  "required":["CertificateAuthorityArn"],
445
465
  "members":{
446
- "CertificateAuthorityArn":{"shape":"Arn"}
466
+ "CertificateAuthorityArn":{"shape":"Arn"},
467
+ "PermanentDeletionTimeInDays":{"shape":"PermanentDeletionTimeInDays"}
447
468
  }
448
469
  },
449
470
  "DescribeCertificateAuthorityAuditReportRequest":{
@@ -696,6 +717,11 @@
696
717
  "max":500,
697
718
  "min":1
698
719
  },
720
+ "PermanentDeletionTimeInDays":{
721
+ "type":"integer",
722
+ "max":30,
723
+ "min":7
724
+ },
699
725
  "PositiveLong":{
700
726
  "type":"long",
701
727
  "min":1
@@ -728,6 +754,13 @@
728
754
  },
729
755
  "exception":true
730
756
  },
757
+ "RestoreCertificateAuthorityRequest":{
758
+ "type":"structure",
759
+ "required":["CertificateAuthorityArn"],
760
+ "members":{
761
+ "CertificateAuthorityArn":{"shape":"Arn"}
762
+ }
763
+ },
731
764
  "RevocationConfiguration":{
732
765
  "type":"structure",
733
766
  "members":{
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0",
3
- "examples": {
2
+ "version":"1.0",
3
+ "examples":{
4
4
  }
5
5
  }
@@ -1,4 +1,4 @@
1
1
  {
2
- "pagination": {
2
+ "pagination":{
3
3
  }
4
4
  }
@@ -237,6 +237,46 @@
237
237
  }
238
238
  ]
239
239
  },
240
+ "DeleteReservation": {
241
+ "name": "DeleteReservation",
242
+ "http": {
243
+ "method": "DELETE",
244
+ "requestUri": "/prod/reservations/{reservationId}",
245
+ "responseCode": 200
246
+ },
247
+ "input": {
248
+ "shape": "DeleteReservationRequest"
249
+ },
250
+ "output": {
251
+ "shape": "DeleteReservationResponse"
252
+ },
253
+ "errors": [
254
+ {
255
+ "shape": "BadRequestException"
256
+ },
257
+ {
258
+ "shape": "InternalServerErrorException"
259
+ },
260
+ {
261
+ "shape": "ForbiddenException"
262
+ },
263
+ {
264
+ "shape": "BadGatewayException"
265
+ },
266
+ {
267
+ "shape": "NotFoundException"
268
+ },
269
+ {
270
+ "shape": "GatewayTimeoutException"
271
+ },
272
+ {
273
+ "shape": "TooManyRequestsException"
274
+ },
275
+ {
276
+ "shape": "ConflictException"
277
+ }
278
+ ]
279
+ },
240
280
  "DescribeChannel": {
241
281
  "name": "DescribeChannel",
242
282
  "http": {
@@ -348,6 +388,80 @@
348
388
  }
349
389
  ]
350
390
  },
391
+ "DescribeOffering": {
392
+ "name": "DescribeOffering",
393
+ "http": {
394
+ "method": "GET",
395
+ "requestUri": "/prod/offerings/{offeringId}",
396
+ "responseCode": 200
397
+ },
398
+ "input": {
399
+ "shape": "DescribeOfferingRequest"
400
+ },
401
+ "output": {
402
+ "shape": "DescribeOfferingResponse"
403
+ },
404
+ "errors": [
405
+ {
406
+ "shape": "BadRequestException"
407
+ },
408
+ {
409
+ "shape": "InternalServerErrorException"
410
+ },
411
+ {
412
+ "shape": "ForbiddenException"
413
+ },
414
+ {
415
+ "shape": "BadGatewayException"
416
+ },
417
+ {
418
+ "shape": "NotFoundException"
419
+ },
420
+ {
421
+ "shape": "GatewayTimeoutException"
422
+ },
423
+ {
424
+ "shape": "TooManyRequestsException"
425
+ }
426
+ ]
427
+ },
428
+ "DescribeReservation": {
429
+ "name": "DescribeReservation",
430
+ "http": {
431
+ "method": "GET",
432
+ "requestUri": "/prod/reservations/{reservationId}",
433
+ "responseCode": 200
434
+ },
435
+ "input": {
436
+ "shape": "DescribeReservationRequest"
437
+ },
438
+ "output": {
439
+ "shape": "DescribeReservationResponse"
440
+ },
441
+ "errors": [
442
+ {
443
+ "shape": "BadRequestException"
444
+ },
445
+ {
446
+ "shape": "InternalServerErrorException"
447
+ },
448
+ {
449
+ "shape": "ForbiddenException"
450
+ },
451
+ {
452
+ "shape": "BadGatewayException"
453
+ },
454
+ {
455
+ "shape": "NotFoundException"
456
+ },
457
+ {
458
+ "shape": "GatewayTimeoutException"
459
+ },
460
+ {
461
+ "shape": "TooManyRequestsException"
462
+ }
463
+ ]
464
+ },
351
465
  "ListChannels": {
352
466
  "name": "ListChannels",
353
467
  "http": {
@@ -450,6 +564,114 @@
450
564
  }
451
565
  ]
452
566
  },
567
+ "ListOfferings": {
568
+ "name": "ListOfferings",
569
+ "http": {
570
+ "method": "GET",
571
+ "requestUri": "/prod/offerings",
572
+ "responseCode": 200
573
+ },
574
+ "input": {
575
+ "shape": "ListOfferingsRequest"
576
+ },
577
+ "output": {
578
+ "shape": "ListOfferingsResponse"
579
+ },
580
+ "errors": [
581
+ {
582
+ "shape": "BadRequestException"
583
+ },
584
+ {
585
+ "shape": "InternalServerErrorException"
586
+ },
587
+ {
588
+ "shape": "ForbiddenException"
589
+ },
590
+ {
591
+ "shape": "BadGatewayException"
592
+ },
593
+ {
594
+ "shape": "GatewayTimeoutException"
595
+ },
596
+ {
597
+ "shape": "TooManyRequestsException"
598
+ }
599
+ ]
600
+ },
601
+ "ListReservations": {
602
+ "name": "ListReservations",
603
+ "http": {
604
+ "method": "GET",
605
+ "requestUri": "/prod/reservations",
606
+ "responseCode": 200
607
+ },
608
+ "input": {
609
+ "shape": "ListReservationsRequest"
610
+ },
611
+ "output": {
612
+ "shape": "ListReservationsResponse"
613
+ },
614
+ "errors": [
615
+ {
616
+ "shape": "BadRequestException"
617
+ },
618
+ {
619
+ "shape": "InternalServerErrorException"
620
+ },
621
+ {
622
+ "shape": "ForbiddenException"
623
+ },
624
+ {
625
+ "shape": "BadGatewayException"
626
+ },
627
+ {
628
+ "shape": "GatewayTimeoutException"
629
+ },
630
+ {
631
+ "shape": "TooManyRequestsException"
632
+ }
633
+ ]
634
+ },
635
+ "PurchaseOffering": {
636
+ "name": "PurchaseOffering",
637
+ "http": {
638
+ "method": "POST",
639
+ "requestUri": "/prod/offerings/{offeringId}/purchase",
640
+ "responseCode": 201
641
+ },
642
+ "input": {
643
+ "shape": "PurchaseOfferingRequest"
644
+ },
645
+ "output": {
646
+ "shape": "PurchaseOfferingResponse"
647
+ },
648
+ "errors": [
649
+ {
650
+ "shape": "BadRequestException"
651
+ },
652
+ {
653
+ "shape": "InternalServerErrorException"
654
+ },
655
+ {
656
+ "shape": "ForbiddenException"
657
+ },
658
+ {
659
+ "shape": "BadGatewayException"
660
+ },
661
+ {
662
+ "shape": "NotFoundException"
663
+ },
664
+ {
665
+ "shape": "GatewayTimeoutException"
666
+ },
667
+ {
668
+ "shape": "TooManyRequestsException"
669
+ },
670
+ {
671
+ "shape": "ConflictException"
672
+ }
673
+ ]
674
+ },
453
675
  "StartChannel": {
454
676
  "name": "StartChannel",
455
677
  "http": {
@@ -1976,6 +2198,92 @@
1976
2198
  "members": {
1977
2199
  }
1978
2200
  },
2201
+ "DeleteReservationRequest": {
2202
+ "type": "structure",
2203
+ "members": {
2204
+ "ReservationId": {
2205
+ "shape": "__string",
2206
+ "location": "uri",
2207
+ "locationName": "reservationId"
2208
+ }
2209
+ },
2210
+ "required": [
2211
+ "ReservationId"
2212
+ ]
2213
+ },
2214
+ "DeleteReservationResponse": {
2215
+ "type": "structure",
2216
+ "members": {
2217
+ "Arn": {
2218
+ "shape": "__string",
2219
+ "locationName": "arn"
2220
+ },
2221
+ "Count": {
2222
+ "shape": "__integer",
2223
+ "locationName": "count"
2224
+ },
2225
+ "CurrencyCode": {
2226
+ "shape": "__string",
2227
+ "locationName": "currencyCode"
2228
+ },
2229
+ "Duration": {
2230
+ "shape": "__integer",
2231
+ "locationName": "duration"
2232
+ },
2233
+ "DurationUnits": {
2234
+ "shape": "OfferingDurationUnits",
2235
+ "locationName": "durationUnits"
2236
+ },
2237
+ "End": {
2238
+ "shape": "__string",
2239
+ "locationName": "end"
2240
+ },
2241
+ "FixedPrice": {
2242
+ "shape": "__double",
2243
+ "locationName": "fixedPrice"
2244
+ },
2245
+ "Name": {
2246
+ "shape": "__string",
2247
+ "locationName": "name"
2248
+ },
2249
+ "OfferingDescription": {
2250
+ "shape": "__string",
2251
+ "locationName": "offeringDescription"
2252
+ },
2253
+ "OfferingId": {
2254
+ "shape": "__string",
2255
+ "locationName": "offeringId"
2256
+ },
2257
+ "OfferingType": {
2258
+ "shape": "OfferingType",
2259
+ "locationName": "offeringType"
2260
+ },
2261
+ "Region": {
2262
+ "shape": "__string",
2263
+ "locationName": "region"
2264
+ },
2265
+ "ReservationId": {
2266
+ "shape": "__string",
2267
+ "locationName": "reservationId"
2268
+ },
2269
+ "ResourceSpecification": {
2270
+ "shape": "ReservationResourceSpecification",
2271
+ "locationName": "resourceSpecification"
2272
+ },
2273
+ "Start": {
2274
+ "shape": "__string",
2275
+ "locationName": "start"
2276
+ },
2277
+ "State": {
2278
+ "shape": "ReservationState",
2279
+ "locationName": "state"
2280
+ },
2281
+ "UsagePrice": {
2282
+ "shape": "__double",
2283
+ "locationName": "usagePrice"
2284
+ }
2285
+ }
2286
+ },
1979
2287
  "DescribeChannelRequest": {
1980
2288
  "type": "structure",
1981
2289
  "members": {
@@ -2134,6 +2442,154 @@
2134
2442
  }
2135
2443
  }
2136
2444
  },
2445
+ "DescribeOfferingRequest": {
2446
+ "type": "structure",
2447
+ "members": {
2448
+ "OfferingId": {
2449
+ "shape": "__string",
2450
+ "location": "uri",
2451
+ "locationName": "offeringId"
2452
+ }
2453
+ },
2454
+ "required": [
2455
+ "OfferingId"
2456
+ ]
2457
+ },
2458
+ "DescribeOfferingResponse": {
2459
+ "type": "structure",
2460
+ "members": {
2461
+ "Arn": {
2462
+ "shape": "__string",
2463
+ "locationName": "arn"
2464
+ },
2465
+ "CurrencyCode": {
2466
+ "shape": "__string",
2467
+ "locationName": "currencyCode"
2468
+ },
2469
+ "Duration": {
2470
+ "shape": "__integer",
2471
+ "locationName": "duration"
2472
+ },
2473
+ "DurationUnits": {
2474
+ "shape": "OfferingDurationUnits",
2475
+ "locationName": "durationUnits"
2476
+ },
2477
+ "FixedPrice": {
2478
+ "shape": "__double",
2479
+ "locationName": "fixedPrice"
2480
+ },
2481
+ "OfferingDescription": {
2482
+ "shape": "__string",
2483
+ "locationName": "offeringDescription"
2484
+ },
2485
+ "OfferingId": {
2486
+ "shape": "__string",
2487
+ "locationName": "offeringId"
2488
+ },
2489
+ "OfferingType": {
2490
+ "shape": "OfferingType",
2491
+ "locationName": "offeringType"
2492
+ },
2493
+ "Region": {
2494
+ "shape": "__string",
2495
+ "locationName": "region"
2496
+ },
2497
+ "ResourceSpecification": {
2498
+ "shape": "ReservationResourceSpecification",
2499
+ "locationName": "resourceSpecification"
2500
+ },
2501
+ "UsagePrice": {
2502
+ "shape": "__double",
2503
+ "locationName": "usagePrice"
2504
+ }
2505
+ }
2506
+ },
2507
+ "DescribeReservationRequest": {
2508
+ "type": "structure",
2509
+ "members": {
2510
+ "ReservationId": {
2511
+ "shape": "__string",
2512
+ "location": "uri",
2513
+ "locationName": "reservationId"
2514
+ }
2515
+ },
2516
+ "required": [
2517
+ "ReservationId"
2518
+ ]
2519
+ },
2520
+ "DescribeReservationResponse": {
2521
+ "type": "structure",
2522
+ "members": {
2523
+ "Arn": {
2524
+ "shape": "__string",
2525
+ "locationName": "arn"
2526
+ },
2527
+ "Count": {
2528
+ "shape": "__integer",
2529
+ "locationName": "count"
2530
+ },
2531
+ "CurrencyCode": {
2532
+ "shape": "__string",
2533
+ "locationName": "currencyCode"
2534
+ },
2535
+ "Duration": {
2536
+ "shape": "__integer",
2537
+ "locationName": "duration"
2538
+ },
2539
+ "DurationUnits": {
2540
+ "shape": "OfferingDurationUnits",
2541
+ "locationName": "durationUnits"
2542
+ },
2543
+ "End": {
2544
+ "shape": "__string",
2545
+ "locationName": "end"
2546
+ },
2547
+ "FixedPrice": {
2548
+ "shape": "__double",
2549
+ "locationName": "fixedPrice"
2550
+ },
2551
+ "Name": {
2552
+ "shape": "__string",
2553
+ "locationName": "name"
2554
+ },
2555
+ "OfferingDescription": {
2556
+ "shape": "__string",
2557
+ "locationName": "offeringDescription"
2558
+ },
2559
+ "OfferingId": {
2560
+ "shape": "__string",
2561
+ "locationName": "offeringId"
2562
+ },
2563
+ "OfferingType": {
2564
+ "shape": "OfferingType",
2565
+ "locationName": "offeringType"
2566
+ },
2567
+ "Region": {
2568
+ "shape": "__string",
2569
+ "locationName": "region"
2570
+ },
2571
+ "ReservationId": {
2572
+ "shape": "__string",
2573
+ "locationName": "reservationId"
2574
+ },
2575
+ "ResourceSpecification": {
2576
+ "shape": "ReservationResourceSpecification",
2577
+ "locationName": "resourceSpecification"
2578
+ },
2579
+ "Start": {
2580
+ "shape": "__string",
2581
+ "locationName": "start"
2582
+ },
2583
+ "State": {
2584
+ "shape": "ReservationState",
2585
+ "locationName": "state"
2586
+ },
2587
+ "UsagePrice": {
2588
+ "shape": "__double",
2589
+ "locationName": "usagePrice"
2590
+ }
2591
+ }
2592
+ },
2137
2593
  "DvbNitSettings": {
2138
2594
  "type": "structure",
2139
2595
  "members": {
@@ -3994,79 +4450,236 @@
3994
4450
  "MaxResults": {
3995
4451
  "shape": "MaxResults",
3996
4452
  "location": "querystring",
3997
- "locationName": "maxResults"
4453
+ "locationName": "maxResults"
4454
+ },
4455
+ "NextToken": {
4456
+ "shape": "__string",
4457
+ "location": "querystring",
4458
+ "locationName": "nextToken"
4459
+ }
4460
+ }
4461
+ },
4462
+ "ListInputSecurityGroupsResponse": {
4463
+ "type": "structure",
4464
+ "members": {
4465
+ "InputSecurityGroups": {
4466
+ "shape": "__listOfInputSecurityGroup",
4467
+ "locationName": "inputSecurityGroups"
4468
+ },
4469
+ "NextToken": {
4470
+ "shape": "__string",
4471
+ "locationName": "nextToken"
4472
+ }
4473
+ }
4474
+ },
4475
+ "ListInputSecurityGroupsResultModel": {
4476
+ "type": "structure",
4477
+ "members": {
4478
+ "InputSecurityGroups": {
4479
+ "shape": "__listOfInputSecurityGroup",
4480
+ "locationName": "inputSecurityGroups"
4481
+ },
4482
+ "NextToken": {
4483
+ "shape": "__string",
4484
+ "locationName": "nextToken"
4485
+ }
4486
+ }
4487
+ },
4488
+ "ListInputsRequest": {
4489
+ "type": "structure",
4490
+ "members": {
4491
+ "MaxResults": {
4492
+ "shape": "MaxResults",
4493
+ "location": "querystring",
4494
+ "locationName": "maxResults"
4495
+ },
4496
+ "NextToken": {
4497
+ "shape": "__string",
4498
+ "location": "querystring",
4499
+ "locationName": "nextToken"
4500
+ }
4501
+ }
4502
+ },
4503
+ "ListInputsResponse": {
4504
+ "type": "structure",
4505
+ "members": {
4506
+ "Inputs": {
4507
+ "shape": "__listOfInput",
4508
+ "locationName": "inputs"
4509
+ },
4510
+ "NextToken": {
4511
+ "shape": "__string",
4512
+ "locationName": "nextToken"
4513
+ }
4514
+ }
4515
+ },
4516
+ "ListInputsResultModel": {
4517
+ "type": "structure",
4518
+ "members": {
4519
+ "Inputs": {
4520
+ "shape": "__listOfInput",
4521
+ "locationName": "inputs"
4522
+ },
4523
+ "NextToken": {
4524
+ "shape": "__string",
4525
+ "locationName": "nextToken"
4526
+ }
4527
+ }
4528
+ },
4529
+ "ListOfferingsRequest": {
4530
+ "type": "structure",
4531
+ "members": {
4532
+ "ChannelConfiguration": {
4533
+ "shape": "__string",
4534
+ "location": "querystring",
4535
+ "locationName": "channelConfiguration"
4536
+ },
4537
+ "Codec": {
4538
+ "shape": "__string",
4539
+ "location": "querystring",
4540
+ "locationName": "codec"
4541
+ },
4542
+ "MaxResults": {
4543
+ "shape": "MaxResults",
4544
+ "location": "querystring",
4545
+ "locationName": "maxResults"
4546
+ },
4547
+ "MaximumBitrate": {
4548
+ "shape": "__string",
4549
+ "location": "querystring",
4550
+ "locationName": "maximumBitrate"
4551
+ },
4552
+ "MaximumFramerate": {
4553
+ "shape": "__string",
4554
+ "location": "querystring",
4555
+ "locationName": "maximumFramerate"
3998
4556
  },
3999
4557
  "NextToken": {
4000
4558
  "shape": "__string",
4001
4559
  "location": "querystring",
4002
4560
  "locationName": "nextToken"
4561
+ },
4562
+ "Resolution": {
4563
+ "shape": "__string",
4564
+ "location": "querystring",
4565
+ "locationName": "resolution"
4566
+ },
4567
+ "ResourceType": {
4568
+ "shape": "__string",
4569
+ "location": "querystring",
4570
+ "locationName": "resourceType"
4571
+ },
4572
+ "SpecialFeature": {
4573
+ "shape": "__string",
4574
+ "location": "querystring",
4575
+ "locationName": "specialFeature"
4576
+ },
4577
+ "VideoQuality": {
4578
+ "shape": "__string",
4579
+ "location": "querystring",
4580
+ "locationName": "videoQuality"
4003
4581
  }
4004
4582
  }
4005
4583
  },
4006
- "ListInputSecurityGroupsResponse": {
4584
+ "ListOfferingsResponse": {
4007
4585
  "type": "structure",
4008
4586
  "members": {
4009
- "InputSecurityGroups": {
4010
- "shape": "__listOfInputSecurityGroup",
4011
- "locationName": "inputSecurityGroups"
4012
- },
4013
4587
  "NextToken": {
4014
4588
  "shape": "__string",
4015
4589
  "locationName": "nextToken"
4590
+ },
4591
+ "Offerings": {
4592
+ "shape": "__listOfOffering",
4593
+ "locationName": "offerings"
4016
4594
  }
4017
4595
  }
4018
4596
  },
4019
- "ListInputSecurityGroupsResultModel": {
4597
+ "ListOfferingsResultModel": {
4020
4598
  "type": "structure",
4021
4599
  "members": {
4022
- "InputSecurityGroups": {
4023
- "shape": "__listOfInputSecurityGroup",
4024
- "locationName": "inputSecurityGroups"
4025
- },
4026
4600
  "NextToken": {
4027
4601
  "shape": "__string",
4028
4602
  "locationName": "nextToken"
4603
+ },
4604
+ "Offerings": {
4605
+ "shape": "__listOfOffering",
4606
+ "locationName": "offerings"
4029
4607
  }
4030
4608
  }
4031
4609
  },
4032
- "ListInputsRequest": {
4610
+ "ListReservationsRequest": {
4033
4611
  "type": "structure",
4034
4612
  "members": {
4613
+ "Codec": {
4614
+ "shape": "__string",
4615
+ "location": "querystring",
4616
+ "locationName": "codec"
4617
+ },
4035
4618
  "MaxResults": {
4036
4619
  "shape": "MaxResults",
4037
4620
  "location": "querystring",
4038
4621
  "locationName": "maxResults"
4039
4622
  },
4623
+ "MaximumBitrate": {
4624
+ "shape": "__string",
4625
+ "location": "querystring",
4626
+ "locationName": "maximumBitrate"
4627
+ },
4628
+ "MaximumFramerate": {
4629
+ "shape": "__string",
4630
+ "location": "querystring",
4631
+ "locationName": "maximumFramerate"
4632
+ },
4040
4633
  "NextToken": {
4041
4634
  "shape": "__string",
4042
4635
  "location": "querystring",
4043
4636
  "locationName": "nextToken"
4637
+ },
4638
+ "Resolution": {
4639
+ "shape": "__string",
4640
+ "location": "querystring",
4641
+ "locationName": "resolution"
4642
+ },
4643
+ "ResourceType": {
4644
+ "shape": "__string",
4645
+ "location": "querystring",
4646
+ "locationName": "resourceType"
4647
+ },
4648
+ "SpecialFeature": {
4649
+ "shape": "__string",
4650
+ "location": "querystring",
4651
+ "locationName": "specialFeature"
4652
+ },
4653
+ "VideoQuality": {
4654
+ "shape": "__string",
4655
+ "location": "querystring",
4656
+ "locationName": "videoQuality"
4044
4657
  }
4045
4658
  }
4046
4659
  },
4047
- "ListInputsResponse": {
4660
+ "ListReservationsResponse": {
4048
4661
  "type": "structure",
4049
4662
  "members": {
4050
- "Inputs": {
4051
- "shape": "__listOfInput",
4052
- "locationName": "inputs"
4053
- },
4054
4663
  "NextToken": {
4055
4664
  "shape": "__string",
4056
4665
  "locationName": "nextToken"
4666
+ },
4667
+ "Reservations": {
4668
+ "shape": "__listOfReservation",
4669
+ "locationName": "reservations"
4057
4670
  }
4058
4671
  }
4059
4672
  },
4060
- "ListInputsResultModel": {
4673
+ "ListReservationsResultModel": {
4061
4674
  "type": "structure",
4062
4675
  "members": {
4063
- "Inputs": {
4064
- "shape": "__listOfInput",
4065
- "locationName": "inputs"
4066
- },
4067
4676
  "NextToken": {
4068
4677
  "shape": "__string",
4069
4678
  "locationName": "nextToken"
4679
+ },
4680
+ "Reservations": {
4681
+ "shape": "__listOfReservation",
4682
+ "locationName": "reservations"
4070
4683
  }
4071
4684
  }
4072
4685
  },
@@ -4644,6 +5257,67 @@
4644
5257
  "httpStatusCode": 404
4645
5258
  }
4646
5259
  },
5260
+ "Offering": {
5261
+ "type": "structure",
5262
+ "members": {
5263
+ "Arn": {
5264
+ "shape": "__string",
5265
+ "locationName": "arn"
5266
+ },
5267
+ "CurrencyCode": {
5268
+ "shape": "__string",
5269
+ "locationName": "currencyCode"
5270
+ },
5271
+ "Duration": {
5272
+ "shape": "__integer",
5273
+ "locationName": "duration"
5274
+ },
5275
+ "DurationUnits": {
5276
+ "shape": "OfferingDurationUnits",
5277
+ "locationName": "durationUnits"
5278
+ },
5279
+ "FixedPrice": {
5280
+ "shape": "__double",
5281
+ "locationName": "fixedPrice"
5282
+ },
5283
+ "OfferingDescription": {
5284
+ "shape": "__string",
5285
+ "locationName": "offeringDescription"
5286
+ },
5287
+ "OfferingId": {
5288
+ "shape": "__string",
5289
+ "locationName": "offeringId"
5290
+ },
5291
+ "OfferingType": {
5292
+ "shape": "OfferingType",
5293
+ "locationName": "offeringType"
5294
+ },
5295
+ "Region": {
5296
+ "shape": "__string",
5297
+ "locationName": "region"
5298
+ },
5299
+ "ResourceSpecification": {
5300
+ "shape": "ReservationResourceSpecification",
5301
+ "locationName": "resourceSpecification"
5302
+ },
5303
+ "UsagePrice": {
5304
+ "shape": "__double",
5305
+ "locationName": "usagePrice"
5306
+ }
5307
+ }
5308
+ },
5309
+ "OfferingDurationUnits": {
5310
+ "type": "string",
5311
+ "enum": [
5312
+ "MONTHS"
5313
+ ]
5314
+ },
5315
+ "OfferingType": {
5316
+ "type": "string",
5317
+ "enum": [
5318
+ "NO_UPFRONT"
5319
+ ]
5320
+ },
4647
5321
  "Output": {
4648
5322
  "type": "structure",
4649
5323
  "members": {
@@ -4791,6 +5465,68 @@
4791
5465
  "members": {
4792
5466
  }
4793
5467
  },
5468
+ "PurchaseOffering": {
5469
+ "type": "structure",
5470
+ "members": {
5471
+ "Count": {
5472
+ "shape": "__integerMin1",
5473
+ "locationName": "count"
5474
+ },
5475
+ "Name": {
5476
+ "shape": "__string",
5477
+ "locationName": "name"
5478
+ },
5479
+ "RequestId": {
5480
+ "shape": "__string",
5481
+ "locationName": "requestId",
5482
+ "idempotencyToken": true
5483
+ }
5484
+ }
5485
+ },
5486
+ "PurchaseOfferingRequest": {
5487
+ "type": "structure",
5488
+ "members": {
5489
+ "Count": {
5490
+ "shape": "__integerMin1",
5491
+ "locationName": "count"
5492
+ },
5493
+ "Name": {
5494
+ "shape": "__string",
5495
+ "locationName": "name"
5496
+ },
5497
+ "OfferingId": {
5498
+ "shape": "__string",
5499
+ "location": "uri",
5500
+ "locationName": "offeringId"
5501
+ },
5502
+ "RequestId": {
5503
+ "shape": "__string",
5504
+ "locationName": "requestId",
5505
+ "idempotencyToken": true
5506
+ }
5507
+ },
5508
+ "required": [
5509
+ "OfferingId"
5510
+ ]
5511
+ },
5512
+ "PurchaseOfferingResponse": {
5513
+ "type": "structure",
5514
+ "members": {
5515
+ "Reservation": {
5516
+ "shape": "Reservation",
5517
+ "locationName": "reservation"
5518
+ }
5519
+ }
5520
+ },
5521
+ "PurchaseOfferingResultModel": {
5522
+ "type": "structure",
5523
+ "members": {
5524
+ "Reservation": {
5525
+ "shape": "Reservation",
5526
+ "locationName": "reservation"
5527
+ }
5528
+ }
5529
+ },
4794
5530
  "RemixSettings": {
4795
5531
  "type": "structure",
4796
5532
  "members": {
@@ -4811,6 +5547,176 @@
4811
5547
  "ChannelMappings"
4812
5548
  ]
4813
5549
  },
5550
+ "Reservation": {
5551
+ "type": "structure",
5552
+ "members": {
5553
+ "Arn": {
5554
+ "shape": "__string",
5555
+ "locationName": "arn"
5556
+ },
5557
+ "Count": {
5558
+ "shape": "__integer",
5559
+ "locationName": "count"
5560
+ },
5561
+ "CurrencyCode": {
5562
+ "shape": "__string",
5563
+ "locationName": "currencyCode"
5564
+ },
5565
+ "Duration": {
5566
+ "shape": "__integer",
5567
+ "locationName": "duration"
5568
+ },
5569
+ "DurationUnits": {
5570
+ "shape": "OfferingDurationUnits",
5571
+ "locationName": "durationUnits"
5572
+ },
5573
+ "End": {
5574
+ "shape": "__string",
5575
+ "locationName": "end"
5576
+ },
5577
+ "FixedPrice": {
5578
+ "shape": "__double",
5579
+ "locationName": "fixedPrice"
5580
+ },
5581
+ "Name": {
5582
+ "shape": "__string",
5583
+ "locationName": "name"
5584
+ },
5585
+ "OfferingDescription": {
5586
+ "shape": "__string",
5587
+ "locationName": "offeringDescription"
5588
+ },
5589
+ "OfferingId": {
5590
+ "shape": "__string",
5591
+ "locationName": "offeringId"
5592
+ },
5593
+ "OfferingType": {
5594
+ "shape": "OfferingType",
5595
+ "locationName": "offeringType"
5596
+ },
5597
+ "Region": {
5598
+ "shape": "__string",
5599
+ "locationName": "region"
5600
+ },
5601
+ "ReservationId": {
5602
+ "shape": "__string",
5603
+ "locationName": "reservationId"
5604
+ },
5605
+ "ResourceSpecification": {
5606
+ "shape": "ReservationResourceSpecification",
5607
+ "locationName": "resourceSpecification"
5608
+ },
5609
+ "Start": {
5610
+ "shape": "__string",
5611
+ "locationName": "start"
5612
+ },
5613
+ "State": {
5614
+ "shape": "ReservationState",
5615
+ "locationName": "state"
5616
+ },
5617
+ "UsagePrice": {
5618
+ "shape": "__double",
5619
+ "locationName": "usagePrice"
5620
+ }
5621
+ }
5622
+ },
5623
+ "ReservationCodec": {
5624
+ "type": "string",
5625
+ "enum": [
5626
+ "MPEG2",
5627
+ "AVC",
5628
+ "HEVC",
5629
+ "AUDIO"
5630
+ ]
5631
+ },
5632
+ "ReservationMaximumBitrate": {
5633
+ "type": "string",
5634
+ "enum": [
5635
+ "MAX_10_MBPS",
5636
+ "MAX_20_MBPS",
5637
+ "MAX_50_MBPS"
5638
+ ]
5639
+ },
5640
+ "ReservationMaximumFramerate": {
5641
+ "type": "string",
5642
+ "enum": [
5643
+ "MAX_30_FPS",
5644
+ "MAX_60_FPS"
5645
+ ]
5646
+ },
5647
+ "ReservationResolution": {
5648
+ "type": "string",
5649
+ "enum": [
5650
+ "SD",
5651
+ "HD",
5652
+ "UHD"
5653
+ ]
5654
+ },
5655
+ "ReservationResourceSpecification": {
5656
+ "type": "structure",
5657
+ "members": {
5658
+ "Codec": {
5659
+ "shape": "ReservationCodec",
5660
+ "locationName": "codec"
5661
+ },
5662
+ "MaximumBitrate": {
5663
+ "shape": "ReservationMaximumBitrate",
5664
+ "locationName": "maximumBitrate"
5665
+ },
5666
+ "MaximumFramerate": {
5667
+ "shape": "ReservationMaximumFramerate",
5668
+ "locationName": "maximumFramerate"
5669
+ },
5670
+ "Resolution": {
5671
+ "shape": "ReservationResolution",
5672
+ "locationName": "resolution"
5673
+ },
5674
+ "ResourceType": {
5675
+ "shape": "ReservationResourceType",
5676
+ "locationName": "resourceType"
5677
+ },
5678
+ "SpecialFeature": {
5679
+ "shape": "ReservationSpecialFeature",
5680
+ "locationName": "specialFeature"
5681
+ },
5682
+ "VideoQuality": {
5683
+ "shape": "ReservationVideoQuality",
5684
+ "locationName": "videoQuality"
5685
+ }
5686
+ }
5687
+ },
5688
+ "ReservationResourceType": {
5689
+ "type": "string",
5690
+ "enum": [
5691
+ "INPUT",
5692
+ "OUTPUT",
5693
+ "CHANNEL"
5694
+ ]
5695
+ },
5696
+ "ReservationSpecialFeature": {
5697
+ "type": "string",
5698
+ "enum": [
5699
+ "ADVANCED_AUDIO",
5700
+ "AUDIO_NORMALIZATION"
5701
+ ]
5702
+ },
5703
+ "ReservationState": {
5704
+ "type": "string",
5705
+ "enum": [
5706
+ "ACTIVE",
5707
+ "EXPIRED",
5708
+ "CANCELED",
5709
+ "DELETED"
5710
+ ]
5711
+ },
5712
+ "ReservationVideoQuality": {
5713
+ "type": "string",
5714
+ "enum": [
5715
+ "STANDARD",
5716
+ "ENHANCED",
5717
+ "PREMIUM"
5718
+ ]
5719
+ },
4814
5720
  "ResourceConflict": {
4815
5721
  "type": "structure",
4816
5722
  "members": {
@@ -6029,6 +6935,12 @@
6029
6935
  "shape": "InputWhitelistRuleCidr"
6030
6936
  }
6031
6937
  },
6938
+ "__listOfOffering": {
6939
+ "type": "list",
6940
+ "member": {
6941
+ "shape": "Offering"
6942
+ }
6943
+ },
6032
6944
  "__listOfOutput": {
6033
6945
  "type": "list",
6034
6946
  "member": {
@@ -6053,6 +6965,12 @@
6053
6965
  "shape": "OutputGroup"
6054
6966
  }
6055
6967
  },
6968
+ "__listOfReservation": {
6969
+ "type": "list",
6970
+ "member": {
6971
+ "shape": "Reservation"
6972
+ }
6973
+ },
6056
6974
  "__listOfValidationError": {
6057
6975
  "type": "list",
6058
6976
  "member": {