Skip to content

Commit 2e2065a

Browse files
Update generated code (#1365)
* update generated code * Update src/Service/Route53/CHANGELOG.md Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 3151604 commit 2e2065a

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

Diff for: manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.257.6"
3+
"${LATEST}": "3.257.8"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

Diff for: src/Core/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 1.18.0
610

711
### Added

Diff for: src/Core/src/Sts/StsClient.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
class StsClient extends AbstractApi
2626
{
2727
/**
28-
* Returns a set of temporary security credentials that you can use to access Amazon Web Services resources that you
29-
* might not normally have access to. These temporary credentials consist of an access key ID, a secret access key, and
30-
* a security token. Typically, you use `AssumeRole` within your account or for cross-account access. For a comparison
31-
* of `AssumeRole` with other API operations that produce temporary credentials, see Requesting Temporary Security
32-
* Credentials and Comparing the Amazon Web Services STS API operations in the *IAM User Guide*.
28+
* Returns a set of temporary security credentials that you can use to access Amazon Web Services resources. These
29+
* temporary credentials consist of an access key ID, a secret access key, and a security token. Typically, you use
30+
* `AssumeRole` within your account or for cross-account access. For a comparison of `AssumeRole` with other API
31+
* operations that produce temporary credentials, see Requesting Temporary Security Credentials and Comparing the Amazon
32+
* Web Services STS API operations in the *IAM User Guide*.
3333
*
3434
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html
3535
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison

Diff for: src/Service/Route53/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: Amazon Route 53 now supports the Asia Pacific (Melbourne) Region (ap-southeast-4) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
8+
59
## 1.0.0
610

711
- AWS api-change: Add new APIs to support Route 53 IP Based Routing

Diff for: src/Service/Route53/src/Enum/ResourceRecordSetRegion.php

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ final class ResourceRecordSetRegion
2929
public const AP_SOUTHEAST_1 = 'ap-southeast-1';
3030
public const AP_SOUTHEAST_2 = 'ap-southeast-2';
3131
public const AP_SOUTHEAST_3 = 'ap-southeast-3';
32+
public const AP_SOUTHEAST_4 = 'ap-southeast-4';
3233
public const AP_SOUTH_1 = 'ap-south-1';
3334
public const AP_SOUTH_2 = 'ap-south-2';
3435
public const CA_CENTRAL_1 = 'ca-central-1';
@@ -61,6 +62,7 @@ public static function exists(string $value): bool
6162
self::AP_SOUTHEAST_1 => true,
6263
self::AP_SOUTHEAST_2 => true,
6364
self::AP_SOUTHEAST_3 => true,
65+
self::AP_SOUTHEAST_4 => true,
6466
self::AP_SOUTH_1 => true,
6567
self::AP_SOUTH_2 => true,
6668
self::CA_CENTRAL_1 => true,

Diff for: src/Service/Route53/src/Enum/VPCRegion.php

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ final class VPCRegion
1515
public const AP_SOUTHEAST_1 = 'ap-southeast-1';
1616
public const AP_SOUTHEAST_2 = 'ap-southeast-2';
1717
public const AP_SOUTHEAST_3 = 'ap-southeast-3';
18+
public const AP_SOUTHEAST_4 = 'ap-southeast-4';
1819
public const AP_SOUTH_1 = 'ap-south-1';
1920
public const AP_SOUTH_2 = 'ap-south-2';
2021
public const CA_CENTRAL_1 = 'ca-central-1';
@@ -51,6 +52,7 @@ public static function exists(string $value): bool
5152
self::AP_SOUTHEAST_1 => true,
5253
self::AP_SOUTHEAST_2 => true,
5354
self::AP_SOUTHEAST_3 => true,
55+
self::AP_SOUTHEAST_4 => true,
5456
self::AP_SOUTH_1 => true,
5557
self::AP_SOUTH_2 => true,
5658
self::CA_CENTRAL_1 => true,

0 commit comments

Comments
 (0)