aws-sdk-core 2.11.508 → 2.11.509

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
  SHA256:
3
- metadata.gz: 02e150894aaf1ad691d81459b0a3e322ad39212670d6fc20a98a64caf9260782
4
- data.tar.gz: 10d812cfcbacd7dbcfe6123740bc1aa7d8aa55c648b86ebb97dea2917224cba9
3
+ metadata.gz: 2b62d143a2c3ecb87e33f4c06674d5f033c10294d18cc232b55949216ec5b525
4
+ data.tar.gz: 66f6d9b068d19d9929f20ea86a790a07770474e8898a39636a7c1515ec6f2af0
5
5
  SHA512:
6
- metadata.gz: ecb75297cbf016497d8a1137ed774ffc7b4f9c3628775cf450f28328c6650ef340c54e6bf69724a4340e888f86d2eb30d8121b6839d77a5b14d7eb07085ffad3
7
- data.tar.gz: d96a374205d59107da86d17b355bd0d9f705e37182b7da0d4ed58d09ba341277c6635a7ef455afe188273d720dcc2908e65b8b2a69937d6989fd06364c09f565
6
+ metadata.gz: 5afbd9c6f238d8888fe1d09c82edc516881fa010c436d582d2815f92c67f9e414b7cdf0d7742d4c2f98279e776b3c55e9187cf4e3df168fa14544337a2a133c3
7
+ data.tar.gz: 020f07a1dbde7ad626dafc08e5b30694ece70cbbba71d676c8eab91c486515eb0fcc9fb239b5adebf3bf8593c2fdd2ebb9767d95d7ca2cb3e5db1df36618e65f
@@ -1464,6 +1464,7 @@
1464
1464
  "Type":{"shape":"RegistryType"},
1465
1465
  "TypeName":{"shape":"TypeName"},
1466
1466
  "DefaultVersionId":{"shape":"TypeVersionId"},
1467
+ "IsDefaultVersion":{"shape":"IsDefaultVersion"},
1467
1468
  "Description":{"shape":"Description"},
1468
1469
  "Schema":{"shape":"TypeSchema"},
1469
1470
  "ProvisioningType":{"shape":"ProvisioningType"},
@@ -1774,6 +1775,7 @@
1774
1775
  },
1775
1776
  "exception":true
1776
1777
  },
1778
+ "IsDefaultVersion":{"type":"boolean"},
1777
1779
  "Key":{"type":"string"},
1778
1780
  "LastUpdatedTime":{"type":"timestamp"},
1779
1781
  "LimitExceededException":{
@@ -3298,6 +3300,7 @@
3298
3300
  "Type":{"shape":"RegistryType"},
3299
3301
  "TypeName":{"shape":"TypeName"},
3300
3302
  "VersionId":{"shape":"TypeVersionId"},
3303
+ "IsDefaultVersion":{"shape":"IsDefaultVersion"},
3301
3304
  "Arn":{"shape":"TypeArn"},
3302
3305
  "TimeCreated":{"shape":"Timestamp"},
3303
3306
  "Description":{"shape":"Description"}
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeAccountLimits": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "result_key": "AccountLimits"
7
+ },
3
8
  "DescribeStackEvents": {
4
9
  "input_token": "NextToken",
5
10
  "output_token": "NextToken",
@@ -18,6 +23,11 @@
18
23
  "output_token": "NextToken",
19
24
  "result_key": "Stacks"
20
25
  },
26
+ "ListChangeSets": {
27
+ "input_token": "NextToken",
28
+ "output_token": "NextToken",
29
+ "result_key": "Summaries"
30
+ },
21
31
  "ListExports": {
22
32
  "input_token": "NextToken",
23
33
  "output_token": "NextToken",
@@ -28,11 +38,35 @@
28
38
  "output_token": "NextToken",
29
39
  "result_key": "Imports"
30
40
  },
41
+ "ListStackInstances": {
42
+ "input_token": "NextToken",
43
+ "limit_key": "MaxResults",
44
+ "output_token": "NextToken",
45
+ "result_key": "Summaries"
46
+ },
31
47
  "ListStackResources": {
32
48
  "input_token": "NextToken",
33
49
  "output_token": "NextToken",
34
50
  "result_key": "StackResourceSummaries"
35
51
  },
52
+ "ListStackSetOperationResults": {
53
+ "input_token": "NextToken",
54
+ "limit_key": "MaxResults",
55
+ "output_token": "NextToken",
56
+ "result_key": "Summaries"
57
+ },
58
+ "ListStackSetOperations": {
59
+ "input_token": "NextToken",
60
+ "limit_key": "MaxResults",
61
+ "output_token": "NextToken",
62
+ "result_key": "Summaries"
63
+ },
64
+ "ListStackSets": {
65
+ "input_token": "NextToken",
66
+ "limit_key": "MaxResults",
67
+ "output_token": "NextToken",
68
+ "result_key": "Summaries"
69
+ },
36
70
  "ListStacks": {
37
71
  "input_token": "NextToken",
38
72
  "output_token": "NextToken",
@@ -208,6 +208,43 @@
208
208
  }
209
209
  ]
210
210
  },
211
+ "StackRollbackComplete": {
212
+ "delay": 30,
213
+ "operation": "DescribeStacks",
214
+ "maxAttempts": 120,
215
+ "description": "Wait until stack status is UPDATE_ROLLBACK_COMPLETE.",
216
+ "acceptors": [
217
+ {
218
+ "argument": "Stacks[].StackStatus",
219
+ "expected": "UPDATE_ROLLBACK_COMPLETE",
220
+ "matcher": "pathAll",
221
+ "state": "success"
222
+ },
223
+ {
224
+ "argument": "Stacks[].StackStatus",
225
+ "expected": "UPDATE_FAILED",
226
+ "matcher": "pathAny",
227
+ "state": "failure"
228
+ },
229
+ {
230
+ "argument": "Stacks[].StackStatus",
231
+ "expected": "UPDATE_ROLLBACK_FAILED",
232
+ "matcher": "pathAny",
233
+ "state": "failure"
234
+ },
235
+ {
236
+ "argument": "Stacks[].StackStatus",
237
+ "expected": "DELETE_FAILED",
238
+ "matcher": "pathAny",
239
+ "state": "failure"
240
+ },
241
+ {
242
+ "expected": "ValidationError",
243
+ "matcher": "error",
244
+ "state": "failure"
245
+ }
246
+ ]
247
+ },
211
248
  "ChangeSetCreateComplete": {
212
249
  "delay": 30,
213
250
  "operation": "DescribeChangeSet",
@@ -850,7 +850,8 @@
850
850
  "registryId":{"shape":"RegistryId"},
851
851
  "repositoryName":{"shape":"RepositoryName"},
852
852
  "imageId":{"shape":"ImageIdentifier"},
853
- "imageManifest":{"shape":"ImageManifest"}
853
+ "imageManifest":{"shape":"ImageManifest"},
854
+ "imageManifestMediaType":{"shape":"MediaType"}
854
855
  }
855
856
  },
856
857
  "ImageActionType":{
@@ -1287,6 +1288,7 @@
1287
1288
  "registryId":{"shape":"RegistryId"},
1288
1289
  "repositoryName":{"shape":"RepositoryName"},
1289
1290
  "imageManifest":{"shape":"ImageManifest"},
1291
+ "imageManifestMediaType":{"shape":"MediaType"},
1290
1292
  "imageTag":{"shape":"ImageTag"}
1291
1293
  }
1292
1294
  },
@@ -1665,6 +1665,22 @@
1665
1665
  {"shape":"ConcurrentModificationException"}
1666
1666
  ]
1667
1667
  },
1668
+ "StopWorkflowRun":{
1669
+ "name":"StopWorkflowRun",
1670
+ "http":{
1671
+ "method":"POST",
1672
+ "requestUri":"/"
1673
+ },
1674
+ "input":{"shape":"StopWorkflowRunRequest"},
1675
+ "output":{"shape":"StopWorkflowRunResponse"},
1676
+ "errors":[
1677
+ {"shape":"InvalidInputException"},
1678
+ {"shape":"EntityNotFoundException"},
1679
+ {"shape":"InternalServiceException"},
1680
+ {"shape":"OperationTimeoutException"},
1681
+ {"shape":"IllegalWorkflowStateException"}
1682
+ ]
1683
+ },
1668
1684
  "TagResource":{
1669
1685
  "name":"TagResource",
1670
1686
  "http":{
@@ -2559,8 +2575,9 @@
2559
2575
  "type":"string",
2560
2576
  "enum":[
2561
2577
  "RUNNING",
2562
- "SUCCEEDED",
2578
+ "CANCELLING",
2563
2579
  "CANCELLED",
2580
+ "SUCCEEDED",
2564
2581
  "FAILED"
2565
2582
  ]
2566
2583
  },
@@ -4339,6 +4356,13 @@
4339
4356
  },
4340
4357
  "exception":true
4341
4358
  },
4359
+ "IllegalWorkflowStateException":{
4360
+ "type":"structure",
4361
+ "members":{
4362
+ "Message":{"shape":"MessageString"}
4363
+ },
4364
+ "exception":true
4365
+ },
4342
4366
  "ImportCatalogToGlueRequest":{
4343
4367
  "type":"structure",
4344
4368
  "members":{
@@ -5520,6 +5544,22 @@
5520
5544
  "Name":{"shape":"NameString"}
5521
5545
  }
5522
5546
  },
5547
+ "StopWorkflowRunRequest":{
5548
+ "type":"structure",
5549
+ "required":[
5550
+ "Name",
5551
+ "RunId"
5552
+ ],
5553
+ "members":{
5554
+ "Name":{"shape":"NameString"},
5555
+ "RunId":{"shape":"IdString"}
5556
+ }
5557
+ },
5558
+ "StopWorkflowRunResponse":{
5559
+ "type":"structure",
5560
+ "members":{
5561
+ }
5562
+ },
5523
5563
  "StorageDescriptor":{
5524
5564
  "type":"structure",
5525
5565
  "members":{
@@ -6310,7 +6350,9 @@
6310
6350
  "type":"string",
6311
6351
  "enum":[
6312
6352
  "RUNNING",
6313
- "COMPLETED"
6353
+ "COMPLETED",
6354
+ "STOPPING",
6355
+ "STOPPED"
6314
6356
  ]
6315
6357
  },
6316
6358
  "WorkflowRuns":{
@@ -445,7 +445,8 @@
445
445
  "SAMLAssertionType":{
446
446
  "type":"string",
447
447
  "max":100000,
448
- "min":4
448
+ "min":4,
449
+ "sensitive":true
449
450
  },
450
451
  "Subject":{"type":"string"},
451
452
  "SubjectType":{"type":"string"},
@@ -483,7 +484,8 @@
483
484
  "clientTokenType":{
484
485
  "type":"string",
485
486
  "max":2048,
486
- "min":4
487
+ "min":4,
488
+ "sensitive":true
487
489
  },
488
490
  "dateType":{"type":"timestamp"},
489
491
  "decodedMessageType":{"type":"string"},
@@ -1987,6 +1987,7 @@
1987
1987
  },
1988
1988
  "elasticfilesystem" : {
1989
1989
  "endpoints" : {
1990
+ "af-south-1" : { },
1990
1991
  "ap-east-1" : { },
1991
1992
  "ap-northeast-1" : { },
1992
1993
  "ap-northeast-2" : { },
@@ -1999,6 +2000,12 @@
1999
2000
  "eu-west-1" : { },
2000
2001
  "eu-west-2" : { },
2001
2002
  "eu-west-3" : { },
2003
+ "fips-af-south-1" : {
2004
+ "credentialScope" : {
2005
+ "region" : "af-south-1"
2006
+ },
2007
+ "hostname" : "elasticfilesystem-fips.af-south-1.amazonaws.com"
2008
+ },
2002
2009
  "fips-ap-east-1" : {
2003
2010
  "credentialScope" : {
2004
2011
  "region" : "ap-east-1"
@@ -4750,20 +4757,21 @@
4750
4757
  "sslCommonName" : "shield.us-east-1.amazonaws.com"
4751
4758
  },
4752
4759
  "endpoints" : {
4753
- "fips-us-east-1" : {
4760
+ "aws-global" : {
4754
4761
  "credentialScope" : {
4755
4762
  "region" : "us-east-1"
4756
4763
  },
4757
- "hostname" : "shield-fips.us-east-1.amazonaws.com"
4764
+ "hostname" : "shield.us-east-1.amazonaws.com"
4758
4765
  },
4759
- "us-east-1" : {
4766
+ "fips-aws-global" : {
4760
4767
  "credentialScope" : {
4761
4768
  "region" : "us-east-1"
4762
4769
  },
4763
- "hostname" : "shield.us-east-1.amazonaws.com"
4770
+ "hostname" : "shield-fips.us-east-1.amazonaws.com"
4764
4771
  }
4765
4772
  },
4766
- "isRegionalized" : false
4773
+ "isRegionalized" : false,
4774
+ "partitionEndpoint" : "aws-global"
4767
4775
  },
4768
4776
  "sms" : {
4769
4777
  "endpoints" : {
@@ -6230,6 +6238,18 @@
6230
6238
  "cn-northwest-1" : { }
6231
6239
  }
6232
6240
  },
6241
+ "route53" : {
6242
+ "endpoints" : {
6243
+ "aws-cn-global" : {
6244
+ "credentialScope" : {
6245
+ "region" : "cn-northwest-1"
6246
+ },
6247
+ "hostname" : "route53.amazonaws.com.cn"
6248
+ }
6249
+ },
6250
+ "isRegionalized" : false,
6251
+ "partitionEndpoint" : "aws-cn-global"
6252
+ },
6233
6253
  "runtime.sagemaker" : {
6234
6254
  "endpoints" : {
6235
6255
  "cn-north-1" : { },
@@ -6592,8 +6612,18 @@
6592
6612
  },
6593
6613
  "cloudformation" : {
6594
6614
  "endpoints" : {
6595
- "us-gov-east-1" : { },
6596
- "us-gov-west-1" : { }
6615
+ "us-gov-east-1" : {
6616
+ "credentialScope" : {
6617
+ "region" : "us-gov-east-1"
6618
+ },
6619
+ "hostname" : "cloudformation.us-gov-east-1.amazonaws.com"
6620
+ },
6621
+ "us-gov-west-1" : {
6622
+ "credentialScope" : {
6623
+ "region" : "us-gov-west-1"
6624
+ },
6625
+ "hostname" : "cloudformation.us-gov-west-1.amazonaws.com"
6626
+ }
6597
6627
  }
6598
6628
  },
6599
6629
  "cloudhsm" : {
@@ -6687,6 +6717,22 @@
6687
6717
  "us-gov-west-1" : { }
6688
6718
  }
6689
6719
  },
6720
+ "cognito-identity" : {
6721
+ "endpoints" : {
6722
+ "us-gov-west-1" : { }
6723
+ }
6724
+ },
6725
+ "cognito-idp" : {
6726
+ "endpoints" : {
6727
+ "fips-us-gov-west-1" : {
6728
+ "credentialScope" : {
6729
+ "region" : "us-gov-west-1"
6730
+ },
6731
+ "hostname" : "cognito-idp-fips.us-gov-west-1.amazonaws.com"
6732
+ },
6733
+ "us-gov-west-1" : { }
6734
+ }
6735
+ },
6690
6736
  "comprehend" : {
6691
6737
  "defaults" : {
6692
6738
  "protocols" : [ "https" ]
@@ -6839,6 +6885,15 @@
6839
6885
  "us-gov-west-1" : { }
6840
6886
  }
6841
6887
  },
6888
+ "eks" : {
6889
+ "defaults" : {
6890
+ "protocols" : [ "http", "https" ]
6891
+ },
6892
+ "endpoints" : {
6893
+ "us-gov-east-1" : { },
6894
+ "us-gov-west-1" : { }
6895
+ }
6896
+ },
6842
6897
  "elasticache" : {
6843
6898
  "endpoints" : {
6844
6899
  "fips" : {
@@ -7482,8 +7537,17 @@
7482
7537
  },
7483
7538
  "sqs" : {
7484
7539
  "endpoints" : {
7485
- "us-gov-east-1" : { },
7540
+ "us-gov-east-1" : {
7541
+ "credentialScope" : {
7542
+ "region" : "us-gov-east-1"
7543
+ },
7544
+ "hostname" : "sqs.us-gov-east-1.amazonaws.com"
7545
+ },
7486
7546
  "us-gov-west-1" : {
7547
+ "credentialScope" : {
7548
+ "region" : "us-gov-west-1"
7549
+ },
7550
+ "hostname" : "sqs.us-gov-west-1.amazonaws.com",
7487
7551
  "protocols" : [ "http", "https" ],
7488
7552
  "sslCommonName" : "{region}.queue.{dnsSuffix}"
7489
7553
  }
@@ -7491,6 +7555,30 @@
7491
7555
  },
7492
7556
  "ssm" : {
7493
7557
  "endpoints" : {
7558
+ "fips-us-gov-east-1" : {
7559
+ "credentialScope" : {
7560
+ "region" : "us-gov-east-1"
7561
+ },
7562
+ "hostname" : "ssm.us-gov-east-1.amazonaws.com"
7563
+ },
7564
+ "fips-us-gov-west-1" : {
7565
+ "credentialScope" : {
7566
+ "region" : "us-gov-west-1"
7567
+ },
7568
+ "hostname" : "ssm.us-gov-west-1.amazonaws.com"
7569
+ },
7570
+ "ssm-facade-fips-us-gov-east-1" : {
7571
+ "credentialScope" : {
7572
+ "region" : "us-gov-east-1"
7573
+ },
7574
+ "hostname" : "ssm-facade.us-gov-east-1.amazonaws.com"
7575
+ },
7576
+ "ssm-facade-fips-us-gov-west-1" : {
7577
+ "credentialScope" : {
7578
+ "region" : "us-gov-west-1"
7579
+ },
7580
+ "hostname" : "ssm-facade.us-gov-west-1.amazonaws.com"
7581
+ },
7494
7582
  "us-gov-east-1" : { },
7495
7583
  "us-gov-west-1" : { }
7496
7584
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.508'
2
+ VERSION = '2.11.509'
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.508
4
+ version: 2.11.509
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: 2020-05-14 00:00:00.000000000 Z
11
+ date: 2020-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath