Skip to content

Commit

Permalink
Upgrade terraform-provider-aws to v5.23.1 (#2942)
Browse files Browse the repository at this point in the history
This PR was generated via `$ upgrade-provider pulumi/pulumi-aws`.

---

- Upgrading terraform-provider-aws from 5.23.0  to 5.23.1.
	Fixes #2934
  • Loading branch information
iwahbe authored Oct 30, 2023
1 parent a6ba396 commit 8d8a922
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 7 deletions.
1 change: 1 addition & 0 deletions provider/cmd/pulumi-resource-aws/bridge-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -241302,6 +241302,7 @@
"maxAge": "max_age"
},
"aws:lambda/getFunctionVpcConfig:getFunctionVpcConfig": {
"ipv6AllowedForDualStack": "ipv6_allowed_for_dual_stack",
"securityGroupIds": "security_group_ids",
"subnetIds": "subnet_ids",
"vpcId": "vpc_id"
Expand Down
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 @@ -76550,6 +76550,9 @@
},
"aws:lambda/getFunctionVpcConfig:getFunctionVpcConfig": {
"properties": {
"ipv6AllowedForDualStack": {
"type": "boolean"
},
"securityGroupIds": {
"type": "array",
"items": {
Expand All @@ -76568,6 +76571,7 @@
},
"type": "object",
"required": [
"ipv6AllowedForDualStack",
"securityGroupIds",
"subnetIds",
"vpcId"
Expand Down
4 changes: 4 additions & 0 deletions sdk/dotnet/Lambda/Outputs/GetFunctionVpcConfigResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,22 @@ namespace Pulumi.Aws.Lambda.Outputs
[OutputType]
public sealed class GetFunctionVpcConfigResult
{
public readonly bool Ipv6AllowedForDualStack;
public readonly ImmutableArray<string> SecurityGroupIds;
public readonly ImmutableArray<string> SubnetIds;
public readonly string VpcId;

[OutputConstructor]
private GetFunctionVpcConfigResult(
bool ipv6AllowedForDualStack,

ImmutableArray<string> securityGroupIds,

ImmutableArray<string> subnetIds,

string vpcId)
{
Ipv6AllowedForDualStack = ipv6AllowedForDualStack;
SecurityGroupIds = securityGroupIds;
SubnetIds = subnetIds;
VpcId = vpcId;
Expand Down
18 changes: 12 additions & 6 deletions sdk/go/aws/lambda/pulumiTypes.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 @@ -4,17 +4,22 @@
package com.pulumi.aws.lambda.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;

@CustomType
public final class GetFunctionVpcConfig {
private Boolean ipv6AllowedForDualStack;
private List<String> securityGroupIds;
private List<String> subnetIds;
private String vpcId;

private GetFunctionVpcConfig() {}
public Boolean ipv6AllowedForDualStack() {
return this.ipv6AllowedForDualStack;
}
public List<String> securityGroupIds() {
return this.securityGroupIds;
}
Expand All @@ -34,17 +39,24 @@ public static Builder builder(GetFunctionVpcConfig defaults) {
}
@CustomType.Builder
public static final class Builder {
private Boolean ipv6AllowedForDualStack;
private List<String> securityGroupIds;
private List<String> subnetIds;
private String vpcId;
public Builder() {}
public Builder(GetFunctionVpcConfig defaults) {
Objects.requireNonNull(defaults);
this.ipv6AllowedForDualStack = defaults.ipv6AllowedForDualStack;
this.securityGroupIds = defaults.securityGroupIds;
this.subnetIds = defaults.subnetIds;
this.vpcId = defaults.vpcId;
}

@CustomType.Setter
public Builder ipv6AllowedForDualStack(Boolean ipv6AllowedForDualStack) {
this.ipv6AllowedForDualStack = Objects.requireNonNull(ipv6AllowedForDualStack);
return this;
}
@CustomType.Setter
public Builder securityGroupIds(List<String> securityGroupIds) {
this.securityGroupIds = Objects.requireNonNull(securityGroupIds);
Expand All @@ -68,6 +80,7 @@ public Builder vpcId(String vpcId) {
}
public GetFunctionVpcConfig build() {
final var o = new GetFunctionVpcConfig();
o.ipv6AllowedForDualStack = ipv6AllowedForDualStack;
o.securityGroupIds = securityGroupIds;
o.subnetIds = subnetIds;
o.vpcId = vpcId;
Expand Down
1 change: 1 addition & 0 deletions sdk/nodejs/types/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39134,6 +39134,7 @@ export namespace lambda {
}

export interface GetFunctionVpcConfig {
ipv6AllowedForDualStack: boolean;
securityGroupIds: string[];
subnetIds: string[];
vpcId: string;
Expand Down
7 changes: 7 additions & 0 deletions sdk/python/pulumi_aws/lambda_/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,13 +1148,20 @@ def max_age(self) -> int:
@pulumi.output_type
class GetFunctionVpcConfigResult(dict):
def __init__(__self__, *,
ipv6_allowed_for_dual_stack: bool,
security_group_ids: Sequence[str],
subnet_ids: Sequence[str],
vpc_id: str):
pulumi.set(__self__, "ipv6_allowed_for_dual_stack", ipv6_allowed_for_dual_stack)
pulumi.set(__self__, "security_group_ids", security_group_ids)
pulumi.set(__self__, "subnet_ids", subnet_ids)
pulumi.set(__self__, "vpc_id", vpc_id)

@property
@pulumi.getter(name="ipv6AllowedForDualStack")
def ipv6_allowed_for_dual_stack(self) -> bool:
return pulumi.get(self, "ipv6_allowed_for_dual_stack")

@property
@pulumi.getter(name="securityGroupIds")
def security_group_ids(self) -> Sequence[str]:
Expand Down

0 comments on commit 8d8a922

Please sign in to comment.