aws-sdk-core 2.7.2 → 2.7.3

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.
@@ -1,34 +1,4 @@
1
1
  {
2
2
  "pagination": {
3
- "ListApplicationRevisions": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "result_key": "revisions"
7
- },
8
- "ListApplications": {
9
- "input_token": "nextToken",
10
- "output_token": "nextToken",
11
- "result_key": "applications"
12
- },
13
- "ListDeploymentConfigs": {
14
- "input_token": "nextToken",
15
- "output_token": "nextToken",
16
- "result_key": "deploymentConfigsList"
17
- },
18
- "ListDeploymentGroups": {
19
- "input_token": "nextToken",
20
- "output_token": "nextToken",
21
- "result_key": "deploymentGroups"
22
- },
23
- "ListDeploymentInstances": {
24
- "input_token": "nextToken",
25
- "output_token": "nextToken",
26
- "result_key": "instancesList"
27
- },
28
- "ListDeployments": {
29
- "input_token": "nextToken",
30
- "output_token": "nextToken",
31
- "result_key": "deployments"
32
- }
33
3
  }
34
4
  }
@@ -2051,6 +2051,10 @@
2051
2051
  "SpotInstanceRequestId":{
2052
2052
  "shape":"String",
2053
2053
  "locationName":"spotInstanceRequestId"
2054
+ },
2055
+ "InstanceHealth":{
2056
+ "shape":"InstanceHealthStatus",
2057
+ "locationName":"instanceHealth"
2054
2058
  }
2055
2059
  }
2056
2060
  },
@@ -8735,6 +8739,13 @@
8735
8739
  }
8736
8740
  }
8737
8741
  },
8742
+ "InstanceHealthStatus":{
8743
+ "type":"string",
8744
+ "enum":[
8745
+ "healthy",
8746
+ "unhealthy"
8747
+ ]
8748
+ },
8738
8749
  "InstanceIdSet":{
8739
8750
  "type":"list",
8740
8751
  "member":{
@@ -13372,6 +13383,10 @@
13372
13383
  "Type":{
13373
13384
  "shape":"FleetType",
13374
13385
  "locationName":"type"
13386
+ },
13387
+ "ReplaceUnhealthyInstances":{
13388
+ "shape":"Boolean",
13389
+ "locationName":"replaceUnhealthyInstances"
13375
13390
  }
13376
13391
  }
13377
13392
  },
@@ -201,7 +201,9 @@
201
201
  {"shape":"InvalidDBInstanceStateFault"},
202
202
  {"shape":"DBClusterParameterGroupNotFoundFault"},
203
203
  {"shape":"KMSKeyNotAccessibleFault"},
204
- {"shape":"DBClusterNotFoundFault"}
204
+ {"shape":"DBClusterNotFoundFault"},
205
+ {"shape":"DBInstanceNotFoundFault"},
206
+ {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}
205
207
  ]
206
208
  },
207
209
  "CreateDBClusterParameterGroup":{
@@ -1104,6 +1106,21 @@
1104
1106
  {"shape":"InvalidDBParameterGroupStateFault"}
1105
1107
  ]
1106
1108
  },
1109
+ "ModifyDBSnapshot":{
1110
+ "name":"ModifyDBSnapshot",
1111
+ "http":{
1112
+ "method":"POST",
1113
+ "requestUri":"/"
1114
+ },
1115
+ "input":{"shape":"ModifyDBSnapshotMessage"},
1116
+ "output":{
1117
+ "shape":"ModifyDBSnapshotResult",
1118
+ "resultWrapper":"ModifyDBSnapshotResult"
1119
+ },
1120
+ "errors":[
1121
+ {"shape":"DBSnapshotNotFoundFault"}
1122
+ ]
1123
+ },
1107
1124
  "ModifyDBSnapshotAttribute":{
1108
1125
  "name":"ModifyDBSnapshotAttribute",
1109
1126
  "http":{
@@ -3915,6 +3932,20 @@
3915
3932
  "DBSnapshotAttributesResult":{"shape":"DBSnapshotAttributesResult"}
3916
3933
  }
3917
3934
  },
3935
+ "ModifyDBSnapshotMessage":{
3936
+ "type":"structure",
3937
+ "required":["DBSnapshotIdentifier"],
3938
+ "members":{
3939
+ "DBSnapshotIdentifier":{"shape":"String"},
3940
+ "EngineVersion":{"shape":"String"}
3941
+ }
3942
+ },
3943
+ "ModifyDBSnapshotResult":{
3944
+ "type":"structure",
3945
+ "members":{
3946
+ "DBSnapshot":{"shape":"DBSnapshot"}
3947
+ }
3948
+ },
3918
3949
  "ModifyDBSubnetGroupMessage":{
3919
3950
  "type":"structure",
3920
3951
  "required":[
@@ -28,6 +28,7 @@ module Aws
28
28
  Batch
29
29
  Budgets
30
30
  CodeBuild
31
+ CloudDirectory
31
32
  CloudFormation
32
33
  CloudFront
33
34
  CloudHSM
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:CloudDirectory, {
2
+ api: "#{Aws::API_DIR}/clouddirectory/2016-05-10/api-2.json",
3
+ docs: "#{Aws::API_DIR}/clouddirectory/2016-05-10/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/clouddirectory/2016-05-10/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/clouddirectory/2016-05-10/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.7.2'
2
+ VERSION = '2.7.3'
3
3
  end
@@ -35,6 +35,10 @@
35
35
  "models": "codebuild/2016-10-06",
36
36
  "endpoint": "codebuild"
37
37
  },
38
+ "CloudDirectory": {
39
+ "models": "clouddirectory/2016-05-10",
40
+ "endpoint": "clouddirectory"
41
+ },
38
42
  "CloudFormation": {
39
43
  "models": "cloudformation/2010-05-15",
40
44
  "endpoint": "cloudformation"
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.7.2
4
+ version: 2.7.3
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: 2017-01-25 00:00:00.000000000 Z
11
+ date: 2017-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -68,6 +68,9 @@ files:
68
68
  - apis/batch/2016-08-10/examples-1.json
69
69
  - apis/budgets/2016-10-20/api-2.json
70
70
  - apis/budgets/2016-10-20/examples-1.json
71
+ - apis/clouddirectory/2016-05-10/api-2.json
72
+ - apis/clouddirectory/2016-05-10/examples-1.json
73
+ - apis/clouddirectory/2016-05-10/paginators-1.json
71
74
  - apis/cloudformation/2010-05-15/api-2.json
72
75
  - apis/cloudformation/2010-05-15/examples-1.json
73
76
  - apis/cloudformation/2010-05-15/paginators-1.json
@@ -389,6 +392,7 @@ files:
389
392
  - lib/aws-sdk-core/client.rb
390
393
  - lib/aws-sdk-core/client_stubs.rb
391
394
  - lib/aws-sdk-core/client_waiters.rb
395
+ - lib/aws-sdk-core/clouddirectory.rb
392
396
  - lib/aws-sdk-core/cloudformation.rb
393
397
  - lib/aws-sdk-core/cloudfront.rb
394
398
  - lib/aws-sdk-core/cloudfront/url_signer.rb