aws-sdk 2.996.0 → 2.1000.0
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.
- package/CHANGELOG.md +24 -1
- package/README.md +1 -1
- package/apis/account-2021-02-01.examples.json +5 -0
- package/apis/account-2021-02-01.min.json +123 -0
- package/apis/account-2021-02-01.paginators.json +4 -0
- package/apis/amp-2020-08-01.min.json +442 -11
- package/apis/amp-2020-08-01.paginators.json +6 -0
- package/apis/amp-2020-08-01.waiters2.json +43 -0
- package/apis/apprunner-2020-05-15.min.json +10 -10
- package/apis/cloudcontrol-2021-09-30.examples.json +5 -0
- package/apis/cloudcontrol-2021-09-30.min.json +271 -0
- package/apis/cloudcontrol-2021-09-30.paginators.json +14 -0
- package/apis/cloudcontrol-2021-09-30.waiters2.json +31 -0
- package/apis/codebuild-2016-10-06.min.json +74 -73
- package/apis/dataexchange-2017-07-25.min.json +277 -38
- package/apis/dataexchange-2017-07-25.paginators.json +6 -0
- package/apis/kms-2014-11-01.examples.json +608 -8
- package/apis/lambda-2015-03-31.min.json +79 -42
- package/apis/macie2-2020-01-01.min.json +79 -67
- package/apis/metadata.json +6 -0
- package/apis/network-firewall-2020-11-12.min.json +65 -31
- package/apis/sesv2-2019-09-27.min.json +72 -70
- package/apis/ssm-2014-11-06.min.json +3 -0
- package/apis/synthetics-2017-10-11.min.json +39 -9
- package/apis/workmail-2017-10-01.min.json +139 -27
- package/apis/workmail-2017-10-01.paginators.json +5 -0
- package/apis/workspaces-2015-04-08.min.json +83 -50
- package/clients/account.d.ts +136 -0
- package/clients/account.js +18 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/amp.d.ts +387 -0
- package/clients/amp.js +1 -0
- package/clients/apprunner.d.ts +55 -54
- package/clients/cloudcontrol.d.ts +385 -0
- package/clients/cloudcontrol.js +19 -0
- package/clients/codebuild.d.ts +8 -3
- package/clients/dataexchange.d.ts +226 -2
- package/clients/imagebuilder.d.ts +27 -27
- package/clients/kms.d.ts +2 -2
- package/clients/lambda.d.ts +61 -22
- package/clients/macie2.d.ts +29 -12
- package/clients/networkfirewall.d.ts +61 -10
- package/clients/sesv2.d.ts +128 -108
- package/clients/ssm.d.ts +7 -3
- package/clients/synthetics.d.ts +40 -0
- package/clients/transfer.d.ts +12 -12
- package/clients/workmail.d.ts +173 -0
- package/clients/workspaces.d.ts +87 -40
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +307 -219
- package/dist/aws-sdk.js +165 -118
- package/dist/aws-sdk.min.js +53 -53
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -12,6 +12,92 @@
|
|
|
12
12
|
"uid": "amp-2020-08-01"
|
|
13
13
|
},
|
|
14
14
|
"operations": {
|
|
15
|
+
"CreateAlertManagerDefinition": {
|
|
16
|
+
"http": {
|
|
17
|
+
"requestUri": "/workspaces/{workspaceId}/alertmanager/definition",
|
|
18
|
+
"responseCode": 202
|
|
19
|
+
},
|
|
20
|
+
"input": {
|
|
21
|
+
"type": "structure",
|
|
22
|
+
"required": [
|
|
23
|
+
"data",
|
|
24
|
+
"workspaceId"
|
|
25
|
+
],
|
|
26
|
+
"members": {
|
|
27
|
+
"clientToken": {
|
|
28
|
+
"idempotencyToken": true
|
|
29
|
+
},
|
|
30
|
+
"data": {
|
|
31
|
+
"type": "blob"
|
|
32
|
+
},
|
|
33
|
+
"workspaceId": {
|
|
34
|
+
"location": "uri",
|
|
35
|
+
"locationName": "workspaceId"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"output": {
|
|
40
|
+
"type": "structure",
|
|
41
|
+
"required": [
|
|
42
|
+
"status"
|
|
43
|
+
],
|
|
44
|
+
"members": {
|
|
45
|
+
"status": {
|
|
46
|
+
"shape": "S6"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"idempotent": true
|
|
51
|
+
},
|
|
52
|
+
"CreateRuleGroupsNamespace": {
|
|
53
|
+
"http": {
|
|
54
|
+
"requestUri": "/workspaces/{workspaceId}/rulegroupsnamespaces",
|
|
55
|
+
"responseCode": 202
|
|
56
|
+
},
|
|
57
|
+
"input": {
|
|
58
|
+
"type": "structure",
|
|
59
|
+
"required": [
|
|
60
|
+
"data",
|
|
61
|
+
"name",
|
|
62
|
+
"workspaceId"
|
|
63
|
+
],
|
|
64
|
+
"members": {
|
|
65
|
+
"clientToken": {
|
|
66
|
+
"idempotencyToken": true
|
|
67
|
+
},
|
|
68
|
+
"data": {
|
|
69
|
+
"type": "blob"
|
|
70
|
+
},
|
|
71
|
+
"name": {},
|
|
72
|
+
"tags": {
|
|
73
|
+
"shape": "Sc"
|
|
74
|
+
},
|
|
75
|
+
"workspaceId": {
|
|
76
|
+
"location": "uri",
|
|
77
|
+
"locationName": "workspaceId"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"output": {
|
|
82
|
+
"type": "structure",
|
|
83
|
+
"required": [
|
|
84
|
+
"arn",
|
|
85
|
+
"name",
|
|
86
|
+
"status"
|
|
87
|
+
],
|
|
88
|
+
"members": {
|
|
89
|
+
"arn": {},
|
|
90
|
+
"name": {},
|
|
91
|
+
"status": {
|
|
92
|
+
"shape": "Sh"
|
|
93
|
+
},
|
|
94
|
+
"tags": {
|
|
95
|
+
"shape": "Sc"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"idempotent": true
|
|
100
|
+
},
|
|
15
101
|
"CreateWorkspace": {
|
|
16
102
|
"http": {
|
|
17
103
|
"requestUri": "/workspaces",
|
|
@@ -25,7 +111,7 @@
|
|
|
25
111
|
"idempotencyToken": true
|
|
26
112
|
},
|
|
27
113
|
"tags": {
|
|
28
|
-
"shape": "
|
|
114
|
+
"shape": "Sc"
|
|
29
115
|
}
|
|
30
116
|
}
|
|
31
117
|
},
|
|
@@ -39,16 +125,71 @@
|
|
|
39
125
|
"members": {
|
|
40
126
|
"arn": {},
|
|
41
127
|
"status": {
|
|
42
|
-
"shape": "
|
|
128
|
+
"shape": "Sn"
|
|
43
129
|
},
|
|
44
130
|
"tags": {
|
|
45
|
-
"shape": "
|
|
131
|
+
"shape": "Sc"
|
|
46
132
|
},
|
|
47
133
|
"workspaceId": {}
|
|
48
134
|
}
|
|
49
135
|
},
|
|
50
136
|
"idempotent": true
|
|
51
137
|
},
|
|
138
|
+
"DeleteAlertManagerDefinition": {
|
|
139
|
+
"http": {
|
|
140
|
+
"method": "DELETE",
|
|
141
|
+
"requestUri": "/workspaces/{workspaceId}/alertmanager/definition",
|
|
142
|
+
"responseCode": 202
|
|
143
|
+
},
|
|
144
|
+
"input": {
|
|
145
|
+
"type": "structure",
|
|
146
|
+
"required": [
|
|
147
|
+
"workspaceId"
|
|
148
|
+
],
|
|
149
|
+
"members": {
|
|
150
|
+
"clientToken": {
|
|
151
|
+
"idempotencyToken": true,
|
|
152
|
+
"location": "querystring",
|
|
153
|
+
"locationName": "clientToken"
|
|
154
|
+
},
|
|
155
|
+
"workspaceId": {
|
|
156
|
+
"location": "uri",
|
|
157
|
+
"locationName": "workspaceId"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"idempotent": true
|
|
162
|
+
},
|
|
163
|
+
"DeleteRuleGroupsNamespace": {
|
|
164
|
+
"http": {
|
|
165
|
+
"method": "DELETE",
|
|
166
|
+
"requestUri": "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}",
|
|
167
|
+
"responseCode": 202
|
|
168
|
+
},
|
|
169
|
+
"input": {
|
|
170
|
+
"type": "structure",
|
|
171
|
+
"required": [
|
|
172
|
+
"name",
|
|
173
|
+
"workspaceId"
|
|
174
|
+
],
|
|
175
|
+
"members": {
|
|
176
|
+
"clientToken": {
|
|
177
|
+
"idempotencyToken": true,
|
|
178
|
+
"location": "querystring",
|
|
179
|
+
"locationName": "clientToken"
|
|
180
|
+
},
|
|
181
|
+
"name": {
|
|
182
|
+
"location": "uri",
|
|
183
|
+
"locationName": "name"
|
|
184
|
+
},
|
|
185
|
+
"workspaceId": {
|
|
186
|
+
"location": "uri",
|
|
187
|
+
"locationName": "workspaceId"
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"idempotent": true
|
|
192
|
+
},
|
|
52
193
|
"DeleteWorkspace": {
|
|
53
194
|
"http": {
|
|
54
195
|
"method": "DELETE",
|
|
@@ -74,6 +215,118 @@
|
|
|
74
215
|
},
|
|
75
216
|
"idempotent": true
|
|
76
217
|
},
|
|
218
|
+
"DescribeAlertManagerDefinition": {
|
|
219
|
+
"http": {
|
|
220
|
+
"method": "GET",
|
|
221
|
+
"requestUri": "/workspaces/{workspaceId}/alertmanager/definition",
|
|
222
|
+
"responseCode": 200
|
|
223
|
+
},
|
|
224
|
+
"input": {
|
|
225
|
+
"type": "structure",
|
|
226
|
+
"required": [
|
|
227
|
+
"workspaceId"
|
|
228
|
+
],
|
|
229
|
+
"members": {
|
|
230
|
+
"workspaceId": {
|
|
231
|
+
"location": "uri",
|
|
232
|
+
"locationName": "workspaceId"
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"output": {
|
|
237
|
+
"type": "structure",
|
|
238
|
+
"required": [
|
|
239
|
+
"alertManagerDefinition"
|
|
240
|
+
],
|
|
241
|
+
"members": {
|
|
242
|
+
"alertManagerDefinition": {
|
|
243
|
+
"type": "structure",
|
|
244
|
+
"required": [
|
|
245
|
+
"createdAt",
|
|
246
|
+
"data",
|
|
247
|
+
"modifiedAt",
|
|
248
|
+
"status"
|
|
249
|
+
],
|
|
250
|
+
"members": {
|
|
251
|
+
"createdAt": {
|
|
252
|
+
"type": "timestamp"
|
|
253
|
+
},
|
|
254
|
+
"data": {
|
|
255
|
+
"type": "blob"
|
|
256
|
+
},
|
|
257
|
+
"modifiedAt": {
|
|
258
|
+
"type": "timestamp"
|
|
259
|
+
},
|
|
260
|
+
"status": {
|
|
261
|
+
"shape": "S6"
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"DescribeRuleGroupsNamespace": {
|
|
269
|
+
"http": {
|
|
270
|
+
"method": "GET",
|
|
271
|
+
"requestUri": "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}",
|
|
272
|
+
"responseCode": 200
|
|
273
|
+
},
|
|
274
|
+
"input": {
|
|
275
|
+
"type": "structure",
|
|
276
|
+
"required": [
|
|
277
|
+
"name",
|
|
278
|
+
"workspaceId"
|
|
279
|
+
],
|
|
280
|
+
"members": {
|
|
281
|
+
"name": {
|
|
282
|
+
"location": "uri",
|
|
283
|
+
"locationName": "name"
|
|
284
|
+
},
|
|
285
|
+
"workspaceId": {
|
|
286
|
+
"location": "uri",
|
|
287
|
+
"locationName": "workspaceId"
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"output": {
|
|
292
|
+
"type": "structure",
|
|
293
|
+
"required": [
|
|
294
|
+
"ruleGroupsNamespace"
|
|
295
|
+
],
|
|
296
|
+
"members": {
|
|
297
|
+
"ruleGroupsNamespace": {
|
|
298
|
+
"type": "structure",
|
|
299
|
+
"required": [
|
|
300
|
+
"arn",
|
|
301
|
+
"createdAt",
|
|
302
|
+
"data",
|
|
303
|
+
"modifiedAt",
|
|
304
|
+
"name",
|
|
305
|
+
"status"
|
|
306
|
+
],
|
|
307
|
+
"members": {
|
|
308
|
+
"arn": {},
|
|
309
|
+
"createdAt": {
|
|
310
|
+
"type": "timestamp"
|
|
311
|
+
},
|
|
312
|
+
"data": {
|
|
313
|
+
"type": "blob"
|
|
314
|
+
},
|
|
315
|
+
"modifiedAt": {
|
|
316
|
+
"type": "timestamp"
|
|
317
|
+
},
|
|
318
|
+
"name": {},
|
|
319
|
+
"status": {
|
|
320
|
+
"shape": "Sh"
|
|
321
|
+
},
|
|
322
|
+
"tags": {
|
|
323
|
+
"shape": "Sc"
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
},
|
|
77
330
|
"DescribeWorkspace": {
|
|
78
331
|
"http": {
|
|
79
332
|
"method": "GET",
|
|
@@ -114,10 +367,10 @@
|
|
|
114
367
|
},
|
|
115
368
|
"prometheusEndpoint": {},
|
|
116
369
|
"status": {
|
|
117
|
-
"shape": "
|
|
370
|
+
"shape": "Sn"
|
|
118
371
|
},
|
|
119
372
|
"tags": {
|
|
120
|
-
"shape": "
|
|
373
|
+
"shape": "Sc"
|
|
121
374
|
},
|
|
122
375
|
"workspaceId": {}
|
|
123
376
|
}
|
|
@@ -125,6 +378,76 @@
|
|
|
125
378
|
}
|
|
126
379
|
}
|
|
127
380
|
},
|
|
381
|
+
"ListRuleGroupsNamespaces": {
|
|
382
|
+
"http": {
|
|
383
|
+
"method": "GET",
|
|
384
|
+
"requestUri": "/workspaces/{workspaceId}/rulegroupsnamespaces",
|
|
385
|
+
"responseCode": 200
|
|
386
|
+
},
|
|
387
|
+
"input": {
|
|
388
|
+
"type": "structure",
|
|
389
|
+
"required": [
|
|
390
|
+
"workspaceId"
|
|
391
|
+
],
|
|
392
|
+
"members": {
|
|
393
|
+
"maxResults": {
|
|
394
|
+
"location": "querystring",
|
|
395
|
+
"locationName": "maxResults",
|
|
396
|
+
"type": "integer"
|
|
397
|
+
},
|
|
398
|
+
"name": {
|
|
399
|
+
"location": "querystring",
|
|
400
|
+
"locationName": "name"
|
|
401
|
+
},
|
|
402
|
+
"nextToken": {
|
|
403
|
+
"location": "querystring",
|
|
404
|
+
"locationName": "nextToken"
|
|
405
|
+
},
|
|
406
|
+
"workspaceId": {
|
|
407
|
+
"location": "uri",
|
|
408
|
+
"locationName": "workspaceId"
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"output": {
|
|
413
|
+
"type": "structure",
|
|
414
|
+
"required": [
|
|
415
|
+
"ruleGroupsNamespaces"
|
|
416
|
+
],
|
|
417
|
+
"members": {
|
|
418
|
+
"nextToken": {},
|
|
419
|
+
"ruleGroupsNamespaces": {
|
|
420
|
+
"type": "list",
|
|
421
|
+
"member": {
|
|
422
|
+
"type": "structure",
|
|
423
|
+
"required": [
|
|
424
|
+
"arn",
|
|
425
|
+
"createdAt",
|
|
426
|
+
"modifiedAt",
|
|
427
|
+
"name",
|
|
428
|
+
"status"
|
|
429
|
+
],
|
|
430
|
+
"members": {
|
|
431
|
+
"arn": {},
|
|
432
|
+
"createdAt": {
|
|
433
|
+
"type": "timestamp"
|
|
434
|
+
},
|
|
435
|
+
"modifiedAt": {
|
|
436
|
+
"type": "timestamp"
|
|
437
|
+
},
|
|
438
|
+
"name": {},
|
|
439
|
+
"status": {
|
|
440
|
+
"shape": "Sh"
|
|
441
|
+
},
|
|
442
|
+
"tags": {
|
|
443
|
+
"shape": "Sc"
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
},
|
|
128
451
|
"ListTagsForResource": {
|
|
129
452
|
"http": {
|
|
130
453
|
"method": "GET",
|
|
@@ -147,7 +470,7 @@
|
|
|
147
470
|
"type": "structure",
|
|
148
471
|
"members": {
|
|
149
472
|
"tags": {
|
|
150
|
-
"shape": "
|
|
473
|
+
"shape": "Sc"
|
|
151
474
|
}
|
|
152
475
|
}
|
|
153
476
|
}
|
|
@@ -200,10 +523,10 @@
|
|
|
200
523
|
"type": "timestamp"
|
|
201
524
|
},
|
|
202
525
|
"status": {
|
|
203
|
-
"shape": "
|
|
526
|
+
"shape": "Sn"
|
|
204
527
|
},
|
|
205
528
|
"tags": {
|
|
206
|
-
"shape": "
|
|
529
|
+
"shape": "Sc"
|
|
207
530
|
},
|
|
208
531
|
"workspaceId": {}
|
|
209
532
|
}
|
|
@@ -212,6 +535,94 @@
|
|
|
212
535
|
}
|
|
213
536
|
}
|
|
214
537
|
},
|
|
538
|
+
"PutAlertManagerDefinition": {
|
|
539
|
+
"http": {
|
|
540
|
+
"method": "PUT",
|
|
541
|
+
"requestUri": "/workspaces/{workspaceId}/alertmanager/definition",
|
|
542
|
+
"responseCode": 202
|
|
543
|
+
},
|
|
544
|
+
"input": {
|
|
545
|
+
"type": "structure",
|
|
546
|
+
"required": [
|
|
547
|
+
"data",
|
|
548
|
+
"workspaceId"
|
|
549
|
+
],
|
|
550
|
+
"members": {
|
|
551
|
+
"clientToken": {
|
|
552
|
+
"idempotencyToken": true
|
|
553
|
+
},
|
|
554
|
+
"data": {
|
|
555
|
+
"type": "blob"
|
|
556
|
+
},
|
|
557
|
+
"workspaceId": {
|
|
558
|
+
"location": "uri",
|
|
559
|
+
"locationName": "workspaceId"
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"output": {
|
|
564
|
+
"type": "structure",
|
|
565
|
+
"required": [
|
|
566
|
+
"status"
|
|
567
|
+
],
|
|
568
|
+
"members": {
|
|
569
|
+
"status": {
|
|
570
|
+
"shape": "S6"
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
"idempotent": true
|
|
575
|
+
},
|
|
576
|
+
"PutRuleGroupsNamespace": {
|
|
577
|
+
"http": {
|
|
578
|
+
"method": "PUT",
|
|
579
|
+
"requestUri": "/workspaces/{workspaceId}/rulegroupsnamespaces/{name}",
|
|
580
|
+
"responseCode": 202
|
|
581
|
+
},
|
|
582
|
+
"input": {
|
|
583
|
+
"type": "structure",
|
|
584
|
+
"required": [
|
|
585
|
+
"data",
|
|
586
|
+
"name",
|
|
587
|
+
"workspaceId"
|
|
588
|
+
],
|
|
589
|
+
"members": {
|
|
590
|
+
"clientToken": {
|
|
591
|
+
"idempotencyToken": true
|
|
592
|
+
},
|
|
593
|
+
"data": {
|
|
594
|
+
"type": "blob"
|
|
595
|
+
},
|
|
596
|
+
"name": {
|
|
597
|
+
"location": "uri",
|
|
598
|
+
"locationName": "name"
|
|
599
|
+
},
|
|
600
|
+
"workspaceId": {
|
|
601
|
+
"location": "uri",
|
|
602
|
+
"locationName": "workspaceId"
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"output": {
|
|
607
|
+
"type": "structure",
|
|
608
|
+
"required": [
|
|
609
|
+
"arn",
|
|
610
|
+
"name",
|
|
611
|
+
"status"
|
|
612
|
+
],
|
|
613
|
+
"members": {
|
|
614
|
+
"arn": {},
|
|
615
|
+
"name": {},
|
|
616
|
+
"status": {
|
|
617
|
+
"shape": "Sh"
|
|
618
|
+
},
|
|
619
|
+
"tags": {
|
|
620
|
+
"shape": "Sc"
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"idempotent": true
|
|
625
|
+
},
|
|
215
626
|
"TagResource": {
|
|
216
627
|
"http": {
|
|
217
628
|
"requestUri": "/tags/{resourceArn}",
|
|
@@ -229,7 +640,7 @@
|
|
|
229
640
|
"locationName": "resourceArn"
|
|
230
641
|
},
|
|
231
642
|
"tags": {
|
|
232
|
-
"shape": "
|
|
643
|
+
"shape": "Sc"
|
|
233
644
|
}
|
|
234
645
|
}
|
|
235
646
|
},
|
|
@@ -294,12 +705,32 @@
|
|
|
294
705
|
}
|
|
295
706
|
},
|
|
296
707
|
"shapes": {
|
|
297
|
-
"
|
|
708
|
+
"S6": {
|
|
709
|
+
"type": "structure",
|
|
710
|
+
"required": [
|
|
711
|
+
"statusCode"
|
|
712
|
+
],
|
|
713
|
+
"members": {
|
|
714
|
+
"statusCode": {},
|
|
715
|
+
"statusReason": {}
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"Sc": {
|
|
298
719
|
"type": "map",
|
|
299
720
|
"key": {},
|
|
300
721
|
"value": {}
|
|
301
722
|
},
|
|
302
|
-
"
|
|
723
|
+
"Sh": {
|
|
724
|
+
"type": "structure",
|
|
725
|
+
"required": [
|
|
726
|
+
"statusCode"
|
|
727
|
+
],
|
|
728
|
+
"members": {
|
|
729
|
+
"statusCode": {},
|
|
730
|
+
"statusReason": {}
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
"Sn": {
|
|
303
734
|
"type": "structure",
|
|
304
735
|
"required": [
|
|
305
736
|
"statusCode"
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"pagination": {
|
|
3
|
+
"ListRuleGroupsNamespaces": {
|
|
4
|
+
"input_token": "nextToken",
|
|
5
|
+
"output_token": "nextToken",
|
|
6
|
+
"limit_key": "maxResults",
|
|
7
|
+
"result_key": "ruleGroupsNamespaces"
|
|
8
|
+
},
|
|
3
9
|
"ListWorkspaces": {
|
|
4
10
|
"input_token": "nextToken",
|
|
5
11
|
"output_token": "nextToken",
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version" : 2,
|
|
3
|
+
"waiters" : {
|
|
4
|
+
"WorkspaceActive" : {
|
|
5
|
+
"description" : "Wait until a workspace reaches ACTIVE status",
|
|
6
|
+
"delay" : 2,
|
|
7
|
+
"maxAttempts" : 60,
|
|
8
|
+
"operation" : "DescribeWorkspace",
|
|
9
|
+
"acceptors" : [ {
|
|
10
|
+
"matcher" : "path",
|
|
11
|
+
"argument" : "workspace.status.statusCode",
|
|
12
|
+
"state" : "success",
|
|
13
|
+
"expected" : "ACTIVE"
|
|
14
|
+
}, {
|
|
15
|
+
"matcher" : "path",
|
|
16
|
+
"argument" : "workspace.status.statusCode",
|
|
17
|
+
"state" : "retry",
|
|
18
|
+
"expected" : "UPDATING"
|
|
19
|
+
}, {
|
|
20
|
+
"matcher" : "path",
|
|
21
|
+
"argument" : "workspace.status.statusCode",
|
|
22
|
+
"state" : "retry",
|
|
23
|
+
"expected" : "CREATING"
|
|
24
|
+
} ]
|
|
25
|
+
},
|
|
26
|
+
"WorkspaceDeleted" : {
|
|
27
|
+
"description" : "Wait until a workspace reaches DELETED status",
|
|
28
|
+
"delay" : 2,
|
|
29
|
+
"maxAttempts" : 60,
|
|
30
|
+
"operation" : "DescribeWorkspace",
|
|
31
|
+
"acceptors" : [ {
|
|
32
|
+
"matcher" : "error",
|
|
33
|
+
"state" : "success",
|
|
34
|
+
"expected" : "ResourceNotFoundException"
|
|
35
|
+
}, {
|
|
36
|
+
"matcher" : "path",
|
|
37
|
+
"argument" : "workspace.status.statusCode",
|
|
38
|
+
"state" : "retry",
|
|
39
|
+
"expected" : "DELETING"
|
|
40
|
+
} ]
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
],
|
|
141
141
|
"members": {
|
|
142
142
|
"Service": {
|
|
143
|
-
"shape": "
|
|
143
|
+
"shape": "S1v"
|
|
144
144
|
},
|
|
145
145
|
"OperationId": {}
|
|
146
146
|
}
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
],
|
|
206
206
|
"members": {
|
|
207
207
|
"Service": {
|
|
208
|
-
"shape": "
|
|
208
|
+
"shape": "S1v"
|
|
209
209
|
},
|
|
210
210
|
"OperationId": {}
|
|
211
211
|
}
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
],
|
|
285
285
|
"members": {
|
|
286
286
|
"Service": {
|
|
287
|
-
"shape": "
|
|
287
|
+
"shape": "S1v"
|
|
288
288
|
}
|
|
289
289
|
}
|
|
290
290
|
}
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
"AutoScalingConfigurationSummaryList": {
|
|
341
341
|
"type": "list",
|
|
342
342
|
"member": {
|
|
343
|
-
"shape": "
|
|
343
|
+
"shape": "S1y"
|
|
344
344
|
}
|
|
345
345
|
},
|
|
346
346
|
"NextToken": {}
|
|
@@ -500,7 +500,7 @@
|
|
|
500
500
|
],
|
|
501
501
|
"members": {
|
|
502
502
|
"Service": {
|
|
503
|
-
"shape": "
|
|
503
|
+
"shape": "S1v"
|
|
504
504
|
},
|
|
505
505
|
"OperationId": {}
|
|
506
506
|
}
|
|
@@ -523,7 +523,7 @@
|
|
|
523
523
|
],
|
|
524
524
|
"members": {
|
|
525
525
|
"Service": {
|
|
526
|
-
"shape": "
|
|
526
|
+
"shape": "S1v"
|
|
527
527
|
},
|
|
528
528
|
"OperationId": {}
|
|
529
529
|
}
|
|
@@ -616,7 +616,7 @@
|
|
|
616
616
|
],
|
|
617
617
|
"members": {
|
|
618
618
|
"Service": {
|
|
619
|
-
"shape": "
|
|
619
|
+
"shape": "S1v"
|
|
620
620
|
},
|
|
621
621
|
"OperationId": {}
|
|
622
622
|
}
|
|
@@ -836,7 +836,7 @@
|
|
|
836
836
|
}
|
|
837
837
|
}
|
|
838
838
|
},
|
|
839
|
-
"
|
|
839
|
+
"S1v": {
|
|
840
840
|
"type": "structure",
|
|
841
841
|
"required": [
|
|
842
842
|
"ServiceName",
|
|
@@ -878,11 +878,11 @@
|
|
|
878
878
|
"shape": "S1n"
|
|
879
879
|
},
|
|
880
880
|
"AutoScalingConfigurationSummary": {
|
|
881
|
-
"shape": "
|
|
881
|
+
"shape": "S1y"
|
|
882
882
|
}
|
|
883
883
|
}
|
|
884
884
|
},
|
|
885
|
-
"
|
|
885
|
+
"S1y": {
|
|
886
886
|
"type": "structure",
|
|
887
887
|
"members": {
|
|
888
888
|
"AutoScalingConfigurationArn": {},
|