Skip to content

Commit 0b2e634

Browse files
author
awstools
committed
Updates SDK to v2.1635.0
1 parent 0d430fd commit 0b2e634

18 files changed

+844
-345
lines changed

.changes/2.1635.0.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "GlobalAccelerator",
5+
"description": "This release contains a new optional ip-addresses input field for the update accelerator and update custom routing accelerator apis. This input enables consumers to replace IPv4 addresses on existing accelerators with addresses provided in the input."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Glue",
10+
"description": "AWS Glue now supports native SaaS connectivity: Salesforce connector available now"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "S3",
15+
"description": "Added new params copySource and key to copyObject API for supporting S3 Access Grants plugin. These changes will not change any of the existing S3 API functionality."
16+
}
17+
]

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1634.0-->
2+
<!--LATEST=2.1635.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1635.0
6+
* feature: GlobalAccelerator: This release contains a new optional ip-addresses input field for the update accelerator and update custom routing accelerator apis. This input enables consumers to replace IPv4 addresses on existing accelerators with addresses provided in the input.
7+
* feature: Glue: AWS Glue now supports native SaaS connectivity: Salesforce connector available now
8+
* feature: S3: Added new params copySource and key to copyObject API for supporting S3 Access Grants plugin. These changes will not change any of the existing S3 API functionality.
9+
510
## 2.1634.0
611
* feature: EC2: U7i instances with up to 32 TiB of DDR5 memory and 896 vCPUs are now available. C7i-flex instances are launched and are lower-priced variants of the Amazon EC2 C7i instances that offer a baseline level of CPU performance with the ability to scale up to the full compute performance 95% of the time.
712
* feature: Pipes: This release adds Timestream for LiveAnalytics as a supported target in EventBridge Pipes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
6464
To use the SDK in the browser, simply add the following script tag to your
6565
HTML pages:
6666

67-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1634.0.min.js"></script>
67+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1635.0.min.js"></script>
6868

6969
You can also build a custom browser SDK with your specified set of AWS services.
7070
This can allow you to reduce the SDK's size, specify different API versions of

apis/globalaccelerator-2018-08-08.min.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
"endpointPrefix": "globalaccelerator",
66
"jsonVersion": "1.1",
77
"protocol": "json",
8+
"protocols": [
9+
"json"
10+
],
811
"serviceFullName": "AWS Global Accelerator",
912
"serviceId": "Global Accelerator",
1013
"signatureVersion": "v4",
1114
"signingName": "globalaccelerator",
1215
"targetPrefix": "GlobalAccelerator_V20180706",
13-
"uid": "globalaccelerator-2018-08-08"
16+
"uid": "globalaccelerator-2018-08-08",
17+
"auth": [
18+
"aws.auth#sigv4"
19+
]
1420
},
1521
"operations": {
1622
"AddCustomRoutingEndpoints": {
@@ -1124,6 +1130,9 @@
11241130
"AcceleratorArn": {},
11251131
"Name": {},
11261132
"IpAddressType": {},
1133+
"IpAddresses": {
1134+
"shape": "Sv"
1135+
},
11271136
"Enabled": {
11281137
"type": "boolean"
11291138
}
@@ -1204,6 +1213,9 @@
12041213
"AcceleratorArn": {},
12051214
"Name": {},
12061215
"IpAddressType": {},
1216+
"IpAddresses": {
1217+
"shape": "Sv"
1218+
},
12071219
"Enabled": {
12081220
"type": "boolean"
12091221
}

apis/globalaccelerator-2018-08-08.normal.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
"endpointPrefix": "globalaccelerator",
66
"jsonVersion": "1.1",
77
"protocol": "json",
8+
"protocols": [
9+
"json"
10+
],
811
"serviceFullName": "AWS Global Accelerator",
912
"serviceId": "Global Accelerator",
1013
"signatureVersion": "v4",
1114
"signingName": "globalaccelerator",
1215
"targetPrefix": "GlobalAccelerator_V20180706",
13-
"uid": "globalaccelerator-2018-08-08"
16+
"uid": "globalaccelerator-2018-08-08",
17+
"auth": [
18+
"aws.auth#sigv4"
19+
]
1420
},
1521
"operations": {
1622
"AddCustomRoutingEndpoints": {
@@ -3902,6 +3908,10 @@
39023908
"shape": "IpAddressType",
39033909
"documentation": "<p>The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.</p>"
39043910
},
3911+
"IpAddresses": {
3912+
"shape": "IpAddresses",
3913+
"documentation": "<p>The IP addresses for an accelerator.</p>"
3914+
},
39053915
"Enabled": {
39063916
"shape": "GenericBoolean",
39073917
"documentation": "<p>Indicates whether an accelerator is enabled. The value is true or false. The default value is true. </p> <p>If the value is set to true, the accelerator cannot be deleted. If set to false, the accelerator can be deleted.</p>"
@@ -4009,6 +4019,10 @@
40094019
"shape": "IpAddressType",
40104020
"documentation": "<p>The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.</p>"
40114021
},
4022+
"IpAddresses": {
4023+
"shape": "IpAddresses",
4024+
"documentation": "<p>The IP addresses for an accelerator.</p>"
4025+
},
40124026
"Enabled": {
40134027
"shape": "GenericBoolean",
40144028
"documentation": "<p>Indicates whether an accelerator is enabled. The value is true or false. The default value is true. </p> <p>If the value is set to true, the accelerator cannot be deleted. If set to false, the accelerator can be deleted.</p>"

0 commit comments

Comments
 (0)