Skip to content

Commit

Permalink
Release v1.25.23 (2019-10-30) (#2921)
Browse files Browse the repository at this point in the history
Release v1.25.23 (2019-10-30)
===

### Service Client Updates
* `service/elasticache`: Updates service API and documentation
  * Amazon ElastiCache for Redis 5.0.5 now allows you to modify authentication tokens by setting and rotating new tokens. You can now modify active tokens while in use, or add brand-new tokens to existing encryption-in-transit enabled clusters that were previously setup without authentication tokens. This is a two-step process that allows you to set and rotate the token without interrupting client requests.
  • Loading branch information
aws-sdk-go-automation committed Oct 30, 2019
1 parent 0198f00 commit 1e4fb66
Show file tree
Hide file tree
Showing 7 changed files with 194 additions and 18 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
Release v1.25.23 (2019-10-30)
===

### Service Client Updates
* `service/elasticache`: Updates service API and documentation
* Amazon ElastiCache for Redis 5.0.5 now allows you to modify authentication tokens by setting and rotating new tokens. You can now modify active tokens while in use, or add brand-new tokens to existing encryption-in-transit enabled clusters that were previously setup without authentication tokens. This is a two-step process that allows you to set and rotate the token without interrupting client requests.

Release v1.25.22 (2019-10-29)
===

Expand Down
3 changes: 3 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.25.22"
const SDKVersion = "1.25.23"
36 changes: 29 additions & 7 deletions models/apis/elasticache/2015-02-02/api-2.json
Expand Up @@ -956,6 +956,20 @@
"ScaleDownModifications":{"shape":"NodeTypeList"}
}
},
"AuthTokenUpdateStatus":{
"type":"string",
"enum":[
"SETTING",
"ROTATING"
]
},
"AuthTokenUpdateStrategyType":{
"type":"string",
"enum":[
"SET",
"ROTATE"
]
},
"AuthorizationAlreadyExistsFault":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1067,6 +1081,7 @@
"SnapshotRetentionLimit":{"shape":"IntegerOptional"},
"SnapshotWindow":{"shape":"String"},
"AuthTokenEnabled":{"shape":"BooleanOptional"},
"AuthTokenLastModifiedDate":{"shape":"TStamp"},
"TransitEncryptionEnabled":{"shape":"BooleanOptional"},
"AtRestEncryptionEnabled":{"shape":"BooleanOptional"}
},
Expand Down Expand Up @@ -2176,7 +2191,9 @@
"AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
"SnapshotRetentionLimit":{"shape":"IntegerOptional"},
"SnapshotWindow":{"shape":"String"},
"CacheNodeType":{"shape":"String"}
"CacheNodeType":{"shape":"String"},
"AuthToken":{"shape":"String"},
"AuthTokenUpdateStrategy":{"shape":"AuthTokenUpdateStrategyType"}
}
},
"ModifyCacheClusterResult":{
Expand Down Expand Up @@ -2220,6 +2237,10 @@
"PrimaryClusterId":{"shape":"String"},
"SnapshottingClusterId":{"shape":"String"},
"AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
"NodeGroupId":{
"shape":"String",
"deprecated":true
},
"CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
"SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
"PreferredMaintenanceWindow":{"shape":"String"},
Expand All @@ -2232,10 +2253,8 @@
"SnapshotRetentionLimit":{"shape":"IntegerOptional"},
"SnapshotWindow":{"shape":"String"},
"CacheNodeType":{"shape":"String"},
"NodeGroupId":{
"shape":"String",
"deprecated":true
}
"AuthToken":{"shape":"String"},
"AuthTokenUpdateStrategy":{"shape":"AuthTokenUpdateStrategyType"}
}
},
"ModifyReplicationGroupResult":{
Expand Down Expand Up @@ -2519,7 +2538,8 @@
"NumCacheNodes":{"shape":"IntegerOptional"},
"CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
"EngineVersion":{"shape":"String"},
"CacheNodeType":{"shape":"String"}
"CacheNodeType":{"shape":"String"},
"AuthTokenStatus":{"shape":"AuthTokenUpdateStatus"}
}
},
"PreferredAvailabilityZoneList":{
Expand Down Expand Up @@ -2631,6 +2651,7 @@
"ClusterEnabled":{"shape":"BooleanOptional"},
"CacheNodeType":{"shape":"String"},
"AuthTokenEnabled":{"shape":"BooleanOptional"},
"AuthTokenLastModifiedDate":{"shape":"TStamp"},
"TransitEncryptionEnabled":{"shape":"BooleanOptional"},
"AtRestEncryptionEnabled":{"shape":"BooleanOptional"},
"KmsKeyId":{"shape":"String"}
Expand Down Expand Up @@ -2705,7 +2726,8 @@
"members":{
"PrimaryClusterId":{"shape":"String"},
"AutomaticFailoverStatus":{"shape":"PendingAutomaticFailoverStatus"},
"Resharding":{"shape":"ReshardingStatus"}
"Resharding":{"shape":"ReshardingStatus"},
"AuthTokenStatus":{"shape":"AuthTokenUpdateStatus"}
}
},
"ReservedCacheNode":{
Expand Down

0 comments on commit 1e4fb66

Please sign in to comment.