-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* DataSourceAvailable: Wait until JMESPath query Results[].Status returns COMPLETED for all elements when polling with describe-data-sources. * MLModelAvailable: Wait until JMESPath query Results[].Status returns COMPLETED for all elements when polling with describe-ml-models. * EvaluationAvailable: Wait until JMESPath query Results[].Status returns COMPLETED for all elements when polling with describe-evaluations. * BatchPredictionAvailable: Wait until JMESPath query Results[].Status returns COMPLETED for all elements when polling with describe-batch-predictions.
- Loading branch information
Showing
1 changed file
with
105 additions
and
0 deletions.
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
botocore/data/machinelearning/2014-12-12/waiters-2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"version": 2, | ||
"waiters": { | ||
"DataSourceAvailable": { | ||
"delay": 30, | ||
"operation": "DescribeDataSources", | ||
"maxAttempts": 60, | ||
"acceptors": [ | ||
{ | ||
"expected": "COMPLETED", | ||
"matcher": "pathAll", | ||
"state": "success", | ||
"argument": "Results[].Status" | ||
}, | ||
{ | ||
"expected": "FAILED", | ||
"matcher": "pathAny", | ||
"state": "success", | ||
"argument": "Results[].Status" | ||
}, | ||
{ | ||
"expected": "INPROGRESS", | ||
"matcher": "pathAny", | ||
"state": "retry", | ||
"argument": "Results[].Status" | ||
} | ||
] | ||
}, | ||
"MLModelAvailable": { | ||
"delay": 30, | ||
"operation": "DescribeMLModels", | ||
"maxAttempts": 60, | ||
"acceptors": [ | ||
{ | ||
"expected": "COMPLETED", | ||
"matcher": "pathAll", | ||
"state": "success", | ||
"argument": "Results[].Status" | ||
}, | ||
{ | ||
"expected": "FAILED", | ||
"matcher": "pathAny", | ||
"state": "success", | ||
"argument": "Results[].Status" | ||
}, | ||
{ | ||
"expected": "INPROGRESS", | ||
"matcher": "pathAny", | ||
"state": "retry", | ||
"argument": "Results[].Status" | ||
} | ||
] | ||
}, | ||
"EvaluationAvailable": { | ||
"delay": 30, | ||
"operation": "DescribeEvaluations", | ||
"maxAttempts": 60, | ||
"acceptors": [ | ||
{ | ||
"expected": "COMPLETED", | ||
"matcher": "pathAll", | ||
"state": "success", | ||
"argument": "Results[].Status" | ||
}, | ||
{ | ||
"expected": "FAILED", | ||
"matcher": "pathAny", | ||
"state": "success", | ||
"argument": "Results[].Status" | ||
}, | ||
{ | ||
"expected": "INPROGRESS", | ||
"matcher": "pathAny", | ||
"state": "retry", | ||
"argument": "Results[].Status" | ||
} | ||
] | ||
}, | ||
"BatchPredictionAvailable": { | ||
"delay": 30, | ||
"operation": "DescribeBatchPredictions", | ||
"maxAttempts": 60, | ||
"acceptors": [ | ||
{ | ||
"expected": "COMPLETED", | ||
"matcher": "pathAll", | ||
"state": "success", | ||
"argument": "Results[].Status" | ||
}, | ||
{ | ||
"expected": "FAILED", | ||
"matcher": "pathAny", | ||
"state": "success", | ||
"argument": "Results[].Status" | ||
}, | ||
{ | ||
"expected": "INPROGRESS", | ||
"matcher": "pathAny", | ||
"state": "retry", | ||
"argument": "Results[].Status" | ||
} | ||
] | ||
} | ||
} | ||
} |