aws-sdk-core 2.11.320 → 2.11.321
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 +4 -4
- data/apis/ecr/2015-09-21/api-2.json +59 -4
- data/apis/mediaconvert/2017-08-29/api-2.json +194 -15
- data/apis/medialive/2017-10-14/api-2.json +186 -20
- data/endpoints.json +8 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 72474c4015431c3cd9044d4e6fb01b96aee8d5e0
|
|
4
|
+
data.tar.gz: 8edb75c9681b376bdb32f821a0a30c07bf635f59
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cb6e81c0ed8b5e0c62d7c26bac4b757490cdc18d4f81ddb412953f4d2903a23e79582cee9b456c5d6524791d7c9278f6d791991280df7755c365901fa1568e5
|
|
7
|
+
data.tar.gz: ee2b36084874422602e13c622b76d411a4a2e63bd595f0cede651dd82319cf764fbb0a1929ecd90473997d07bb5cb63f11646bb617c7cc64b804420f7e894d5e
|
|
@@ -296,7 +296,22 @@
|
|
|
296
296
|
{"shape":"RepositoryNotFoundException"},
|
|
297
297
|
{"shape":"ImageAlreadyExistsException"},
|
|
298
298
|
{"shape":"LayersNotFoundException"},
|
|
299
|
-
{"shape":"LimitExceededException"}
|
|
299
|
+
{"shape":"LimitExceededException"},
|
|
300
|
+
{"shape":"ImageTagAlreadyExistsException"}
|
|
301
|
+
]
|
|
302
|
+
},
|
|
303
|
+
"PutImageTagMutability":{
|
|
304
|
+
"name":"PutImageTagMutability",
|
|
305
|
+
"http":{
|
|
306
|
+
"method":"POST",
|
|
307
|
+
"requestUri":"/"
|
|
308
|
+
},
|
|
309
|
+
"input":{"shape":"PutImageTagMutabilityRequest"},
|
|
310
|
+
"output":{"shape":"PutImageTagMutabilityResponse"},
|
|
311
|
+
"errors":[
|
|
312
|
+
{"shape":"ServerException"},
|
|
313
|
+
{"shape":"InvalidParameterException"},
|
|
314
|
+
{"shape":"RepositoryNotFoundException"}
|
|
300
315
|
]
|
|
301
316
|
},
|
|
302
317
|
"PutLifecyclePolicy":{
|
|
@@ -508,7 +523,8 @@
|
|
|
508
523
|
"required":["repositoryName"],
|
|
509
524
|
"members":{
|
|
510
525
|
"repositoryName":{"shape":"RepositoryName"},
|
|
511
|
-
"tags":{"shape":"TagList"}
|
|
526
|
+
"tags":{"shape":"TagList"},
|
|
527
|
+
"imageTagMutability":{"shape":"ImageTagMutability"}
|
|
512
528
|
}
|
|
513
529
|
},
|
|
514
530
|
"CreateRepositoryResponse":{
|
|
@@ -801,11 +817,29 @@
|
|
|
801
817
|
"exception":true
|
|
802
818
|
},
|
|
803
819
|
"ImageSizeInBytes":{"type":"long"},
|
|
804
|
-
"ImageTag":{
|
|
820
|
+
"ImageTag":{
|
|
821
|
+
"type":"string",
|
|
822
|
+
"max":300,
|
|
823
|
+
"min":1
|
|
824
|
+
},
|
|
825
|
+
"ImageTagAlreadyExistsException":{
|
|
826
|
+
"type":"structure",
|
|
827
|
+
"members":{
|
|
828
|
+
"message":{"shape":"ExceptionMessage"}
|
|
829
|
+
},
|
|
830
|
+
"exception":true
|
|
831
|
+
},
|
|
805
832
|
"ImageTagList":{
|
|
806
833
|
"type":"list",
|
|
807
834
|
"member":{"shape":"ImageTag"}
|
|
808
835
|
},
|
|
836
|
+
"ImageTagMutability":{
|
|
837
|
+
"type":"string",
|
|
838
|
+
"enum":[
|
|
839
|
+
"MUTABLE",
|
|
840
|
+
"IMMUTABLE"
|
|
841
|
+
]
|
|
842
|
+
},
|
|
809
843
|
"InitiateLayerUploadRequest":{
|
|
810
844
|
"type":"structure",
|
|
811
845
|
"required":["repositoryName"],
|
|
@@ -1091,6 +1125,26 @@
|
|
|
1091
1125
|
"image":{"shape":"Image"}
|
|
1092
1126
|
}
|
|
1093
1127
|
},
|
|
1128
|
+
"PutImageTagMutabilityRequest":{
|
|
1129
|
+
"type":"structure",
|
|
1130
|
+
"required":[
|
|
1131
|
+
"repositoryName",
|
|
1132
|
+
"imageTagMutability"
|
|
1133
|
+
],
|
|
1134
|
+
"members":{
|
|
1135
|
+
"registryId":{"shape":"RegistryId"},
|
|
1136
|
+
"repositoryName":{"shape":"RepositoryName"},
|
|
1137
|
+
"imageTagMutability":{"shape":"ImageTagMutability"}
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
"PutImageTagMutabilityResponse":{
|
|
1141
|
+
"type":"structure",
|
|
1142
|
+
"members":{
|
|
1143
|
+
"registryId":{"shape":"RegistryId"},
|
|
1144
|
+
"repositoryName":{"shape":"RepositoryName"},
|
|
1145
|
+
"imageTagMutability":{"shape":"ImageTagMutability"}
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1094
1148
|
"PutLifecyclePolicyRequest":{
|
|
1095
1149
|
"type":"structure",
|
|
1096
1150
|
"required":[
|
|
@@ -1122,7 +1176,8 @@
|
|
|
1122
1176
|
"registryId":{"shape":"RegistryId"},
|
|
1123
1177
|
"repositoryName":{"shape":"RepositoryName"},
|
|
1124
1178
|
"repositoryUri":{"shape":"Url"},
|
|
1125
|
-
"createdAt":{"shape":"CreationTimestamp"}
|
|
1179
|
+
"createdAt":{"shape":"CreationTimestamp"},
|
|
1180
|
+
"imageTagMutability":{"shape":"ImageTagMutability"}
|
|
1126
1181
|
}
|
|
1127
1182
|
},
|
|
1128
1183
|
"RepositoryAlreadyExistsException":{
|
|
@@ -1126,6 +1126,7 @@
|
|
|
1126
1126
|
"AIFF",
|
|
1127
1127
|
"AC3",
|
|
1128
1128
|
"EAC3",
|
|
1129
|
+
"EAC3_ATMOS",
|
|
1129
1130
|
"PASSTHROUGH"
|
|
1130
1131
|
]
|
|
1131
1132
|
},
|
|
@@ -1148,6 +1149,10 @@
|
|
|
1148
1149
|
"shape": "AudioCodec",
|
|
1149
1150
|
"locationName": "codec"
|
|
1150
1151
|
},
|
|
1152
|
+
"Eac3AtmosSettings": {
|
|
1153
|
+
"shape": "Eac3AtmosSettings",
|
|
1154
|
+
"locationName": "eac3AtmosSettings"
|
|
1155
|
+
},
|
|
1151
1156
|
"Eac3Settings": {
|
|
1152
1157
|
"shape": "Eac3Settings",
|
|
1153
1158
|
"locationName": "eac3Settings"
|
|
@@ -1225,7 +1230,9 @@
|
|
|
1225
1230
|
"type": "string",
|
|
1226
1231
|
"enum": [
|
|
1227
1232
|
"ITU_BS_1770_1",
|
|
1228
|
-
"ITU_BS_1770_2"
|
|
1233
|
+
"ITU_BS_1770_2",
|
|
1234
|
+
"ITU_BS_1770_3",
|
|
1235
|
+
"ITU_BS_1770_4"
|
|
1229
1236
|
]
|
|
1230
1237
|
},
|
|
1231
1238
|
"AudioNormalizationAlgorithmControl": {
|
|
@@ -2607,6 +2614,139 @@
|
|
|
2607
2614
|
}
|
|
2608
2615
|
}
|
|
2609
2616
|
},
|
|
2617
|
+
"Eac3AtmosBitstreamMode": {
|
|
2618
|
+
"type": "string",
|
|
2619
|
+
"enum": [
|
|
2620
|
+
"COMPLETE_MAIN"
|
|
2621
|
+
]
|
|
2622
|
+
},
|
|
2623
|
+
"Eac3AtmosCodingMode": {
|
|
2624
|
+
"type": "string",
|
|
2625
|
+
"enum": [
|
|
2626
|
+
"CODING_MODE_9_1_6"
|
|
2627
|
+
]
|
|
2628
|
+
},
|
|
2629
|
+
"Eac3AtmosDialogueIntelligence": {
|
|
2630
|
+
"type": "string",
|
|
2631
|
+
"enum": [
|
|
2632
|
+
"ENABLED",
|
|
2633
|
+
"DISABLED"
|
|
2634
|
+
]
|
|
2635
|
+
},
|
|
2636
|
+
"Eac3AtmosDynamicRangeCompressionLine": {
|
|
2637
|
+
"type": "string",
|
|
2638
|
+
"enum": [
|
|
2639
|
+
"NONE",
|
|
2640
|
+
"FILM_STANDARD",
|
|
2641
|
+
"FILM_LIGHT",
|
|
2642
|
+
"MUSIC_STANDARD",
|
|
2643
|
+
"MUSIC_LIGHT",
|
|
2644
|
+
"SPEECH"
|
|
2645
|
+
]
|
|
2646
|
+
},
|
|
2647
|
+
"Eac3AtmosDynamicRangeCompressionRf": {
|
|
2648
|
+
"type": "string",
|
|
2649
|
+
"enum": [
|
|
2650
|
+
"NONE",
|
|
2651
|
+
"FILM_STANDARD",
|
|
2652
|
+
"FILM_LIGHT",
|
|
2653
|
+
"MUSIC_STANDARD",
|
|
2654
|
+
"MUSIC_LIGHT",
|
|
2655
|
+
"SPEECH"
|
|
2656
|
+
]
|
|
2657
|
+
},
|
|
2658
|
+
"Eac3AtmosMeteringMode": {
|
|
2659
|
+
"type": "string",
|
|
2660
|
+
"enum": [
|
|
2661
|
+
"LEQ_A",
|
|
2662
|
+
"ITU_BS_1770_1",
|
|
2663
|
+
"ITU_BS_1770_2",
|
|
2664
|
+
"ITU_BS_1770_3",
|
|
2665
|
+
"ITU_BS_1770_4"
|
|
2666
|
+
]
|
|
2667
|
+
},
|
|
2668
|
+
"Eac3AtmosSettings": {
|
|
2669
|
+
"type": "structure",
|
|
2670
|
+
"members": {
|
|
2671
|
+
"Bitrate": {
|
|
2672
|
+
"shape": "__integerMin384000Max768000",
|
|
2673
|
+
"locationName": "bitrate"
|
|
2674
|
+
},
|
|
2675
|
+
"BitstreamMode": {
|
|
2676
|
+
"shape": "Eac3AtmosBitstreamMode",
|
|
2677
|
+
"locationName": "bitstreamMode"
|
|
2678
|
+
},
|
|
2679
|
+
"CodingMode": {
|
|
2680
|
+
"shape": "Eac3AtmosCodingMode",
|
|
2681
|
+
"locationName": "codingMode"
|
|
2682
|
+
},
|
|
2683
|
+
"DialogueIntelligence": {
|
|
2684
|
+
"shape": "Eac3AtmosDialogueIntelligence",
|
|
2685
|
+
"locationName": "dialogueIntelligence"
|
|
2686
|
+
},
|
|
2687
|
+
"DynamicRangeCompressionLine": {
|
|
2688
|
+
"shape": "Eac3AtmosDynamicRangeCompressionLine",
|
|
2689
|
+
"locationName": "dynamicRangeCompressionLine"
|
|
2690
|
+
},
|
|
2691
|
+
"DynamicRangeCompressionRf": {
|
|
2692
|
+
"shape": "Eac3AtmosDynamicRangeCompressionRf",
|
|
2693
|
+
"locationName": "dynamicRangeCompressionRf"
|
|
2694
|
+
},
|
|
2695
|
+
"LoRoCenterMixLevel": {
|
|
2696
|
+
"shape": "__doubleMinNegative6Max3",
|
|
2697
|
+
"locationName": "loRoCenterMixLevel"
|
|
2698
|
+
},
|
|
2699
|
+
"LoRoSurroundMixLevel": {
|
|
2700
|
+
"shape": "__doubleMinNegative60MaxNegative1",
|
|
2701
|
+
"locationName": "loRoSurroundMixLevel"
|
|
2702
|
+
},
|
|
2703
|
+
"LtRtCenterMixLevel": {
|
|
2704
|
+
"shape": "__doubleMinNegative6Max3",
|
|
2705
|
+
"locationName": "ltRtCenterMixLevel"
|
|
2706
|
+
},
|
|
2707
|
+
"LtRtSurroundMixLevel": {
|
|
2708
|
+
"shape": "__doubleMinNegative60MaxNegative1",
|
|
2709
|
+
"locationName": "ltRtSurroundMixLevel"
|
|
2710
|
+
},
|
|
2711
|
+
"MeteringMode": {
|
|
2712
|
+
"shape": "Eac3AtmosMeteringMode",
|
|
2713
|
+
"locationName": "meteringMode"
|
|
2714
|
+
},
|
|
2715
|
+
"SampleRate": {
|
|
2716
|
+
"shape": "__integerMin48000Max48000",
|
|
2717
|
+
"locationName": "sampleRate"
|
|
2718
|
+
},
|
|
2719
|
+
"SpeechThreshold": {
|
|
2720
|
+
"shape": "__integerMin1Max100",
|
|
2721
|
+
"locationName": "speechThreshold"
|
|
2722
|
+
},
|
|
2723
|
+
"StereoDownmix": {
|
|
2724
|
+
"shape": "Eac3AtmosStereoDownmix",
|
|
2725
|
+
"locationName": "stereoDownmix"
|
|
2726
|
+
},
|
|
2727
|
+
"SurroundExMode": {
|
|
2728
|
+
"shape": "Eac3AtmosSurroundExMode",
|
|
2729
|
+
"locationName": "surroundExMode"
|
|
2730
|
+
}
|
|
2731
|
+
}
|
|
2732
|
+
},
|
|
2733
|
+
"Eac3AtmosStereoDownmix": {
|
|
2734
|
+
"type": "string",
|
|
2735
|
+
"enum": [
|
|
2736
|
+
"NOT_INDICATED",
|
|
2737
|
+
"STEREO",
|
|
2738
|
+
"SURROUND",
|
|
2739
|
+
"DPL2"
|
|
2740
|
+
]
|
|
2741
|
+
},
|
|
2742
|
+
"Eac3AtmosSurroundExMode": {
|
|
2743
|
+
"type": "string",
|
|
2744
|
+
"enum": [
|
|
2745
|
+
"NOT_INDICATED",
|
|
2746
|
+
"ENABLED",
|
|
2747
|
+
"DISABLED"
|
|
2748
|
+
]
|
|
2749
|
+
},
|
|
2610
2750
|
"Eac3AttenuationControl": {
|
|
2611
2751
|
"type": "string",
|
|
2612
2752
|
"enum": [
|
|
@@ -2823,6 +2963,10 @@
|
|
|
2823
2963
|
"Destination608ChannelNumber": {
|
|
2824
2964
|
"shape": "__integerMin1Max4",
|
|
2825
2965
|
"locationName": "destination608ChannelNumber"
|
|
2966
|
+
},
|
|
2967
|
+
"Destination708ServiceNumber": {
|
|
2968
|
+
"shape": "__integerMin1Max6",
|
|
2969
|
+
"locationName": "destination708ServiceNumber"
|
|
2826
2970
|
}
|
|
2827
2971
|
}
|
|
2828
2972
|
},
|
|
@@ -3874,6 +4018,13 @@
|
|
|
3874
4018
|
"ELEMENTAL_SCTE35"
|
|
3875
4019
|
]
|
|
3876
4020
|
},
|
|
4021
|
+
"HlsAudioOnlyContainer": {
|
|
4022
|
+
"type": "string",
|
|
4023
|
+
"enum": [
|
|
4024
|
+
"AUTOMATIC",
|
|
4025
|
+
"M2TS"
|
|
4026
|
+
]
|
|
4027
|
+
},
|
|
3877
4028
|
"HlsAudioTrackType": {
|
|
3878
4029
|
"type": "string",
|
|
3879
4030
|
"enum": [
|
|
@@ -4144,6 +4295,10 @@
|
|
|
4144
4295
|
"shape": "__string",
|
|
4145
4296
|
"locationName": "audioGroupId"
|
|
4146
4297
|
},
|
|
4298
|
+
"AudioOnlyContainer": {
|
|
4299
|
+
"shape": "HlsAudioOnlyContainer",
|
|
4300
|
+
"locationName": "audioOnlyContainer"
|
|
4301
|
+
},
|
|
4147
4302
|
"AudioRenditionSets": {
|
|
4148
4303
|
"shape": "__string",
|
|
4149
4304
|
"locationName": "audioRenditionSets"
|
|
@@ -4214,6 +4369,10 @@
|
|
|
4214
4369
|
"shape": "__mapOfCaptionSelector",
|
|
4215
4370
|
"locationName": "captionSelectors"
|
|
4216
4371
|
},
|
|
4372
|
+
"Crop": {
|
|
4373
|
+
"shape": "Rectangle",
|
|
4374
|
+
"locationName": "crop"
|
|
4375
|
+
},
|
|
4217
4376
|
"DeblockFilter": {
|
|
4218
4377
|
"shape": "InputDeblockFilter",
|
|
4219
4378
|
"locationName": "deblockFilter"
|
|
@@ -4227,7 +4386,7 @@
|
|
|
4227
4386
|
"locationName": "denoiseFilter"
|
|
4228
4387
|
},
|
|
4229
4388
|
"FileInput": {
|
|
4230
|
-
"shape": "
|
|
4389
|
+
"shape": "__stringPatternHttpHttpsS3MM2VVMMPPEEGGAAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL",
|
|
4231
4390
|
"locationName": "fileInput"
|
|
4232
4391
|
},
|
|
4233
4392
|
"FilterEnable": {
|
|
@@ -4246,6 +4405,10 @@
|
|
|
4246
4405
|
"shape": "__listOfInputClipping",
|
|
4247
4406
|
"locationName": "inputClippings"
|
|
4248
4407
|
},
|
|
4408
|
+
"Position": {
|
|
4409
|
+
"shape": "Rectangle",
|
|
4410
|
+
"locationName": "position"
|
|
4411
|
+
},
|
|
4249
4412
|
"ProgramNumber": {
|
|
4250
4413
|
"shape": "__integerMin1Max2147483647",
|
|
4251
4414
|
"locationName": "programNumber"
|
|
@@ -4356,6 +4519,10 @@
|
|
|
4356
4519
|
"shape": "__mapOfCaptionSelector",
|
|
4357
4520
|
"locationName": "captionSelectors"
|
|
4358
4521
|
},
|
|
4522
|
+
"Crop": {
|
|
4523
|
+
"shape": "Rectangle",
|
|
4524
|
+
"locationName": "crop"
|
|
4525
|
+
},
|
|
4359
4526
|
"DeblockFilter": {
|
|
4360
4527
|
"shape": "InputDeblockFilter",
|
|
4361
4528
|
"locationName": "deblockFilter"
|
|
@@ -4380,6 +4547,10 @@
|
|
|
4380
4547
|
"shape": "__listOfInputClipping",
|
|
4381
4548
|
"locationName": "inputClippings"
|
|
4382
4549
|
},
|
|
4550
|
+
"Position": {
|
|
4551
|
+
"shape": "Rectangle",
|
|
4552
|
+
"locationName": "position"
|
|
4553
|
+
},
|
|
4383
4554
|
"ProgramNumber": {
|
|
4384
4555
|
"shape": "__integerMin1Max2147483647",
|
|
4385
4556
|
"locationName": "programNumber"
|
|
@@ -5946,7 +6117,7 @@
|
|
|
5946
6117
|
"type": "structure",
|
|
5947
6118
|
"members": {
|
|
5948
6119
|
"BreakoutCode": {
|
|
5949
|
-
"shape": "
|
|
6120
|
+
"shape": "__integerMin0Max0",
|
|
5950
6121
|
"locationName": "breakoutCode"
|
|
5951
6122
|
},
|
|
5952
6123
|
"DistributorId": {
|
|
@@ -6563,7 +6734,7 @@
|
|
|
6563
6734
|
"locationName": "encryptionType"
|
|
6564
6735
|
},
|
|
6565
6736
|
"KmsKeyArn": {
|
|
6566
|
-
"shape": "
|
|
6737
|
+
"shape": "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
|
|
6567
6738
|
"locationName": "kmsKeyArn"
|
|
6568
6739
|
}
|
|
6569
6740
|
}
|
|
@@ -7203,9 +7374,17 @@
|
|
|
7203
7374
|
"__doubleMinNegative60MaxNegative1": {
|
|
7204
7375
|
"type": "double"
|
|
7205
7376
|
},
|
|
7377
|
+
"__doubleMinNegative6Max3": {
|
|
7378
|
+
"type": "double"
|
|
7379
|
+
},
|
|
7206
7380
|
"__integer": {
|
|
7207
7381
|
"type": "integer"
|
|
7208
7382
|
},
|
|
7383
|
+
"__integerMin0Max0": {
|
|
7384
|
+
"type": "integer",
|
|
7385
|
+
"min": 0,
|
|
7386
|
+
"max": 0
|
|
7387
|
+
},
|
|
7209
7388
|
"__integerMin0Max10": {
|
|
7210
7389
|
"type": "integer",
|
|
7211
7390
|
"min": 0,
|
|
@@ -7311,11 +7490,6 @@
|
|
|
7311
7490
|
"min": 0,
|
|
7312
7491
|
"max": 8
|
|
7313
7492
|
},
|
|
7314
|
-
"__integerMin0Max9": {
|
|
7315
|
-
"type": "integer",
|
|
7316
|
-
"min": 0,
|
|
7317
|
-
"max": 9
|
|
7318
|
-
},
|
|
7319
7493
|
"__integerMin0Max96": {
|
|
7320
7494
|
"type": "integer",
|
|
7321
7495
|
"min": 0,
|
|
@@ -7486,6 +7660,11 @@
|
|
|
7486
7660
|
"min": 32,
|
|
7487
7661
|
"max": 8182
|
|
7488
7662
|
},
|
|
7663
|
+
"__integerMin384000Max768000": {
|
|
7664
|
+
"type": "integer",
|
|
7665
|
+
"min": 384000,
|
|
7666
|
+
"max": 768000
|
|
7667
|
+
},
|
|
7489
7668
|
"__integerMin48000Max48000": {
|
|
7490
7669
|
"type": "integer",
|
|
7491
7670
|
"min": 48000,
|
|
@@ -7863,14 +8042,18 @@
|
|
|
7863
8042
|
"type": "string",
|
|
7864
8043
|
"pattern": "^arn:aws(-us-gov)?:acm:"
|
|
7865
8044
|
},
|
|
7866
|
-
"
|
|
8045
|
+
"__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912": {
|
|
7867
8046
|
"type": "string",
|
|
7868
|
-
"pattern": "^arn:aws(-us-gov)?:kms:[a-z-]{2,6}-(east|west|central|((north|south)(east|west)?))-[1-9]{1,2}:\\d{12}:key/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
|
|
8047
|
+
"pattern": "^arn:aws(-us-gov|-cn)?:kms:[a-z-]{2,6}-(east|west|central|((north|south)(east|west)?))-[1-9]{1,2}:\\d{12}:key/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
|
|
7869
8048
|
},
|
|
7870
8049
|
"__stringPatternDD": {
|
|
7871
8050
|
"type": "string",
|
|
7872
8051
|
"pattern": "^(\\d+(\\/\\d+)*)$"
|
|
7873
8052
|
},
|
|
8053
|
+
"__stringPatternHttpHttpsS3MM2VVMMPPEEGGAAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL": {
|
|
8054
|
+
"type": "string",
|
|
8055
|
+
"pattern": "^(http|https|s3)://([^\\/]+\\/)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL])))$"
|
|
8056
|
+
},
|
|
7874
8057
|
"__stringPatternHttps": {
|
|
7875
8058
|
"type": "string",
|
|
7876
8059
|
"pattern": "^https:\\/\\/"
|
|
@@ -7891,10 +8074,6 @@
|
|
|
7891
8074
|
"type": "string",
|
|
7892
8075
|
"pattern": "^(s3:\\/\\/)([^\\/]+\\/)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE])))$"
|
|
7893
8076
|
},
|
|
7894
|
-
"__stringPatternS3MM2VVMMPPEEGGAAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL": {
|
|
7895
|
-
"type": "string",
|
|
7896
|
-
"pattern": "^(s3:\\/\\/)([^\\/]+\\/)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL])))$"
|
|
7897
|
-
},
|
|
7898
8077
|
"__stringPatternSNManifestConfirmConditionNotificationNS": {
|
|
7899
8078
|
"type": "string",
|
|
7900
8079
|
"pattern": "^\\s*<(.|\\n)*ManifestConfirmConditionNotification(.|\\n)*>\\s*$"
|
|
@@ -2149,6 +2149,10 @@
|
|
|
2149
2149
|
"shape": "__string",
|
|
2150
2150
|
"locationName": "name"
|
|
2151
2151
|
},
|
|
2152
|
+
"PipelineDetails": {
|
|
2153
|
+
"shape": "__listOfPipelineDetail",
|
|
2154
|
+
"locationName": "pipelineDetails"
|
|
2155
|
+
},
|
|
2152
2156
|
"PipelinesRunningCount": {
|
|
2153
2157
|
"shape": "__integer",
|
|
2154
2158
|
"locationName": "pipelinesRunningCount"
|
|
@@ -2616,6 +2620,10 @@
|
|
|
2616
2620
|
"shape": "__string",
|
|
2617
2621
|
"locationName": "name"
|
|
2618
2622
|
},
|
|
2623
|
+
"PipelineDetails": {
|
|
2624
|
+
"shape": "__listOfPipelineDetail",
|
|
2625
|
+
"locationName": "pipelineDetails"
|
|
2626
|
+
},
|
|
2619
2627
|
"PipelinesRunningCount": {
|
|
2620
2628
|
"shape": "__integer",
|
|
2621
2629
|
"locationName": "pipelinesRunningCount"
|
|
@@ -2853,6 +2861,10 @@
|
|
|
2853
2861
|
"shape": "__string",
|
|
2854
2862
|
"locationName": "name"
|
|
2855
2863
|
},
|
|
2864
|
+
"PipelineDetails": {
|
|
2865
|
+
"shape": "__listOfPipelineDetail",
|
|
2866
|
+
"locationName": "pipelineDetails"
|
|
2867
|
+
},
|
|
2856
2868
|
"PipelinesRunningCount": {
|
|
2857
2869
|
"shape": "__integer",
|
|
2858
2870
|
"locationName": "pipelinesRunningCount"
|
|
@@ -2907,6 +2919,10 @@
|
|
|
2907
2919
|
"shape": "InputClass",
|
|
2908
2920
|
"locationName": "inputClass"
|
|
2909
2921
|
},
|
|
2922
|
+
"InputSourceType": {
|
|
2923
|
+
"shape": "InputSourceType",
|
|
2924
|
+
"locationName": "inputSourceType"
|
|
2925
|
+
},
|
|
2910
2926
|
"MediaConnectFlows": {
|
|
2911
2927
|
"shape": "__listOfMediaConnectFlow",
|
|
2912
2928
|
"locationName": "mediaConnectFlows"
|
|
@@ -4668,6 +4684,11 @@
|
|
|
4668
4684
|
"STANDARD"
|
|
4669
4685
|
]
|
|
4670
4686
|
},
|
|
4687
|
+
"ImmediateModeScheduleActionStartSettings": {
|
|
4688
|
+
"type": "structure",
|
|
4689
|
+
"members": {
|
|
4690
|
+
}
|
|
4691
|
+
},
|
|
4671
4692
|
"Input": {
|
|
4672
4693
|
"type": "structure",
|
|
4673
4694
|
"members": {
|
|
@@ -4691,6 +4712,10 @@
|
|
|
4691
4712
|
"shape": "InputClass",
|
|
4692
4713
|
"locationName": "inputClass"
|
|
4693
4714
|
},
|
|
4715
|
+
"InputSourceType": {
|
|
4716
|
+
"shape": "InputSourceType",
|
|
4717
|
+
"locationName": "inputSourceType"
|
|
4718
|
+
},
|
|
4694
4719
|
"MediaConnectFlows": {
|
|
4695
4720
|
"shape": "__listOfMediaConnectFlow",
|
|
4696
4721
|
"locationName": "mediaConnectFlows"
|
|
@@ -4766,6 +4791,26 @@
|
|
|
4766
4791
|
"SINGLE_PIPELINE"
|
|
4767
4792
|
]
|
|
4768
4793
|
},
|
|
4794
|
+
"InputClippingSettings": {
|
|
4795
|
+
"type": "structure",
|
|
4796
|
+
"members": {
|
|
4797
|
+
"InputTimecodeSource": {
|
|
4798
|
+
"shape": "InputTimecodeSource",
|
|
4799
|
+
"locationName": "inputTimecodeSource"
|
|
4800
|
+
},
|
|
4801
|
+
"StartTimecode": {
|
|
4802
|
+
"shape": "StartTimecode",
|
|
4803
|
+
"locationName": "startTimecode"
|
|
4804
|
+
},
|
|
4805
|
+
"StopTimecode": {
|
|
4806
|
+
"shape": "StopTimecode",
|
|
4807
|
+
"locationName": "stopTimecode"
|
|
4808
|
+
}
|
|
4809
|
+
},
|
|
4810
|
+
"required": [
|
|
4811
|
+
"InputTimecodeSource"
|
|
4812
|
+
]
|
|
4813
|
+
},
|
|
4769
4814
|
"InputCodec": {
|
|
4770
4815
|
"type": "string",
|
|
4771
4816
|
"enum": [
|
|
@@ -5069,6 +5114,13 @@
|
|
|
5069
5114
|
}
|
|
5070
5115
|
}
|
|
5071
5116
|
},
|
|
5117
|
+
"InputSourceType": {
|
|
5118
|
+
"type": "string",
|
|
5119
|
+
"enum": [
|
|
5120
|
+
"STATIC",
|
|
5121
|
+
"DYNAMIC"
|
|
5122
|
+
]
|
|
5123
|
+
},
|
|
5072
5124
|
"InputSpecification": {
|
|
5073
5125
|
"type": "structure",
|
|
5074
5126
|
"members": {
|
|
@@ -5102,12 +5154,27 @@
|
|
|
5102
5154
|
"InputAttachmentNameReference": {
|
|
5103
5155
|
"shape": "__string",
|
|
5104
5156
|
"locationName": "inputAttachmentNameReference"
|
|
5157
|
+
},
|
|
5158
|
+
"InputClippingSettings": {
|
|
5159
|
+
"shape": "InputClippingSettings",
|
|
5160
|
+
"locationName": "inputClippingSettings"
|
|
5161
|
+
},
|
|
5162
|
+
"UrlPath": {
|
|
5163
|
+
"shape": "__listOf__string",
|
|
5164
|
+
"locationName": "urlPath"
|
|
5105
5165
|
}
|
|
5106
5166
|
},
|
|
5107
5167
|
"required": [
|
|
5108
5168
|
"InputAttachmentNameReference"
|
|
5109
5169
|
]
|
|
5110
5170
|
},
|
|
5171
|
+
"InputTimecodeSource": {
|
|
5172
|
+
"type": "string",
|
|
5173
|
+
"enum": [
|
|
5174
|
+
"ZEROBASED",
|
|
5175
|
+
"EMBEDDED"
|
|
5176
|
+
]
|
|
5177
|
+
},
|
|
5111
5178
|
"InputType": {
|
|
5112
5179
|
"type": "string",
|
|
5113
5180
|
"enum": [
|
|
@@ -5194,6 +5261,13 @@
|
|
|
5194
5261
|
}
|
|
5195
5262
|
}
|
|
5196
5263
|
},
|
|
5264
|
+
"LastFrameClippingBehavior": {
|
|
5265
|
+
"type": "string",
|
|
5266
|
+
"enum": [
|
|
5267
|
+
"EXCLUDE_LAST_FRAME",
|
|
5268
|
+
"INCLUDE_LAST_FRAME"
|
|
5269
|
+
]
|
|
5270
|
+
},
|
|
5197
5271
|
"LimitExceeded": {
|
|
5198
5272
|
"type": "structure",
|
|
5199
5273
|
"members": {
|
|
@@ -6370,6 +6444,23 @@
|
|
|
6370
6444
|
}
|
|
6371
6445
|
}
|
|
6372
6446
|
},
|
|
6447
|
+
"PipelineDetail": {
|
|
6448
|
+
"type": "structure",
|
|
6449
|
+
"members": {
|
|
6450
|
+
"ActiveInputAttachmentName": {
|
|
6451
|
+
"shape": "__string",
|
|
6452
|
+
"locationName": "activeInputAttachmentName"
|
|
6453
|
+
},
|
|
6454
|
+
"ActiveInputSwitchActionName": {
|
|
6455
|
+
"shape": "__string",
|
|
6456
|
+
"locationName": "activeInputSwitchActionName"
|
|
6457
|
+
},
|
|
6458
|
+
"PipelineId": {
|
|
6459
|
+
"shape": "__string",
|
|
6460
|
+
"locationName": "pipelineId"
|
|
6461
|
+
}
|
|
6462
|
+
}
|
|
6463
|
+
},
|
|
6373
6464
|
"PipelineId": {
|
|
6374
6465
|
"type": "string",
|
|
6375
6466
|
"enum": [
|
|
@@ -6836,6 +6927,10 @@
|
|
|
6836
6927
|
"FollowModeScheduleActionStartSettings": {
|
|
6837
6928
|
"shape": "FollowModeScheduleActionStartSettings",
|
|
6838
6929
|
"locationName": "followModeScheduleActionStartSettings"
|
|
6930
|
+
},
|
|
6931
|
+
"ImmediateModeScheduleActionStartSettings": {
|
|
6932
|
+
"shape": "ImmediateModeScheduleActionStartSettings",
|
|
6933
|
+
"locationName": "immediateModeScheduleActionStartSettings"
|
|
6839
6934
|
}
|
|
6840
6935
|
}
|
|
6841
6936
|
},
|
|
@@ -6991,7 +7086,7 @@
|
|
|
6991
7086
|
"type": "structure",
|
|
6992
7087
|
"members": {
|
|
6993
7088
|
"SpliceEventId": {
|
|
6994
|
-
"shape": "
|
|
7089
|
+
"shape": "__longMin0Max4294967295",
|
|
6995
7090
|
"locationName": "spliceEventId"
|
|
6996
7091
|
}
|
|
6997
7092
|
},
|
|
@@ -7022,11 +7117,11 @@
|
|
|
7022
7117
|
"locationName": "segmentationCancelIndicator"
|
|
7023
7118
|
},
|
|
7024
7119
|
"SegmentationDuration": {
|
|
7025
|
-
"shape": "
|
|
7120
|
+
"shape": "__longMin0Max1099511627775",
|
|
7026
7121
|
"locationName": "segmentationDuration"
|
|
7027
7122
|
},
|
|
7028
7123
|
"SegmentationEventId": {
|
|
7029
|
-
"shape": "
|
|
7124
|
+
"shape": "__longMin0Max4294967295",
|
|
7030
7125
|
"locationName": "segmentationEventId"
|
|
7031
7126
|
},
|
|
7032
7127
|
"SegmentationTypeId": {
|
|
@@ -7087,11 +7182,11 @@
|
|
|
7087
7182
|
"type": "structure",
|
|
7088
7183
|
"members": {
|
|
7089
7184
|
"Duration": {
|
|
7090
|
-
"shape": "
|
|
7185
|
+
"shape": "__longMin0Max8589934591",
|
|
7091
7186
|
"locationName": "duration"
|
|
7092
7187
|
},
|
|
7093
7188
|
"SpliceEventId": {
|
|
7094
|
-
"shape": "
|
|
7189
|
+
"shape": "__longMin0Max4294967295",
|
|
7095
7190
|
"locationName": "spliceEventId"
|
|
7096
7191
|
}
|
|
7097
7192
|
},
|
|
@@ -7142,6 +7237,23 @@
|
|
|
7142
7237
|
"WEB_DELIVERY_ALLOWED"
|
|
7143
7238
|
]
|
|
7144
7239
|
},
|
|
7240
|
+
"ServiceDescriptor": {
|
|
7241
|
+
"type": "structure",
|
|
7242
|
+
"members": {
|
|
7243
|
+
"ProviderName": {
|
|
7244
|
+
"shape": "__stringMax256",
|
|
7245
|
+
"locationName": "providerName"
|
|
7246
|
+
},
|
|
7247
|
+
"ServiceName": {
|
|
7248
|
+
"shape": "__stringMax256",
|
|
7249
|
+
"locationName": "serviceName"
|
|
7250
|
+
}
|
|
7251
|
+
},
|
|
7252
|
+
"required": [
|
|
7253
|
+
"ProviderName",
|
|
7254
|
+
"ServiceName"
|
|
7255
|
+
]
|
|
7256
|
+
},
|
|
7145
7257
|
"SmoothGroupAudioOnlyTimecodeControl": {
|
|
7146
7258
|
"type": "string",
|
|
7147
7259
|
"enum": [
|
|
@@ -7276,6 +7388,10 @@
|
|
|
7276
7388
|
"shape": "__string",
|
|
7277
7389
|
"locationName": "name"
|
|
7278
7390
|
},
|
|
7391
|
+
"PipelineDetails": {
|
|
7392
|
+
"shape": "__listOfPipelineDetail",
|
|
7393
|
+
"locationName": "pipelineDetails"
|
|
7394
|
+
},
|
|
7279
7395
|
"PipelinesRunningCount": {
|
|
7280
7396
|
"shape": "__integer",
|
|
7281
7397
|
"locationName": "pipelinesRunningCount"
|
|
@@ -7294,6 +7410,15 @@
|
|
|
7294
7410
|
}
|
|
7295
7411
|
}
|
|
7296
7412
|
},
|
|
7413
|
+
"StartTimecode": {
|
|
7414
|
+
"type": "structure",
|
|
7415
|
+
"members": {
|
|
7416
|
+
"Timecode": {
|
|
7417
|
+
"shape": "__string",
|
|
7418
|
+
"locationName": "timecode"
|
|
7419
|
+
}
|
|
7420
|
+
}
|
|
7421
|
+
},
|
|
7297
7422
|
"StaticImageActivateScheduleActionSettings": {
|
|
7298
7423
|
"type": "structure",
|
|
7299
7424
|
"members": {
|
|
@@ -7427,6 +7552,10 @@
|
|
|
7427
7552
|
"shape": "__string",
|
|
7428
7553
|
"locationName": "name"
|
|
7429
7554
|
},
|
|
7555
|
+
"PipelineDetails": {
|
|
7556
|
+
"shape": "__listOfPipelineDetail",
|
|
7557
|
+
"locationName": "pipelineDetails"
|
|
7558
|
+
},
|
|
7430
7559
|
"PipelinesRunningCount": {
|
|
7431
7560
|
"shape": "__integer",
|
|
7432
7561
|
"locationName": "pipelinesRunningCount"
|
|
@@ -7445,6 +7574,19 @@
|
|
|
7445
7574
|
}
|
|
7446
7575
|
}
|
|
7447
7576
|
},
|
|
7577
|
+
"StopTimecode": {
|
|
7578
|
+
"type": "structure",
|
|
7579
|
+
"members": {
|
|
7580
|
+
"LastFrameClippingBehavior": {
|
|
7581
|
+
"shape": "LastFrameClippingBehavior",
|
|
7582
|
+
"locationName": "lastFrameClippingBehavior"
|
|
7583
|
+
},
|
|
7584
|
+
"Timecode": {
|
|
7585
|
+
"shape": "__string",
|
|
7586
|
+
"locationName": "timecode"
|
|
7587
|
+
}
|
|
7588
|
+
}
|
|
7589
|
+
},
|
|
7448
7590
|
"Tags": {
|
|
7449
7591
|
"type": "map",
|
|
7450
7592
|
"key": {
|
|
@@ -8066,9 +8208,18 @@
|
|
|
8066
8208
|
"__doubleMin0": {
|
|
8067
8209
|
"type": "double"
|
|
8068
8210
|
},
|
|
8211
|
+
"__doubleMin0Max1000000000": {
|
|
8212
|
+
"type": "double"
|
|
8213
|
+
},
|
|
8214
|
+
"__doubleMin0Max65535": {
|
|
8215
|
+
"type": "double"
|
|
8216
|
+
},
|
|
8069
8217
|
"__doubleMin1": {
|
|
8070
8218
|
"type": "double"
|
|
8071
8219
|
},
|
|
8220
|
+
"__doubleMin10000Max1000000000": {
|
|
8221
|
+
"type": "double"
|
|
8222
|
+
},
|
|
8072
8223
|
"__doubleMinNegative59Max0": {
|
|
8073
8224
|
"type": "double"
|
|
8074
8225
|
},
|
|
@@ -8104,11 +8255,6 @@
|
|
|
8104
8255
|
"min": 0,
|
|
8105
8256
|
"max": 1000000
|
|
8106
8257
|
},
|
|
8107
|
-
"__integerMin0Max1099511627775": {
|
|
8108
|
-
"type": "long",
|
|
8109
|
-
"min": 0,
|
|
8110
|
-
"max": 1099511627775
|
|
8111
|
-
},
|
|
8112
8258
|
"__integerMin0Max128": {
|
|
8113
8259
|
"type": "integer",
|
|
8114
8260
|
"min": 0,
|
|
@@ -8134,11 +8280,6 @@
|
|
|
8134
8280
|
"min": 0,
|
|
8135
8281
|
"max": 3600
|
|
8136
8282
|
},
|
|
8137
|
-
"__integerMin0Max4294967295": {
|
|
8138
|
-
"type": "long",
|
|
8139
|
-
"min": 0,
|
|
8140
|
-
"max": 4294967295
|
|
8141
|
-
},
|
|
8142
8283
|
"__integerMin0Max500": {
|
|
8143
8284
|
"type": "integer",
|
|
8144
8285
|
"min": 0,
|
|
@@ -8169,11 +8310,6 @@
|
|
|
8169
8310
|
"min": 0,
|
|
8170
8311
|
"max": 8191
|
|
8171
8312
|
},
|
|
8172
|
-
"__integerMin0Max8589934591": {
|
|
8173
|
-
"type": "long",
|
|
8174
|
-
"min": 0,
|
|
8175
|
-
"max": 8589934591
|
|
8176
|
-
},
|
|
8177
8313
|
"__integerMin1": {
|
|
8178
8314
|
"type": "integer",
|
|
8179
8315
|
"min": 1
|
|
@@ -8182,6 +8318,11 @@
|
|
|
8182
8318
|
"type": "integer",
|
|
8183
8319
|
"min": 1000
|
|
8184
8320
|
},
|
|
8321
|
+
"__integerMin100000Max100000000": {
|
|
8322
|
+
"type": "integer",
|
|
8323
|
+
"min": 100000,
|
|
8324
|
+
"max": 100000000
|
|
8325
|
+
},
|
|
8185
8326
|
"__integerMin1000Max30000": {
|
|
8186
8327
|
"type": "integer",
|
|
8187
8328
|
"min": 1000,
|
|
@@ -8447,6 +8588,12 @@
|
|
|
8447
8588
|
"shape": "OutputGroup"
|
|
8448
8589
|
}
|
|
8449
8590
|
},
|
|
8591
|
+
"__listOfPipelineDetail": {
|
|
8592
|
+
"type": "list",
|
|
8593
|
+
"member": {
|
|
8594
|
+
"shape": "PipelineDetail"
|
|
8595
|
+
}
|
|
8596
|
+
},
|
|
8450
8597
|
"__listOfPipelinePauseStateSettings": {
|
|
8451
8598
|
"type": "list",
|
|
8452
8599
|
"member": {
|
|
@@ -8492,9 +8639,28 @@
|
|
|
8492
8639
|
"__long": {
|
|
8493
8640
|
"type": "long"
|
|
8494
8641
|
},
|
|
8642
|
+
"__longMin0Max1099511627775": {
|
|
8643
|
+
"type": "long",
|
|
8644
|
+
"min": 0,
|
|
8645
|
+
"max": 1099511627775
|
|
8646
|
+
},
|
|
8647
|
+
"__longMin0Max4294967295": {
|
|
8648
|
+
"type": "long",
|
|
8649
|
+
"min": 0,
|
|
8650
|
+
"max": 4294967295
|
|
8651
|
+
},
|
|
8652
|
+
"__longMin0Max8589934591": {
|
|
8653
|
+
"type": "long",
|
|
8654
|
+
"min": 0,
|
|
8655
|
+
"max": 8589934591
|
|
8656
|
+
},
|
|
8495
8657
|
"__string": {
|
|
8496
8658
|
"type": "string"
|
|
8497
8659
|
},
|
|
8660
|
+
"__stringMax256": {
|
|
8661
|
+
"type": "string",
|
|
8662
|
+
"max": 256
|
|
8663
|
+
},
|
|
8498
8664
|
"__stringMax32": {
|
|
8499
8665
|
"type": "string",
|
|
8500
8666
|
"max": 32
|
data/endpoints.json
CHANGED
|
@@ -94,6 +94,7 @@
|
|
|
94
94
|
"protocols" : [ "https" ]
|
|
95
95
|
},
|
|
96
96
|
"endpoints" : {
|
|
97
|
+
"ap-east-1" : { },
|
|
97
98
|
"ap-northeast-1" : { },
|
|
98
99
|
"ap-northeast-2" : { },
|
|
99
100
|
"ap-south-1" : { },
|
|
@@ -1459,6 +1460,7 @@
|
|
|
1459
1460
|
"eu-west-2" : { },
|
|
1460
1461
|
"us-east-1" : { },
|
|
1461
1462
|
"us-east-2" : { },
|
|
1463
|
+
"us-west-1" : { },
|
|
1462
1464
|
"us-west-2" : { }
|
|
1463
1465
|
}
|
|
1464
1466
|
},
|
|
@@ -1555,6 +1557,7 @@
|
|
|
1555
1557
|
"protocols" : [ "https" ]
|
|
1556
1558
|
},
|
|
1557
1559
|
"endpoints" : {
|
|
1560
|
+
"ap-east-1" : { },
|
|
1558
1561
|
"ap-northeast-1" : { },
|
|
1559
1562
|
"ap-northeast-2" : { },
|
|
1560
1563
|
"ap-south-1" : { },
|
|
@@ -1733,6 +1736,7 @@
|
|
|
1733
1736
|
"ap-southeast-1" : { },
|
|
1734
1737
|
"ap-southeast-2" : { },
|
|
1735
1738
|
"eu-central-1" : { },
|
|
1739
|
+
"eu-north-1" : { },
|
|
1736
1740
|
"eu-west-1" : { },
|
|
1737
1741
|
"eu-west-2" : { },
|
|
1738
1742
|
"eu-west-3" : { },
|
|
@@ -2346,8 +2350,11 @@
|
|
|
2346
2350
|
"robomaker" : {
|
|
2347
2351
|
"endpoints" : {
|
|
2348
2352
|
"ap-northeast-1" : { },
|
|
2353
|
+
"ap-southeast-1" : { },
|
|
2354
|
+
"eu-central-1" : { },
|
|
2349
2355
|
"eu-west-1" : { },
|
|
2350
2356
|
"us-east-1" : { },
|
|
2357
|
+
"us-east-2" : { },
|
|
2351
2358
|
"us-west-2" : { }
|
|
2352
2359
|
}
|
|
2353
2360
|
},
|
|
@@ -2882,6 +2889,7 @@
|
|
|
2882
2889
|
"snowball" : {
|
|
2883
2890
|
"endpoints" : {
|
|
2884
2891
|
"ap-northeast-1" : { },
|
|
2892
|
+
"ap-northeast-2" : { },
|
|
2885
2893
|
"ap-south-1" : { },
|
|
2886
2894
|
"ap-southeast-1" : { },
|
|
2887
2895
|
"ap-southeast-2" : { },
|
data/lib/aws-sdk-core/version.rb
CHANGED
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.
|
|
4
|
+
version: 2.11.321
|
|
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-07-
|
|
11
|
+
date: 2019-07-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|