aws-sdk-core 2.11.210 → 2.11.211

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: e7aea999728affe9196df58c4bd895731a86a5ac
4
- data.tar.gz: 37a826a73efeae1c8749e71609bf87aff43d27fd
3
+ metadata.gz: 959e7052106272e53648a19f766897640b32c41e
4
+ data.tar.gz: 7f4377cbf0148bb39891c3cfa8dae9e714e28ffb
5
5
  SHA512:
6
- metadata.gz: 1010009a567dceaa60aac419a5d39a1892ceccd6a6bbb7c7ab745a8a97c849aca4e1a4cbe4bd7347c911aeadae7f3828c6ee0236fd1ae4b58d11c746a68e5867
7
- data.tar.gz: 9d736d2a63c13c8894f036b26dd78c429a3944c71af68d31eaaf5a3b7bb863951dc46801356acfa521262f56154a7290d79731b65539378f8f99cb02c59ca345
6
+ metadata.gz: 9915140ea2ce8376f76254cf7665368c1c56032f9decff5c37d8a503459a112f441f8281882b4bcf5845d6842f68294b01795782af1c9412beb1d33be6c613d8
7
+ data.tar.gz: 1bdab3815db0900e1ab2ff108dd92a96209e378a6a55990d5289a8508b4baf8f8b3224af26d9d47fb47b796d0f6ba8c13e79b0236169471168cd0b33677000c6
@@ -504,6 +504,10 @@
504
504
  "webhook":{"shape":"Webhook"}
505
505
  }
506
506
  },
507
+ "CredentialProviderType":{
508
+ "type":"string",
509
+ "enum":["SECRETS_MANAGER"]
510
+ },
507
511
  "DeleteProjectInput":{
508
512
  "type":"structure",
509
513
  "required":["name"],
@@ -609,6 +613,13 @@
609
613
  "type":"integer",
610
614
  "min":0
611
615
  },
616
+ "ImagePullCredentialsType":{
617
+ "type":"string",
618
+ "enum":[
619
+ "CODEBUILD",
620
+ "SERVICE_ROLE"
621
+ ]
622
+ },
612
623
  "ImageVersions":{
613
624
  "type":"list",
614
625
  "member":{"shape":"String"}
@@ -880,7 +891,9 @@
880
891
  "computeType":{"shape":"ComputeType"},
881
892
  "environmentVariables":{"shape":"EnvironmentVariables"},
882
893
  "privilegedMode":{"shape":"WrapperBoolean"},
883
- "certificate":{"shape":"String"}
894
+ "certificate":{"shape":"String"},
895
+ "registryCredential":{"shape":"RegistryCredential"},
896
+ "imagePullCredentialsType":{"shape":"ImagePullCredentialsType"}
884
897
  }
885
898
  },
886
899
  "ProjectName":{
@@ -944,6 +957,17 @@
944
957
  "type":"list",
945
958
  "member":{"shape":"Project"}
946
959
  },
960
+ "RegistryCredential":{
961
+ "type":"structure",
962
+ "required":[
963
+ "credential",
964
+ "credentialProvider"
965
+ ],
966
+ "members":{
967
+ "credential":{"shape":"NonEmptyString"},
968
+ "credentialProvider":{"shape":"CredentialProviderType"}
969
+ }
970
+ },
947
971
  "ResourceAlreadyExistsException":{
948
972
  "type":"structure",
949
973
  "members":{
@@ -1053,7 +1077,9 @@
1053
1077
  "timeoutInMinutesOverride":{"shape":"TimeOut"},
1054
1078
  "queuedTimeoutInMinutesOverride":{"shape":"TimeOut"},
1055
1079
  "idempotencyToken":{"shape":"String"},
1056
- "logsConfigOverride":{"shape":"LogsConfig"}
1080
+ "logsConfigOverride":{"shape":"LogsConfig"},
1081
+ "registryCredentialOverride":{"shape":"RegistryCredential"},
1082
+ "imagePullCredentialsTypeOverride":{"shape":"ImagePullCredentialsType"}
1057
1083
  }
1058
1084
  },
1059
1085
  "StartBuildOutput":{
@@ -2,13 +2,14 @@
2
2
  "version":"2.0",
3
3
  "metadata":{
4
4
  "apiVersion":"2015-09-21",
5
- "endpointPrefix":"ecr",
5
+ "endpointPrefix":"api.ecr",
6
6
  "jsonVersion":"1.1",
7
7
  "protocol":"json",
8
8
  "serviceAbbreviation":"Amazon ECR",
9
9
  "serviceFullName":"Amazon EC2 Container Registry",
10
10
  "serviceId":"ECR",
11
11
  "signatureVersion":"v4",
12
+ "signingName":"ecr",
12
13
  "targetPrefix":"AmazonEC2ContainerRegistry_V20150921",
13
14
  "uid":"ecr-2015-09-21"
14
15
  },
@@ -1647,7 +1647,8 @@
1647
1647
  "enum":[
1648
1648
  "HTTP",
1649
1649
  "HTTPS",
1650
- "TCP"
1650
+ "TCP",
1651
+ "TLS"
1651
1652
  ]
1652
1653
  },
1653
1654
  "RedirectActionConfig":{
@@ -26,6 +26,20 @@
26
26
  {"shape":"DBClusterRoleQuotaExceededFault"}
27
27
  ]
28
28
  },
29
+ "AddRoleToDBInstance":{
30
+ "name":"AddRoleToDBInstance",
31
+ "http":{
32
+ "method":"POST",
33
+ "requestUri":"/"
34
+ },
35
+ "input":{"shape":"AddRoleToDBInstanceMessage"},
36
+ "errors":[
37
+ {"shape":"DBInstanceNotFoundFault"},
38
+ {"shape":"DBInstanceRoleAlreadyExistsFault"},
39
+ {"shape":"InvalidDBInstanceStateFault"},
40
+ {"shape":"DBInstanceRoleQuotaExceededFault"}
41
+ ]
42
+ },
29
43
  "AddSourceIdentifierToSubscription":{
30
44
  "name":"AddSourceIdentifierToSubscription",
31
45
  "http":{
@@ -1528,6 +1542,19 @@
1528
1542
  {"shape":"InvalidDBClusterStateFault"}
1529
1543
  ]
1530
1544
  },
1545
+ "RemoveRoleFromDBInstance":{
1546
+ "name":"RemoveRoleFromDBInstance",
1547
+ "http":{
1548
+ "method":"POST",
1549
+ "requestUri":"/"
1550
+ },
1551
+ "input":{"shape":"RemoveRoleFromDBInstanceMessage"},
1552
+ "errors":[
1553
+ {"shape":"DBInstanceNotFoundFault"},
1554
+ {"shape":"DBInstanceRoleNotFoundFault"},
1555
+ {"shape":"InvalidDBInstanceStateFault"}
1556
+ ]
1557
+ },
1531
1558
  "RemoveSourceIdentifierFromSubscription":{
1532
1559
  "name":"RemoveSourceIdentifierFromSubscription",
1533
1560
  "http":{
@@ -1910,6 +1937,19 @@
1910
1937
  "RoleArn":{"shape":"String"}
1911
1938
  }
1912
1939
  },
1940
+ "AddRoleToDBInstanceMessage":{
1941
+ "type":"structure",
1942
+ "required":[
1943
+ "DBInstanceIdentifier",
1944
+ "RoleArn",
1945
+ "FeatureName"
1946
+ ],
1947
+ "members":{
1948
+ "DBInstanceIdentifier":{"shape":"String"},
1949
+ "RoleArn":{"shape":"String"},
1950
+ "FeatureName":{"shape":"String"}
1951
+ }
1952
+ },
1913
1953
  "AddSourceIdentifierToSubscriptionMessage":{
1914
1954
  "type":"structure",
1915
1955
  "required":[
@@ -3008,7 +3048,8 @@
3008
3048
  "ExportableLogTypes":{"shape":"LogTypeList"},
3009
3049
  "SupportsLogExportsToCloudwatchLogs":{"shape":"Boolean"},
3010
3050
  "SupportsReadReplica":{"shape":"Boolean"},
3011
- "SupportedEngineModes":{"shape":"EngineModeList"}
3051
+ "SupportedEngineModes":{"shape":"EngineModeList"},
3052
+ "SupportedFeatureNames":{"shape":"FeatureNameList"}
3012
3053
  }
3013
3054
  },
3014
3055
  "DBEngineVersionList":{
@@ -3083,6 +3124,7 @@
3083
3124
  "EnabledCloudwatchLogsExports":{"shape":"LogTypeList"},
3084
3125
  "ProcessorFeatures":{"shape":"ProcessorFeatureList"},
3085
3126
  "DeletionProtection":{"shape":"Boolean"},
3127
+ "AssociatedRoles":{"shape":"DBInstanceRoles"},
3086
3128
  "ListenerEndpoint":{"shape":"Endpoint"}
3087
3129
  },
3088
3130
  "wrapper":true
@@ -3188,6 +3230,54 @@
3188
3230
  },
3189
3231
  "exception":true
3190
3232
  },
3233
+ "DBInstanceRole":{
3234
+ "type":"structure",
3235
+ "members":{
3236
+ "RoleArn":{"shape":"String"},
3237
+ "FeatureName":{"shape":"String"},
3238
+ "Status":{"shape":"String"}
3239
+ }
3240
+ },
3241
+ "DBInstanceRoleAlreadyExistsFault":{
3242
+ "type":"structure",
3243
+ "members":{
3244
+ },
3245
+ "error":{
3246
+ "code":"DBInstanceRoleAlreadyExists",
3247
+ "httpStatusCode":400,
3248
+ "senderFault":true
3249
+ },
3250
+ "exception":true
3251
+ },
3252
+ "DBInstanceRoleNotFoundFault":{
3253
+ "type":"structure",
3254
+ "members":{
3255
+ },
3256
+ "error":{
3257
+ "code":"DBInstanceRoleNotFound",
3258
+ "httpStatusCode":404,
3259
+ "senderFault":true
3260
+ },
3261
+ "exception":true
3262
+ },
3263
+ "DBInstanceRoleQuotaExceededFault":{
3264
+ "type":"structure",
3265
+ "members":{
3266
+ },
3267
+ "error":{
3268
+ "code":"DBInstanceRoleQuotaExceeded",
3269
+ "httpStatusCode":400,
3270
+ "senderFault":true
3271
+ },
3272
+ "exception":true
3273
+ },
3274
+ "DBInstanceRoles":{
3275
+ "type":"list",
3276
+ "member":{
3277
+ "shape":"DBInstanceRole",
3278
+ "locationName":"DBInstanceRole"
3279
+ }
3280
+ },
3191
3281
  "DBInstanceStatusInfo":{
3192
3282
  "type":"structure",
3193
3283
  "members":{
@@ -4324,6 +4414,10 @@
4324
4414
  "DBCluster":{"shape":"DBCluster"}
4325
4415
  }
4326
4416
  },
4417
+ "FeatureNameList":{
4418
+ "type":"list",
4419
+ "member":{"shape":"String"}
4420
+ },
4327
4421
  "Filter":{
4328
4422
  "type":"structure",
4329
4423
  "required":[
@@ -5509,6 +5603,19 @@
5509
5603
  "RoleArn":{"shape":"String"}
5510
5604
  }
5511
5605
  },
5606
+ "RemoveRoleFromDBInstanceMessage":{
5607
+ "type":"structure",
5608
+ "required":[
5609
+ "DBInstanceIdentifier",
5610
+ "RoleArn",
5611
+ "FeatureName"
5612
+ ],
5613
+ "members":{
5614
+ "DBInstanceIdentifier":{"shape":"String"},
5615
+ "RoleArn":{"shape":"String"},
5616
+ "FeatureName":{"shape":"String"}
5617
+ }
5618
+ },
5512
5619
  "RemoveSourceIdentifierFromSubscriptionMessage":{
5513
5620
  "type":"structure",
5514
5621
  "required":[
@@ -133,6 +133,27 @@
133
133
  "shape" : "InternalServiceErrorException"
134
134
  } ]
135
135
  },
136
+ "ListConfigurationSets" : {
137
+ "name" : "ListConfigurationSets",
138
+ "http" : {
139
+ "method" : "GET",
140
+ "requestUri" : "/v1/sms-voice/configuration-sets",
141
+ "responseCode" : 200
142
+ },
143
+ "input" : {
144
+ "shape" : "ListConfigurationSetsRequest"
145
+ },
146
+ "output" : {
147
+ "shape" : "ListConfigurationSetsResponse"
148
+ },
149
+ "errors" : [ {
150
+ "shape" : "TooManyRequestsException"
151
+ }, {
152
+ "shape" : "BadRequestException"
153
+ }, {
154
+ "shape" : "InternalServiceErrorException"
155
+ } ]
156
+ },
136
157
  "SendVoiceMessage" : {
137
158
  "name" : "SendVoiceMessage",
138
159
  "http" : {
@@ -181,24 +202,24 @@
181
202
  "shapes" : {
182
203
  "AlreadyExistsException" : {
183
204
  "type" : "structure",
184
- "exception" : true,
185
205
  "members" : {
186
206
  "Message" : {
187
207
  "shape" : "String"
188
208
  }
189
209
  },
210
+ "exception" : true,
190
211
  "error" : {
191
212
  "httpStatusCode" : 409
192
213
  }
193
214
  },
194
215
  "BadRequestException" : {
195
216
  "type" : "structure",
196
- "exception" : true,
197
217
  "members" : {
198
218
  "Message" : {
199
219
  "shape" : "String"
200
220
  }
201
221
  },
222
+ "exception" : true,
202
223
  "error" : {
203
224
  "httpStatusCode" : 400
204
225
  }
@@ -227,6 +248,12 @@
227
248
  },
228
249
  "required" : [ ]
229
250
  },
251
+ "ConfigurationSets" : {
252
+ "type" : "list",
253
+ "member" : {
254
+ "shape" : "WordCharactersWithDelimiters"
255
+ }
256
+ },
230
257
  "CreateConfigurationSetEventDestinationRequest" : {
231
258
  "type" : "structure",
232
259
  "members" : {
@@ -400,27 +427,56 @@
400
427
  },
401
428
  "LimitExceededException" : {
402
429
  "type" : "structure",
403
- "exception" : true,
404
430
  "members" : {
405
431
  "Message" : {
406
432
  "shape" : "String"
407
433
  }
408
434
  },
435
+ "exception" : true,
409
436
  "error" : {
410
437
  "httpStatusCode" : 412
411
438
  }
412
439
  },
440
+ "ListConfigurationSetsRequest" : {
441
+ "type" : "structure",
442
+ "members" : {
443
+ "NextToken" : {
444
+ "shape" : "__string",
445
+ "location" : "querystring",
446
+ "locationName" : "NextToken"
447
+ },
448
+ "PageSize" : {
449
+ "shape" : "__string",
450
+ "location" : "querystring",
451
+ "locationName" : "PageSize"
452
+ }
453
+ }
454
+ },
455
+ "ListConfigurationSetsResponse" : {
456
+ "type" : "structure",
457
+ "members" : {
458
+ "ConfigurationSets" : {
459
+ "shape" : "ConfigurationSets"
460
+ },
461
+ "NextToken" : {
462
+ "shape" : "NextTokenString"
463
+ }
464
+ }
465
+ },
466
+ "NextTokenString" : {
467
+ "type" : "string"
468
+ },
413
469
  "NonEmptyString" : {
414
470
  "type" : "string"
415
471
  },
416
472
  "NotFoundException" : {
417
473
  "type" : "structure",
418
- "exception" : true,
419
474
  "members" : {
420
475
  "Message" : {
421
476
  "shape" : "String"
422
477
  }
423
478
  },
479
+ "exception" : true,
424
480
  "error" : {
425
481
  "httpStatusCode" : 404
426
482
  }
@@ -497,12 +553,12 @@
497
553
  },
498
554
  "TooManyRequestsException" : {
499
555
  "type" : "structure",
500
- "exception" : true,
501
556
  "members" : {
502
557
  "Message" : {
503
558
  "shape" : "String"
504
559
  }
505
560
  },
561
+ "exception" : true,
506
562
  "error" : {
507
563
  "httpStatusCode" : 429
508
564
  }
@@ -102,6 +102,106 @@
102
102
  "us-west-2" : { }
103
103
  }
104
104
  },
105
+ "api.ecr" : {
106
+ "endpoints" : {
107
+ "ap-northeast-1" : {
108
+ "credentialScope" : {
109
+ "region" : "ap-northeast-1"
110
+ },
111
+ "hostname" : "api.ecr.ap-northeast-1.amazonaws.com"
112
+ },
113
+ "ap-northeast-2" : {
114
+ "credentialScope" : {
115
+ "region" : "ap-northeast-2"
116
+ },
117
+ "hostname" : "api.ecr.ap-northeast-2.amazonaws.com"
118
+ },
119
+ "ap-south-1" : {
120
+ "credentialScope" : {
121
+ "region" : "ap-south-1"
122
+ },
123
+ "hostname" : "api.ecr.ap-south-1.amazonaws.com"
124
+ },
125
+ "ap-southeast-1" : {
126
+ "credentialScope" : {
127
+ "region" : "ap-southeast-1"
128
+ },
129
+ "hostname" : "api.ecr.ap-southeast-1.amazonaws.com"
130
+ },
131
+ "ap-southeast-2" : {
132
+ "credentialScope" : {
133
+ "region" : "ap-southeast-2"
134
+ },
135
+ "hostname" : "api.ecr.ap-southeast-2.amazonaws.com"
136
+ },
137
+ "ca-central-1" : {
138
+ "credentialScope" : {
139
+ "region" : "ca-central-1"
140
+ },
141
+ "hostname" : "api.ecr.ca-central-1.amazonaws.com"
142
+ },
143
+ "eu-central-1" : {
144
+ "credentialScope" : {
145
+ "region" : "eu-central-1"
146
+ },
147
+ "hostname" : "api.ecr.eu-central-1.amazonaws.com"
148
+ },
149
+ "eu-north-1" : {
150
+ "credentialScope" : {
151
+ "region" : "eu-north-1"
152
+ },
153
+ "hostname" : "api.ecr.eu-north-1.amazonaws.com"
154
+ },
155
+ "eu-west-1" : {
156
+ "credentialScope" : {
157
+ "region" : "eu-west-1"
158
+ },
159
+ "hostname" : "api.ecr.eu-west-1.amazonaws.com"
160
+ },
161
+ "eu-west-2" : {
162
+ "credentialScope" : {
163
+ "region" : "eu-west-2"
164
+ },
165
+ "hostname" : "api.ecr.eu-west-2.amazonaws.com"
166
+ },
167
+ "eu-west-3" : {
168
+ "credentialScope" : {
169
+ "region" : "eu-west-3"
170
+ },
171
+ "hostname" : "api.ecr.eu-west-3.amazonaws.com"
172
+ },
173
+ "sa-east-1" : {
174
+ "credentialScope" : {
175
+ "region" : "sa-east-1"
176
+ },
177
+ "hostname" : "api.ecr.sa-east-1.amazonaws.com"
178
+ },
179
+ "us-east-1" : {
180
+ "credentialScope" : {
181
+ "region" : "us-east-1"
182
+ },
183
+ "hostname" : "api.ecr.us-east-1.amazonaws.com"
184
+ },
185
+ "us-east-2" : {
186
+ "credentialScope" : {
187
+ "region" : "us-east-2"
188
+ },
189
+ "hostname" : "api.ecr.us-east-2.amazonaws.com"
190
+ },
191
+ "us-west-1" : {
192
+ "credentialScope" : {
193
+ "region" : "us-west-1"
194
+ },
195
+ "hostname" : "api.ecr.us-west-1.amazonaws.com"
196
+ },
197
+ "us-west-2" : {
198
+ "credentialScope" : {
199
+ "region" : "us-west-2"
200
+ },
201
+ "hostname" : "api.ecr.us-west-2.amazonaws.com"
202
+ }
203
+ }
204
+ },
105
205
  "api.mediatailor" : {
106
206
  "endpoints" : {
107
207
  "ap-northeast-1" : { },
@@ -2738,6 +2838,22 @@
2738
2838
  }
2739
2839
  },
2740
2840
  "services" : {
2841
+ "api.ecr" : {
2842
+ "endpoints" : {
2843
+ "cn-north-1" : {
2844
+ "credentialScope" : {
2845
+ "region" : "cn-north-1"
2846
+ },
2847
+ "hostname" : "api.ecr.cn-north-1.amazonaws.com.cn"
2848
+ },
2849
+ "cn-northwest-1" : {
2850
+ "credentialScope" : {
2851
+ "region" : "cn-northwest-1"
2852
+ },
2853
+ "hostname" : "api.ecr.cn-northwest-1.amazonaws.com.cn"
2854
+ }
2855
+ }
2856
+ },
2741
2857
  "apigateway" : {
2742
2858
  "endpoints" : {
2743
2859
  "cn-north-1" : { },
@@ -3118,6 +3234,22 @@
3118
3234
  "us-gov-west-1" : { }
3119
3235
  }
3120
3236
  },
3237
+ "api.ecr" : {
3238
+ "endpoints" : {
3239
+ "us-gov-east-1" : {
3240
+ "credentialScope" : {
3241
+ "region" : "us-gov-east-1"
3242
+ },
3243
+ "hostname" : "api.ecr.us-gov-east-1.amazonaws.com"
3244
+ },
3245
+ "us-gov-west-1" : {
3246
+ "credentialScope" : {
3247
+ "region" : "us-gov-west-1"
3248
+ },
3249
+ "hostname" : "api.ecr.us-gov-west-1.amazonaws.com"
3250
+ }
3251
+ }
3252
+ },
3121
3253
  "api.sagemaker" : {
3122
3254
  "endpoints" : {
3123
3255
  "us-gov-west-1" : { }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.210'
2
+ VERSION = '2.11.211'
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.210
4
+ version: 2.11.211
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-01-23 00:00:00.000000000 Z
11
+ date: 2019-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath