Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.356.7"
"${LATEST}": "3.356.10"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Route53/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Amazon Route 53 now supports the Asia Pacific (New Zealand) Region (ap-southeast-6) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.

## 2.10.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Route53/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.10-dev"
"dev-master": "2.11-dev"
}
}
}
2 changes: 2 additions & 0 deletions src/Service/Route53/src/Enum/ResourceRecordSetRegion.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ final class ResourceRecordSetRegion
public const AP_SOUTHEAST_3 = 'ap-southeast-3';
public const AP_SOUTHEAST_4 = 'ap-southeast-4';
public const AP_SOUTHEAST_5 = 'ap-southeast-5';
public const AP_SOUTHEAST_6 = 'ap-southeast-6';
public const AP_SOUTHEAST_7 = 'ap-southeast-7';
public const AP_SOUTH_1 = 'ap-south-1';
public const AP_SOUTH_2 = 'ap-south-2';
Expand Down Expand Up @@ -56,6 +57,7 @@ public static function exists(string $value): bool
self::AP_SOUTHEAST_3 => true,
self::AP_SOUTHEAST_4 => true,
self::AP_SOUTHEAST_5 => true,
self::AP_SOUTHEAST_6 => true,
self::AP_SOUTHEAST_7 => true,
self::AP_SOUTH_1 => true,
self::AP_SOUTH_2 => true,
Expand Down
2 changes: 2 additions & 0 deletions src/Service/Route53/src/Enum/VPCRegion.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ final class VPCRegion
public const AP_SOUTHEAST_3 = 'ap-southeast-3';
public const AP_SOUTHEAST_4 = 'ap-southeast-4';
public const AP_SOUTHEAST_5 = 'ap-southeast-5';
public const AP_SOUTHEAST_6 = 'ap-southeast-6';
public const AP_SOUTHEAST_7 = 'ap-southeast-7';
public const AP_SOUTH_1 = 'ap-south-1';
public const AP_SOUTH_2 = 'ap-south-2';
Expand Down Expand Up @@ -62,6 +63,7 @@ public static function exists(string $value): bool
self::AP_SOUTHEAST_3 => true,
self::AP_SOUTHEAST_4 => true,
self::AP_SOUTHEAST_5 => true,
self::AP_SOUTHEAST_6 => true,
self::AP_SOUTHEAST_7 => true,
self::AP_SOUTH_1 => true,
self::AP_SOUTH_2 => true,
Expand Down