Skip to content

Commit

Permalink
Updates SDK to v2.1635.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jun 5, 2024
1 parent 0d430fd commit 0b2e634
Show file tree
Hide file tree
Showing 18 changed files with 844 additions and 345 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1635.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "GlobalAccelerator",
"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."
},
{
"type": "feature",
"category": "Glue",
"description": "AWS Glue now supports native SaaS connectivity: Salesforce connector available now"
},
{
"type": "feature",
"category": "S3",
"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."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1634.0-->
<!--LATEST=2.1635.0-->
<!--ENTRYINSERT-->

## 2.1635.0
* 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.
* feature: Glue: AWS Glue now supports native SaaS connectivity: Salesforce connector available now
* 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.

## 2.1634.0
* 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.
* feature: Pipes: This release adds Timestream for LiveAnalytics as a supported target in EventBridge Pipes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

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

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
14 changes: 13 additions & 1 deletion apis/globalaccelerator-2018-08-08.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@
"endpointPrefix": "globalaccelerator",
"jsonVersion": "1.1",
"protocol": "json",
"protocols": [
"json"
],
"serviceFullName": "AWS Global Accelerator",
"serviceId": "Global Accelerator",
"signatureVersion": "v4",
"signingName": "globalaccelerator",
"targetPrefix": "GlobalAccelerator_V20180706",
"uid": "globalaccelerator-2018-08-08"
"uid": "globalaccelerator-2018-08-08",
"auth": [
"aws.auth#sigv4"
]
},
"operations": {
"AddCustomRoutingEndpoints": {
Expand Down Expand Up @@ -1124,6 +1130,9 @@
"AcceleratorArn": {},
"Name": {},
"IpAddressType": {},
"IpAddresses": {
"shape": "Sv"
},
"Enabled": {
"type": "boolean"
}
Expand Down Expand Up @@ -1204,6 +1213,9 @@
"AcceleratorArn": {},
"Name": {},
"IpAddressType": {},
"IpAddresses": {
"shape": "Sv"
},
"Enabled": {
"type": "boolean"
}
Expand Down
16 changes: 15 additions & 1 deletion apis/globalaccelerator-2018-08-08.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@
"endpointPrefix": "globalaccelerator",
"jsonVersion": "1.1",
"protocol": "json",
"protocols": [
"json"
],
"serviceFullName": "AWS Global Accelerator",
"serviceId": "Global Accelerator",
"signatureVersion": "v4",
"signingName": "globalaccelerator",
"targetPrefix": "GlobalAccelerator_V20180706",
"uid": "globalaccelerator-2018-08-08"
"uid": "globalaccelerator-2018-08-08",
"auth": [
"aws.auth#sigv4"
]
},
"operations": {
"AddCustomRoutingEndpoints": {
Expand Down Expand Up @@ -3902,6 +3908,10 @@
"shape": "IpAddressType",
"documentation": "<p>The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.</p>"
},
"IpAddresses": {
"shape": "IpAddresses",
"documentation": "<p>The IP addresses for an accelerator.</p>"
},
"Enabled": {
"shape": "GenericBoolean",
"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>"
Expand Down Expand Up @@ -4009,6 +4019,10 @@
"shape": "IpAddressType",
"documentation": "<p>The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.</p>"
},
"IpAddresses": {
"shape": "IpAddresses",
"documentation": "<p>The IP addresses for an accelerator.</p>"
},
"Enabled": {
"shape": "GenericBoolean",
"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>"
Expand Down
Loading

0 comments on commit 0b2e634

Please sign in to comment.