Skip to content

Commit

Permalink
Release v1.42.50 (2022-02-09) (#4274)
Browse files Browse the repository at this point in the history
Release v1.42.50 (2022-02-09)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
  * This SDK release is for the feature launch of AWS CloudFormation Hooks.
  • Loading branch information
aws-sdk-go-automation authored Feb 9, 2022
1 parent 98d8962 commit e0bad16
Show file tree
Hide file tree
Showing 8 changed files with 1,519 additions and 641 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.42.50 (2022-02-09)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
* This SDK release is for the feature launch of AWS CloudFormation Hooks.

Release v1.42.49 (2022-02-08)
===

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.42.49"
const SDKVersion = "1.42.50"
151 changes: 148 additions & 3 deletions models/apis/cloudformation/2010-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,21 @@
{"shape":"ChangeSetNotFoundException"}
]
},
"DescribeChangeSetHooks":{
"name":"DescribeChangeSetHooks",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeChangeSetHooksInput"},
"output":{
"shape":"DescribeChangeSetHooksOutput",
"resultWrapper":"DescribeChangeSetHooksResult"
},
"errors":[
{"shape":"ChangeSetNotFoundException"}
]
},
"DescribePublisher":{
"name":"DescribePublisher",
"http":{
Expand Down Expand Up @@ -1158,6 +1173,7 @@
"type":"structure",
"members":{
"Type":{"shape":"ChangeType"},
"HookInvocationCount":{"shape":"HookInvocationCount"},
"ResourceChange":{"shape":"ResourceChange"}
}
},
Expand All @@ -1171,6 +1187,44 @@
"Dynamic"
]
},
"ChangeSetHook":{
"type":"structure",
"members":{
"InvocationPoint":{"shape":"HookInvocationPoint"},
"FailureMode":{"shape":"HookFailureMode"},
"TypeName":{"shape":"HookTypeName"},
"TypeVersionId":{"shape":"HookTypeVersionId"},
"TypeConfigurationVersionId":{"shape":"HookTypeConfigurationVersionId"},
"TargetDetails":{"shape":"ChangeSetHookTargetDetails"}
}
},
"ChangeSetHookResourceTargetDetails":{
"type":"structure",
"members":{
"LogicalResourceId":{"shape":"LogicalResourceId"},
"ResourceType":{"shape":"HookTargetTypeName"},
"ResourceAction":{"shape":"ChangeAction"}
}
},
"ChangeSetHookTargetDetails":{
"type":"structure",
"members":{
"TargetType":{"shape":"HookTargetType"},
"ResourceTargetDetails":{"shape":"ChangeSetHookResourceTargetDetails"}
}
},
"ChangeSetHooks":{
"type":"list",
"member":{"shape":"ChangeSetHook"}
},
"ChangeSetHooksStatus":{
"type":"string",
"enum":[
"PLANNING",
"PLANNED",
"UNAVAILABLE"
]
},
"ChangeSetId":{
"type":"string",
"min":1,
Expand Down Expand Up @@ -1547,6 +1601,28 @@
"NextToken":{"shape":"NextToken"}
}
},
"DescribeChangeSetHooksInput":{
"type":"structure",
"required":["ChangeSetName"],
"members":{
"ChangeSetName":{"shape":"ChangeSetNameOrId"},
"StackName":{"shape":"StackNameOrId"},
"NextToken":{"shape":"NextToken"},
"LogicalResourceId":{"shape":"LogicalResourceId"}
}
},
"DescribeChangeSetHooksOutput":{
"type":"structure",
"members":{
"ChangeSetId":{"shape":"ChangeSetId"},
"ChangeSetName":{"shape":"ChangeSetName"},
"Hooks":{"shape":"ChangeSetHooks"},
"Status":{"shape":"ChangeSetHooksStatus"},
"NextToken":{"shape":"NextToken"},
"StackId":{"shape":"StackId"},
"StackName":{"shape":"StackName"}
}
},
"DescribeChangeSetInput":{
"type":"structure",
"required":["ChangeSetName"],
Expand Down Expand Up @@ -2042,6 +2118,68 @@
"InvalidTypeConfiguration"
]
},
"HookFailureMode":{
"type":"string",
"enum":[
"FAIL",
"WARN"
]
},
"HookInvocationCount":{
"type":"integer",
"max":100,
"min":1
},
"HookInvocationPoint":{
"type":"string",
"enum":["PRE_PROVISION"]
},
"HookStatus":{
"type":"string",
"enum":[
"HOOK_IN_PROGRESS",
"HOOK_COMPLETE_SUCCEEDED",
"HOOK_COMPLETE_FAILED",
"HOOK_FAILED"
]
},
"HookStatusReason":{
"type":"string",
"max":1024,
"min":1
},
"HookTargetType":{
"type":"string",
"enum":["RESOURCE"]
},
"HookTargetTypeName":{
"type":"string",
"max":256,
"min":1,
"pattern":"^[a-zA-Z0-9]{2,64}::[a-zA-Z0-9]{2,64}::[a-zA-Z0-9]{2,64}$"
},
"HookType":{
"type":"string",
"max":255,
"min":1
},
"HookTypeConfigurationVersionId":{
"type":"string",
"max":128,
"min":1,
"pattern":"[A-Za-z0-9-]+"
},
"HookTypeName":{
"type":"string",
"max":196,
"min":10
},
"HookTypeVersionId":{
"type":"string",
"max":128,
"min":1,
"pattern":"[A-Za-z0-9-]+"
},
"IdentityProvider":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2758,7 +2896,8 @@
"type":"string",
"enum":[
"RESOURCE",
"MODULE"
"MODULE",
"HOOK"
]
},
"Replacement":{
Expand Down Expand Up @@ -3172,7 +3311,12 @@
"ResourceStatus":{"shape":"ResourceStatus"},
"ResourceStatusReason":{"shape":"ResourceStatusReason"},
"ResourceProperties":{"shape":"ResourceProperties"},
"ClientRequestToken":{"shape":"ClientRequestToken"}
"ClientRequestToken":{"shape":"ClientRequestToken"},
"HookType":{"shape":"HookType"},
"HookStatus":{"shape":"HookStatus"},
"HookStatusReason":{"shape":"HookStatusReason"},
"HookInvocationPoint":{"shape":"HookInvocationPoint"},
"HookFailureMode":{"shape":"HookFailureMode"}
}
},
"StackEvents":{
Expand Down Expand Up @@ -3825,7 +3969,8 @@
"type":"string",
"enum":[
"RESOURCE",
"MODULE"
"MODULE",
"HOOK"
]
},
"ThirdPartyTypeArn":{
Expand Down
Loading

0 comments on commit e0bad16

Please sign in to comment.