aws-sdk 2.1684.0 → 2.1685.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/appconfig-2019-10-09.min.json +77 -16
- package/apis/devicefarm-2015-06-23.examples.json +0 -2
- package/apis/ec2-2016-11-15.min.json +6 -5
- package/apis/internetmonitor-2021-06-03.min.json +6 -1
- package/apis/metadata.json +3 -0
- package/apis/pcs-2023-02-10.examples.json +5 -0
- package/apis/pcs-2023-02-10.min.json +903 -0
- package/apis/pcs-2023-02-10.paginators.json +22 -0
- package/apis/pcs-2023-02-10.waiters2.json +5 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/appconfig.d.ts +58 -14
- package/clients/datazone.d.ts +2 -2
- package/clients/devicefarm.d.ts +12 -12
- package/clients/ec2.d.ts +8 -4
- package/clients/internetmonitor.d.ts +2 -2
- package/clients/pcs.d.ts +1009 -0
- package/clients/pcs.js +19 -0
- package/clients/workspaces.d.ts +5 -5
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +51 -7
- package/dist/aws-sdk.js +12 -8
- package/dist/aws-sdk.min.js +14 -14
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
64
64
|
To use the SDK in the browser, simply add the following script tag to your
|
65
65
|
HTML pages:
|
66
66
|
|
67
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
67
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1685.0.min.js"></script>
|
68
68
|
|
69
69
|
You can also build a custom browser SDK with your specified set of AWS services.
|
70
70
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -5,12 +5,18 @@
|
|
5
5
|
"endpointPrefix": "appconfig",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "rest-json",
|
8
|
+
"protocols": [
|
9
|
+
"rest-json"
|
10
|
+
],
|
8
11
|
"serviceAbbreviation": "AppConfig",
|
9
12
|
"serviceFullName": "Amazon AppConfig",
|
10
13
|
"serviceId": "AppConfig",
|
11
14
|
"signatureVersion": "v4",
|
12
15
|
"signingName": "appconfig",
|
13
|
-
"uid": "appconfig-2019-10-09"
|
16
|
+
"uid": "appconfig-2019-10-09",
|
17
|
+
"auth": [
|
18
|
+
"aws.auth#sigv4"
|
19
|
+
]
|
14
20
|
},
|
15
21
|
"operations": {
|
16
22
|
"CreateApplication": {
|
@@ -286,6 +292,10 @@
|
|
286
292
|
"ConfigurationProfileId": {
|
287
293
|
"location": "uri",
|
288
294
|
"locationName": "ConfigurationProfileId"
|
295
|
+
},
|
296
|
+
"DeletionProtectionCheck": {
|
297
|
+
"location": "header",
|
298
|
+
"locationName": "x-amzn-deletion-protection-check"
|
289
299
|
}
|
290
300
|
}
|
291
301
|
}
|
@@ -318,17 +328,21 @@
|
|
318
328
|
"input": {
|
319
329
|
"type": "structure",
|
320
330
|
"required": [
|
321
|
-
"
|
322
|
-
"
|
331
|
+
"EnvironmentId",
|
332
|
+
"ApplicationId"
|
323
333
|
],
|
324
334
|
"members": {
|
335
|
+
"EnvironmentId": {
|
336
|
+
"location": "uri",
|
337
|
+
"locationName": "EnvironmentId"
|
338
|
+
},
|
325
339
|
"ApplicationId": {
|
326
340
|
"location": "uri",
|
327
341
|
"locationName": "ApplicationId"
|
328
342
|
},
|
329
|
-
"
|
330
|
-
"location": "
|
331
|
-
"locationName": "
|
343
|
+
"DeletionProtectionCheck": {
|
344
|
+
"location": "header",
|
345
|
+
"locationName": "x-amzn-deletion-protection-check"
|
332
346
|
}
|
333
347
|
}
|
334
348
|
}
|
@@ -406,6 +420,16 @@
|
|
406
420
|
}
|
407
421
|
}
|
408
422
|
},
|
423
|
+
"GetAccountSettings": {
|
424
|
+
"http": {
|
425
|
+
"method": "GET",
|
426
|
+
"requestUri": "/settings",
|
427
|
+
"responseCode": 200
|
428
|
+
},
|
429
|
+
"output": {
|
430
|
+
"shape": "S1r"
|
431
|
+
}
|
432
|
+
},
|
409
433
|
"GetApplication": {
|
410
434
|
"http": {
|
411
435
|
"method": "GET",
|
@@ -542,7 +566,7 @@
|
|
542
566
|
}
|
543
567
|
},
|
544
568
|
"output": {
|
545
|
-
"shape": "
|
569
|
+
"shape": "S22"
|
546
570
|
}
|
547
571
|
},
|
548
572
|
"GetDeploymentStrategy": {
|
@@ -857,10 +881,10 @@
|
|
857
881
|
"type": "float"
|
858
882
|
},
|
859
883
|
"StartedAt": {
|
860
|
-
"shape": "
|
884
|
+
"shape": "S2a"
|
861
885
|
},
|
862
886
|
"CompletedAt": {
|
863
|
-
"shape": "
|
887
|
+
"shape": "S2a"
|
864
888
|
},
|
865
889
|
"VersionLabel": {}
|
866
890
|
}
|
@@ -1133,7 +1157,7 @@
|
|
1133
1157
|
}
|
1134
1158
|
},
|
1135
1159
|
"output": {
|
1136
|
-
"shape": "
|
1160
|
+
"shape": "S22"
|
1137
1161
|
}
|
1138
1162
|
},
|
1139
1163
|
"StopDeployment": {
|
@@ -1166,7 +1190,7 @@
|
|
1166
1190
|
}
|
1167
1191
|
},
|
1168
1192
|
"output": {
|
1169
|
-
"shape": "
|
1193
|
+
"shape": "S22"
|
1170
1194
|
}
|
1171
1195
|
},
|
1172
1196
|
"TagResource": {
|
@@ -1217,6 +1241,24 @@
|
|
1217
1241
|
}
|
1218
1242
|
}
|
1219
1243
|
},
|
1244
|
+
"UpdateAccountSettings": {
|
1245
|
+
"http": {
|
1246
|
+
"method": "PATCH",
|
1247
|
+
"requestUri": "/settings",
|
1248
|
+
"responseCode": 200
|
1249
|
+
},
|
1250
|
+
"input": {
|
1251
|
+
"type": "structure",
|
1252
|
+
"members": {
|
1253
|
+
"DeletionProtection": {
|
1254
|
+
"shape": "S1s"
|
1255
|
+
}
|
1256
|
+
}
|
1257
|
+
},
|
1258
|
+
"output": {
|
1259
|
+
"shape": "S1r"
|
1260
|
+
}
|
1261
|
+
},
|
1220
1262
|
"UpdateApplication": {
|
1221
1263
|
"http": {
|
1222
1264
|
"method": "PATCH",
|
@@ -1631,7 +1673,26 @@
|
|
1631
1673
|
},
|
1632
1674
|
"payload": "Content"
|
1633
1675
|
},
|
1634
|
-
"
|
1676
|
+
"S1r": {
|
1677
|
+
"type": "structure",
|
1678
|
+
"members": {
|
1679
|
+
"DeletionProtection": {
|
1680
|
+
"shape": "S1s"
|
1681
|
+
}
|
1682
|
+
}
|
1683
|
+
},
|
1684
|
+
"S1s": {
|
1685
|
+
"type": "structure",
|
1686
|
+
"members": {
|
1687
|
+
"Enabled": {
|
1688
|
+
"type": "boolean"
|
1689
|
+
},
|
1690
|
+
"ProtectionPeriodInMinutes": {
|
1691
|
+
"type": "integer"
|
1692
|
+
}
|
1693
|
+
}
|
1694
|
+
},
|
1695
|
+
"S22": {
|
1635
1696
|
"type": "structure",
|
1636
1697
|
"members": {
|
1637
1698
|
"ApplicationId": {},
|
@@ -1680,7 +1741,7 @@
|
|
1680
1741
|
}
|
1681
1742
|
},
|
1682
1743
|
"OccurredAt": {
|
1683
|
-
"shape": "
|
1744
|
+
"shape": "S2a"
|
1684
1745
|
}
|
1685
1746
|
}
|
1686
1747
|
}
|
@@ -1689,10 +1750,10 @@
|
|
1689
1750
|
"type": "float"
|
1690
1751
|
},
|
1691
1752
|
"StartedAt": {
|
1692
|
-
"shape": "
|
1753
|
+
"shape": "S2a"
|
1693
1754
|
},
|
1694
1755
|
"CompletedAt": {
|
1695
|
-
"shape": "
|
1756
|
+
"shape": "S2a"
|
1696
1757
|
},
|
1697
1758
|
"AppliedExtensions": {
|
1698
1759
|
"type": "list",
|
@@ -1715,7 +1776,7 @@
|
|
1715
1776
|
"VersionLabel": {}
|
1716
1777
|
}
|
1717
1778
|
},
|
1718
|
-
"
|
1779
|
+
"S2a": {
|
1719
1780
|
"type": "timestamp",
|
1720
1781
|
"timestampFormat": "iso8601"
|
1721
1782
|
}
|
@@ -430,7 +430,6 @@
|
|
430
430
|
"output": {
|
431
431
|
"run": {
|
432
432
|
"name": "My Test Run",
|
433
|
-
"type": "BUILTIN_EXPLORER",
|
434
433
|
"arn": "arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE",
|
435
434
|
"billingMethod": "METERED",
|
436
435
|
"completedJobs": 0,
|
@@ -896,7 +895,6 @@
|
|
896
895
|
"runs": [
|
897
896
|
{
|
898
897
|
"name": "My Test Run",
|
899
|
-
"type": "BUILTIN_EXPLORER",
|
900
898
|
"arn": "arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE",
|
901
899
|
"billingMethod": "METERED",
|
902
900
|
"completedJobs": 0,
|
@@ -239,7 +239,8 @@
|
|
239
239
|
"TagSpecifications": {
|
240
240
|
"shape": "S3",
|
241
241
|
"locationName": "TagSpecification"
|
242
|
-
}
|
242
|
+
},
|
243
|
+
"IpamPoolId": {}
|
243
244
|
}
|
244
245
|
},
|
245
246
|
"output": {
|
@@ -314,7 +315,7 @@
|
|
314
315
|
"type": "structure",
|
315
316
|
"members": {
|
316
317
|
"HostIds": {
|
317
|
-
"shape": "
|
318
|
+
"shape": "S2g",
|
318
319
|
"locationName": "hostIdSet"
|
319
320
|
}
|
320
321
|
}
|
@@ -21322,7 +21323,7 @@
|
|
21322
21323
|
"type": "structure",
|
21323
21324
|
"members": {
|
21324
21325
|
"Successful": {
|
21325
|
-
"shape": "
|
21326
|
+
"shape": "S2g",
|
21326
21327
|
"locationName": "successful"
|
21327
21328
|
},
|
21328
21329
|
"Unsuccessful": {
|
@@ -24261,7 +24262,7 @@
|
|
24261
24262
|
"type": "structure",
|
24262
24263
|
"members": {
|
24263
24264
|
"Successful": {
|
24264
|
-
"shape": "
|
24265
|
+
"shape": "S2g",
|
24265
24266
|
"locationName": "successful"
|
24266
24267
|
},
|
24267
24268
|
"Unsuccessful": {
|
@@ -26609,7 +26610,7 @@
|
|
26609
26610
|
}
|
26610
26611
|
}
|
26611
26612
|
},
|
26612
|
-
"
|
26613
|
+
"S2g": {
|
26613
26614
|
"type": "list",
|
26614
26615
|
"member": {
|
26615
26616
|
"locationName": "item"
|
@@ -2,9 +2,14 @@
|
|
2
2
|
"version": "2.0",
|
3
3
|
"metadata": {
|
4
4
|
"apiVersion": "2021-06-03",
|
5
|
+
"auth": [
|
6
|
+
"aws.auth#sigv4"
|
7
|
+
],
|
5
8
|
"endpointPrefix": "internetmonitor",
|
6
|
-
"jsonVersion": "1.1",
|
7
9
|
"protocol": "rest-json",
|
10
|
+
"protocols": [
|
11
|
+
"rest-json"
|
12
|
+
],
|
8
13
|
"serviceFullName": "Amazon CloudWatch Internet Monitor",
|
9
14
|
"serviceId": "InternetMonitor",
|
10
15
|
"signatureVersion": "v4",
|
package/apis/metadata.json
CHANGED