1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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"
} ]
}
}
}
|