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.43"
"${LATEST}": "3.357.2"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Core/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 `us-isob-west-1` region

### Changed

- Apply new CodingStandard from latest php-cs-fixer.
Expand Down
2 changes: 1 addition & 1 deletion src/Core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.27-dev"
"dev-master": "1.28-dev"
}
}
}
15 changes: 8 additions & 7 deletions src/Core/src/Sts/StsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,14 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'sts',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
case 'us-isob-west-1':
return [
'endpoint' => "https://sts.$region.sc2s.sgov.gov",
'signRegion' => $region,
'signService' => 'sts',
'signVersions' => ['v4'],
];
case 'us-isof-east-1':
case 'us-isof-south-1':
return [
Expand All @@ -412,13 +420,6 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'sts',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://sts.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'sts',
'signVersions' => ['v4'],
];
}

return [
Expand Down
5 changes: 5 additions & 0 deletions src/Service/CloudFormation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## NOT RELEASED

### Added

- AWS api-change: Update endpoint ruleset parameters casing
- AWS apu-change: Added `us-isob-west-1` region

### Changed

- AWS enhancement: Documentation updates.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CloudFormation/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.10-dev"
"dev-master": "1.11-dev"
}
}
}
15 changes: 8 additions & 7 deletions src/Service/CloudFormation/src/CloudFormationClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'cloudformation',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
case 'us-isob-west-1':
return [
'endpoint' => "https://cloudformation.$region.sc2s.sgov.gov",
'signRegion' => $region,
'signService' => 'cloudformation',
'signVersions' => ['v4'],
];
case 'us-isof-east-1':
case 'us-isof-south-1':
return [
Expand All @@ -184,13 +192,6 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'cloudformation',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://cloudformation.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'cloudformation',
'signVersions' => ['v4'],
];
}

return [
Expand Down
4 changes: 4 additions & 0 deletions src/Service/CloudWatch/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 `us-isob-west-1` region

### Changed

- Apply new CodingStandard from latest php-cs-fixer.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CloudWatch/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
"dev-master": "1.4-dev"
}
}
}
15 changes: 8 additions & 7 deletions src/Service/CloudWatch/src/CloudWatchClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,14 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'monitoring',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
case 'us-isob-west-1':
return [
'endpoint' => "https://monitoring.$region.sc2s.sgov.gov",
'signRegion' => $region,
'signService' => 'monitoring',
'signVersions' => ['v4'],
];
case 'us-isof-east-1':
case 'us-isof-south-1':
return [
Expand All @@ -397,13 +405,6 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'monitoring',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://monitoring.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'monitoring',
'signVersions' => ['v4'],
];
}

return [
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 `us-isob-west-1` region

### Changed

- AWS enhancement: Documentation updates.
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.7-dev"
"dev-master": "2.8-dev"
}
}
}
15 changes: 8 additions & 7 deletions src/Service/CloudWatchLogs/src/CloudWatchLogsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,14 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'logs',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
case 'us-isob-west-1':
return [
'endpoint' => "https://logs.$region.sc2s.sgov.gov",
'signRegion' => $region,
'signService' => 'logs',
'signVersions' => ['v4'],
];
case 'us-isof-east-1':
case 'us-isof-south-1':
return [
Expand All @@ -410,13 +418,6 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'logs',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://logs.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'logs',
'signVersions' => ['v4'],
];
}

return [
Expand Down
4 changes: 4 additions & 0 deletions src/Service/CodeDeploy/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 `us-isob-west-1` region

### Changed

- Apply new CodingStandard from latest php-cs-fixer.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CodeDeploy/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.3-dev"
"dev-master": "2.4-dev"
}
}
}
15 changes: 8 additions & 7 deletions src/Service/CodeDeploy/src/CodeDeployClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,14 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'codedeploy',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
case 'us-isob-west-1':
return [
'endpoint' => "https://codedeploy.$region.sc2s.sgov.gov",
'signRegion' => $region,
'signService' => 'codedeploy',
'signVersions' => ['v4'],
];
case 'us-isof-east-1':
case 'us-isof-south-1':
return [
Expand All @@ -299,13 +307,6 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'codedeploy',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://codedeploy.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'codedeploy',
'signVersions' => ['v4'],
];
}

return [
Expand Down
4 changes: 4 additions & 0 deletions src/Service/DynamoDb/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 `us-isob-west-1` region

### Changed

- Apply new CodingStandard from latest php-cs-fixer.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/DynamoDb/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "3.8-dev"
"dev-master": "3.9-dev"
}
}
}
15 changes: 8 additions & 7 deletions src/Service/DynamoDb/src/DynamoDbClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -1202,6 +1202,14 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'dynamodb',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
case 'us-isob-west-1':
return [
'endpoint' => "https://dynamodb.$region.sc2s.sgov.gov",
'signRegion' => $region,
'signService' => 'dynamodb',
'signVersions' => ['v4'],
];
case 'us-isof-east-1':
case 'us-isof-south-1':
return [
Expand All @@ -1217,13 +1225,6 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'dynamodb',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://dynamodb.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'dynamodb',
'signVersions' => ['v4'],
];
}

return [
Expand Down
5 changes: 5 additions & 0 deletions src/Service/Ecr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## NOT RELEASED

### Added

- AWS api-change: Update endpoint ruleset parameters casing
- AWS api-change: Added `us-isob-west-1` region

### Changed

- Apply new CodingStandard from latest php-cs-fixer.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Ecr/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.11-dev"
"dev-master": "1.12-dev"
}
}
}
15 changes: 8 additions & 7 deletions src/Service/Ecr/src/EcrClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,14 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'ecr',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
case 'us-isob-west-1':
return [
'endpoint' => "https://api.ecr.$region.sc2s.sgov.gov",
'signRegion' => $region,
'signService' => 'ecr',
'signVersions' => ['v4'],
];
case 'us-isof-east-1':
case 'us-isof-south-1':
return [
Expand All @@ -180,13 +188,6 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'ecr',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://api.ecr.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'ecr',
'signVersions' => ['v4'],
];
}

return [
Expand Down
4 changes: 4 additions & 0 deletions src/Service/ElastiCache/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 `us-isob-west-1` region

### Changed

- Apply new CodingStandard from latest php-cs-fixer.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/ElastiCache/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
"dev-master": "1.5-dev"
}
}
}
Loading