aws-sdk 2.1507.0 → 2.1509.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/README.md +1 -1
- package/apis/arc-zonal-shift-2022-10-30.min.json +319 -17
- package/apis/arc-zonal-shift-2022-10-30.paginators.json +6 -0
- package/apis/glue-2017-03-31.min.json +654 -589
- package/apis/marketplace-agreement-2020-03-01.examples.json +5 -0
- package/apis/marketplace-agreement-2020-03-01.min.json +397 -0
- package/apis/marketplace-agreement-2020-03-01.paginators.json +14 -0
- package/apis/marketplace-catalog-2018-09-17.min.json +542 -7
- package/apis/marketplace-deployment-2023-01-25.examples.json +5 -0
- package/apis/marketplace-deployment-2023-01-25.min.json +178 -0
- package/apis/marketplace-deployment-2023-01-25.paginators.json +4 -0
- package/apis/metadata.json +8 -0
- package/apis/redshift-serverless-2021-04-21.min.json +436 -74
- package/apis/redshift-serverless-2021-04-21.paginators.json +12 -0
- package/apis/sagemaker-2017-07-24.min.json +1227 -992
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/arczonalshift.d.ts +330 -30
- package/clients/glue.d.ts +83 -2
- package/clients/marketplaceagreement.d.ts +602 -0
- package/clients/marketplaceagreement.js +18 -0
- package/clients/marketplacecatalog.d.ts +883 -2
- package/clients/marketplacedeployment.d.ts +172 -0
- package/clients/marketplacedeployment.js +18 -0
- package/clients/redshiftserverless.d.ts +463 -6
- package/clients/sagemaker.d.ts +264 -2
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +85 -11
- package/dist/aws-sdk.js +553 -10
- package/dist/aws-sdk.min.js +40 -40
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
69
69
|
To use the SDK in the browser, simply add the following script tag to your
|
70
70
|
HTML pages:
|
71
71
|
|
72
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
72
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1509.0.min.js"></script>
|
73
73
|
|
74
74
|
You can also build a custom browser SDK with your specified set of AWS services.
|
75
75
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -34,6 +34,84 @@
|
|
34
34
|
"shape": "S3"
|
35
35
|
}
|
36
36
|
},
|
37
|
+
"CreatePracticeRunConfiguration": {
|
38
|
+
"http": {
|
39
|
+
"requestUri": "/configuration",
|
40
|
+
"responseCode": 201
|
41
|
+
},
|
42
|
+
"input": {
|
43
|
+
"type": "structure",
|
44
|
+
"required": [
|
45
|
+
"outcomeAlarms",
|
46
|
+
"resourceIdentifier"
|
47
|
+
],
|
48
|
+
"members": {
|
49
|
+
"blockedDates": {
|
50
|
+
"shape": "Sb"
|
51
|
+
},
|
52
|
+
"blockedWindows": {
|
53
|
+
"shape": "Sd"
|
54
|
+
},
|
55
|
+
"blockingAlarms": {
|
56
|
+
"shape": "Sf"
|
57
|
+
},
|
58
|
+
"outcomeAlarms": {
|
59
|
+
"shape": "Sf"
|
60
|
+
},
|
61
|
+
"resourceIdentifier": {}
|
62
|
+
}
|
63
|
+
},
|
64
|
+
"output": {
|
65
|
+
"type": "structure",
|
66
|
+
"required": [
|
67
|
+
"arn",
|
68
|
+
"name",
|
69
|
+
"practiceRunConfiguration",
|
70
|
+
"zonalAutoshiftStatus"
|
71
|
+
],
|
72
|
+
"members": {
|
73
|
+
"arn": {},
|
74
|
+
"name": {},
|
75
|
+
"practiceRunConfiguration": {
|
76
|
+
"shape": "Sl"
|
77
|
+
},
|
78
|
+
"zonalAutoshiftStatus": {}
|
79
|
+
}
|
80
|
+
}
|
81
|
+
},
|
82
|
+
"DeletePracticeRunConfiguration": {
|
83
|
+
"http": {
|
84
|
+
"method": "DELETE",
|
85
|
+
"requestUri": "/configuration/{resourceIdentifier}",
|
86
|
+
"responseCode": 200
|
87
|
+
},
|
88
|
+
"input": {
|
89
|
+
"type": "structure",
|
90
|
+
"required": [
|
91
|
+
"resourceIdentifier"
|
92
|
+
],
|
93
|
+
"members": {
|
94
|
+
"resourceIdentifier": {
|
95
|
+
"location": "uri",
|
96
|
+
"locationName": "resourceIdentifier"
|
97
|
+
}
|
98
|
+
}
|
99
|
+
},
|
100
|
+
"output": {
|
101
|
+
"type": "structure",
|
102
|
+
"required": [
|
103
|
+
"arn",
|
104
|
+
"name",
|
105
|
+
"zonalAutoshiftStatus"
|
106
|
+
],
|
107
|
+
"members": {
|
108
|
+
"arn": {},
|
109
|
+
"name": {},
|
110
|
+
"zonalAutoshiftStatus": {}
|
111
|
+
}
|
112
|
+
},
|
113
|
+
"idempotent": true
|
114
|
+
},
|
37
115
|
"GetManagedResource": {
|
38
116
|
"http": {
|
39
117
|
"method": "GET",
|
@@ -60,42 +138,73 @@
|
|
60
138
|
],
|
61
139
|
"members": {
|
62
140
|
"appliedWeights": {
|
63
|
-
"
|
64
|
-
"key": {},
|
65
|
-
"value": {
|
66
|
-
"type": "float"
|
67
|
-
}
|
141
|
+
"shape": "Sr"
|
68
142
|
},
|
69
143
|
"arn": {},
|
144
|
+
"autoshifts": {
|
145
|
+
"shape": "St"
|
146
|
+
},
|
70
147
|
"name": {},
|
148
|
+
"practiceRunConfiguration": {
|
149
|
+
"shape": "Sl"
|
150
|
+
},
|
151
|
+
"zonalAutoshiftStatus": {},
|
71
152
|
"zonalShifts": {
|
153
|
+
"shape": "Sw"
|
154
|
+
}
|
155
|
+
}
|
156
|
+
}
|
157
|
+
},
|
158
|
+
"ListAutoshifts": {
|
159
|
+
"http": {
|
160
|
+
"method": "GET",
|
161
|
+
"requestUri": "/autoshifts",
|
162
|
+
"responseCode": 200
|
163
|
+
},
|
164
|
+
"input": {
|
165
|
+
"type": "structure",
|
166
|
+
"members": {
|
167
|
+
"maxResults": {
|
168
|
+
"location": "querystring",
|
169
|
+
"locationName": "maxResults",
|
170
|
+
"type": "integer"
|
171
|
+
},
|
172
|
+
"nextToken": {
|
173
|
+
"location": "querystring",
|
174
|
+
"locationName": "nextToken"
|
175
|
+
},
|
176
|
+
"status": {
|
177
|
+
"location": "querystring",
|
178
|
+
"locationName": "status"
|
179
|
+
}
|
180
|
+
}
|
181
|
+
},
|
182
|
+
"output": {
|
183
|
+
"type": "structure",
|
184
|
+
"members": {
|
185
|
+
"items": {
|
72
186
|
"type": "list",
|
73
187
|
"member": {
|
74
188
|
"type": "structure",
|
75
189
|
"required": [
|
76
|
-
"appliedStatus",
|
77
190
|
"awayFrom",
|
78
|
-
"
|
79
|
-
"expiryTime",
|
80
|
-
"resourceIdentifier",
|
191
|
+
"endTime",
|
81
192
|
"startTime",
|
82
|
-
"
|
193
|
+
"status"
|
83
194
|
],
|
84
195
|
"members": {
|
85
|
-
"appliedStatus": {},
|
86
196
|
"awayFrom": {},
|
87
|
-
"
|
88
|
-
"expiryTime": {
|
197
|
+
"endTime": {
|
89
198
|
"type": "timestamp"
|
90
199
|
},
|
91
|
-
"resourceIdentifier": {},
|
92
200
|
"startTime": {
|
93
201
|
"type": "timestamp"
|
94
202
|
},
|
95
|
-
"
|
203
|
+
"status": {}
|
96
204
|
}
|
97
205
|
}
|
98
|
-
}
|
206
|
+
},
|
207
|
+
"nextToken": {}
|
99
208
|
}
|
100
209
|
}
|
101
210
|
},
|
@@ -133,12 +242,23 @@
|
|
133
242
|
"availabilityZones"
|
134
243
|
],
|
135
244
|
"members": {
|
245
|
+
"appliedWeights": {
|
246
|
+
"shape": "Sr"
|
247
|
+
},
|
136
248
|
"arn": {},
|
249
|
+
"autoshifts": {
|
250
|
+
"shape": "St"
|
251
|
+
},
|
137
252
|
"availabilityZones": {
|
138
253
|
"type": "list",
|
139
254
|
"member": {}
|
140
255
|
},
|
141
|
-
"name": {}
|
256
|
+
"name": {},
|
257
|
+
"practiceRunStatus": {},
|
258
|
+
"zonalAutoshiftStatus": {},
|
259
|
+
"zonalShifts": {
|
260
|
+
"shape": "Sw"
|
261
|
+
}
|
142
262
|
}
|
143
263
|
}
|
144
264
|
},
|
@@ -164,6 +284,10 @@
|
|
164
284
|
"location": "querystring",
|
165
285
|
"locationName": "nextToken"
|
166
286
|
},
|
287
|
+
"resourceIdentifier": {
|
288
|
+
"location": "querystring",
|
289
|
+
"locationName": "resourceIdentifier"
|
290
|
+
},
|
167
291
|
"status": {
|
168
292
|
"location": "querystring",
|
169
293
|
"locationName": "status"
|
@@ -192,6 +316,7 @@
|
|
192
316
|
"expiryTime": {
|
193
317
|
"type": "timestamp"
|
194
318
|
},
|
319
|
+
"practiceRunOutcome": {},
|
195
320
|
"resourceIdentifier": {},
|
196
321
|
"startTime": {
|
197
322
|
"type": "timestamp"
|
@@ -229,6 +354,87 @@
|
|
229
354
|
"shape": "S3"
|
230
355
|
}
|
231
356
|
},
|
357
|
+
"UpdatePracticeRunConfiguration": {
|
358
|
+
"http": {
|
359
|
+
"method": "PATCH",
|
360
|
+
"requestUri": "/configuration/{resourceIdentifier}",
|
361
|
+
"responseCode": 200
|
362
|
+
},
|
363
|
+
"input": {
|
364
|
+
"type": "structure",
|
365
|
+
"required": [
|
366
|
+
"resourceIdentifier"
|
367
|
+
],
|
368
|
+
"members": {
|
369
|
+
"blockedDates": {
|
370
|
+
"shape": "Sb"
|
371
|
+
},
|
372
|
+
"blockedWindows": {
|
373
|
+
"shape": "Sd"
|
374
|
+
},
|
375
|
+
"blockingAlarms": {
|
376
|
+
"shape": "Sf"
|
377
|
+
},
|
378
|
+
"outcomeAlarms": {
|
379
|
+
"shape": "Sf"
|
380
|
+
},
|
381
|
+
"resourceIdentifier": {
|
382
|
+
"location": "uri",
|
383
|
+
"locationName": "resourceIdentifier"
|
384
|
+
}
|
385
|
+
}
|
386
|
+
},
|
387
|
+
"output": {
|
388
|
+
"type": "structure",
|
389
|
+
"required": [
|
390
|
+
"arn",
|
391
|
+
"name",
|
392
|
+
"practiceRunConfiguration",
|
393
|
+
"zonalAutoshiftStatus"
|
394
|
+
],
|
395
|
+
"members": {
|
396
|
+
"arn": {},
|
397
|
+
"name": {},
|
398
|
+
"practiceRunConfiguration": {
|
399
|
+
"shape": "Sl"
|
400
|
+
},
|
401
|
+
"zonalAutoshiftStatus": {}
|
402
|
+
}
|
403
|
+
}
|
404
|
+
},
|
405
|
+
"UpdateZonalAutoshiftConfiguration": {
|
406
|
+
"http": {
|
407
|
+
"method": "PUT",
|
408
|
+
"requestUri": "/managedresources/{resourceIdentifier}",
|
409
|
+
"responseCode": 200
|
410
|
+
},
|
411
|
+
"input": {
|
412
|
+
"type": "structure",
|
413
|
+
"required": [
|
414
|
+
"resourceIdentifier",
|
415
|
+
"zonalAutoshiftStatus"
|
416
|
+
],
|
417
|
+
"members": {
|
418
|
+
"resourceIdentifier": {
|
419
|
+
"location": "uri",
|
420
|
+
"locationName": "resourceIdentifier"
|
421
|
+
},
|
422
|
+
"zonalAutoshiftStatus": {}
|
423
|
+
}
|
424
|
+
},
|
425
|
+
"output": {
|
426
|
+
"type": "structure",
|
427
|
+
"required": [
|
428
|
+
"resourceIdentifier",
|
429
|
+
"zonalAutoshiftStatus"
|
430
|
+
],
|
431
|
+
"members": {
|
432
|
+
"resourceIdentifier": {},
|
433
|
+
"zonalAutoshiftStatus": {}
|
434
|
+
}
|
435
|
+
},
|
436
|
+
"idempotent": true
|
437
|
+
},
|
232
438
|
"UpdateZonalShift": {
|
233
439
|
"http": {
|
234
440
|
"method": "PATCH",
|
@@ -279,6 +485,102 @@
|
|
279
485
|
"status": {},
|
280
486
|
"zonalShiftId": {}
|
281
487
|
}
|
488
|
+
},
|
489
|
+
"Sb": {
|
490
|
+
"type": "list",
|
491
|
+
"member": {}
|
492
|
+
},
|
493
|
+
"Sd": {
|
494
|
+
"type": "list",
|
495
|
+
"member": {}
|
496
|
+
},
|
497
|
+
"Sf": {
|
498
|
+
"type": "list",
|
499
|
+
"member": {
|
500
|
+
"type": "structure",
|
501
|
+
"required": [
|
502
|
+
"alarmIdentifier",
|
503
|
+
"type"
|
504
|
+
],
|
505
|
+
"members": {
|
506
|
+
"alarmIdentifier": {},
|
507
|
+
"type": {}
|
508
|
+
}
|
509
|
+
}
|
510
|
+
},
|
511
|
+
"Sl": {
|
512
|
+
"type": "structure",
|
513
|
+
"required": [
|
514
|
+
"outcomeAlarms"
|
515
|
+
],
|
516
|
+
"members": {
|
517
|
+
"blockedDates": {
|
518
|
+
"shape": "Sb"
|
519
|
+
},
|
520
|
+
"blockedWindows": {
|
521
|
+
"shape": "Sd"
|
522
|
+
},
|
523
|
+
"blockingAlarms": {
|
524
|
+
"shape": "Sf"
|
525
|
+
},
|
526
|
+
"outcomeAlarms": {
|
527
|
+
"shape": "Sf"
|
528
|
+
}
|
529
|
+
}
|
530
|
+
},
|
531
|
+
"Sr": {
|
532
|
+
"type": "map",
|
533
|
+
"key": {},
|
534
|
+
"value": {
|
535
|
+
"type": "float"
|
536
|
+
}
|
537
|
+
},
|
538
|
+
"St": {
|
539
|
+
"type": "list",
|
540
|
+
"member": {
|
541
|
+
"type": "structure",
|
542
|
+
"required": [
|
543
|
+
"appliedStatus",
|
544
|
+
"awayFrom",
|
545
|
+
"startTime"
|
546
|
+
],
|
547
|
+
"members": {
|
548
|
+
"appliedStatus": {},
|
549
|
+
"awayFrom": {},
|
550
|
+
"startTime": {
|
551
|
+
"type": "timestamp"
|
552
|
+
}
|
553
|
+
}
|
554
|
+
}
|
555
|
+
},
|
556
|
+
"Sw": {
|
557
|
+
"type": "list",
|
558
|
+
"member": {
|
559
|
+
"type": "structure",
|
560
|
+
"required": [
|
561
|
+
"appliedStatus",
|
562
|
+
"awayFrom",
|
563
|
+
"comment",
|
564
|
+
"expiryTime",
|
565
|
+
"resourceIdentifier",
|
566
|
+
"startTime",
|
567
|
+
"zonalShiftId"
|
568
|
+
],
|
569
|
+
"members": {
|
570
|
+
"appliedStatus": {},
|
571
|
+
"awayFrom": {},
|
572
|
+
"comment": {},
|
573
|
+
"expiryTime": {
|
574
|
+
"type": "timestamp"
|
575
|
+
},
|
576
|
+
"practiceRunOutcome": {},
|
577
|
+
"resourceIdentifier": {},
|
578
|
+
"startTime": {
|
579
|
+
"type": "timestamp"
|
580
|
+
},
|
581
|
+
"zonalShiftId": {}
|
582
|
+
}
|
583
|
+
}
|
282
584
|
}
|
283
585
|
}
|
284
586
|
}
|