Navigation Menu

Skip to content

Commit

Permalink
Update CloudFormation models for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeskew committed Jan 22, 2016
1 parent 0417b65 commit a65069a
Show file tree
Hide file tree
Showing 7 changed files with 640 additions and 483 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,7 @@
## next release

* `Aws\ACM` - Added support for the **AWS Certificate Manager** service.
* `Aws\CloudFormation` - Added support for continuing update rollbacks.
* `Aws\CloudFront` - Added support using AWS ACM certificates with CloudFront
distributions.
* `Aws\IoT` - Added support for topic rules.
Expand Down
2 changes: 2 additions & 0 deletions src/CloudFormation/CloudFormationClient.php
Expand Up @@ -8,6 +8,8 @@
*
* @method \Aws\Result cancelUpdateStack(array $args = [])
* @method \GuzzleHttp\Promise\Promise cancelUpdateStackAsync(array $args = [])
* @method \Aws\Result continueUpdateRollback(array $args = [])
* @method \GuzzleHttp\Promise\Promise continueUpdateRollbackAsync(array $args = [])
* @method \Aws\Result createStack(array $args = [])
* @method \GuzzleHttp\Promise\Promise createStackAsync(array $args = [])
* @method \Aws\Result deleteStack(array $args = [])
Expand Down
64 changes: 28 additions & 36 deletions src/data/cloudformation/2010-05-15/api-2.json
Expand Up @@ -17,6 +17,18 @@
},
"input":{"shape":"CancelUpdateStackInput"}
},
"ContinueUpdateRollback":{
"name":"ContinueUpdateRollback",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ContinueUpdateRollbackInput"},
"output":{
"shape":"ContinueUpdateRollbackOutput",
"resultWrapper":"ContinueUpdateRollbackResult"
}
},
"CreateStack":{
"name":"CreateStack",
"http":{
Expand All @@ -29,33 +41,9 @@
"resultWrapper":"CreateStackResult"
},
"errors":[
{
"shape":"LimitExceededException",
"error":{
"code":"LimitExceededException",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
},
{
"shape":"AlreadyExistsException",
"error":{
"code":"AlreadyExistsException",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
},
{
"shape":"InsufficientCapabilitiesException",
"error":{
"code":"InsufficientCapabilitiesException",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
}
{"shape":"LimitExceededException"},
{"shape":"AlreadyExistsException"},
{"shape":"InsufficientCapabilitiesException"}
]
},
"DeleteStack":{
Expand Down Expand Up @@ -226,15 +214,7 @@
"resultWrapper":"UpdateStackResult"
},
"errors":[
{
"shape":"InsufficientCapabilitiesException",
"error":{
"code":"InsufficientCapabilitiesException",
"httpStatusCode":400,
"senderFault":true
},
"exception":true
}
{"shape":"InsufficientCapabilitiesException"}
]
},
"ValidateTemplate":{
Expand Down Expand Up @@ -294,6 +274,18 @@
"type":"string",
"enum":["CAPABILITY_IAM"]
},
"ContinueUpdateRollbackInput":{
"type":"structure",
"required":["StackName"],
"members":{
"StackName":{"shape":"StackNameOrId"}
}
},
"ContinueUpdateRollbackOutput":{
"type":"structure",
"members":{
}
},
"CreateStackInput":{
"type":"structure",
"required":["StackName"],
Expand Down
2 changes: 1 addition & 1 deletion src/data/cloudformation/2010-05-15/api-2.json.php

Large diffs are not rendered by default.

1,014 changes: 587 additions & 427 deletions src/data/cloudformation/2010-05-15/docs-2.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/data/cloudformation/2010-05-15/docs-2.json.php

Large diffs are not rendered by default.

38 changes: 20 additions & 18 deletions src/data/cloudformation/2010-05-15/paginators-1.json
@@ -1,25 +1,27 @@
{
"pagination":{
"DescribeStackEvents":{
"input_token":"NextToken",
"output_token":"NextToken",
"result_key":"StackEvents"
"pagination": {
"DescribeStackEvents": {
"input_token": "NextToken",
"output_token": "NextToken",
"result_key": "StackEvents"
},
"DescribeStackResources":{"result_key":"StackResources"},
"DescribeStacks":{
"input_token":"NextToken",
"output_token":"NextToken",
"result_key":"Stacks"
"DescribeStackResources": {
"result_key": "StackResources"
},
"ListStackResources":{
"input_token":"NextToken",
"output_token":"NextToken",
"result_key":"StackResourceSummaries"
"DescribeStacks": {
"input_token": "NextToken",
"output_token": "NextToken",
"result_key": "Stacks"
},
"ListStacks":{
"input_token":"NextToken",
"output_token":"NextToken",
"result_key":"StackSummaries"
"ListStackResources": {
"input_token": "NextToken",
"output_token": "NextToken",
"result_key": "StackResourceSummaries"
},
"ListStacks": {
"input_token": "NextToken",
"output_token": "NextToken",
"result_key": "StackSummaries"
}
}
}

0 comments on commit a65069a

Please sign in to comment.