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.336.8"
"${LATEST}": "3.336.11"
},
"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/CloudWatchLogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Added `ap-southeast-7` region

## 2.3.1

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CloudWatchLogs/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.3-dev"
"dev-master": "2.4-dev"
}
}
}
1 change: 1 addition & 0 deletions src/Service/CloudWatchLogs/src/CloudWatchLogsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ protected function getEndpointMetadata(?string $region): array
case 'ap-southeast-3':
case 'ap-southeast-4':
case 'ap-southeast-5':
case 'ap-southeast-7':
case 'ca-central-1':
case 'ca-west-1':
case 'eu-central-1':
Expand Down
1 change: 1 addition & 0 deletions src/Service/Ecr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- AWS api-change: Add support for Dualstack Endpoints
- AWS api-change: fix dkr- regions endpoint
- AWS api-change: Added `ap-southeast-7` region

## 1.7.0

Expand Down
1 change: 1 addition & 0 deletions src/Service/Ecr/src/EcrClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ protected function getEndpointMetadata(?string $region): array
case 'ap-southeast-3':
case 'ap-southeast-4':
case 'ap-southeast-5':
case 'ap-southeast-7':
case 'ca-central-1':
case 'ca-west-1':
case 'eu-central-1':
Expand Down
1 change: 1 addition & 0 deletions src/Service/Kms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- Added getPublicKey and verify operation
- AWS api-change: Added `ap-southeast-7` and `ap-southeast-7-fips` regions

## 1.6.0

Expand Down
8 changes: 8 additions & 0 deletions src/Service/Kms/src/KmsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -1077,6 +1077,7 @@ protected function getEndpointMetadata(?string $region): array
case 'ap-southeast-3':
case 'ap-southeast-4':
case 'ap-southeast-5':
case 'ap-southeast-7':
case 'ca-central-1':
case 'ca-west-1':
case 'eu-central-1':
Expand Down Expand Up @@ -1203,6 +1204,13 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'kms',
'signVersions' => ['v4'],
];
case 'ap-southeast-7-fips':
return [
'endpoint' => 'https://kms-fips.ap-southeast-7.amazonaws.com',
'signRegion' => 'ap-southeast-7',
'signService' => 'kms',
'signVersions' => ['v4'],
];
case 'ca-central-1-fips':
return [
'endpoint' => 'https://kms-fips.ca-central-1.amazonaws.com',
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Added `ap-southeast-7` region

## 2.7.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Lambda/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.7-dev"
"dev-master": "2.8-dev"
}
}
}
1 change: 1 addition & 0 deletions src/Service/Lambda/src/LambdaClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@ protected function getEndpointMetadata(?string $region): array
case 'ap-southeast-3':
case 'ap-southeast-4':
case 'ap-southeast-5':
case 'ap-southeast-7':
case 'ca-central-1':
case 'ca-west-1':
case 'eu-central-1':
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 (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region

## 2.5.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.5-dev"
"dev-master": "2.6-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 @@ -14,6 +14,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_7 = 'ap-southeast-7';
public const AP_SOUTH_1 = 'ap-south-1';
public const AP_SOUTH_2 = 'ap-south-2';
public const CA_CENTRAL_1 = 'ca-central-1';
Expand Down Expand Up @@ -50,6 +51,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_7 => true,
self::AP_SOUTH_1 => true,
self::AP_SOUTH_2 => true,
self::CA_CENTRAL_1 => 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 @@ -14,6 +14,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_7 = 'ap-southeast-7';
public const AP_SOUTH_1 = 'ap-south-1';
public const AP_SOUTH_2 = 'ap-south-2';
public const CA_CENTRAL_1 = 'ca-central-1';
Expand Down Expand Up @@ -55,6 +56,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_7 => true,
self::AP_SOUTH_1 => true,
self::AP_SOUTH_2 => true,
self::CA_CENTRAL_1 => true,
Expand Down
1 change: 1 addition & 0 deletions src/Service/S3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- AWS api-change: Amazon S3 introduces support for AWS Dedicated Local Zones
- AWS api-change: Added `ap-southeast-7` region

### Changed

Expand Down
1 change: 1 addition & 0 deletions src/Service/S3/src/S3Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -3209,6 +3209,7 @@ protected function getEndpointMetadata(?string $region): array
case 'ap-southeast-3':
case 'ap-southeast-4':
case 'ap-southeast-5':
case 'ap-southeast-7':
case 'ca-central-1':
case 'ca-west-1':
case 'eu-central-1':
Expand Down
4 changes: 4 additions & 0 deletions src/Service/SecretsManager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Added `ap-southeast-7` region

## 2.4.1

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/Service/SecretsManager/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev"
"dev-master": "2.5-dev"
}
}
}
1 change: 1 addition & 0 deletions src/Service/SecretsManager/src/SecretsManagerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,7 @@ protected function getEndpointMetadata(?string $region): array
case 'ap-southeast-3':
case 'ap-southeast-4':
case 'ap-southeast-5':
case 'ap-southeast-7':
case 'ca-central-1':
case 'ca-central-1-fips':
case 'ca-west-1':
Expand Down
Loading