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

Add Support for Java17 Runtime #2701

Merged
merged 1 commit into from
Aug 18, 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
6 changes: 5 additions & 1 deletion provider/cmd/pulumi-resource-aws/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -74078,6 +74078,10 @@
"name": "Java11",
"value": "java11"
},
{
"name": "Java17",
"value": "java17"
},
{
"name": "Ruby2d5",
"value": "ruby2.5",
Expand Down Expand Up @@ -342876,4 +342880,4 @@
}
}
}
}
}
1 change: 1 addition & 0 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -5744,6 +5744,7 @@ func Provider() *tfbridge.ProviderInfo {
{Value: "java8", Name: "Java8"},
{Value: "java8.al2", Name: "Java8AL2"},
{Value: "java11", Name: "Java11"},
{Value: "java17", Name: "Java17"},
{Value: "ruby2.5", Name: "Ruby2d5", DeprecationMessage: "This runtime is now deprecated"},
{Value: "ruby2.7", Name: "Ruby2d7"},
{Value: "ruby3.2", Name: "Ruby3d2"},
Expand Down
1 change: 1 addition & 0 deletions sdk/dotnet/Lambda/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ private Runtime(string value)
public static Runtime Java8 { get; } = new Runtime("java8");
public static Runtime Java8AL2 { get; } = new Runtime("java8.al2");
public static Runtime Java11 { get; } = new Runtime("java11");
public static Runtime Java17 { get; } = new Runtime("java17");
[Obsolete(@"This runtime is now deprecated")]
public static Runtime Ruby2d5 { get; } = new Runtime("ruby2.5");
public static Runtime Ruby2d7 { get; } = new Runtime("ruby2.7");
Expand Down
1 change: 1 addition & 0 deletions sdk/go/aws/lambda/pulumiEnums.go

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

Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public enum Runtime {
Java8("java8"),
Java8AL2("java8.al2"),
Java11("java11"),
Java17("java17"),
/**
* @deprecated
* This runtime is now deprecated
Expand Down
1 change: 1 addition & 0 deletions sdk/nodejs/types/enums/lambda/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const Runtime = {
Java8: "java8",
Java8AL2: "java8.al2",
Java11: "java11",
Java17: "java17",
/**
* @deprecated This runtime is now deprecated
*/
Expand Down
1 change: 1 addition & 0 deletions sdk/python/pulumi_aws/lambda_/_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class Runtime(str, Enum):
JAVA8 = "java8"
JAVA8_AL2 = "java8.al2"
JAVA11 = "java11"
JAVA17 = "java17"
RUBY2D5 = "ruby2.5"
RUBY2D7 = "ruby2.7"
RUBY3D2 = "ruby3.2"
Expand Down