-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated API models and rebuilt service gems.
- Loading branch information
1 parent
8a667ab
commit 066d4e0
Showing
57 changed files
with
4,453 additions
and
1,531 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
@@ -1,47 +1,41 @@ | ||
{ | ||
"version": 2, | ||
"waiters": { | ||
"DistributionDeployed": { | ||
"delay": 60, | ||
"operation": "GetDistribution", | ||
"maxAttempts": 35, | ||
"description": "Wait until a distribution is deployed.", | ||
"acceptors": [ | ||
{ | ||
"expected": "Deployed", | ||
"matcher": "path", | ||
"state": "success", | ||
"argument": "Distribution.Status" | ||
} | ||
] | ||
"version" : 2, | ||
"waiters" : { | ||
"DistributionDeployed" : { | ||
"description" : "Wait until a distribution is deployed.", | ||
"delay" : 60, | ||
"maxAttempts" : 35, | ||
"operation" : "GetDistribution", | ||
"acceptors" : [ { | ||
"matcher" : "path", | ||
"argument" : "Distribution.Status", | ||
"state" : "success", | ||
"expected" : "Deployed" | ||
} ] | ||
}, | ||
"InvalidationCompleted": { | ||
"delay": 20, | ||
"operation": "GetInvalidation", | ||
"maxAttempts": 30, | ||
"description": "Wait until an invalidation has completed.", | ||
"acceptors": [ | ||
{ | ||
"expected": "Completed", | ||
"matcher": "path", | ||
"state": "success", | ||
"argument": "Invalidation.Status" | ||
} | ||
] | ||
"InvalidationCompleted" : { | ||
"description" : "Wait until an invalidation has completed.", | ||
"delay" : 20, | ||
"maxAttempts" : 30, | ||
"operation" : "GetInvalidation", | ||
"acceptors" : [ { | ||
"matcher" : "path", | ||
"argument" : "Invalidation.Status", | ||
"state" : "success", | ||
"expected" : "Completed" | ||
} ] | ||
}, | ||
"StreamingDistributionDeployed": { | ||
"delay": 60, | ||
"operation": "GetStreamingDistribution", | ||
"maxAttempts": 25, | ||
"description": "Wait until a streaming distribution is deployed.", | ||
"acceptors": [ | ||
{ | ||
"expected": "Deployed", | ||
"matcher": "path", | ||
"state": "success", | ||
"argument": "StreamingDistribution.Status" | ||
} | ||
] | ||
"StreamingDistributionDeployed" : { | ||
"description" : "Wait until a streaming distribution is deployed.", | ||
"delay" : 60, | ||
"maxAttempts" : 25, | ||
"operation" : "GetStreamingDistribution", | ||
"acceptors" : [ { | ||
"matcher" : "path", | ||
"argument" : "StreamingDistribution.Status", | ||
"state" : "success", | ||
"expected" : "Deployed" | ||
} ] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.