Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-ruby-automation committed Jul 18, 2024
1 parent abbd2cd commit 0ea8ece
Show file tree
Hide file tree
Showing 365 changed files with 7,055 additions and 2,143 deletions.
136 changes: 74 additions & 62 deletions apis/acm-pca/2017-08-22/waiters-2.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,76 @@
{
"version" : 2,
"waiters" : {
"AuditReportCreated" : {
"description" : "Wait until a Audit Report is created",
"delay" : 3,
"maxAttempts" : 40,
"operation" : "DescribeCertificateAuthorityAuditReport",
"acceptors" : [ {
"matcher" : "path",
"argument" : "AuditReportStatus",
"state" : "success",
"expected" : "SUCCESS"
}, {
"matcher" : "path",
"argument" : "AuditReportStatus",
"state" : "failure",
"expected" : "FAILED"
}, {
"matcher" : "error",
"state" : "failure",
"expected" : "AccessDeniedException"
} ]
},
"CertificateAuthorityCSRCreated" : {
"description" : "Wait until a Certificate Authority CSR is created",
"delay" : 3,
"maxAttempts" : 40,
"operation" : "GetCertificateAuthorityCsr",
"acceptors" : [ {
"matcher" : "error",
"state" : "success",
"expected" : false
}, {
"matcher" : "error",
"state" : "retry",
"expected" : "RequestInProgressException"
}, {
"matcher" : "error",
"state" : "failure",
"expected" : "AccessDeniedException"
} ]
},
"CertificateIssued" : {
"description" : "Wait until a certificate is issued",
"delay" : 1,
"maxAttempts" : 120,
"operation" : "GetCertificate",
"acceptors" : [ {
"matcher" : "error",
"state" : "success",
"expected" : false
}, {
"matcher" : "error",
"state" : "retry",
"expected" : "RequestInProgressException"
}, {
"matcher" : "error",
"state" : "failure",
"expected" : "AccessDeniedException"
} ]
"version": 2,
"waiters": {
"CertificateAuthorityCSRCreated": {
"description": "Wait until a Certificate Authority CSR is created",
"operation": "GetCertificateAuthorityCsr",
"delay": 3,
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "status",
"expected": 200
},
{
"state": "retry",
"matcher": "error",
"expected": "RequestInProgressException"
},
{
"state": "failure",
"matcher": "error",
"expected": "AccessDeniedException"
}
]
},
"CertificateIssued": {
"description": "Wait until a certificate is issued",
"operation": "GetCertificate",
"delay": 1,
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "status",
"expected": 200
},
{
"state": "retry",
"matcher": "error",
"expected": "RequestInProgressException"
},
{
"state": "failure",
"matcher": "error",
"expected": "AccessDeniedException"
}
]
},
"AuditReportCreated": {
"description": "Wait until a Audit Report is created",
"operation": "DescribeCertificateAuthorityAuditReport",
"delay": 3,
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "AuditReportStatus",
"expected": "SUCCESS"
},
{
"state": "failure",
"matcher": "path",
"argument": "AuditReportStatus",
"expected": "FAILED"
},
{
"state": "failure",
"matcher": "error",
"expected": "AccessDeniedException"
}
]
}
}
}
}
}
Loading

0 comments on commit 0ea8ece

Please sign in to comment.