aws-sdk 2.1024.0 → 2.1025.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 +5 -1
- package/README.md +1 -1
- package/apis/batch-2016-08-10.examples.json +30 -6
- package/apis/batch-2016-08-10.min.json +267 -72
- package/apis/batch-2016-08-10.paginators.json +6 -0
- package/apis/greengrassv2-2020-11-30.min.json +2 -1
- package/clients/batch.d.ts +239 -23
- package/clients/greengrassv2.d.ts +8 -4
- package/clients/health.d.ts +49 -49
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1025.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1025.0
|
|
6
|
+
* feature: Batch: Adds support for scheduling policy APIs.
|
|
7
|
+
* feature: GreengrassV2: This release adds support for Greengrass core devices running Windows. You can now specify name of a Windows user to run a component.
|
|
8
|
+
|
|
5
9
|
## 2.1024.0
|
|
6
10
|
* feature: ChimeSDKMeetings: Updated format validation for ids and regions.
|
|
7
11
|
* feature: EC2: This release adds internal validation on the GatewayAssociationState field
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1025.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -298,14 +298,22 @@
|
|
|
298
298
|
|
|
299
299
|
],
|
|
300
300
|
"image": "busybox",
|
|
301
|
-
"memory": 128,
|
|
302
301
|
"mountPoints": [
|
|
303
302
|
|
|
303
|
+
],
|
|
304
|
+
"resourceRequirements": [
|
|
305
|
+
{
|
|
306
|
+
"type": "MEMORY",
|
|
307
|
+
"value": "128"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"type": "VCPU",
|
|
311
|
+
"value": "1"
|
|
312
|
+
}
|
|
304
313
|
],
|
|
305
314
|
"ulimits": [
|
|
306
315
|
|
|
307
316
|
],
|
|
308
|
-
"vcpus": 1,
|
|
309
317
|
"volumes": [
|
|
310
318
|
|
|
311
319
|
]
|
|
@@ -504,8 +512,16 @@
|
|
|
504
512
|
"10"
|
|
505
513
|
],
|
|
506
514
|
"image": "busybox",
|
|
507
|
-
"
|
|
508
|
-
|
|
515
|
+
"resourceRequirements": [
|
|
516
|
+
{
|
|
517
|
+
"type": "MEMORY",
|
|
518
|
+
"value": "128"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"type": "VCPU",
|
|
522
|
+
"value": "1"
|
|
523
|
+
}
|
|
524
|
+
]
|
|
509
525
|
},
|
|
510
526
|
"jobDefinitionName": "sleep10"
|
|
511
527
|
},
|
|
@@ -533,8 +549,16 @@
|
|
|
533
549
|
"30"
|
|
534
550
|
],
|
|
535
551
|
"image": "busybox",
|
|
536
|
-
"
|
|
537
|
-
|
|
552
|
+
"resourceRequirements": [
|
|
553
|
+
{
|
|
554
|
+
"type": "MEMORY",
|
|
555
|
+
"value": "128"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"type": "VCPU",
|
|
559
|
+
"value": "1"
|
|
560
|
+
}
|
|
561
|
+
]
|
|
538
562
|
},
|
|
539
563
|
"jobDefinitionName": "sleep30",
|
|
540
564
|
"tags": {
|