Skip to content

Commit

Permalink
Release v1.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Apr 5, 2017
1 parent 3d7575d commit e38d0c7
Show file tree
Hide file tree
Showing 17 changed files with 1,865 additions and 1,222 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.8.9 (2017-04-05)
===

### Service Client Updates
* `service/elasticache`: Updates service API, documentation, paginators, and examples
* ElastiCache added support for testing the Elasticache Multi-AZ feature with Automatic Failover.

Release v1.8.8 (2017-04-04)
===

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

### SDK Enhancements

### SDK Bugs
### SDK Bugs
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.8.8"
const SDKVersion = "1.8.9"
82 changes: 79 additions & 3 deletions models/apis/elasticache/2015-02-02/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -710,9 +710,42 @@
{"shape":"InvalidParameterValueException"},
{"shape":"InvalidParameterCombinationException"}
]
},
"TestFailover":{
"name":"TestFailover",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TestFailoverMessage"},
"output":{
"shape":"TestFailoverResult",
"resultWrapper":"TestFailoverResult"
},
"errors":[
{"shape":"APICallRateForCustomerExceededFault"},
{"shape":"InvalidCacheClusterStateFault"},
{"shape":"InvalidReplicationGroupStateFault"},
{"shape":"NodeGroupNotFoundFault"},
{"shape":"ReplicationGroupNotFoundFault"},
{"shape":"TestFailoverNotAvailableFault"},
{"shape":"InvalidParameterValueException"},
{"shape":"InvalidParameterCombinationException"}
]
}
},
"shapes":{
"APICallRateForCustomerExceededFault":{
"type":"structure",
"members":{
},
"error":{
"code":"APICallRateForCustomerExceeded",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
},
"AZMode":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -1446,7 +1479,8 @@
"CacheClusterId":{"shape":"String"},
"MaxRecords":{"shape":"IntegerOptional"},
"Marker":{"shape":"String"},
"ShowCacheNodeInfo":{"shape":"BooleanOptional"}
"ShowCacheNodeInfo":{"shape":"BooleanOptional"},
"ShowCacheClustersNotInReplicationGroups":{"shape":"BooleanOptional"}
}
},
"DescribeCacheEngineVersionsMessage":{
Expand Down Expand Up @@ -1847,7 +1881,8 @@
"AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
"SnapshotRetentionLimit":{"shape":"IntegerOptional"},
"SnapshotWindow":{"shape":"String"},
"CacheNodeType":{"shape":"String"}
"CacheNodeType":{"shape":"String"},
"NodeGroupId":{"shape":"String"}
}
},
"ModifyReplicationGroupResult":{
Expand Down Expand Up @@ -1906,6 +1941,17 @@
"locationName":"NodeGroupMember"
}
},
"NodeGroupNotFoundFault":{
"type":"structure",
"members":{
},
"error":{
"code":"NodeGroupNotFoundFault",
"httpStatusCode":404,
"senderFault":true
},
"exception":true
},
"NodeGroupsPerReplicationGroupQuotaExceededFault":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2099,7 +2145,9 @@
"AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
"ConfigurationEndpoint":{"shape":"Endpoint"},
"SnapshotRetentionLimit":{"shape":"IntegerOptional"},
"SnapshotWindow":{"shape":"String"}
"SnapshotWindow":{"shape":"String"},
"ClusterEnabled":{"shape":"BooleanOptional"},
"CacheNodeType":{"shape":"String"}
},
"wrapper":true
},
Expand Down Expand Up @@ -2469,6 +2517,34 @@
"senderFault":true
},
"exception":true
},
"TestFailoverMessage":{
"type":"structure",
"required":[
"ReplicationGroupId",
"NodeGroupId"
],
"members":{
"ReplicationGroupId":{"shape":"String"},
"NodeGroupId":{"shape":"String"}
}
},
"TestFailoverNotAvailableFault":{
"type":"structure",
"members":{
},
"error":{
"code":"TestFailoverNotAvailableFault",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
},
"TestFailoverResult":{
"type":"structure",
"members":{
"ReplicationGroup":{"shape":"ReplicationGroup"}
}
}
}
}
79 changes: 56 additions & 23 deletions models/apis/elasticache/2015-02-02/docs-2.json

Large diffs are not rendered by default.

Loading

0 comments on commit e38d0c7

Please sign in to comment.