aws-sdk-core 2.0.42 → 2.0.43

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,458 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "InstanceExists": {
5
+ "delay": 5,
6
+ "maxAttempts": 40,
7
+ "operation": "DescribeInstances",
8
+ "acceptors": [
9
+ {
10
+ "matcher": "status",
11
+ "expected": 200,
12
+ "state": "success"
13
+ },
14
+ {
15
+ "matcher": "error",
16
+ "expected": "InvalidInstanceIDNotFound",
17
+ "state": "retry"
18
+ }
19
+ ]
20
+ },
21
+ "BundleTaskComplete": {
22
+ "delay": 15,
23
+ "operation": "DescribeBundleTasks",
24
+ "maxAttempts": 40,
25
+ "acceptors": [
26
+ {
27
+ "expected": "complete",
28
+ "matcher": "pathAll",
29
+ "state": "success",
30
+ "argument": "BundleTasks[].State"
31
+ },
32
+ {
33
+ "expected": "failed",
34
+ "matcher": "pathAny",
35
+ "state": "failure",
36
+ "argument": "BundleTasks[].State"
37
+ }
38
+ ]
39
+ },
40
+ "ConversionTaskCancelled": {
41
+ "delay": 15,
42
+ "operation": "DescribeConversionTasks",
43
+ "maxAttempts": 40,
44
+ "acceptors": [
45
+ {
46
+ "expected": "cancelled",
47
+ "matcher": "pathAll",
48
+ "state": "success",
49
+ "argument": "ConversionTasks[].State"
50
+ }
51
+ ]
52
+ },
53
+ "ConversionTaskCompleted": {
54
+ "delay": 15,
55
+ "operation": "DescribeConversionTasks",
56
+ "maxAttempts": 40,
57
+ "acceptors": [
58
+ {
59
+ "expected": "completed",
60
+ "matcher": "pathAll",
61
+ "state": "success",
62
+ "argument": "ConversionTasks[].State"
63
+ },
64
+ {
65
+ "expected": "cancelled",
66
+ "matcher": "pathAny",
67
+ "state": "failure",
68
+ "argument": "ConversionTasks[].State"
69
+ },
70
+ {
71
+ "expected": "cancelling",
72
+ "matcher": "pathAny",
73
+ "state": "failure",
74
+ "argument": "ConversionTasks[].State"
75
+ }
76
+ ]
77
+ },
78
+ "ConversionTaskDeleted": {
79
+ "delay": 15,
80
+ "operation": "DescribeConversionTasks",
81
+ "maxAttempts": 40,
82
+ "acceptors": [
83
+ {
84
+ "expected": "deleted",
85
+ "matcher": "pathAll",
86
+ "state": "success",
87
+ "argument": "ConversionTasks[].State"
88
+ }
89
+ ]
90
+ },
91
+ "CustomerGatewayAvailable": {
92
+ "delay": 15,
93
+ "operation": "DescribeCustomerGateways",
94
+ "maxAttempts": 40,
95
+ "acceptors": [
96
+ {
97
+ "expected": "available",
98
+ "matcher": "pathAll",
99
+ "state": "success",
100
+ "argument": "CustomerGateways[].State"
101
+ },
102
+ {
103
+ "expected": "deleted",
104
+ "matcher": "pathAny",
105
+ "state": "failure",
106
+ "argument": "CustomerGateways[].State"
107
+ },
108
+ {
109
+ "expected": "deleting",
110
+ "matcher": "pathAny",
111
+ "state": "failure",
112
+ "argument": "CustomerGateways[].State"
113
+ }
114
+ ]
115
+ },
116
+ "ExportTaskCancelled": {
117
+ "delay": 15,
118
+ "operation": "DescribeExportTasks",
119
+ "maxAttempts": 40,
120
+ "acceptors": [
121
+ {
122
+ "expected": "cancelled",
123
+ "matcher": "pathAll",
124
+ "state": "success",
125
+ "argument": "ExportTasks[].State"
126
+ }
127
+ ]
128
+ },
129
+ "ExportTaskCompleted": {
130
+ "delay": 15,
131
+ "operation": "DescribeExportTasks",
132
+ "maxAttempts": 40,
133
+ "acceptors": [
134
+ {
135
+ "expected": "completed",
136
+ "matcher": "pathAll",
137
+ "state": "success",
138
+ "argument": "ExportTasks[].State"
139
+ }
140
+ ]
141
+ },
142
+ "ImageAvailable": {
143
+ "operation": "DescribeImages",
144
+ "maxAttempts": 40,
145
+ "delay": 15,
146
+ "acceptors": [
147
+ {
148
+ "state": "success",
149
+ "matcher": "pathAll",
150
+ "argument": "Images[].State",
151
+ "expected": "available"
152
+ },
153
+ {
154
+ "state": "failure",
155
+ "matcher": "pathAny",
156
+ "argument": "Images[].State",
157
+ "expected": "failed"
158
+ }
159
+ ]
160
+ },
161
+ "InstanceRunning": {
162
+ "delay": 15,
163
+ "operation": "DescribeInstances",
164
+ "maxAttempts": 40,
165
+ "acceptors": [
166
+ {
167
+ "expected": "running",
168
+ "matcher": "pathAll",
169
+ "state": "success",
170
+ "argument": "Reservations[].Instances[].State.Name"
171
+ },
172
+ {
173
+ "expected": "shutting-down",
174
+ "matcher": "pathAny",
175
+ "state": "failure",
176
+ "argument": "Reservations[].Instances[].State.Name"
177
+ },
178
+ {
179
+ "expected": "terminated",
180
+ "matcher": "pathAny",
181
+ "state": "failure",
182
+ "argument": "Reservations[].Instances[].State.Name"
183
+ },
184
+ {
185
+ "expected": "stopping",
186
+ "matcher": "pathAny",
187
+ "state": "failure",
188
+ "argument": "Reservations[].Instances[].State.Name"
189
+ }
190
+ ]
191
+ },
192
+ "InstanceStatusOk": {
193
+ "operation": "DescribeInstanceStatus",
194
+ "maxAttempts": 40,
195
+ "delay": 15,
196
+ "acceptors": [
197
+ {
198
+ "state": "success",
199
+ "matcher": "pathAll",
200
+ "argument": "InstanceStatuses[].InstanceStatus.Status",
201
+ "expected": "ok"
202
+ }
203
+ ]
204
+ },
205
+ "InstanceStopped": {
206
+ "delay": 15,
207
+ "operation": "DescribeInstances",
208
+ "maxAttempts": 40,
209
+ "acceptors": [
210
+ {
211
+ "expected": "stopped",
212
+ "matcher": "pathAll",
213
+ "state": "success",
214
+ "argument": "Reservations[].Instances[].State.Name"
215
+ },
216
+ {
217
+ "expected": "pending",
218
+ "matcher": "pathAny",
219
+ "state": "failure",
220
+ "argument": "Reservations[].Instances[].State.Name"
221
+ },
222
+ {
223
+ "expected": "terminated",
224
+ "matcher": "pathAny",
225
+ "state": "failure",
226
+ "argument": "Reservations[].Instances[].State.Name"
227
+ }
228
+ ]
229
+ },
230
+ "InstanceTerminated": {
231
+ "delay": 15,
232
+ "operation": "DescribeInstances",
233
+ "maxAttempts": 40,
234
+ "acceptors": [
235
+ {
236
+ "expected": "terminated",
237
+ "matcher": "pathAll",
238
+ "state": "success",
239
+ "argument": "Reservations[].Instances[].State.Name"
240
+ },
241
+ {
242
+ "expected": "pending",
243
+ "matcher": "pathAny",
244
+ "state": "failure",
245
+ "argument": "Reservations[].Instances[].State.Name"
246
+ },
247
+ {
248
+ "expected": "stopping",
249
+ "matcher": "pathAny",
250
+ "state": "failure",
251
+ "argument": "Reservations[].Instances[].State.Name"
252
+ }
253
+ ]
254
+ },
255
+ "PasswordDataAvailable": {
256
+ "operation": "GetPasswordData",
257
+ "maxAttempts": 40,
258
+ "delay": 15,
259
+ "acceptors": [
260
+ {
261
+ "state": "success",
262
+ "matcher": "path",
263
+ "argument": "length(PasswordData) > `0`",
264
+ "expected": true
265
+ }
266
+ ]
267
+ },
268
+ "SnapshotCompleted": {
269
+ "delay": 15,
270
+ "operation": "DescribeSnapshots",
271
+ "maxAttempts": 40,
272
+ "acceptors": [
273
+ {
274
+ "expected": "completed",
275
+ "matcher": "pathAll",
276
+ "state": "success",
277
+ "argument": "Snapshots[].State"
278
+ }
279
+ ]
280
+ },
281
+ "SpotInstanceRequestFulfilled": {
282
+ "operation": "DescribeSpotInstanceRequests",
283
+ "maxAttempts": 40,
284
+ "delay": 15,
285
+ "acceptors": [
286
+ {
287
+ "state": "success",
288
+ "matcher": "pathAll",
289
+ "argument": "SpotInstanceRequests[].Status.Code",
290
+ "expected": "fulfilled"
291
+ },
292
+ {
293
+ "state": "failure",
294
+ "matcher": "pathAny",
295
+ "argument": "SpotInstanceRequests[].Status.Code",
296
+ "expected": "schedule-expired"
297
+ },
298
+ {
299
+ "state": "failure",
300
+ "matcher": "pathAny",
301
+ "argument": "SpotInstanceRequests[].Status.Code",
302
+ "expected": "canceled-before-fulfillment"
303
+ },
304
+ {
305
+ "state": "failure",
306
+ "matcher": "pathAny",
307
+ "argument": "SpotInstanceRequests[].Status.Code",
308
+ "expected": "bad-parameters"
309
+ },
310
+ {
311
+ "state": "failure",
312
+ "matcher": "pathAny",
313
+ "argument": "SpotInstanceRequests[].Status.Code",
314
+ "expected": "system-error"
315
+ }
316
+ ]
317
+ },
318
+ "SubnetAvailable": {
319
+ "delay": 15,
320
+ "operation": "DescribeSubnets",
321
+ "maxAttempts": 40,
322
+ "acceptors": [
323
+ {
324
+ "expected": "available",
325
+ "matcher": "pathAll",
326
+ "state": "success",
327
+ "argument": "Subnets[].State"
328
+ }
329
+ ]
330
+ },
331
+ "SystemStatusOk": {
332
+ "operation": "DescribeInstanceStatus",
333
+ "maxAttempts": 40,
334
+ "delay": 15,
335
+ "acceptors": [
336
+ {
337
+ "state": "success",
338
+ "matcher": "pathAll",
339
+ "argument": "InstanceStatuses[].SystemStatus.Status",
340
+ "expected": "ok"
341
+ }
342
+ ]
343
+ },
344
+ "VolumeAvailable": {
345
+ "delay": 15,
346
+ "operation": "DescribeVolumes",
347
+ "maxAttempts": 40,
348
+ "acceptors": [
349
+ {
350
+ "expected": "available",
351
+ "matcher": "pathAll",
352
+ "state": "success",
353
+ "argument": "Volumes[].State"
354
+ },
355
+ {
356
+ "expected": "deleted",
357
+ "matcher": "pathAny",
358
+ "state": "failure",
359
+ "argument": "Volumes[].State"
360
+ }
361
+ ]
362
+ },
363
+ "VolumeDeleted": {
364
+ "delay": 15,
365
+ "operation": "DescribeVolumes",
366
+ "maxAttempts": 40,
367
+ "acceptors": [
368
+ {
369
+ "expected": "deleted",
370
+ "matcher": "pathAll",
371
+ "state": "success",
372
+ "argument": "Volumes[].State"
373
+ },
374
+ {
375
+ "matcher": "error",
376
+ "expected": "InvalidVolumeNotFound",
377
+ "state": "success"
378
+ }
379
+ ]
380
+ },
381
+ "VolumeInUse": {
382
+ "delay": 15,
383
+ "operation": "DescribeVolumes",
384
+ "maxAttempts": 40,
385
+ "acceptors": [
386
+ {
387
+ "expected": "in-use",
388
+ "matcher": "pathAll",
389
+ "state": "success",
390
+ "argument": "Volumes[].State"
391
+ },
392
+ {
393
+ "expected": "deleted",
394
+ "matcher": "pathAny",
395
+ "state": "failure",
396
+ "argument": "Volumes[].State"
397
+ }
398
+ ]
399
+ },
400
+ "VpcAvailable": {
401
+ "delay": 15,
402
+ "operation": "DescribeVpcs",
403
+ "maxAttempts": 40,
404
+ "acceptors": [
405
+ {
406
+ "expected": "available",
407
+ "matcher": "pathAll",
408
+ "state": "success",
409
+ "argument": "Vpcs[].State"
410
+ }
411
+ ]
412
+ },
413
+ "VpnConnectionAvailable": {
414
+ "delay": 15,
415
+ "operation": "DescribeVpnConnections",
416
+ "maxAttempts": 40,
417
+ "acceptors": [
418
+ {
419
+ "expected": "available",
420
+ "matcher": "pathAll",
421
+ "state": "success",
422
+ "argument": "VpnConnections[].State"
423
+ },
424
+ {
425
+ "expected": "deleting",
426
+ "matcher": "pathAny",
427
+ "state": "failure",
428
+ "argument": "VpnConnections[].State"
429
+ },
430
+ {
431
+ "expected": "deleted",
432
+ "matcher": "pathAny",
433
+ "state": "failure",
434
+ "argument": "VpnConnections[].State"
435
+ }
436
+ ]
437
+ },
438
+ "VpnConnectionDeleted": {
439
+ "delay": 15,
440
+ "operation": "DescribeVpnConnections",
441
+ "maxAttempts": 40,
442
+ "acceptors": [
443
+ {
444
+ "expected": "deleted",
445
+ "matcher": "pathAll",
446
+ "state": "success",
447
+ "argument": "VpnConnections[].State"
448
+ },
449
+ {
450
+ "expected": "pending",
451
+ "matcher": "pathAny",
452
+ "state": "failure",
453
+ "argument": "VpnConnections[].State"
454
+ }
455
+ ]
456
+ }
457
+ }
458
+ }