Skip to content

Commit 54f1bd0

Browse files
Updated API models and rebuilt service gems.
1 parent 1af1cbe commit 54f1bd0

File tree

2,066 files changed

+14796
-10141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,066 files changed

+14796
-10141
lines changed

apis/cloudformation/2010-05-15/api-2.json

Lines changed: 292 additions & 0 deletions
Large diffs are not rendered by default.

apis/cloudformation/2010-05-15/docs-2.json

Lines changed: 276 additions & 46 deletions
Large diffs are not rendered by default.

apis/cloudformation/2010-05-15/paginators-1.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,18 @@
6868
"output_token": "NextToken",
6969
"result_key": "Summaries"
7070
},
71+
"ListStackRefactorActions": {
72+
"input_token": "NextToken",
73+
"limit_key": "MaxResults",
74+
"output_token": "NextToken",
75+
"result_key": "StackRefactorActions"
76+
},
77+
"ListStackRefactors": {
78+
"input_token": "NextToken",
79+
"limit_key": "MaxResults",
80+
"output_token": "NextToken",
81+
"result_key": "StackRefactorSummaries"
82+
},
7183
"ListStackResources": {
7284
"input_token": "NextToken",
7385
"output_token": "NextToken",
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"version": 2,
3+
"testCases": [
4+
{
5+
"id": "ListStacksSuccess",
6+
"operationName": "ListStacks",
7+
"input": {},
8+
"expectation": {
9+
"success": {}
10+
},
11+
"config": {
12+
"region": "us-west-2"
13+
}
14+
},
15+
{
16+
"id": "CreateStackFailure",
17+
"operationName": "CreateStack",
18+
"input": {
19+
"StackName": "fakestack",
20+
"TemplateURL": "http:\/\/s3.amazonaws.com\/foo\/bar"
21+
},
22+
"expectation": {
23+
"failure": {}
24+
},
25+
"config": {
26+
"region": "us-west-2"
27+
}
28+
}
29+
]
30+
}

apis/cloudformation/2010-05-15/waiters-2.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,62 @@
324324
}
325325
]
326326
},
327+
"StackRefactorCreateComplete": {
328+
"delay": 5,
329+
"operation": "DescribeStackRefactor",
330+
"maxAttempts": 120,
331+
"description": "Wait until the stack refactor status is CREATE_COMPLETE.",
332+
"acceptors": [
333+
{
334+
"argument": "Status",
335+
"expected": "CREATE_COMPLETE",
336+
"matcher": "path",
337+
"state": "success"
338+
},
339+
{
340+
"argument": "Status",
341+
"expected": "CREATE_FAILED",
342+
"matcher": "path",
343+
"state": "failure"
344+
},
345+
{
346+
"expected": "ValidationError",
347+
"matcher": "error",
348+
"state": "failure"
349+
}
350+
]
351+
},
352+
"StackRefactorExecuteComplete": {
353+
"delay": 15,
354+
"operation": "DescribeStackRefactor",
355+
"maxAttempts": 120,
356+
"description": "Wait until the stack refactor status is EXECUTE_COMPLETE.",
357+
"acceptors": [
358+
{
359+
"argument": "ExecutionStatus",
360+
"expected": "EXECUTE_COMPLETE",
361+
"matcher": "path",
362+
"state": "success"
363+
},
364+
{
365+
"argument": "ExecutionStatus",
366+
"expected": "EXECUTE_FAILED",
367+
"matcher": "path",
368+
"state": "failure"
369+
},
370+
{
371+
"argument": "ExecutionStatus",
372+
"expected": "ROLLBACK_COMPLETE",
373+
"matcher": "path",
374+
"state": "failure"
375+
},
376+
{
377+
"expected": "ValidationError",
378+
"matcher": "error",
379+
"state": "failure"
380+
}
381+
]
382+
},
327383
"TypeRegistrationComplete": {
328384
"delay": 30,
329385
"operation": "DescribeTypeRegistration",

0 commit comments

Comments
 (0)