Inital Commit
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"pagination": {
|
||||
"GetResourcePolicies": {
|
||||
"input_token": "nextToken",
|
||||
"output_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"result_key": "resourcePolicies"
|
||||
},
|
||||
"ListIncidentRecords": {
|
||||
"input_token": "nextToken",
|
||||
"output_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"result_key": "incidentRecordSummaries"
|
||||
},
|
||||
"ListRelatedItems": {
|
||||
"input_token": "nextToken",
|
||||
"output_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"result_key": "relatedItems"
|
||||
},
|
||||
"ListReplicationSets": {
|
||||
"input_token": "nextToken",
|
||||
"output_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"result_key": "replicationSetArns"
|
||||
},
|
||||
"ListResponsePlans": {
|
||||
"input_token": "nextToken",
|
||||
"output_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"result_key": "responsePlanSummaries"
|
||||
},
|
||||
"ListTimelineEvents": {
|
||||
"input_token": "nextToken",
|
||||
"output_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"result_key": "eventSummaries"
|
||||
},
|
||||
"ListIncidentFindings": {
|
||||
"input_token": "nextToken",
|
||||
"output_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"result_key": "findings"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"version" : 2,
|
||||
"waiters" : {
|
||||
"WaitForReplicationSetActive" : {
|
||||
"description" : "Wait for a replication set to become ACTIVE",
|
||||
"delay" : 30,
|
||||
"maxAttempts" : 5,
|
||||
"operation" : "GetReplicationSet",
|
||||
"acceptors" : [ {
|
||||
"matcher" : "path",
|
||||
"argument" : "replicationSet.status",
|
||||
"state" : "success",
|
||||
"expected" : "ACTIVE"
|
||||
}, {
|
||||
"matcher" : "path",
|
||||
"argument" : "replicationSet.status",
|
||||
"state" : "retry",
|
||||
"expected" : "CREATING"
|
||||
}, {
|
||||
"matcher" : "path",
|
||||
"argument" : "replicationSet.status",
|
||||
"state" : "retry",
|
||||
"expected" : "UPDATING"
|
||||
}, {
|
||||
"matcher" : "path",
|
||||
"argument" : "replicationSet.status",
|
||||
"state" : "failure",
|
||||
"expected" : "FAILED"
|
||||
} ]
|
||||
},
|
||||
"WaitForReplicationSetDeleted" : {
|
||||
"description" : "Wait for a replication set to be deleted",
|
||||
"delay" : 30,
|
||||
"maxAttempts" : 5,
|
||||
"operation" : "GetReplicationSet",
|
||||
"acceptors" : [ {
|
||||
"matcher" : "error",
|
||||
"state" : "success",
|
||||
"expected" : "ResourceNotFoundException"
|
||||
}, {
|
||||
"matcher" : "path",
|
||||
"argument" : "replicationSet.status",
|
||||
"state" : "retry",
|
||||
"expected" : "DELETING"
|
||||
}, {
|
||||
"matcher" : "path",
|
||||
"argument" : "replicationSet.status",
|
||||
"state" : "failure",
|
||||
"expected" : "FAILED"
|
||||
} ]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user