Skip to content

Commit 0ac4f08

Browse files
Release v1.53.17 (2024-06-05) (#5278)
Release v1.53.17 (2024-06-05) === ### Service Client Updates * `service/globalaccelerator`: Updates service API and documentation * `service/glue`: Updates service API and documentation * AWS Glue now supports native SaaS connectivity: Salesforce connector available now * `service/s3`: Updates service API and examples * 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.
1 parent 471f560 commit 0ac4f08

File tree

15 files changed

+1286
-194
lines changed

15 files changed

+1286
-194
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Release v1.53.17 (2024-06-05)
2+
===
3+
4+
### Service Client Updates
5+
* `service/globalaccelerator`: Updates service API and documentation
6+
* `service/glue`: Updates service API and documentation
7+
* AWS Glue now supports native SaaS connectivity: Salesforce connector available now
8+
* `service/s3`: Updates service API and examples
9+
* 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.
10+
111
Release v1.53.16 (2024-06-04)
212
===
313

aws/endpoints/defaults.go

Lines changed: 118 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.53.16"
8+
const SDKVersion = "1.53.17"

models/apis/globalaccelerator/2018-08-08/api-2.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
"endpointPrefix":"globalaccelerator",
66
"jsonVersion":"1.1",
77
"protocol":"json",
8+
"protocols":["json"],
89
"serviceFullName":"AWS Global Accelerator",
910
"serviceId":"Global Accelerator",
1011
"signatureVersion":"v4",
1112
"signingName":"globalaccelerator",
1213
"targetPrefix":"GlobalAccelerator_V20180706",
13-
"uid":"globalaccelerator-2018-08-08"
14+
"uid":"globalaccelerator-2018-08-08",
15+
"auth":["aws.auth#sigv4"]
1416
},
1517
"operations":{
1618
"AddCustomRoutingEndpoints":{
@@ -2329,6 +2331,7 @@
23292331
"AcceleratorArn":{"shape":"GenericString"},
23302332
"Name":{"shape":"GenericString"},
23312333
"IpAddressType":{"shape":"IpAddressType"},
2334+
"IpAddresses":{"shape":"IpAddresses"},
23322335
"Enabled":{"shape":"GenericBoolean"}
23332336
}
23342337
},
@@ -2379,6 +2382,7 @@
23792382
"AcceleratorArn":{"shape":"GenericString"},
23802383
"Name":{"shape":"GenericString"},
23812384
"IpAddressType":{"shape":"IpAddressType"},
2385+
"IpAddresses":{"shape":"IpAddresses"},
23822386
"Enabled":{"shape":"GenericBoolean"}
23832387
}
23842388
},

models/apis/globalaccelerator/2018-08-08/docs-2.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,9 @@
10041004
"refs": {
10051005
"CreateAcceleratorRequest$IpAddresses": "<p>Optionally, if you've added your own IP address pool to Global Accelerator (BYOIP), you can choose an IPv4 address from your own pool to use for the accelerator's static IPv4 address when you create an accelerator. </p> <p>After you bring an address range to Amazon Web Services, it appears in your account as an address pool. When you create an accelerator, you can assign one IPv4 address from your range to it. Global Accelerator assigns you a second static IPv4 address from an Amazon IP address range. If you bring two IPv4 address ranges to Amazon Web Services, you can assign one IPv4 address from each range to your accelerator. This restriction is because Global Accelerator assigns each address range to a different network zone, for high availability.</p> <p>You can specify one or two addresses, separated by a space. Do not include the /32 suffix.</p> <p>Note that you can't update IP addresses for an existing accelerator. To change them, you must create a new accelerator with the new addresses.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html\">Bring your own IP addresses (BYOIP)</a> in the <i>Global Accelerator Developer Guide</i>.</p>",
10061006
"CreateCustomRoutingAcceleratorRequest$IpAddresses": "<p>Optionally, if you've added your own IP address pool to Global Accelerator (BYOIP), you can choose an IPv4 address from your own pool to use for the accelerator's static IPv4 address when you create an accelerator. </p> <p>After you bring an address range to Amazon Web Services, it appears in your account as an address pool. When you create an accelerator, you can assign one IPv4 address from your range to it. Global Accelerator assigns you a second static IPv4 address from an Amazon IP address range. If you bring two IPv4 address ranges to Amazon Web Services, you can assign one IPv4 address from each range to your accelerator. This restriction is because Global Accelerator assigns each address range to a different network zone, for high availability.</p> <p>You can specify one or two addresses, separated by a space. Do not include the /32 suffix.</p> <p>Note that you can't update IP addresses for an existing accelerator. To change them, you must create a new accelerator with the new addresses.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html\">Bring your own IP addresses (BYOIP)</a> in the <i>Global Accelerator Developer Guide</i>.</p>",
1007-
"IpSet$IpAddresses": "<p>The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.</p>"
1007+
"IpSet$IpAddresses": "<p>The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.</p>",
1008+
"UpdateAcceleratorRequest$IpAddresses": "<p>The IP addresses for an accelerator.</p>",
1009+
"UpdateCustomRoutingAcceleratorRequest$IpAddresses": "<p>The IP addresses for an accelerator.</p>"
10081010
}
10091011
},
10101012
"IpSet": {

0 commit comments

Comments
 (0)