aws-sdk-core 2.0.10 → 2.0.11

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: 20d7f989a228952068c824ba5a72bc159bf02518
4
- data.tar.gz: aca579e369d48d762ca28c19469b8c03514cdf63
3
+ metadata.gz: f871efae9872e34c5bc91e5c61046525d4287fa8
4
+ data.tar.gz: e5152c54c751c8892eefc24b2cde38d76ac9705c
5
5
  SHA512:
6
- metadata.gz: 7fc4a0e7d08ac3fcab032f2d9ada31a5c2ecd4a87f91e10b07b11b413645ecb6fd1ec08ade9ccdc6b6151e37298d2d727fe498d5f1d1b9ba5702cd312f8b74b7
7
- data.tar.gz: 49fd4b76dc8fc500fc164c268265eceb0614f22c2ddb3fe6e81fcafc2cb82f0acc79a4eda79de415b38d7dac6b62296a96ecfd058156da36f8ff026c593ff7db
6
+ metadata.gz: 4e54cc26cf5e183e2896bfc1c5073c25cba814bb573760931d6aa218e23025da48f1da4b3853e574eda95e847c0a956b44527a17e63c6de137afa23869c14664
7
+ data.tar.gz: f72ef86b8b8d80dda0f476a86313694f64af08009d890449c8d391cbc1f377b939bc6851bc79865d46fbc4a3ca72be4d9fa555f43841fcc705a469e5ce0e7532
@@ -441,7 +441,8 @@
441
441
  "type":"structure",
442
442
  "required":["pipelineId"],
443
443
  "members":{
444
- "pipelineId":{"shape":"id"}
444
+ "pipelineId":{"shape":"id"},
445
+ "parameterValues":{"shape":"ParameterValueList"}
445
446
  }
446
447
  },
447
448
  "ActivatePipelineOutput":{
@@ -551,7 +552,9 @@
551
552
  "GetPipelineDefinitionOutput":{
552
553
  "type":"structure",
553
554
  "members":{
554
- "pipelineObjects":{"shape":"PipelineObjectList"}
555
+ "pipelineObjects":{"shape":"PipelineObjectList"},
556
+ "parameterObjects":{"shape":"ParameterObjectList"},
557
+ "parameterValues":{"shape":"ParameterValueList"}
555
558
  }
556
559
  },
557
560
  "InstanceIdentity":{
@@ -608,6 +611,51 @@
608
611
  "BETWEEN"
609
612
  ]
610
613
  },
614
+ "ParameterAttribute":{
615
+ "type":"structure",
616
+ "required":[
617
+ "key",
618
+ "stringValue"
619
+ ],
620
+ "members":{
621
+ "key":{"shape":"attributeNameString"},
622
+ "stringValue":{"shape":"attributeValueString"}
623
+ }
624
+ },
625
+ "ParameterAttributeList":{
626
+ "type":"list",
627
+ "member":{"shape":"ParameterAttribute"}
628
+ },
629
+ "ParameterObject":{
630
+ "type":"structure",
631
+ "required":[
632
+ "id",
633
+ "attributes"
634
+ ],
635
+ "members":{
636
+ "id":{"shape":"fieldNameString"},
637
+ "attributes":{"shape":"ParameterAttributeList"}
638
+ }
639
+ },
640
+ "ParameterObjectList":{
641
+ "type":"list",
642
+ "member":{"shape":"ParameterObject"}
643
+ },
644
+ "ParameterValue":{
645
+ "type":"structure",
646
+ "required":[
647
+ "id",
648
+ "stringValue"
649
+ ],
650
+ "members":{
651
+ "id":{"shape":"fieldNameString"},
652
+ "stringValue":{"shape":"fieldStringValue"}
653
+ }
654
+ },
655
+ "ParameterValueList":{
656
+ "type":"list",
657
+ "member":{"shape":"ParameterValue"}
658
+ },
611
659
  "PipelineDeletedException":{
612
660
  "type":"structure",
613
661
  "members":{
@@ -692,7 +740,9 @@
692
740
  ],
693
741
  "members":{
694
742
  "pipelineId":{"shape":"id"},
695
- "pipelineObjects":{"shape":"PipelineObjectList"}
743
+ "pipelineObjects":{"shape":"PipelineObjectList"},
744
+ "parameterObjects":{"shape":"ParameterObjectList"},
745
+ "parameterValues":{"shape":"ParameterValueList"}
696
746
  }
697
747
  },
698
748
  "PutPipelineDefinitionOutput":{
@@ -736,7 +786,8 @@
736
786
  "type":"structure",
737
787
  "required":["taskId"],
738
788
  "members":{
739
- "taskId":{"shape":"taskId"}
789
+ "taskId":{"shape":"taskId"},
790
+ "fields":{"shape":"fieldList"}
740
791
  }
741
792
  },
742
793
  "ReportTaskProgressOutput":{
@@ -837,7 +888,9 @@
837
888
  ],
838
889
  "members":{
839
890
  "pipelineId":{"shape":"id"},
840
- "pipelineObjects":{"shape":"PipelineObjectList"}
891
+ "pipelineObjects":{"shape":"PipelineObjectList"},
892
+ "parameterObjects":{"shape":"ParameterObjectList"},
893
+ "parameterValues":{"shape":"ParameterValueList"}
841
894
  }
842
895
  },
843
896
  "ValidatePipelineDefinitionOutput":{
@@ -871,6 +924,18 @@
871
924
  "type":"list",
872
925
  "member":{"shape":"ValidationWarning"}
873
926
  },
927
+ "attributeNameString":{
928
+ "type":"string",
929
+ "min":1,
930
+ "max":256,
931
+ "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
932
+ },
933
+ "attributeValueString":{
934
+ "type":"string",
935
+ "min":0,
936
+ "max":10240,
937
+ "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
938
+ },
874
939
  "boolean":{"type":"boolean"},
875
940
  "errorMessage":{"type":"string"},
876
941
  "fieldList":{
@@ -95,7 +95,7 @@
95
95
  "identifiers": [
96
96
  { "target": "Id", "sourceType": "responsePath", "source": "SnapshotId" }
97
97
  ],
98
- "path": "$"
98
+ "path": "@"
99
99
  }
100
100
  },
101
101
  "CreateSubnet": {
@@ -126,7 +126,7 @@
126
126
  "identifiers": [
127
127
  { "target": "Id", "sourceType": "responsePath", "source": "VolumeId" }
128
128
  ],
129
- "path": "$"
129
+ "path": "@"
130
130
  }
131
131
  },
132
132
  "CreateVpc": {
@@ -1620,7 +1620,7 @@
1620
1620
  "identifiers": [
1621
1621
  { "target": "Id", "sourceType": "responsePath", "source": "SnapshotId" }
1622
1622
  ],
1623
- "path": "$"
1623
+ "path": "@"
1624
1624
  }
1625
1625
  },
1626
1626
  "CreateTags": {
@@ -678,7 +678,8 @@
678
678
  "MaxHeight":{"shape":"DigitsOrAuto"},
679
679
  "SizingPolicy":{"shape":"SizingPolicy"},
680
680
  "PaddingPolicy":{"shape":"PaddingPolicy"},
681
- "AlbumArtFormat":{"shape":"JpgOrPng"}
681
+ "AlbumArtFormat":{"shape":"JpgOrPng"},
682
+ "Encryption":{"shape":"Encryption"}
682
683
  }
683
684
  },
684
685
  "Artworks":{
@@ -729,6 +730,10 @@
729
730
  "type":"string",
730
731
  "pattern":"(^auto$)|(^22050$)|(^32000$)|(^44100$)|(^48000$)|(^96000$)"
731
732
  },
733
+ "Base64EncodedString":{
734
+ "type":"string",
735
+ "pattern":"^(?:[A-Za-z0-9\\+/]{4})*(?:[A-Za-z0-9\\+/]{2}==|[A-Za-z0-9\\+/]{3}=)?$"
736
+ },
732
737
  "BucketName":{
733
738
  "type":"string",
734
739
  "pattern":"^(\\w|\\.|-){1,255}$"
@@ -753,7 +758,8 @@
753
758
  "type":"structure",
754
759
  "members":{
755
760
  "Format":{"shape":"CaptionFormatFormat"},
756
- "Pattern":{"shape":"CaptionFormatPattern"}
761
+ "Pattern":{"shape":"CaptionFormatPattern"},
762
+ "Encryption":{"shape":"Encryption"}
757
763
  }
758
764
  },
759
765
  "CaptionFormatFormat":{
@@ -779,7 +785,8 @@
779
785
  "Key":{"shape":"Key"},
780
786
  "Language":{"shape":"Key"},
781
787
  "TimeOffset":{"shape":"TimeOffset"},
782
- "Label":{"shape":"Name"}
788
+ "Label":{"shape":"Name"},
789
+ "Encryption":{"shape":"Encryption"}
783
790
  }
784
791
  },
785
792
  "CaptionSources":{
@@ -821,13 +828,15 @@
821
828
  "members":{
822
829
  "Key":{"shape":"Key"},
823
830
  "ThumbnailPattern":{"shape":"ThumbnailPattern"},
831
+ "ThumbnailEncryption":{"shape":"Encryption"},
824
832
  "Rotate":{"shape":"Rotate"},
825
833
  "PresetId":{"shape":"Id"},
826
834
  "SegmentDuration":{"shape":"Float"},
827
835
  "Watermarks":{"shape":"JobWatermarks"},
828
836
  "AlbumArt":{"shape":"JobAlbumArt"},
829
837
  "Composition":{"shape":"Composition"},
830
- "Captions":{"shape":"Captions"}
838
+ "Captions":{"shape":"Captions"},
839
+ "Encryption":{"shape":"Encryption"}
831
840
  }
832
841
  },
833
842
  "CreateJobOutputs":{
@@ -881,6 +890,7 @@
881
890
  "InputBucket":{"shape":"BucketName"},
882
891
  "OutputBucket":{"shape":"BucketName"},
883
892
  "Role":{"shape":"Role"},
893
+ "AwsKmsKeyArn":{"shape":"KeyArn"},
884
894
  "Notifications":{"shape":"Notifications"},
885
895
  "ContentConfig":{"shape":"PipelineOutputConfig"},
886
896
  "ThumbnailConfig":{"shape":"PipelineOutputConfig"}
@@ -959,6 +969,19 @@
959
969
  "type":"string",
960
970
  "pattern":"(^auto$)|(^\\d{2,4}$)"
961
971
  },
972
+ "Encryption":{
973
+ "type":"structure",
974
+ "members":{
975
+ "Mode":{"shape":"EncryptionMode"},
976
+ "Key":{"shape":"Base64EncodedString"},
977
+ "KeyMd5":{"shape":"Base64EncodedString"},
978
+ "InitializationVector":{"shape":"Key"}
979
+ }
980
+ },
981
+ "EncryptionMode":{
982
+ "type":"string",
983
+ "pattern":"(^s3$)|(^s3-aws-kms$)|(^aes-cbc-pkcs7$)|(^aes-ctr$)|(^aes-gcm$)"
984
+ },
962
985
  "ExceptionMessages":{
963
986
  "type":"list",
964
987
  "member":{"shape":"String"}
@@ -1048,7 +1071,8 @@
1048
1071
  "Resolution":{"shape":"Resolution"},
1049
1072
  "AspectRatio":{"shape":"AspectRatio"},
1050
1073
  "Interlaced":{"shape":"Interlaced"},
1051
- "Container":{"shape":"JobContainer"}
1074
+ "Container":{"shape":"JobContainer"},
1075
+ "Encryption":{"shape":"Encryption"}
1052
1076
  }
1053
1077
  },
1054
1078
  "JobOutput":{
@@ -1057,6 +1081,7 @@
1057
1081
  "Id":{"shape":"String"},
1058
1082
  "Key":{"shape":"Key"},
1059
1083
  "ThumbnailPattern":{"shape":"ThumbnailPattern"},
1084
+ "ThumbnailEncryption":{"shape":"Encryption"},
1060
1085
  "Rotate":{"shape":"Rotate"},
1061
1086
  "PresetId":{"shape":"Id"},
1062
1087
  "SegmentDuration":{"shape":"Float"},
@@ -1068,7 +1093,8 @@
1068
1093
  "Watermarks":{"shape":"JobWatermarks"},
1069
1094
  "AlbumArt":{"shape":"JobAlbumArt"},
1070
1095
  "Composition":{"shape":"Composition"},
1071
- "Captions":{"shape":"Captions"}
1096
+ "Captions":{"shape":"Captions"},
1097
+ "Encryption":{"shape":"Encryption"}
1072
1098
  }
1073
1099
  },
1074
1100
  "JobOutputs":{
@@ -1083,7 +1109,8 @@
1083
1109
  "type":"structure",
1084
1110
  "members":{
1085
1111
  "PresetWatermarkId":{"shape":"PresetWatermarkId"},
1086
- "InputKey":{"shape":"WatermarkKey"}
1112
+ "InputKey":{"shape":"WatermarkKey"},
1113
+ "Encryption":{"shape":"Encryption"}
1087
1114
  }
1088
1115
  },
1089
1116
  "JobWatermarks":{
@@ -1103,6 +1130,11 @@
1103
1130
  "min":1,
1104
1131
  "max":255
1105
1132
  },
1133
+ "KeyArn":{
1134
+ "type":"string",
1135
+ "min":0,
1136
+ "max":255
1137
+ },
1106
1138
  "KeyframesMaxDist":{
1107
1139
  "type":"string",
1108
1140
  "pattern":"^\\d{1,6}$"
@@ -1274,6 +1306,7 @@
1274
1306
  "InputBucket":{"shape":"BucketName"},
1275
1307
  "OutputBucket":{"shape":"BucketName"},
1276
1308
  "Role":{"shape":"Role"},
1309
+ "AwsKmsKeyArn":{"shape":"KeyArn"},
1277
1310
  "Notifications":{"shape":"Notifications"},
1278
1311
  "ContentConfig":{"shape":"PipelineOutputConfig"},
1279
1312
  "ThumbnailConfig":{"shape":"PipelineOutputConfig"}
@@ -1561,6 +1594,7 @@
1561
1594
  "Name":{"shape":"Name"},
1562
1595
  "InputBucket":{"shape":"BucketName"},
1563
1596
  "Role":{"shape":"Role"},
1597
+ "AwsKmsKeyArn":{"shape":"KeyArn"},
1564
1598
  "Notifications":{"shape":"Notifications"},
1565
1599
  "ContentConfig":{"shape":"PipelineOutputConfig"},
1566
1600
  "ThumbnailConfig":{"shape":"PipelineOutputConfig"}
@@ -128,7 +128,7 @@
128
128
  { "target": "jobId", "sourceType": "identifier", "source": "Id" }
129
129
  ]
130
130
  },
131
- "path": "$"
131
+ "path": "@"
132
132
  },
133
133
  "actions": {
134
134
  "GetOutput": {
@@ -250,7 +250,7 @@
250
250
  { "target": "accountId", "sourceType": "identifier", "source": "AccountId" }
251
251
  ]
252
252
  },
253
- "path": "$"
253
+ "path": "@"
254
254
  },
255
255
  "actions": {
256
256
  "Create": {
@@ -192,8 +192,62 @@
192
192
  "resources": {
193
193
  "AccessKey": {
194
194
  "identifiers": [
195
- { "name": "UserName" },
196
- { "name": "Id" }
195
+ {
196
+ "name": "UserName",
197
+ "memberName": "UserName"
198
+ },
199
+ {
200
+ "name": "Id",
201
+ "memberName": "AccessKeyId"
202
+ }
203
+ ],
204
+ "shape": "AccessKeyMetadata",
205
+ "actions": {
206
+ "Activate": {
207
+ "request": {
208
+ "operation": "UpdateAccessKey",
209
+ "params": [
210
+ { "target": "UserName", "sourceType": "identifier", "source": "UserName" },
211
+ { "target": "AccessKeyId", "sourceType": "identifier", "source": "Id" },
212
+ { "target": "Status", "sourceType": "string", "source": "Active" }
213
+ ]
214
+ }
215
+ },
216
+ "Deactivate": {
217
+ "request": {
218
+ "operation": "UpdateAccessKey",
219
+ "params": [
220
+ { "target": "UserName", "sourceType": "identifier", "source": "UserName" },
221
+ { "target": "AccessKeyId", "sourceType": "identifier", "source": "Id" },
222
+ { "target": "Status", "sourceType": "string", "source": "Inactive" }
223
+ ]
224
+ }
225
+ },
226
+ "Delete": {
227
+ "request": {
228
+ "operation": "DeleteAccessKey",
229
+ "params": [
230
+ { "target": "UserName", "sourceType": "identifier", "source": "UserName" },
231
+ { "target": "AccessKeyId", "sourceType": "identifier", "source": "Id" }
232
+ ]
233
+ }
234
+ }
235
+ }
236
+ },
237
+ "AccessKeyPair": {
238
+ "identifiers": [
239
+ {
240
+ "name": "UserName",
241
+ "memberName": "UserName"
242
+ },
243
+ {
244
+ "name": "Id",
245
+ "memberName": "AccessKeyId"
246
+ },
247
+ {
248
+ "name": "Secret",
249
+ "memberName": "SecretAccessKey"
250
+ }
197
251
  ],
198
252
  "shape": "AccessKey",
199
253
  "actions": {
@@ -264,7 +318,7 @@
264
318
  "shape": "GetAccountSummaryResponse",
265
319
  "load": {
266
320
  "request": { "operation": "GetAccountSummary" },
267
- "path": "$"
321
+ "path": "@"
268
322
  }
269
323
  },
270
324
  "Group": {
@@ -395,7 +449,7 @@
395
449
  { "target": "PolicyName", "sourceType": "identifier", "source": "Name" }
396
450
  ]
397
451
  },
398
- "path": "$"
452
+ "path": "@"
399
453
  },
400
454
  "actions": {
401
455
  "Delete": {
@@ -630,7 +684,7 @@
630
684
  { "target": "PolicyName", "sourceType": "identifier", "source": "Name" }
631
685
  ]
632
686
  },
633
- "path": "$"
687
+ "path": "@"
634
688
  },
635
689
  "actions": {
636
690
  "Delete": {
@@ -665,7 +719,7 @@
665
719
  { "target": "SAMLProviderArn", "sourceType": "identifier", "source": "Arn" }
666
720
  ]
667
721
  },
668
- "path": "$"
722
+ "path": "@"
669
723
  },
670
724
  "actions": {
671
725
  "Delete": {
@@ -782,7 +836,7 @@
782
836
  ]
783
837
  }
784
838
  },
785
- "CreateAccessKey": {
839
+ "CreateAccessKeyPair": {
786
840
  "request": {
787
841
  "operation": "CreateAccessKey",
788
842
  "params": [
@@ -790,10 +844,11 @@
790
844
  ]
791
845
  },
792
846
  "resource": {
793
- "type": "AccessKey",
847
+ "type": "AccessKeyPair",
794
848
  "identifiers": [
795
849
  { "target": "UserName", "sourceType": "identifier", "source": "Name" },
796
- { "target": "Id", "sourceType": "responsePath", "source": "AccessKey.AccessKeyId" }
850
+ { "target": "Id", "sourceType": "responsePath", "source": "AccessKey.AccessKeyId" },
851
+ { "target": "Secret", "sourceType": "responsePath", "source": "AccessKey.SecretAccessKey" }
797
852
  ],
798
853
  "path": "AccessKey"
799
854
  }
@@ -947,7 +1002,7 @@
947
1002
  { "target": "PolicyName", "sourceType": "identifier", "source": "Name" }
948
1003
  ]
949
1004
  },
950
- "path": "$"
1005
+ "path": "@"
951
1006
  },
952
1007
  "actions": {
953
1008
  "Delete": {
@@ -1007,6 +1007,11 @@
1007
1007
  "location":"header",
1008
1008
  "locationName":"x-amz-server-side-encryption-customer-key-MD5"
1009
1009
  },
1010
+ "SSEKMSKeyId":{
1011
+ "shape":"SSEKMSKeyId",
1012
+ "location":"header",
1013
+ "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
1014
+ },
1010
1015
  "CopySourceSSECustomerAlgorithm":{
1011
1016
  "shape":"CopySourceSSECustomerAlgorithm",
1012
1017
  "location":"header",
@@ -1021,11 +1026,6 @@
1021
1026
  "shape":"CopySourceSSECustomerKeyMD5",
1022
1027
  "location":"header",
1023
1028
  "locationName":"x-amz-copy-source-server-side-encryption-customer-key-MD5"
1024
- },
1025
- "CopySourceSSEKMSKeyId":{
1026
- "shape":"CopySourceSSEKMSKeyId",
1027
- "location":"header",
1028
- "locationName":"x-amz-copy-source-server-side-encryption-aws-kms-key-id"
1029
1029
  }
1030
1030
  }
1031
1031
  },
@@ -1058,10 +1058,6 @@
1058
1058
  "sensitive":true
1059
1059
  },
1060
1060
  "CopySourceSSECustomerKeyMD5":{"type":"string"},
1061
- "CopySourceSSEKMSKeyId":{
1062
- "type":"string",
1063
- "sensitive":true
1064
- },
1065
1061
  "CopySourceVersionId":{"type":"string"},
1066
1062
  "CreateBucketConfiguration":{
1067
1063
  "type":"structure",
@@ -1971,11 +1967,6 @@
1971
1967
  "shape":"SSECustomerKeyMD5",
1972
1968
  "location":"header",
1973
1969
  "locationName":"x-amz-server-side-encryption-customer-key-MD5"
1974
- },
1975
- "SSEKMSKeyId":{
1976
- "shape":"SSEKMSKeyId",
1977
- "location":"header",
1978
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
1979
1970
  }
1980
1971
  }
1981
1972
  },
@@ -2228,11 +2219,6 @@
2228
2219
  "shape":"SSECustomerKeyMD5",
2229
2220
  "location":"header",
2230
2221
  "locationName":"x-amz-server-side-encryption-customer-key-MD5"
2231
- },
2232
- "SSEKMSKeyId":{
2233
- "shape":"SSEKMSKeyId",
2234
- "location":"header",
2235
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
2236
2222
  }
2237
2223
  }
2238
2224
  },
@@ -3608,11 +3594,6 @@
3608
3594
  "shape":"CopySourceSSECustomerKeyMD5",
3609
3595
  "location":"header",
3610
3596
  "locationName":"x-amz-copy-source-server-side-encryption-customer-key-MD5"
3611
- },
3612
- "CopySourceSSEKMSKeyId":{
3613
- "shape":"CopySourceSSEKMSKeyId",
3614
- "location":"header",
3615
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
3616
3597
  }
3617
3598
  }
3618
3599
  },
@@ -3703,11 +3684,6 @@
3703
3684
  "shape":"SSECustomerKeyMD5",
3704
3685
  "location":"header",
3705
3686
  "locationName":"x-amz-server-side-encryption-customer-key-MD5"
3706
- },
3707
- "SSEKMSKeyId":{
3708
- "shape":"SSEKMSKeyId",
3709
- "location":"header",
3710
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
3711
3687
  }
3712
3688
  },
3713
3689
  "payload":"Body"
@@ -165,7 +165,7 @@
165
165
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
166
166
  ]
167
167
  },
168
- "path": "$"
168
+ "path": "@"
169
169
  },
170
170
  "actions": {
171
171
  "Put": {
@@ -190,7 +190,7 @@
190
190
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
191
191
  ]
192
192
  },
193
- "path": "$"
193
+ "path": "@"
194
194
  },
195
195
  "actions": {
196
196
  "Delete": {
@@ -223,7 +223,7 @@
223
223
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
224
224
  ]
225
225
  },
226
- "path": "$"
226
+ "path": "@"
227
227
  },
228
228
  "actions": {
229
229
  "Delete": {
@@ -256,7 +256,7 @@
256
256
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
257
257
  ]
258
258
  },
259
- "path": "$"
259
+ "path": "@"
260
260
  },
261
261
  "actions": {
262
262
  "Put": {
@@ -281,7 +281,7 @@
281
281
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
282
282
  ]
283
283
  },
284
- "path": "$"
284
+ "path": "@"
285
285
  },
286
286
  "actions": {
287
287
  "Put": {
@@ -306,7 +306,7 @@
306
306
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
307
307
  ]
308
308
  },
309
- "path": "$"
309
+ "path": "@"
310
310
  },
311
311
  "actions": {
312
312
  "Delete": {
@@ -339,7 +339,7 @@
339
339
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
340
340
  ]
341
341
  },
342
- "path": "$"
342
+ "path": "@"
343
343
  },
344
344
  "actions": {
345
345
  "Put": {
@@ -364,7 +364,7 @@
364
364
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
365
365
  ]
366
366
  },
367
- "path": "$"
367
+ "path": "@"
368
368
  },
369
369
  "actions": {
370
370
  "Delete": {
@@ -397,7 +397,7 @@
397
397
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
398
398
  ]
399
399
  },
400
- "path": "$"
400
+ "path": "@"
401
401
  },
402
402
  "actions": {
403
403
  "Enable": {
@@ -440,7 +440,7 @@
440
440
  { "target": "Bucket", "sourceType": "identifier", "source": "BucketName" }
441
441
  ]
442
442
  },
443
- "path": "$"
443
+ "path": "@"
444
444
  },
445
445
  "actions": {
446
446
  "Delete": {
@@ -579,7 +579,7 @@
579
579
  { "target": "Key", "sourceType": "identifier", "source": "Key" }
580
580
  ]
581
581
  },
582
- "path": "$"
582
+ "path": "@"
583
583
  },
584
584
  "actions": {
585
585
  "CopyFrom": {
@@ -689,7 +689,7 @@
689
689
  { "target": "Key", "sourceType": "identifier", "source": "ObjectKey" }
690
690
  ]
691
691
  },
692
- "path": "$"
692
+ "path": "@"
693
693
  },
694
694
  "actions": {
695
695
  "Put": {
@@ -64,7 +64,7 @@
64
64
  { "target": "PlatformApplicationArn", "sourceType": "identifier", "source": "Arn" }
65
65
  ]
66
66
  },
67
- "path": "$"
67
+ "path": "@"
68
68
  },
69
69
  "actions": {
70
70
  "CreatePlatformEndpoint": {
@@ -128,7 +128,7 @@
128
128
  { "target": "EndpointArn", "sourceType": "identifier", "source": "Arn" }
129
129
  ]
130
130
  },
131
- "path": "$"
131
+ "path": "@"
132
132
  },
133
133
  "actions": {
134
134
  "Delete": {
@@ -170,7 +170,7 @@
170
170
  { "target": "SubscriptionArn", "sourceType": "identifier", "source": "Arn" }
171
171
  ]
172
172
  },
173
- "path": "$"
173
+ "path": "@"
174
174
  },
175
175
  "actions": {
176
176
  "Delete": {
@@ -203,7 +203,7 @@
203
203
  { "target": "TopicArn", "sourceType": "identifier", "source": "Arn" }
204
204
  ]
205
205
  },
206
- "path": "$"
206
+ "path": "@"
207
207
  },
208
208
  "actions": {
209
209
  "AddPermission": {
@@ -94,7 +94,7 @@
94
94
  { "target": "AttributeNames[]", "sourceType": "string", "source": "All" }
95
95
  ]
96
96
  },
97
- "path": "$"
97
+ "path": "@"
98
98
  },
99
99
  "actions": {
100
100
  "AddPermission": {
@@ -1,5 +1,6 @@
1
- require 'seahorse'
1
+ require 'jmespath'
2
2
  require 'multi_json'
3
+ require 'seahorse'
3
4
 
4
5
  Seahorse::Util.irregular_inflections({
5
6
  'ARNs' => 'arns',
@@ -1,4 +1,3 @@
1
- require 'multi_json'
2
1
  require 'erb'
3
2
 
4
3
  module Aws
@@ -1,5 +1,3 @@
1
- require 'multi_json'
2
-
3
1
  module Aws
4
2
  # @api private
5
3
  class EndpointProvider
@@ -1,4 +1,3 @@
1
- require 'multi_json'
2
1
  require 'base64'
3
2
 
4
3
  module Aws
@@ -1,4 +1,3 @@
1
- require 'multi_json'
2
1
  require 'base64'
3
2
  require 'time'
4
3
 
@@ -1,5 +1,3 @@
1
- require 'multi_json'
2
-
3
1
  module Aws
4
2
  module Json
5
3
 
@@ -1,5 +1,3 @@
1
- require 'jmespath'
2
-
3
1
  module Aws
4
2
  module Paging
5
3
  class Pager
@@ -1,4 +1,4 @@
1
- require 'cgi'
1
+ require 'uri'
2
2
 
3
3
  module Aws
4
4
  module Plugins
@@ -71,7 +71,7 @@ module Aws
71
71
 
72
72
  def decode(member, struct)
73
73
  if struct[member]
74
- struct[member] = CGI.unescape(struct[member])
74
+ struct[member] = URI.decode(struct[member])
75
75
  end
76
76
  end
77
77
 
@@ -21,12 +21,5 @@ module Aws
21
21
  # @api private
22
22
  BUCKET_REGIONS = BucketRegionCache.new
23
23
 
24
- # @param [String] region
25
- # @return [Boolean]
26
- # @api private
27
- def self.sigv2_region?(region)
28
- Client.api.metadata('sigv2Regions').include?(region)
29
- end
30
-
31
24
  end
32
25
  end
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.0.10'
2
+ VERSION = '2.0.11'
3
3
  end
@@ -1,5 +1,3 @@
1
- require 'jmespath'
2
-
3
1
  module Aws
4
2
  module Waiters
5
3
  class Waiter
@@ -1,5 +1,3 @@
1
- require 'multi_json'
2
-
3
1
  module Seahorse
4
2
  module Client
5
3
  module Plugins
@@ -1,5 +1,4 @@
1
1
  require 'cgi'
2
- require 'multi_json'
3
2
 
4
3
  module Seahorse
5
4
  module Util
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.0.10
4
+ version: 2.0.11
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: 2014-11-20 00:00:00.000000000 Z
11
+ date: 2014-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json