Skip to content

Commit

Permalink
Add new ap-southeast-4 region (#2404)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas11 committed Mar 8, 2023
1 parent 93273a5 commit 74a119d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions provider/cmd/pulumi-resource-aws/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -95075,6 +95075,10 @@
"name": "APSoutheast3",
"value": "ap-southeast-3"
},
{
"name": "APSoutheast4",
"value": "ap-southeast-4"
},
{
"name": "CACentral",
"value": "ca-central-1"
Expand Down
1 change: 1 addition & 0 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -3721,6 +3721,7 @@ func Provider() tfbridge.ProviderInfo {
{Value: "ap-southeast-1", Name: "APSoutheast1"},
{Value: "ap-southeast-2", Name: "APSoutheast2"},
{Value: "ap-southeast-3", Name: "APSoutheast3"},
{Value: "ap-southeast-4", Name: "APSoutheast4"},
{Value: "ca-central-1", Name: "CACentral"},
{Value: "cn-north-1", Name: "CNNorth1"},
{Value: "cn-northwest-1", Name: "CNNorthwest1"},
Expand Down
1 change: 1 addition & 0 deletions sdk/dotnet/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ private Region(string value)
public static Region APSoutheast1 { get; } = new Region("ap-southeast-1");
public static Region APSoutheast2 { get; } = new Region("ap-southeast-2");
public static Region APSoutheast3 { get; } = new Region("ap-southeast-3");
public static Region APSoutheast4 { get; } = new Region("ap-southeast-4");
public static Region CACentral { get; } = new Region("ca-central-1");
public static Region CNNorth1 { get; } = new Region("cn-north-1");
public static Region CNNorthwest1 { get; } = new Region("cn-northwest-1");
Expand Down
1 change: 1 addition & 0 deletions sdk/go/aws/pulumiEnums.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions sdk/java/src/main/java/com/pulumi/aws/enums/Region.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public enum Region {
APSoutheast1("ap-southeast-1"),
APSoutheast2("ap-southeast-2"),
APSoutheast3("ap-southeast-3"),
APSoutheast4("ap-southeast-4"),
CACentral("ca-central-1"),
CNNorth1("cn-north-1"),
CNNorthwest1("cn-northwest-1"),
Expand Down
1 change: 1 addition & 0 deletions sdk/nodejs/types/enums/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const Region = {
APSoutheast1: "ap-southeast-1",
APSoutheast2: "ap-southeast-2",
APSoutheast3: "ap-southeast-3",
APSoutheast4: "ap-southeast-4",
CACentral: "ca-central-1",
CNNorth1: "cn-north-1",
CNNorthwest1: "cn-northwest-1",
Expand Down
1 change: 1 addition & 0 deletions sdk/python/pulumi_aws/_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class Region(str, Enum):
AP_SOUTHEAST1 = "ap-southeast-1"
AP_SOUTHEAST2 = "ap-southeast-2"
AP_SOUTHEAST3 = "ap-southeast-3"
AP_SOUTHEAST4 = "ap-southeast-4"
CA_CENTRAL = "ca-central-1"
CN_NORTH1 = "cn-north-1"
CN_NORTHWEST1 = "cn-northwest-1"
Expand Down

0 comments on commit 74a119d

Please sign in to comment.