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.13"
"${LATEST}": "3.336.15"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
1 change: 1 addition & 0 deletions src/Service/CloudWatchLogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- AWS api-change: Added `ap-southeast-7` region
- AWS api-change: Added `mx-central-1` region

## 2.3.1

Expand Down
1 change: 1 addition & 0 deletions src/Service/CloudWatchLogs/src/CloudWatchLogsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ protected function getEndpointMetadata(?string $region): array
case 'il-central-1':
case 'me-central-1':
case 'me-south-1':
case 'mx-central-1':
case 'sa-east-1':
case 'us-east-1':
case 'us-east-2':
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 @@ -7,6 +7,7 @@
- AWS api-change: Add support for Dualstack Endpoints
- AWS api-change: fix dkr- regions endpoint
- AWS api-change: Added `ap-southeast-7` region
- AWS api-change: Added `mx-central-1` 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 @@ -86,6 +86,7 @@ protected function getEndpointMetadata(?string $region): array
case 'il-central-1':
case 'me-central-1':
case 'me-south-1':
case 'mx-central-1':
case 'sa-east-1':
case 'us-east-1':
case 'us-east-2':
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 @@ -6,6 +6,7 @@

- Added getPublicKey and verify operation
- AWS api-change: Added `ap-southeast-7` and `ap-southeast-7-fips` regions
- AWS api-change: Added `mx-central-1` and `mx-central-1-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 @@ -1091,6 +1091,7 @@ protected function getEndpointMetadata(?string $region): array
case 'il-central-1':
case 'me-central-1':
case 'me-south-1':
case 'mx-central-1':
case 'sa-east-1':
case 'us-east-1':
case 'us-east-2':
Expand Down Expand Up @@ -1302,6 +1303,13 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'kms',
'signVersions' => ['v4'],
];
case 'mx-central-1-fips':
return [
'endpoint' => 'https://kms-fips.mx-central-1.amazonaws.com',
'signRegion' => 'mx-central-1',
'signService' => 'kms',
'signVersions' => ['v4'],
];
case 'sa-east-1-fips':
return [
'endpoint' => 'https://kms-fips.sa-east-1.amazonaws.com',
Expand Down
1 change: 1 addition & 0 deletions src/Service/Lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- AWS api-change: Added `ap-southeast-7` region
- AWS api-change: Added `mx-central-1` region

## 2.7.0

Expand Down
1 change: 1 addition & 0 deletions src/Service/Lambda/src/LambdaClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,7 @@ protected function getEndpointMetadata(?string $region): array
case 'il-central-1':
case 'me-central-1':
case 'me-south-1':
case 'mx-central-1':
case 'sa-east-1':
case 'us-east-1':
case 'us-east-2':
Expand Down
1 change: 1 addition & 0 deletions src/Service/Route53/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### 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
- AWS api-change: Amazon Route 53 now supports the Mexico (Central) Region (mx-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region

## 2.5.0

Expand Down
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 @@ -32,6 +32,7 @@ final class ResourceRecordSetRegion
public const IL_CENTRAL_1 = 'il-central-1';
public const ME_CENTRAL_1 = 'me-central-1';
public const ME_SOUTH_1 = 'me-south-1';
public const MX_CENTRAL_1 = 'mx-central-1';
public const SA_EAST_1 = 'sa-east-1';
public const US_EAST_1 = 'us-east-1';
public const US_EAST_2 = 'us-east-2';
Expand Down Expand Up @@ -69,6 +70,7 @@ public static function exists(string $value): bool
self::IL_CENTRAL_1 => true,
self::ME_CENTRAL_1 => true,
self::ME_SOUTH_1 => true,
self::MX_CENTRAL_1 => true,
self::SA_EAST_1 => true,
self::US_EAST_1 => true,
self::US_EAST_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 @@ -32,6 +32,7 @@ final class VPCRegion
public const IL_CENTRAL_1 = 'il-central-1';
public const ME_CENTRAL_1 = 'me-central-1';
public const ME_SOUTH_1 = 'me-south-1';
public const MX_CENTRAL_1 = 'mx-central-1';
public const SA_EAST_1 = 'sa-east-1';
public const US_EAST_1 = 'us-east-1';
public const US_EAST_2 = 'us-east-2';
Expand Down Expand Up @@ -74,6 +75,7 @@ public static function exists(string $value): bool
self::IL_CENTRAL_1 => true,
self::ME_CENTRAL_1 => true,
self::ME_SOUTH_1 => true,
self::MX_CENTRAL_1 => true,
self::SA_EAST_1 => true,
self::US_EAST_1 => true,
self::US_EAST_2 => 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 @@ -6,6 +6,7 @@

- AWS api-change: Amazon S3 introduces support for AWS Dedicated Local Zones
- AWS api-change: Added `ap-southeast-7` region
- AWS api-change: Added `mx-central-1` 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 @@ -3223,6 +3223,7 @@ protected function getEndpointMetadata(?string $region): array
case 'il-central-1':
case 'me-central-1':
case 'me-south-1':
case 'mx-central-1':
case 'sa-east-1':
case 'us-east-1':
case 'us-east-2':
Expand Down
1 change: 1 addition & 0 deletions src/Service/SecretsManager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- AWS api-change: Added `ap-southeast-7` region
- AWS api-change: Added `mx-central-1` region

## 2.4.1

Expand Down
1 change: 1 addition & 0 deletions src/Service/SecretsManager/src/SecretsManagerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,7 @@ protected function getEndpointMetadata(?string $region): array
case 'il-central-1':
case 'me-central-1':
case 'me-south-1':
case 'mx-central-1':
case 'sa-east-1':
case 'us-east-1':
case 'us-east-1-fips':
Expand Down
Loading