aws-sdk-core 2.11.421 → 2.11.422

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: fd8c603aa45b53d961497fe87d5c6887319483ab
4
- data.tar.gz: 48fc4a5bf99b349813fc462398e9e599c1a2c34e
3
+ metadata.gz: 7cb3f06411a51e68c7611e4db86a4ab51810a89a
4
+ data.tar.gz: 83f27eaa8b9cdd6699fc3e400a27b6fd7ea026da
5
5
  SHA512:
6
- metadata.gz: c2d8bdc1d16e5a630f828e00a67f1ca1ae1dcda129684551f7aefad69681ca6ae1591991098b658d60abc3e806a6791111ab7e33252bb7334434e00008bf1cac
7
- data.tar.gz: 9ca9fab308963151be66d6db2f70d0846ec9820183069f2641d52d230c18077f492f46c190e423c9ce8585400308ce15e29682053baeaf270fb731fa13cac2d7
6
+ metadata.gz: 2f0698e52d74856f8690a91848dfe91a97f0ec947ee2d69db5b6a42c340a6dddcebb2df16dc6b7ef4981b76004a845c97ab1ac27e26b6cdd58f52721f1409b82
7
+ data.tar.gz: 710c5054626b1449fdd4db45ee2070b99cf3e072047dd2d4c06e6ef4d7cfdfc6a41cd9fa4e6e6fe1a9c6e78e720c53788d6543235ed71083d3bc4bcb73434d6c
@@ -0,0 +1,45 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "ImageScanComplete": {
5
+ "description": "Wait until an image scan is complete and findings can be accessed",
6
+ "operation": "DescribeImageScanFindings",
7
+ "delay": 5,
8
+ "maxAttempts": 60,
9
+ "acceptors": [
10
+ {
11
+ "state": "success",
12
+ "matcher": "path",
13
+ "argument": "imageScanStatus.status",
14
+ "expected": "COMPLETE"
15
+ },
16
+ {
17
+ "state": "failure",
18
+ "matcher": "path",
19
+ "argument": "imageScanStatus.status",
20
+ "expected": "FAILED"
21
+ }
22
+ ]
23
+ },
24
+ "LifecyclePolicyPreviewComplete": {
25
+ "description": "Wait until a lifecycle policy preview request is complete and results can be accessed",
26
+ "operation": "GetLifecyclePolicyPreview",
27
+ "delay": 5,
28
+ "maxAttempts": 20,
29
+ "acceptors": [
30
+ {
31
+ "state": "success",
32
+ "matcher": "path",
33
+ "argument": "status",
34
+ "expected": "COMPLETE"
35
+ },
36
+ {
37
+ "state": "failure",
38
+ "matcher": "path",
39
+ "argument": "status",
40
+ "expected": "FAILED"
41
+ }
42
+ ]
43
+ }
44
+ }
45
+ }
@@ -4574,7 +4574,8 @@
4574
4574
  "preferredMaintenanceWindow":{"shape":"NonEmptyString"},
4575
4575
  "publiclyAccessible":{"shape":"boolean"},
4576
4576
  "masterEndpoint":{"shape":"RelationalDatabaseEndpoint"},
4577
- "pendingMaintenanceActions":{"shape":"PendingMaintenanceActionList"}
4577
+ "pendingMaintenanceActions":{"shape":"PendingMaintenanceActionList"},
4578
+ "caCertificateIdentifier":{"shape":"string"}
4578
4579
  }
4579
4580
  },
4580
4581
  "RelationalDatabaseBlueprint":{
@@ -4996,7 +4997,8 @@
4996
4997
  "enableBackupRetention":{"shape":"boolean"},
4997
4998
  "disableBackupRetention":{"shape":"boolean"},
4998
4999
  "publiclyAccessible":{"shape":"boolean"},
4999
- "applyImmediately":{"shape":"boolean"}
5000
+ "applyImmediately":{"shape":"boolean"},
5001
+ "caCertificateIdentifier":{"shape":"string"}
5000
5002
  }
5001
5003
  },
5002
5004
  "UpdateRelationalDatabaseResult":{
@@ -4313,6 +4313,12 @@
4313
4313
  },
4314
4314
  "isRegionalized" : true
4315
4315
  },
4316
+ "health" : {
4317
+ "endpoints" : {
4318
+ "cn-north-1" : { },
4319
+ "cn-northwest-1" : { }
4320
+ }
4321
+ },
4316
4322
  "iam" : {
4317
4323
  "endpoints" : {
4318
4324
  "aws-cn-global" : {
@@ -5348,7 +5354,6 @@
5348
5354
  },
5349
5355
  "application-autoscaling" : {
5350
5356
  "defaults" : {
5351
- "hostname" : "autoscaling.us-iso-east-1.c2s.ic.gov",
5352
5357
  "protocols" : [ "http", "https" ]
5353
5358
  },
5354
5359
  "endpoints" : {
@@ -5618,7 +5623,6 @@
5618
5623
  "services" : {
5619
5624
  "application-autoscaling" : {
5620
5625
  "defaults" : {
5621
- "hostname" : "autoscaling.us-isob-east-1.sc2s.sgov.gov",
5622
5626
  "protocols" : [ "http", "https" ]
5623
5627
  },
5624
5628
  "endpoints" : {
@@ -3,4 +3,5 @@ Aws.add_service(:ECR, {
3
3
  docs: "#{Aws::API_DIR}/ecr/2015-09-21/docs-2.json",
4
4
  examples: "#{Aws::API_DIR}/ecr/2015-09-21/examples-1.json",
5
5
  paginators: "#{Aws::API_DIR}/ecr/2015-09-21/paginators-1.json",
6
+ waiters: "#{Aws::API_DIR}/ecr/2015-09-21/waiters-2.json",
6
7
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.421'
2
+ VERSION = '2.11.422'
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.421
4
+ version: 2.11.422
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-12-23 00:00:00.000000000 Z
11
+ date: 2020-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -356,6 +356,7 @@ files:
356
356
  - apis/ecr/2015-09-21/examples-1.json
357
357
  - apis/ecr/2015-09-21/paginators-1.json
358
358
  - apis/ecr/2015-09-21/smoke.json
359
+ - apis/ecr/2015-09-21/waiters-2.json
359
360
  - apis/ecs/2014-11-13/api-2.json
360
361
  - apis/ecs/2014-11-13/examples-1.json
361
362
  - apis/ecs/2014-11-13/paginators-1.json