aws-sdk-core 2.11.115 → 2.11.116

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: 2deb1eefab2d4366b96ac334121bc4156aa54f6e
4
- data.tar.gz: 574f1c4d424e8baa4a3ac39994efef29de2d4d1f
3
+ metadata.gz: c7fb995987230a3388d7616ee8187e5b420dc136
4
+ data.tar.gz: acfd042c430e30911115feeaffc5299d1446f9d5
5
5
  SHA512:
6
- metadata.gz: 2e9f0544550b19f98603eda220b3f726c3c6757f0a1c00614c63548a2aa332adb92f46d2f510e8102076f65b2a7306527abf10a09842118e6d960a45c4315b7a
7
- data.tar.gz: 2762ca639e149a989afc169cfc4866db2ff96bc9637cfa0d509f2e592ff97d75d81e661530605c7c07e9db8671930344dc0e7cde9348d6b36a762776366550ce
6
+ metadata.gz: acaca4016fb83f362b16465670c3528ad114628cd0433776cb7f32987f3e953f88d8d69dda1c15bdbdb02d2f5eb00e770c519fb377b9b4dd2fad6b92ce8afc13
7
+ data.tar.gz: 5b84a422d6f57c11762446d847f0e82a9a4f15ffe6cd4de393f51a27b70ebe600deec829f8ba194773fd8ec1c3c25869874d0709f58a416b214bc6a22984414e
@@ -6,6 +6,7 @@
6
6
  "jsonVersion":"1.1",
7
7
  "protocol":"json",
8
8
  "serviceFullName":"Amazon Cognito Identity Provider",
9
+ "serviceId":"Cognito Identity Provider",
9
10
  "signatureVersion":"v4",
10
11
  "targetPrefix":"AWSCognitoIdentityProviderService",
11
12
  "uid":"cognito-idp-2016-04-18"
@@ -740,6 +741,7 @@
740
741
  {"shape":"InvalidParameterException"},
741
742
  {"shape":"NotAuthorizedException"},
742
743
  {"shape":"ResourceNotFoundException"},
744
+ {"shape":"LimitExceededException"},
743
745
  {"shape":"InternalErrorException"}
744
746
  ]
745
747
  },
@@ -2861,12 +2863,14 @@
2861
2863
  ],
2862
2864
  "members":{
2863
2865
  "Domain":{"shape":"DomainType"},
2864
- "UserPoolId":{"shape":"UserPoolIdType"}
2866
+ "UserPoolId":{"shape":"UserPoolIdType"},
2867
+ "CustomDomainConfig":{"shape":"CustomDomainConfigType"}
2865
2868
  }
2866
2869
  },
2867
2870
  "CreateUserPoolDomainResponse":{
2868
2871
  "type":"structure",
2869
2872
  "members":{
2873
+ "CloudFrontDomain":{"shape":"DomainType"}
2870
2874
  }
2871
2875
  },
2872
2876
  "CreateUserPoolRequest":{
@@ -2912,6 +2916,13 @@
2912
2916
  "max":25,
2913
2917
  "min":1
2914
2918
  },
2919
+ "CustomDomainConfigType":{
2920
+ "type":"structure",
2921
+ "required":["CertificateArn"],
2922
+ "members":{
2923
+ "CertificateArn":{"shape":"ArnType"}
2924
+ }
2925
+ },
2915
2926
  "DateType":{"type":"timestamp"},
2916
2927
  "DefaultEmailOptionType":{
2917
2928
  "type":"string",
@@ -3189,9 +3200,10 @@
3189
3200
  "AWSAccountId":{"shape":"AWSAccountIdType"},
3190
3201
  "Domain":{"shape":"DomainType"},
3191
3202
  "S3Bucket":{"shape":"S3BucketType"},
3192
- "CloudFrontDistribution":{"shape":"ArnType"},
3203
+ "CloudFrontDistribution":{"shape":"StringType"},
3193
3204
  "Version":{"shape":"DomainVersionType"},
3194
- "Status":{"shape":"DomainStatusType"}
3205
+ "Status":{"shape":"DomainStatusType"},
3206
+ "CustomDomainConfig":{"shape":"CustomDomainConfigType"}
3195
3207
  }
3196
3208
  },
3197
3209
  "DomainStatusType":{
@@ -5020,6 +5032,7 @@
5020
5032
  "SmsConfigurationFailure":{"shape":"StringType"},
5021
5033
  "EmailConfigurationFailure":{"shape":"StringType"},
5022
5034
  "Domain":{"shape":"DomainType"},
5035
+ "CustomDomain":{"shape":"DomainType"},
5023
5036
  "AdminCreateUserConfig":{"shape":"AdminCreateUserConfigType"},
5024
5037
  "UserPoolAddOns":{"shape":"UserPoolAddOnsType"},
5025
5038
  "Arn":{"shape":"ArnType"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListUserPools",
7
+ "input": {
8
+ "MaxResults": 10
9
+ },
10
+ "errorExpectedFromService": false
11
+ },
12
+ {
13
+ "operationName": "DescribeUserPool",
14
+ "input": {
15
+ "UserPoolId": "us-east-1:aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
16
+ },
17
+ "errorExpectedFromService": true
18
+ }
19
+ ]
20
+ }
@@ -222,6 +222,22 @@
222
222
  "max":1600,
223
223
  "min":1
224
224
  },
225
+ "AssignPublicIp":{
226
+ "type":"string",
227
+ "enum":[
228
+ "ENABLED",
229
+ "DISABLED"
230
+ ]
231
+ },
232
+ "AwsVpcConfiguration":{
233
+ "type":"structure",
234
+ "required":["Subnets"],
235
+ "members":{
236
+ "Subnets":{"shape":"StringList"},
237
+ "SecurityGroups":{"shape":"StringList"},
238
+ "AssignPublicIp":{"shape":"AssignPublicIp"}
239
+ }
240
+ },
225
241
  "BatchArrayProperties":{
226
242
  "type":"structure",
227
243
  "members":{
@@ -305,7 +321,11 @@
305
321
  "required":["TaskDefinitionArn"],
306
322
  "members":{
307
323
  "TaskDefinitionArn":{"shape":"Arn"},
308
- "TaskCount":{"shape":"LimitMin1"}
324
+ "TaskCount":{"shape":"LimitMin1"},
325
+ "LaunchType":{"shape":"LaunchType"},
326
+ "NetworkConfiguration":{"shape":"NetworkConfiguration"},
327
+ "PlatformVersion":{"shape":"String"},
328
+ "Group":{"shape":"String"}
309
329
  }
310
330
  },
311
331
  "EnableRuleRequest":{
@@ -360,6 +380,13 @@
360
380
  "PartitionKeyPath":{"shape":"TargetPartitionKeyPath"}
361
381
  }
362
382
  },
383
+ "LaunchType":{
384
+ "type":"string",
385
+ "enum":[
386
+ "EC2",
387
+ "FARGATE"
388
+ ]
389
+ },
363
390
  "LimitExceededException":{
364
391
  "type":"structure",
365
392
  "members":{
@@ -423,6 +450,12 @@
423
450
  }
424
451
  },
425
452
  "MessageGroupId":{"type":"string"},
453
+ "NetworkConfiguration":{
454
+ "type":"structure",
455
+ "members":{
456
+ "awsvpcConfiguration":{"shape":"AwsVpcConfiguration"}
457
+ }
458
+ },
426
459
  "NextToken":{
427
460
  "type":"string",
428
461
  "max":2048,
@@ -691,6 +724,10 @@
691
724
  "pattern":"[a-zA-Z0-9-_]+"
692
725
  },
693
726
  "String":{"type":"string"},
727
+ "StringList":{
728
+ "type":"list",
729
+ "member":{"shape":"String"}
730
+ },
694
731
  "Target":{
695
732
  "type":"structure",
696
733
  "required":[
@@ -0,0 +1,18 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListRules",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "DescribeRule",
12
+ "input": {
13
+ "Name": "fake-rule"
14
+ },
15
+ "errorExpectedFromService": true
16
+ }
17
+ ]
18
+ }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.115'
2
+ VERSION = '2.11.116'
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.115
4
+ version: 2.11.116
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: 2018-08-23 00:00:00.000000000 Z
11
+ date: 2018-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -186,6 +186,7 @@ files:
186
186
  - apis/cognito-idp/2016-04-18/api-2.json
187
187
  - apis/cognito-idp/2016-04-18/examples-1.json
188
188
  - apis/cognito-idp/2016-04-18/paginators-1.json
189
+ - apis/cognito-idp/2016-04-18/smoke.json
189
190
  - apis/cognito-sync/2014-06-30/api-2.json
190
191
  - apis/comprehend/2017-11-27/api-2.json
191
192
  - apis/comprehend/2017-11-27/examples-1.json
@@ -312,6 +313,7 @@ files:
312
313
  - apis/events/2015-10-07/api-2.json
313
314
  - apis/events/2015-10-07/examples-1.json
314
315
  - apis/events/2015-10-07/paginators-1.json
316
+ - apis/events/2015-10-07/smoke.json
315
317
  - apis/firehose/2015-08-04/api-2.json
316
318
  - apis/firehose/2015-08-04/examples-1.json
317
319
  - apis/firehose/2015-08-04/paginators-1.json