Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed Feb 9, 2022
1 parent 94aca0a commit c8182e5
Show file tree
Hide file tree
Showing 12 changed files with 1,553 additions and 855 deletions.
151 changes: 148 additions & 3 deletions 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 c8182e5

Please sign in to comment.