aws-sdk-core 2.11.353 → 2.11.354

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: edbf62aea6631da97a77d967b324b31effe79558
4
- data.tar.gz: 9882963471a79b2cfd472d1415f440a7e3d57889
3
+ metadata.gz: 6e57b5e9786f07c5fabb1f357a97286d5c0586ad
4
+ data.tar.gz: 0fc2b58d7366a735d2349a50811ede28a612aa1d
5
5
  SHA512:
6
- metadata.gz: 7db0f9e9f9b90faa771458ee2714c98ca4d11bbd152d71fe55e74553a2864bde99dbf18405502006ae889ee8d30ad1f16e8afaa326cbe9a31d3bc3ea6ab92e7a
7
- data.tar.gz: 9106fc21b68ac6aa7dc75b6d0acbe2d4640fd3cc7e6a74e7611b808d2f42ba7dc6f23e1e3e8a397ef8dcaf500ea7b3023b05bdd644bf6013103e2682ad15dbfe
6
+ metadata.gz: f98abd24d52874a678d0a64ae19e345759f43370684516c3f5dbcde3708eb7a82e8512e12b089b160af0e8a6a8dac9b0f651359fcb4ed633b25f2b6d3da0525d
7
+ data.tar.gz: 82fbe7e941d0ea4a204c64a21c4988c590d3bf84b820826b7fe33599a042e897e93b2fd12c701a4b12253ff19336c270c92ef97aad9092255e2904ac875a8988
@@ -92,6 +92,19 @@
92
92
  {"shape":"ServiceUnavailableException"}
93
93
  ]
94
94
  },
95
+ "ListTagsForResource":{
96
+ "name":"ListTagsForResource",
97
+ "http":{
98
+ "method":"GET",
99
+ "requestUri":"/tags/{resourceArn}"
100
+ },
101
+ "input":{"shape":"ListTagsForResourceRequest"},
102
+ "output":{"shape":"ListTagsForResourceResponse"},
103
+ "errors":[
104
+ {"shape":"BadRequestException"},
105
+ {"shape":"NotFoundException"}
106
+ ]
107
+ },
95
108
  "ListUpdates":{
96
109
  "name":"ListUpdates",
97
110
  "http":{
@@ -107,6 +120,32 @@
107
120
  {"shape":"ResourceNotFoundException"}
108
121
  ]
109
122
  },
123
+ "TagResource":{
124
+ "name":"TagResource",
125
+ "http":{
126
+ "method":"POST",
127
+ "requestUri":"/tags/{resourceArn}"
128
+ },
129
+ "input":{"shape":"TagResourceRequest"},
130
+ "output":{"shape":"TagResourceResponse"},
131
+ "errors":[
132
+ {"shape":"BadRequestException"},
133
+ {"shape":"NotFoundException"}
134
+ ]
135
+ },
136
+ "UntagResource":{
137
+ "name":"UntagResource",
138
+ "http":{
139
+ "method":"DELETE",
140
+ "requestUri":"/tags/{resourceArn}"
141
+ },
142
+ "input":{"shape":"UntagResourceRequest"},
143
+ "output":{"shape":"UntagResourceResponse"},
144
+ "errors":[
145
+ {"shape":"BadRequestException"},
146
+ {"shape":"NotFoundException"}
147
+ ]
148
+ },
110
149
  "UpdateClusterConfig":{
111
150
  "name":"UpdateClusterConfig",
112
151
  "http":{
@@ -143,6 +182,14 @@
143
182
  }
144
183
  },
145
184
  "shapes":{
185
+ "BadRequestException":{
186
+ "type":"structure",
187
+ "members":{
188
+ "message":{"shape":"String"}
189
+ },
190
+ "error":{"httpStatusCode":400},
191
+ "exception":true
192
+ },
146
193
  "Boolean":{"type":"boolean"},
147
194
  "BoxedBoolean":{
148
195
  "type":"boolean",
@@ -178,7 +225,8 @@
178
225
  "status":{"shape":"ClusterStatus"},
179
226
  "certificateAuthority":{"shape":"Certificate"},
180
227
  "clientRequestToken":{"shape":"String"},
181
- "platformVersion":{"shape":"String"}
228
+ "platformVersion":{"shape":"String"},
229
+ "tags":{"shape":"TagMap"}
182
230
  }
183
231
  },
184
232
  "ClusterName":{
@@ -212,7 +260,8 @@
212
260
  "clientRequestToken":{
213
261
  "shape":"String",
214
262
  "idempotencyToken":true
215
- }
263
+ },
264
+ "tags":{"shape":"TagMap"}
216
265
  }
217
266
  },
218
267
  "CreateClusterResponse":{
@@ -357,6 +406,23 @@
357
406
  "nextToken":{"shape":"String"}
358
407
  }
359
408
  },
409
+ "ListTagsForResourceRequest":{
410
+ "type":"structure",
411
+ "required":["resourceArn"],
412
+ "members":{
413
+ "resourceArn":{
414
+ "shape":"String",
415
+ "location":"uri",
416
+ "locationName":"resourceArn"
417
+ }
418
+ }
419
+ },
420
+ "ListTagsForResourceResponse":{
421
+ "type":"structure",
422
+ "members":{
423
+ "tags":{"shape":"TagMap"}
424
+ }
425
+ },
360
426
  "ListUpdatesRequest":{
361
427
  "type":"structure",
362
428
  "required":["name"],
@@ -422,6 +488,14 @@
422
488
  "clusterLogging":{"shape":"LogSetups"}
423
489
  }
424
490
  },
491
+ "NotFoundException":{
492
+ "type":"structure",
493
+ "members":{
494
+ "message":{"shape":"String"}
495
+ },
496
+ "error":{"httpStatusCode":404},
497
+ "exception":true
498
+ },
425
499
  "OIDC":{
426
500
  "type":"structure",
427
501
  "members":{
@@ -479,6 +553,48 @@
479
553
  "type":"list",
480
554
  "member":{"shape":"String"}
481
555
  },
556
+ "TagKey":{
557
+ "type":"string",
558
+ "max":128,
559
+ "min":1
560
+ },
561
+ "TagKeyList":{
562
+ "type":"list",
563
+ "member":{"shape":"TagKey"},
564
+ "max":50,
565
+ "min":1
566
+ },
567
+ "TagMap":{
568
+ "type":"map",
569
+ "key":{"shape":"TagKey"},
570
+ "value":{"shape":"TagValue"},
571
+ "max":50,
572
+ "min":1
573
+ },
574
+ "TagResourceRequest":{
575
+ "type":"structure",
576
+ "required":[
577
+ "resourceArn",
578
+ "tags"
579
+ ],
580
+ "members":{
581
+ "resourceArn":{
582
+ "shape":"String",
583
+ "location":"uri",
584
+ "locationName":"resourceArn"
585
+ },
586
+ "tags":{"shape":"TagMap"}
587
+ }
588
+ },
589
+ "TagResourceResponse":{
590
+ "type":"structure",
591
+ "members":{
592
+ }
593
+ },
594
+ "TagValue":{
595
+ "type":"string",
596
+ "max":256
597
+ },
482
598
  "Timestamp":{"type":"timestamp"},
483
599
  "UnsupportedAvailabilityZoneException":{
484
600
  "type":"structure",
@@ -490,6 +606,30 @@
490
606
  "error":{"httpStatusCode":400},
491
607
  "exception":true
492
608
  },
609
+ "UntagResourceRequest":{
610
+ "type":"structure",
611
+ "required":[
612
+ "resourceArn",
613
+ "tagKeys"
614
+ ],
615
+ "members":{
616
+ "resourceArn":{
617
+ "shape":"String",
618
+ "location":"uri",
619
+ "locationName":"resourceArn"
620
+ },
621
+ "tagKeys":{
622
+ "shape":"TagKeyList",
623
+ "location":"querystring",
624
+ "locationName":"tagKeys"
625
+ }
626
+ }
627
+ },
628
+ "UntagResourceResponse":{
629
+ "type":"structure",
630
+ "members":{
631
+ }
632
+ },
493
633
  "Update":{
494
634
  "type":"structure",
495
635
  "members":{
@@ -1075,7 +1075,7 @@
1075
1075
  "locationName": "bitDepth"
1076
1076
  },
1077
1077
  "Channels": {
1078
- "shape": "__integerMin1Max2",
1078
+ "shape": "__integerMin1Max64",
1079
1079
  "locationName": "channels"
1080
1080
  },
1081
1081
  "SampleRate": {
@@ -1084,15 +1084,37 @@
1084
1084
  }
1085
1085
  }
1086
1086
  },
1087
+ "AncillaryConvert608To708": {
1088
+ "type": "string",
1089
+ "enum": [
1090
+ "UPCONVERT",
1091
+ "DISABLED"
1092
+ ]
1093
+ },
1087
1094
  "AncillarySourceSettings": {
1088
1095
  "type": "structure",
1089
1096
  "members": {
1097
+ "Convert608To708": {
1098
+ "shape": "AncillaryConvert608To708",
1099
+ "locationName": "convert608To708"
1100
+ },
1090
1101
  "SourceAncillaryChannelNumber": {
1091
1102
  "shape": "__integerMin1Max4",
1092
1103
  "locationName": "sourceAncillaryChannelNumber"
1104
+ },
1105
+ "TerminateCaptions": {
1106
+ "shape": "AncillaryTerminateCaptions",
1107
+ "locationName": "terminateCaptions"
1093
1108
  }
1094
1109
  }
1095
1110
  },
1111
+ "AncillaryTerminateCaptions": {
1112
+ "type": "string",
1113
+ "enum": [
1114
+ "END_OF_INPUT",
1115
+ "DISABLED"
1116
+ ]
1117
+ },
1096
1118
  "AntiAlias": {
1097
1119
  "type": "string",
1098
1120
  "enum": [
@@ -1592,6 +1614,10 @@
1592
1614
  "shape": "EmbeddedDestinationSettings",
1593
1615
  "locationName": "embeddedDestinationSettings"
1594
1616
  },
1617
+ "ImscDestinationSettings": {
1618
+ "shape": "ImscDestinationSettings",
1619
+ "locationName": "imscDestinationSettings"
1620
+ },
1595
1621
  "SccDestinationSettings": {
1596
1622
  "shape": "SccDestinationSettings",
1597
1623
  "locationName": "sccDestinationSettings"
@@ -1613,6 +1639,7 @@
1613
1639
  "DVB_SUB",
1614
1640
  "EMBEDDED",
1615
1641
  "EMBEDDED_PLUS_SCTE20",
1642
+ "IMSC",
1616
1643
  "SCTE20_PLUS_EMBEDDED",
1617
1644
  "SCC",
1618
1645
  "SRT",
@@ -1744,7 +1771,8 @@
1744
1771
  "CmafEncryptionType": {
1745
1772
  "type": "string",
1746
1773
  "enum": [
1747
- "SAMPLE_AES"
1774
+ "SAMPLE_AES",
1775
+ "AES_CTR"
1748
1776
  ]
1749
1777
  },
1750
1778
  "CmafGroupSettings": {
@@ -3005,9 +3033,20 @@
3005
3033
  "Source608TrackNumber": {
3006
3034
  "shape": "__integerMin1Max1",
3007
3035
  "locationName": "source608TrackNumber"
3036
+ },
3037
+ "TerminateCaptions": {
3038
+ "shape": "EmbeddedTerminateCaptions",
3039
+ "locationName": "terminateCaptions"
3008
3040
  }
3009
3041
  }
3010
3042
  },
3043
+ "EmbeddedTerminateCaptions": {
3044
+ "type": "string",
3045
+ "enum": [
3046
+ "END_OF_INPUT",
3047
+ "DISABLED"
3048
+ ]
3049
+ },
3011
3050
  "Endpoint": {
3012
3051
  "type": "structure",
3013
3052
  "members": {
@@ -3105,7 +3144,7 @@
3105
3144
  "locationName": "convert608To708"
3106
3145
  },
3107
3146
  "SourceFile": {
3108
- "shape": "__stringMin14PatternS3SccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTSmiSMI",
3147
+ "shape": "__stringMin14PatternS3SccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMI",
3109
3148
  "locationName": "sourceFile"
3110
3149
  },
3111
3150
  "TimeDelta": {
@@ -4377,6 +4416,22 @@
4377
4416
  }
4378
4417
  }
4379
4418
  },
4419
+ "ImscDestinationSettings": {
4420
+ "type": "structure",
4421
+ "members": {
4422
+ "StylePassthrough": {
4423
+ "shape": "ImscStylePassthrough",
4424
+ "locationName": "stylePassthrough"
4425
+ }
4426
+ }
4427
+ },
4428
+ "ImscStylePassthrough": {
4429
+ "type": "string",
4430
+ "enum": [
4431
+ "ENABLED",
4432
+ "DISABLED"
4433
+ ]
4434
+ },
4380
4435
  "Input": {
4381
4436
  "type": "structure",
4382
4437
  "members": {
@@ -4448,6 +4503,10 @@
4448
4503
  "shape": "InputTimecodeSource",
4449
4504
  "locationName": "timecodeSource"
4450
4505
  },
4506
+ "TimecodeStart": {
4507
+ "shape": "__stringMin11Max11Pattern01D20305D205D",
4508
+ "locationName": "timecodeStart"
4509
+ },
4451
4510
  "VideoSelector": {
4452
4511
  "shape": "VideoSelector",
4453
4512
  "locationName": "videoSelector"
@@ -4586,6 +4645,10 @@
4586
4645
  "shape": "InputTimecodeSource",
4587
4646
  "locationName": "timecodeSource"
4588
4647
  },
4648
+ "TimecodeStart": {
4649
+ "shape": "__stringMin11Max11Pattern01D20305D205D",
4650
+ "locationName": "timecodeStart"
4651
+ },
4589
4652
  "VideoSelector": {
4590
4653
  "shape": "VideoSelector",
4591
4654
  "locationName": "videoSelector"
@@ -6679,11 +6742,11 @@
6679
6742
  "locationName": "channelMapping"
6680
6743
  },
6681
6744
  "ChannelsIn": {
6682
- "shape": "__integerMin1Max16",
6745
+ "shape": "__integerMin1Max64",
6683
6746
  "locationName": "channelsIn"
6684
6747
  },
6685
6748
  "ChannelsOut": {
6686
- "shape": "__integerMin1Max8",
6749
+ "shape": "__integerMin1Max64",
6687
6750
  "locationName": "channelsOut"
6688
6751
  }
6689
6752
  }
@@ -7325,7 +7388,7 @@
7325
7388
  "locationName": "fixedAfd"
7326
7389
  },
7327
7390
  "Height": {
7328
- "shape": "__integerMin32Max2160",
7391
+ "shape": "__integerMin32Max4096",
7329
7392
  "locationName": "height"
7330
7393
  },
7331
7394
  "Position": {
@@ -7447,7 +7510,7 @@
7447
7510
  "locationName": "bitDepth"
7448
7511
  },
7449
7512
  "Channels": {
7450
- "shape": "__integerMin1Max8",
7513
+ "shape": "__integerMin1Max64",
7451
7514
  "locationName": "channels"
7452
7515
  },
7453
7516
  "Format": {
@@ -7672,11 +7735,6 @@
7672
7735
  "min": 1,
7673
7736
  "max": 1001
7674
7737
  },
7675
- "__integerMin1Max16": {
7676
- "type": "integer",
7677
- "min": 1,
7678
- "max": 16
7679
- },
7680
7738
  "__integerMin1Max17895697": {
7681
7739
  "type": "integer",
7682
7740
  "min": 1,
@@ -7722,10 +7780,10 @@
7722
7780
  "min": 1,
7723
7781
  "max": 6
7724
7782
  },
7725
- "__integerMin1Max8": {
7783
+ "__integerMin1Max64": {
7726
7784
  "type": "integer",
7727
7785
  "min": 1,
7728
- "max": 8
7786
+ "max": 64
7729
7787
  },
7730
7788
  "__integerMin24Max60000": {
7731
7789
  "type": "integer",
@@ -7757,11 +7815,6 @@
7757
7815
  "min": 32000,
7758
7816
  "max": 48000
7759
7817
  },
7760
- "__integerMin32Max2160": {
7761
- "type": "integer",
7762
- "min": 32,
7763
- "max": 2160
7764
- },
7765
7818
  "__integerMin32Max4096": {
7766
7819
  "type": "integer",
7767
7820
  "min": 32,
@@ -8095,10 +8148,10 @@
8095
8148
  "min": 14,
8096
8149
  "pattern": "^(s3:\\/\\/)(.*?)\\.(bmp|BMP|png|PNG|tga|TGA)$"
8097
8150
  },
8098
- "__stringMin14PatternS3SccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTSmiSMI": {
8151
+ "__stringMin14PatternS3SccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMI": {
8099
8152
  "type": "string",
8100
8153
  "min": 14,
8101
- "pattern": "^(s3:\\/\\/)(.*?)\\.(scc|SCC|ttml|TTML|dfxp|DFXP|stl|STL|srt|SRT|smi|SMI)$"
8154
+ "pattern": "^(s3:\\/\\/)(.*?)\\.(scc|SCC|ttml|TTML|dfxp|DFXP|stl|STL|srt|SRT|xml|XML|smi|SMI)$"
8102
8155
  },
8103
8156
  "__stringMin16Max24PatternAZaZ0922AZaZ0916": {
8104
8157
  "type": "string",
data/endpoints.json CHANGED
@@ -4543,6 +4543,17 @@
4543
4543
  }
4544
4544
  }
4545
4545
  },
4546
+ "servicecatalog" : {
4547
+ "endpoints" : {
4548
+ "us-gov-west-1" : { },
4549
+ "us-gov-west-1-fips" : {
4550
+ "credentialScope" : {
4551
+ "region" : "us-gov-west-1"
4552
+ },
4553
+ "hostname" : "servicecatalog-fips.us-gov-west-1.amazonaws.com"
4554
+ }
4555
+ }
4556
+ },
4546
4557
  "sms" : {
4547
4558
  "endpoints" : {
4548
4559
  "us-gov-east-1" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.353'
2
+ VERSION = '2.11.354'
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.353
4
+ version: 2.11.354
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: 2019-09-12 00:00:00.000000000 Z
11
+ date: 2019-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath