Skip to content

Commit

Permalink
Release v1.40.10 (2021-07-28) (#4032)
Browse files Browse the repository at this point in the history
Release v1.40.10 (2021-07-28)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
  * SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature.
* `service/sso-admin`: Updates service documentation
  • Loading branch information
aws-sdk-go-automation committed Jul 28, 2021
1 parent 5f4eb6a commit a4a27c7
Show file tree
Hide file tree
Showing 11 changed files with 1,610 additions and 1,249 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
Release v1.40.10 (2021-07-28)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
* SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature.
* `service/sso-admin`: Updates service documentation

Release v1.40.9 (2021-07-27)
===

Expand Down
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.40.9"
const SDKVersion = "1.40.10"
60 changes: 60 additions & 0 deletions models/apis/cloudformation/2010-05-15/api-2.json
Expand Up @@ -545,6 +545,27 @@
{"shape":"StackSetNotFoundException"}
]
},
"ImportStacksToStackSet":{
"name":"ImportStacksToStackSet",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ImportStacksToStackSetInput"},
"output":{
"shape":"ImportStacksToStackSetOutput",
"resultWrapper":"ImportStacksToStackSetResult"
},
"errors":[
{"shape":"LimitExceededException"},
{"shape":"StackSetNotFoundException"},
{"shape":"InvalidOperationException"},
{"shape":"OperationInProgressException"},
{"shape":"OperationIdAlreadyExistsException"},
{"shape":"StackNotFoundException"},
{"shape":"StaleRequestException"}
]
},
"ListChangeSets":{
"name":"ListChangeSets",
"http":{
Expand Down Expand Up @@ -1358,6 +1379,7 @@
"Description":{"shape":"Description"},
"TemplateBody":{"shape":"TemplateBody"},
"TemplateURL":{"shape":"TemplateURL"},
"StackId":{"shape":"StackId"},
"Parameters":{"shape":"Parameters"},
"Capabilities":{"shape":"Capabilities"},
"Tags":{"shape":"Tags"},
Expand Down Expand Up @@ -2011,6 +2033,29 @@
"Bitbucket"
]
},
"ImportStacksToStackSetInput":{
"type":"structure",
"required":[
"StackSetName",
"StackIds"
],
"members":{
"StackSetName":{"shape":"StackSetNameOrId"},
"StackIds":{"shape":"StackIdList"},
"OperationPreferences":{"shape":"StackSetOperationPreferences"},
"OperationId":{
"shape":"ClientRequestToken",
"idempotencyToken":true
},
"CallAs":{"shape":"CallAs"}
}
},
"ImportStacksToStackSetOutput":{
"type":"structure",
"members":{
"OperationId":{"shape":"ClientRequestToken"}
}
},
"Imports":{
"type":"list",
"member":{"shape":"StackName"}
Expand Down Expand Up @@ -3091,6 +3136,10 @@
"member":{"shape":"StackEvent"}
},
"StackId":{"type":"string"},
"StackIdList":{
"type":"list",
"member":{"shape":"StackId"}
},
"StackInstance":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3189,6 +3238,17 @@
"min":1,
"pattern":"([a-zA-Z][-a-zA-Z0-9]*)|(arn:\\b(aws|aws-us-gov|aws-cn)\\b:[-a-zA-Z0-9:/._+]*)"
},
"StackNotFoundException":{
"type":"structure",
"members":{
},
"error":{
"code":"StackNotFoundException",
"httpStatusCode":404,
"senderFault":true
},
"exception":true
},
"StackPolicyBody":{
"type":"string",
"max":16384,
Expand Down
537 changes: 283 additions & 254 deletions models/apis/cloudformation/2010-05-15/docs-2.json

Large diffs are not rendered by default.

148 changes: 74 additions & 74 deletions models/apis/sso-admin/2020-07-20/docs-2.json

Large diffs are not rendered by default.

1,648 changes: 936 additions & 712 deletions service/cloudformation/api.go

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions service/cloudformation/cloudformationiface/interface.go

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

32 changes: 17 additions & 15 deletions service/cloudformation/doc.go

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

9 changes: 8 additions & 1 deletion service/cloudformation/errors.go

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

0 comments on commit a4a27c7

Please sign in to comment.