aws-sdk-core 2.0.16 → 2.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/apis/CloudFront.waiters2.json +47 -0
- data/apis/DynamoDB.waiters2.json +35 -0
- data/apis/EC2.waiters2.json +341 -0
- data/apis/ElasticTranscoder.waiters2.json +30 -0
- data/apis/Glacier.resources.json +6 -1
- data/apis/IAM.resources.json +60 -15
- data/apis/Kinesis.waiters2.json +18 -0
- data/apis/RDS.waiters2.json +97 -0
- data/apis/Redshift.waiters2.json +97 -0
- data/apis/S3.waiters2.json +63 -0
- data/apis/SES.waiters2.json +18 -0
- data/apis/SQS.resources.json +28 -10
- data/lib/aws-sdk-core/json/builder.rb +1 -1
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +122 -113
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a8c98c6fa8e29a7fb238917aacdf3b62dc3e225
|
|
4
|
+
data.tar.gz: 12fa5819f30dc51e98db791fe9139781e9c4a1e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 589b0dad9a72f622b3a55616ffb54f1996d9b6af23ea28f79716f6a10fdd8df4e6576af5e1df47608194dde2aa63e62ca055f4792183140b8d94170aa32b7a43
|
|
7
|
+
data.tar.gz: 465fac2e2fd3ae08fb51bf6f09d5034c98c117b0ecc48b9a328d8e78b3e9f967b33177cd7889571b6cf565f4f6cfed75cdb0e6958b834b3a15ee965a5defd3e5
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"waiters": {
|
|
4
|
+
"DistributionDeployed": {
|
|
5
|
+
"delay": 60,
|
|
6
|
+
"operation": "GetDistribution",
|
|
7
|
+
"maxAttempts": 25,
|
|
8
|
+
"description": "Wait until a distribution is deployed.",
|
|
9
|
+
"acceptors": [
|
|
10
|
+
{
|
|
11
|
+
"expected": "Deployed",
|
|
12
|
+
"matcher": "path",
|
|
13
|
+
"state": "success",
|
|
14
|
+
"argument": "Status"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"InvalidationCompleted": {
|
|
19
|
+
"delay": 20,
|
|
20
|
+
"operation": "GetInvalidation",
|
|
21
|
+
"maxAttempts": 30,
|
|
22
|
+
"description": "Wait until an invalidation has completed.",
|
|
23
|
+
"acceptors": [
|
|
24
|
+
{
|
|
25
|
+
"expected": "Completed",
|
|
26
|
+
"matcher": "path",
|
|
27
|
+
"state": "success",
|
|
28
|
+
"argument": "Status"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"StreamingDistributionDeployed": {
|
|
33
|
+
"delay": 60,
|
|
34
|
+
"operation": "GetStreamingDistribution",
|
|
35
|
+
"maxAttempts": 25,
|
|
36
|
+
"description": "Wait until a streaming distribution is deployed.",
|
|
37
|
+
"acceptors": [
|
|
38
|
+
{
|
|
39
|
+
"expected": "Deployed",
|
|
40
|
+
"matcher": "path",
|
|
41
|
+
"state": "success",
|
|
42
|
+
"argument": "Status"
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"waiters": {
|
|
4
|
+
"TableExists": {
|
|
5
|
+
"delay": 20,
|
|
6
|
+
"operation": "DescribeTable",
|
|
7
|
+
"maxAttempts": 25,
|
|
8
|
+
"acceptors": [
|
|
9
|
+
{
|
|
10
|
+
"expected": "ACTIVE",
|
|
11
|
+
"matcher": "path",
|
|
12
|
+
"state": "success",
|
|
13
|
+
"argument": "Table.TableStatus"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"expected": "ResourceNotFoundException",
|
|
17
|
+
"matcher": "error",
|
|
18
|
+
"state": "retry"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"TableNotExists": {
|
|
23
|
+
"delay": 20,
|
|
24
|
+
"operation": "DescribeTable",
|
|
25
|
+
"maxAttempts": 25,
|
|
26
|
+
"acceptors": [
|
|
27
|
+
{
|
|
28
|
+
"expected": "ResourceNotFoundException",
|
|
29
|
+
"matcher": "error",
|
|
30
|
+
"state": "success"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"waiters": {
|
|
4
|
+
"BundleTaskComplete": {
|
|
5
|
+
"delay": 15,
|
|
6
|
+
"operation": "DescribeBundleTasks",
|
|
7
|
+
"maxAttempts": 40,
|
|
8
|
+
"acceptors": [
|
|
9
|
+
{
|
|
10
|
+
"expected": "complete",
|
|
11
|
+
"matcher": "pathAll",
|
|
12
|
+
"state": "success",
|
|
13
|
+
"argument": "BundleTasks[].State"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"expected": "failed",
|
|
17
|
+
"matcher": "pathAny",
|
|
18
|
+
"state": "failure",
|
|
19
|
+
"argument": "BundleTasks[].State"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"ConversionTaskCancelled": {
|
|
24
|
+
"delay": 15,
|
|
25
|
+
"operation": "DescribeConversionTasks",
|
|
26
|
+
"maxAttempts": 40,
|
|
27
|
+
"acceptors": [
|
|
28
|
+
{
|
|
29
|
+
"expected": "cancelled",
|
|
30
|
+
"matcher": "pathAll",
|
|
31
|
+
"state": "success",
|
|
32
|
+
"argument": "ConversionTasks[].State"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"ConversionTaskCompleted": {
|
|
37
|
+
"delay": 15,
|
|
38
|
+
"operation": "DescribeConversionTasks",
|
|
39
|
+
"maxAttempts": 40,
|
|
40
|
+
"acceptors": [
|
|
41
|
+
{
|
|
42
|
+
"expected": "completed",
|
|
43
|
+
"matcher": "pathAll",
|
|
44
|
+
"state": "success",
|
|
45
|
+
"argument": "ConversionTasks[].State"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"expected": "cancelled",
|
|
49
|
+
"matcher": "pathAny",
|
|
50
|
+
"state": "failure",
|
|
51
|
+
"argument": "ConversionTasks[].State"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"expected": "cancelling",
|
|
55
|
+
"matcher": "pathAny",
|
|
56
|
+
"state": "failure",
|
|
57
|
+
"argument": "ConversionTasks[].State"
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"ConversionTaskDeleted": {
|
|
62
|
+
"delay": 15,
|
|
63
|
+
"operation": "DescribeConversionTasks",
|
|
64
|
+
"maxAttempts": 40,
|
|
65
|
+
"acceptors": [
|
|
66
|
+
{
|
|
67
|
+
"expected": "deleted",
|
|
68
|
+
"matcher": "pathAll",
|
|
69
|
+
"state": "success",
|
|
70
|
+
"argument": "ConversionTasks[].State"
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
"CustomerGatewayAvailable": {
|
|
75
|
+
"delay": 15,
|
|
76
|
+
"operation": "DescribeCustomerGateways",
|
|
77
|
+
"maxAttempts": 40,
|
|
78
|
+
"acceptors": [
|
|
79
|
+
{
|
|
80
|
+
"expected": "available",
|
|
81
|
+
"matcher": "pathAll",
|
|
82
|
+
"state": "success",
|
|
83
|
+
"argument": "CustomerGateways[].State"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"expected": "deleted",
|
|
87
|
+
"matcher": "pathAny",
|
|
88
|
+
"state": "failure",
|
|
89
|
+
"argument": "CustomerGateways[].State"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"expected": "deleting",
|
|
93
|
+
"matcher": "pathAny",
|
|
94
|
+
"state": "failure",
|
|
95
|
+
"argument": "CustomerGateways[].State"
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
"ExportTaskCancelled": {
|
|
100
|
+
"delay": 15,
|
|
101
|
+
"operation": "DescribeExportTasks",
|
|
102
|
+
"maxAttempts": 40,
|
|
103
|
+
"acceptors": [
|
|
104
|
+
{
|
|
105
|
+
"expected": "cancelled",
|
|
106
|
+
"matcher": "pathAll",
|
|
107
|
+
"state": "success",
|
|
108
|
+
"argument": "ExportTasks[].State"
|
|
109
|
+
}
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
"ExportTaskCompleted": {
|
|
113
|
+
"delay": 15,
|
|
114
|
+
"operation": "DescribeExportTasks",
|
|
115
|
+
"maxAttempts": 40,
|
|
116
|
+
"acceptors": [
|
|
117
|
+
{
|
|
118
|
+
"expected": "completed",
|
|
119
|
+
"matcher": "pathAll",
|
|
120
|
+
"state": "success",
|
|
121
|
+
"argument": "ExportTasks[].State"
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
"InstanceRunning": {
|
|
126
|
+
"delay": 15,
|
|
127
|
+
"operation": "DescribeInstances",
|
|
128
|
+
"maxAttempts": 40,
|
|
129
|
+
"acceptors": [
|
|
130
|
+
{
|
|
131
|
+
"expected": "running",
|
|
132
|
+
"matcher": "pathAll",
|
|
133
|
+
"state": "success",
|
|
134
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"expected": "shutting-down",
|
|
138
|
+
"matcher": "pathAny",
|
|
139
|
+
"state": "failure",
|
|
140
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"expected": "terminated",
|
|
144
|
+
"matcher": "pathAny",
|
|
145
|
+
"state": "failure",
|
|
146
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"expected": "stopping",
|
|
150
|
+
"matcher": "pathAny",
|
|
151
|
+
"state": "failure",
|
|
152
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"InstanceStopped": {
|
|
157
|
+
"delay": 15,
|
|
158
|
+
"operation": "DescribeInstances",
|
|
159
|
+
"maxAttempts": 40,
|
|
160
|
+
"acceptors": [
|
|
161
|
+
{
|
|
162
|
+
"expected": "stopped",
|
|
163
|
+
"matcher": "pathAll",
|
|
164
|
+
"state": "success",
|
|
165
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"expected": "pending",
|
|
169
|
+
"matcher": "pathAny",
|
|
170
|
+
"state": "failure",
|
|
171
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"expected": "terminated",
|
|
175
|
+
"matcher": "pathAny",
|
|
176
|
+
"state": "failure",
|
|
177
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
"InstanceTerminated": {
|
|
182
|
+
"delay": 15,
|
|
183
|
+
"operation": "DescribeInstances",
|
|
184
|
+
"maxAttempts": 40,
|
|
185
|
+
"acceptors": [
|
|
186
|
+
{
|
|
187
|
+
"expected": "terminated",
|
|
188
|
+
"matcher": "pathAll",
|
|
189
|
+
"state": "success",
|
|
190
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"expected": "pending",
|
|
194
|
+
"matcher": "pathAny",
|
|
195
|
+
"state": "failure",
|
|
196
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"expected": "stopping",
|
|
200
|
+
"matcher": "pathAny",
|
|
201
|
+
"state": "failure",
|
|
202
|
+
"argument": "Reservations[].Instances[].State.Name"
|
|
203
|
+
}
|
|
204
|
+
]
|
|
205
|
+
},
|
|
206
|
+
"SnapshotCompleted": {
|
|
207
|
+
"delay": 15,
|
|
208
|
+
"operation": "DescribeSnapshots",
|
|
209
|
+
"maxAttempts": 40,
|
|
210
|
+
"acceptors": [
|
|
211
|
+
{
|
|
212
|
+
"expected": "completed",
|
|
213
|
+
"matcher": "pathAll",
|
|
214
|
+
"state": "success",
|
|
215
|
+
"argument": "Snapshots[].State"
|
|
216
|
+
}
|
|
217
|
+
]
|
|
218
|
+
},
|
|
219
|
+
"SubnetAvailable": {
|
|
220
|
+
"delay": 15,
|
|
221
|
+
"operation": "DescribeSubnets",
|
|
222
|
+
"maxAttempts": 40,
|
|
223
|
+
"acceptors": [
|
|
224
|
+
{
|
|
225
|
+
"expected": "available",
|
|
226
|
+
"matcher": "pathAll",
|
|
227
|
+
"state": "success",
|
|
228
|
+
"argument": "Subnets[].State"
|
|
229
|
+
}
|
|
230
|
+
]
|
|
231
|
+
},
|
|
232
|
+
"VolumeAvailable": {
|
|
233
|
+
"delay": 15,
|
|
234
|
+
"operation": "DescribeVolumes",
|
|
235
|
+
"maxAttempts": 40,
|
|
236
|
+
"acceptors": [
|
|
237
|
+
{
|
|
238
|
+
"expected": "available",
|
|
239
|
+
"matcher": "pathAll",
|
|
240
|
+
"state": "success",
|
|
241
|
+
"argument": "Volumes[].State"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"expected": "deleted",
|
|
245
|
+
"matcher": "pathAny",
|
|
246
|
+
"state": "failure",
|
|
247
|
+
"argument": "Volumes[].State"
|
|
248
|
+
}
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
"VolumeDeleted": {
|
|
252
|
+
"delay": 15,
|
|
253
|
+
"operation": "DescribeVolumes",
|
|
254
|
+
"maxAttempts": 40,
|
|
255
|
+
"acceptors": [
|
|
256
|
+
{
|
|
257
|
+
"expected": "deleted",
|
|
258
|
+
"matcher": "pathAll",
|
|
259
|
+
"state": "success",
|
|
260
|
+
"argument": "Volumes[].State"
|
|
261
|
+
}
|
|
262
|
+
]
|
|
263
|
+
},
|
|
264
|
+
"VolumeInUse": {
|
|
265
|
+
"delay": 15,
|
|
266
|
+
"operation": "DescribeVolumes",
|
|
267
|
+
"maxAttempts": 40,
|
|
268
|
+
"acceptors": [
|
|
269
|
+
{
|
|
270
|
+
"expected": "in-use",
|
|
271
|
+
"matcher": "pathAll",
|
|
272
|
+
"state": "success",
|
|
273
|
+
"argument": "Volumes[].State"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"expected": "deleted",
|
|
277
|
+
"matcher": "pathAny",
|
|
278
|
+
"state": "failure",
|
|
279
|
+
"argument": "Volumes[].State"
|
|
280
|
+
}
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
"VpcAvailable": {
|
|
284
|
+
"delay": 15,
|
|
285
|
+
"operation": "DescribeVpcs",
|
|
286
|
+
"maxAttempts": 40,
|
|
287
|
+
"acceptors": [
|
|
288
|
+
{
|
|
289
|
+
"expected": "available",
|
|
290
|
+
"matcher": "pathAll",
|
|
291
|
+
"state": "success",
|
|
292
|
+
"argument": "Vpcs[].State"
|
|
293
|
+
}
|
|
294
|
+
]
|
|
295
|
+
},
|
|
296
|
+
"VpnConnectionAvailable": {
|
|
297
|
+
"delay": 15,
|
|
298
|
+
"operation": "DescribeVpnConnections",
|
|
299
|
+
"maxAttempts": 40,
|
|
300
|
+
"acceptors": [
|
|
301
|
+
{
|
|
302
|
+
"expected": "available",
|
|
303
|
+
"matcher": "pathAll",
|
|
304
|
+
"state": "success",
|
|
305
|
+
"argument": "VpnConnections[].State"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"expected": "deleting",
|
|
309
|
+
"matcher": "pathAny",
|
|
310
|
+
"state": "failure",
|
|
311
|
+
"argument": "VpnConnections[].State"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"expected": "deleted",
|
|
315
|
+
"matcher": "pathAny",
|
|
316
|
+
"state": "failure",
|
|
317
|
+
"argument": "VpnConnections[].State"
|
|
318
|
+
}
|
|
319
|
+
]
|
|
320
|
+
},
|
|
321
|
+
"VpnConnectionDeleted": {
|
|
322
|
+
"delay": 15,
|
|
323
|
+
"operation": "DescribeVpnConnections",
|
|
324
|
+
"maxAttempts": 40,
|
|
325
|
+
"acceptors": [
|
|
326
|
+
{
|
|
327
|
+
"expected": "deleted",
|
|
328
|
+
"matcher": "pathAll",
|
|
329
|
+
"state": "success",
|
|
330
|
+
"argument": "VpnConnections[].State"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"expected": "pending",
|
|
334
|
+
"matcher": "pathAny",
|
|
335
|
+
"state": "failure",
|
|
336
|
+
"argument": "VpnConnections[].State"
|
|
337
|
+
}
|
|
338
|
+
]
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"waiters": {
|
|
4
|
+
"JobComplete": {
|
|
5
|
+
"delay": 30,
|
|
6
|
+
"operation": "ReadJob",
|
|
7
|
+
"maxAttempts": 120,
|
|
8
|
+
"acceptors": [
|
|
9
|
+
{
|
|
10
|
+
"expected": "Complete",
|
|
11
|
+
"matcher": "path",
|
|
12
|
+
"state": "success",
|
|
13
|
+
"argument": "Job.Status"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"expected": "Canceled",
|
|
17
|
+
"matcher": "path",
|
|
18
|
+
"state": "failure",
|
|
19
|
+
"argument": "Job.Status"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"expected": "Error",
|
|
23
|
+
"matcher": "path",
|
|
24
|
+
"state": "failure",
|
|
25
|
+
"argument": "Job.Status"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|