Skip to content

Commit

Permalink
Release v1.15.15
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Aug 17, 2018
1 parent 91e1b0e commit ca229c7
Show file tree
Hide file tree
Showing 9 changed files with 159 additions and 96 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.15.15 (2018-08-17)
===

### Service Client Updates
* `service/dax`: Updates service API
* DAX CreateClusterRequest is updated to include IamRoleArn as a required request parameter.
* `service/sagemaker`: Updates service API and documentation
* Added an optional boolean parameter, 'DisassociateLifecycleConfig', to the UpdateNotebookInstance operation. When set to true, the lifecycle configuration associated with the notebook instance will be removed, allowing a new one to be set via a new 'LifecycleConfigName' parameter.
* `service/secretsmanager`: Updates service documentation
* Documentation updates for Secrets Manager

Release v1.15.14 (2018-08-16)
===

Expand Down
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.15.14"
const SDKVersion = "1.15.15"
3 changes: 2 additions & 1 deletion models/apis/dax/2017-04-19/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,8 @@
"required":[
"ClusterName",
"NodeType",
"ReplicationFactor"
"ReplicationFactor",
"IamRoleArn"
],
"members":{
"ClusterName":{"shape":"String"},
Expand Down
5 changes: 4 additions & 1 deletion models/apis/sagemaker/2017-07-24/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1111,6 +1111,7 @@
"Disabled"
]
},
"DisassociateNotebookInstanceLifecycleConfig":{"type":"boolean"},
"EndpointArn":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -2590,7 +2591,9 @@
"members":{
"NotebookInstanceName":{"shape":"NotebookInstanceName"},
"InstanceType":{"shape":"InstanceType"},
"RoleArn":{"shape":"RoleArn"}
"RoleArn":{"shape":"RoleArn"},
"LifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"},
"DisassociateLifecycleConfig":{"shape":"DisassociateNotebookInstanceLifecycleConfig"}
}
},
"UpdateNotebookInstanceLifecycleConfigInput":{
Expand Down
25 changes: 16 additions & 9 deletions models/apis/sagemaker/2017-07-24/docs-2.json

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions models/apis/secretsmanager/2017-10-17/docs-2.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion service/dax/api.go

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

92 changes: 60 additions & 32 deletions service/sagemaker/api.go

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

0 comments on commit ca229c7

Please sign in to comment.