Add all dependency of go-getter

This commit is contained in:
Jingfang Liu
2018-08-15 11:34:38 -07:00
parent c9a8bc1121
commit ec95e5f97e
2894 changed files with 1945864 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}

View File

@@ -0,0 +1,37 @@
{
"pagination": {
"DescribeJobFlows": {
"result_key": "JobFlows"
},
"ListBootstrapActions": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "BootstrapActions"
},
"ListClusters": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "Clusters"
},
"ListInstanceFleets": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "InstanceFleets"
},
"ListInstanceGroups": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "InstanceGroups"
},
"ListInstances": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "Instances"
},
"ListSteps": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "Steps"
}
}
}

View File

@@ -0,0 +1,18 @@
{
"version": 1,
"defaultRegion": "us-west-2",
"testCases": [
{
"operationName": "ListClusters",
"input": {},
"errorExpectedFromService": false
},
{
"operationName": "DescribeCluster",
"input": {
"ClusterId": "fake_cluster"
},
"errorExpectedFromService": true
}
]
}

View File

@@ -0,0 +1,86 @@
{
"version": 2,
"waiters": {
"ClusterRunning": {
"delay": 30,
"operation": "DescribeCluster",
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "RUNNING"
},
{
"state": "success",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "WAITING"
},
{
"state": "failure",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "TERMINATING"
},
{
"state": "failure",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "TERMINATED"
},
{
"state": "failure",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "TERMINATED_WITH_ERRORS"
}
]
},
"StepComplete": {
"delay": 30,
"operation": "DescribeStep",
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "Step.Status.State",
"expected": "COMPLETED"
},
{
"state": "failure",
"matcher": "path",
"argument": "Step.Status.State",
"expected": "FAILED"
},
{
"state": "failure",
"matcher": "path",
"argument": "Step.Status.State",
"expected": "CANCELLED"
}
]
},
"ClusterTerminated": {
"delay": 30,
"operation": "DescribeCluster",
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "TERMINATED"
},
{
"state": "failure",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "TERMINATED_WITH_ERRORS"
}
]
}
}
}