Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support for ap-southeast-4 #3173

Merged
merged 1 commit into from
Jan 24, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,32 @@ public static List<Region> getRegions() {
updateRegion(region, "sts", "sts.ap-south-2.amazonaws.com", false, true);


// Support for Asia Pacific (Melbourne) `ap-southeast-4` region
region = new Region("ap-southeast-4", "amazonaws.com");
ret.add(region);
updateRegion(region, "autoscaling", "autoscaling.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "cognito-identity", "cognito-identity.ap-southeast-4.amazonaws.com",
false, true);
updateRegion(region, "cognito-idp", "cognito-idp.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "cognito-sync", "cognito-sync.ap-southeast-4.amazonaws.com", false,
true);
updateRegion(region, "data.iot", "data.iot.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "dynamodb", "dynamodb.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "ec2", "ec2.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "elasticloadbalancing",
"elasticloadbalancing.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "firehose", "firehose.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "iot", "iot.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "kinesis", "kinesis.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "kms", "kms.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "lambda", "lambda.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "logs", "logs.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "polly", "polly.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "s3", "s3.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "sdb", "sdb.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "sns", "sns.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "sqs", "sqs.ap-southeast-4.amazonaws.com", false, true);
updateRegion(region, "sts", "sts.ap-southeast-4.amazonaws.com", false, true);
return ret;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ public enum Regions {
/** ap-southeast-2. */
AP_SOUTHEAST_2("ap-southeast-2"),

/** ap-southeast-4. */
AP_SOUTHEAST_4("ap-southeast-4"),

/** ap-northeast-1. */
AP_NORTHEAST_1("ap-northeast-1"),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void testGetRegionByEndpointWithBogusEndpoint() {
@Test
public void testGetRegionsForService() {
List<Region> regions = RegionUtils.getRegionsForService(ServiceAbbreviations.SimpleDB);
assertEquals(regions.size(), 14);
assertEquals(regions.size(), 15);
boolean usEast1 = false;
boolean usWest1 = false;
for (Region curr : regions) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,19 @@ public enum Region {
* bucket in this region.
* </p>
*/
AP_HYD("ap-south-2");
AP_HYD("ap-south-2"),

/**
* The Asia Pacific (Melbourne) Region. This region uses Amazon S3 servers
* located in Melbourne.
* <p>
* When using buckets in this region, set the client endpoint to
* <code>s3-ap-southeast-4.amazonaws.com</code> on all requests to these buckets
* to reduce any latency experienced after the first hour of creating a
* bucket in this region.
* </p>
*/
AP_Melbourne("ap-southeast-4");

/**
* Used to extract the S3 regional id from an S3 end point. Note this
Expand Down