Skip to content

Commit c2a8f00

Browse files
authored
Merge pull request #21 from pulumi/upgrade-pulumi-deps
Upgrade to pulumi v3.37.2
2 parents d220456 + 99c2ce3 commit c2a8f00

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+288
-70
lines changed

.github/workflows/ci.yml

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
env:
2+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3+
jobs:
4+
comment-notification:
5+
if: github.event_name == 'repository_dispatch'
6+
name: comment-notification
7+
runs-on: ubuntu-latest
8+
steps:
9+
- id: run-url
10+
name: Create URL to the run output
11+
run: echo ::set-output
12+
name=run-url::https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID
13+
- name: Update with Result
14+
uses: peter-evans/create-or-update-comment@v1
15+
with:
16+
body: "Please view the PR build: ${{ steps.run-url.outputs.run-url }}"
17+
issue-number: ${{ github.event.client_payload.github.payload.issue.number }}
18+
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
19+
token: ${{ secrets.PULUMI_BOT_TOKEN }}
20+
build_binary:
21+
if: github.event_name == 'repository_dispatch' ||
22+
github.event.pull_request.head.repo.full_name == github.repository
23+
name: Build Provider Binary
24+
runs-on: macos-latest
25+
steps:
26+
- name: Checkout Repo
27+
uses: actions/checkout@v2
28+
- name: Unshallow clone for tags
29+
run: git fetch --prune --unshallow --tags
30+
- name: Setup Go
31+
uses: actions/setup-go@v2
32+
with:
33+
go-version: 1.18.x
34+
- name: Install pulumictl
35+
uses: jaxxstorm/[email protected]
36+
with:
37+
repo: pulumi/pulumictl
38+
- name: Install Pulumi CLI
39+
uses: pulumi/[email protected]
40+
- name: Set PreRelease Version
41+
run: echo "GORELEASER_CURRENT_TAG=v$(pulumictl get version --language generic)"
42+
>> $GITHUB_ENV
43+
- name: Run GoReleaser
44+
uses: goreleaser/goreleaser-action@v2
45+
with:
46+
args: -f .goreleaser-prerelease.yml --rm-dist --skip-validate
47+
version: latest
48+
build_sdk:
49+
if: github.event_name == 'repository_dispatch' ||
50+
github.event.pull_request.head.repo.full_name == github.repository
51+
name: Build SDKs
52+
runs-on: ubuntu-latest
53+
needs: build_binary
54+
steps:
55+
- name: Checkout Repo
56+
uses: actions/checkout@v2
57+
- name: Unshallow clone for tags
58+
run: git fetch --prune --unshallow --tags
59+
- name: Install Go
60+
uses: actions/setup-go@v2
61+
with:
62+
go-version: ${{ matrix.goversion }}
63+
- name: Install pulumictl
64+
uses: jaxxstorm/[email protected]
65+
with:
66+
repo: pulumi/pulumictl
67+
- name: Install Pulumi CLI
68+
uses: pulumi/[email protected]
69+
- name: Setup Node
70+
uses: actions/setup-node@v1
71+
with:
72+
node-version: ${{matrix.nodeversion}}
73+
- name: Setup DotNet
74+
uses: actions/setup-dotnet@v1
75+
with:
76+
dotnet-version: ${{matrix.dotnetverson}}
77+
- name: Setup Python
78+
uses: actions/setup-python@v1
79+
with:
80+
python-version: ${{matrix.pythonversion}}
81+
- name: Build SDK
82+
run: make build_${{ matrix.language }}_sdk
83+
- name: Check worktree clean
84+
run: |
85+
git update-index -q --refresh
86+
if ! git diff-files --quiet; then
87+
>&2 echo "error: working tree is not clean, aborting!"
88+
git status
89+
git diff
90+
exit 1
91+
fi
92+
strategy:
93+
fail-fast: true
94+
matrix:
95+
dotnetversion:
96+
- 3.1.301
97+
goversion:
98+
- 1.18.x
99+
language:
100+
- nodejs
101+
- python
102+
- dotnet
103+
- go
104+
nodeversion:
105+
- 14.x
106+
pythonversion:
107+
- "3.9"
108+
name: CI
109+
"on":
110+
pull_request:
111+
branches:
112+
- master
113+
- main
114+
push:
115+
branches:
116+
- main
117+
paths-ignore:
118+
- "**.md"
119+
tags-ignore:
120+
- v*
121+
- sdk/*
122+
- "**"
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
env:
2+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3+
jobs:
4+
command-dispatch-for-testing:
5+
name: command-dispatch-for-testing
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout Repo
9+
uses: actions/checkout@v2
10+
- uses: peter-evans/slash-command-dispatch@v2
11+
with:
12+
commands: run-acceptance-tests
13+
issue-type: pull-request
14+
permission: write
15+
reaction-token: ${{ secrets.GITHUB_TOKEN }}
16+
repository: pulumi/pulumi-aws
17+
token: ${{ secrets.PULUMI_BOT_TOKEN }}
18+
name: command-dispatch
19+
on:
20+
issue_comment:
21+
types:
22+
- created
23+
- edited

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup Go
3636
uses: actions/setup-go@v2
3737
with:
38-
go-version: 1.16.x
38+
go-version: 1.18.x
3939
- name: Install pulumictl
4040
uses: jaxxstorm/[email protected]
4141
with:
@@ -124,7 +124,7 @@ jobs:
124124
dotnetversion:
125125
- 3.1.301
126126
goversion:
127-
- 1.16.x
127+
- 1.18.x
128128
language:
129129
- nodejs
130130
- python

.goreleaser-prerelease.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
archives:
2+
- id: archive
3+
name_template: '{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}'
4+
before:
5+
hooks:
6+
- make build_provider
7+
builds:
8+
- binary: pulumi-resource-kubernetes-ingress-nginx
9+
dir: provider
10+
env:
11+
- CGO_ENABLED=0
12+
goarch:
13+
- amd64
14+
- arm64
15+
goos:
16+
- darwin
17+
- windows
18+
- linux
19+
ldflags:
20+
- -X github.com/pulumi/pulumi-kubernetes-ingress-nginx/pkg/version.Version={{.Tag }}
21+
main: ./cmd/pulumi-resource-kubernetes-ingress-nginx/
22+
changelog:
23+
skip: true
24+
release:
25+
disable: true
26+
snapshot:
27+
name_template: '{{ .Tag }}-SNAPSHOT'

provider/go.mod

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ go 1.18
55
require (
66
github.com/pkg/errors v0.9.1
77
github.com/pulumi/pulumi-go-helmbase v0.0.14
8-
github.com/pulumi/pulumi-kubernetes/sdk/v3 v3.19.1
9-
github.com/pulumi/pulumi/pkg/v3 v3.36.0
10-
github.com/pulumi/pulumi/sdk/v3 v3.36.0
8+
github.com/pulumi/pulumi-kubernetes/sdk/v3 v3.20.1
9+
github.com/pulumi/pulumi/pkg/v3 v3.37.2
10+
github.com/pulumi/pulumi/sdk/v3 v3.37.2
1111
)
1212

1313
require (
@@ -32,7 +32,7 @@ require (
3232
github.com/Azure/go-autorest/logger v0.2.1 // indirect
3333
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
3434
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
35-
github.com/Microsoft/go-winio v0.5.1 // indirect
35+
github.com/Microsoft/go-winio v0.5.2 // indirect
3636
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
3737
github.com/agext/levenshtein v1.2.3 // indirect
3838
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
@@ -134,11 +134,11 @@ require (
134134
go.uber.org/atomic v1.9.0 // indirect
135135
gocloud.dev v0.24.0 // indirect
136136
gocloud.dev/secrets/hashivault v0.24.0 // indirect
137-
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 // indirect
137+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
138138
golang.org/x/net v0.0.0-20220325170049-de3da57026de // indirect
139139
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect
140140
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
141-
golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886 // indirect
141+
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
142142
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
143143
golang.org/x/text v0.3.7 // indirect
144144
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect

provider/go.sum

+12-11
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXY
137137
github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=
138138
github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw=
139139
github.com/Microsoft/go-winio v0.5.0/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
140-
github.com/Microsoft/go-winio v0.5.1 h1:aPJp2QD7OOrhO5tQXqQoGSJc+DjDtWTGLOmNyAm6FgY=
141-
github.com/Microsoft/go-winio v0.5.1/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
140+
github.com/Microsoft/go-winio v0.5.2 h1:a9IhgEQBCUEk6QCdml9CiJGhAws+YwffDHEMp1VMrpA=
141+
github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY=
142142
github.com/Microsoft/hcsshim v0.8.9/go.mod h1:5692vkUqntj1idxauYlpoINNKeqCiG6Sg38RRsjT5y8=
143143
github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8 h1:xzYJEypr/85nBpB11F9br+3HUrpgb+fcm5iADzXXYEw=
144144
github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8/go.mod h1:oX5x61PbNXchhh0oikYAH+4Pcfw5LKv21+Jnpr6r6Pc=
@@ -687,14 +687,14 @@ github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40T
687687
github.com/pulumi/pulumi-go-helmbase v0.0.14 h1:QhXW3s4HRZlNI4TB1DCCJ285jqvhLNaJohEw2RoeZi4=
688688
github.com/pulumi/pulumi-go-helmbase v0.0.14/go.mod h1:1S15MZHmIKZTEZXzlAfSIzG0hFpnOC0I5yQmlDqJm3g=
689689
github.com/pulumi/pulumi-kubernetes/sdk/v3 v3.18.3/go.mod h1:w+Y1d8uqc+gv7JYWLF4rfzvTsIIHR1SCL+GG6sX1xMM=
690-
github.com/pulumi/pulumi-kubernetes/sdk/v3 v3.19.1 h1:GoSbF0gAD6uDVxlVJFsJO8UgSaEEMPqk2r7iK8R5EZY=
691-
github.com/pulumi/pulumi-kubernetes/sdk/v3 v3.19.1/go.mod h1:w+Y1d8uqc+gv7JYWLF4rfzvTsIIHR1SCL+GG6sX1xMM=
692-
github.com/pulumi/pulumi/pkg/v3 v3.36.0 h1:lsKclMmsdas+IDrpMCcjr4iu/+F3WspZDpMQRkgI3us=
693-
github.com/pulumi/pulumi/pkg/v3 v3.36.0/go.mod h1:tKeUmcAqWDJhgc4dAbWx7eiJ5oF5DHvy2fujT/aipvw=
690+
github.com/pulumi/pulumi-kubernetes/sdk/v3 v3.20.1 h1:1Ywp5sOEHXAoEuZhtlG/RowgZtB9KQvrZxFK1OLOHeQ=
691+
github.com/pulumi/pulumi-kubernetes/sdk/v3 v3.20.1/go.mod h1:QayLDfYNZY2zIDHtiLIPQEUN+A3IBpDFSlgK/64qOiw=
692+
github.com/pulumi/pulumi/pkg/v3 v3.37.2 h1:kWuWLeq1XDlkmgP+XHIhuP/J9Q/K4AfJL2tiqdE0EJE=
693+
github.com/pulumi/pulumi/pkg/v3 v3.37.2/go.mod h1:q9z+0WeX9vftyKIOAbeaeNC05kzK9dQNq3ia+gHjgKQ=
694694
github.com/pulumi/pulumi/sdk/v3 v3.16.0/go.mod h1:252ou/zAU1g6E8iTwe2Y9ht7pb5BDl2fJlOuAgZCHiA=
695695
github.com/pulumi/pulumi/sdk/v3 v3.31.1/go.mod h1:hGo/+AL1L4sPL9Ukd/i5bNFM3WHs3dHcA+GKEW7M3RA=
696-
github.com/pulumi/pulumi/sdk/v3 v3.36.0 h1:ErXvg+PXrVGvAVeLCgy/i2E0468+a/s5jURnMeXMvKY=
697-
github.com/pulumi/pulumi/sdk/v3 v3.36.0/go.mod h1:e1xuPnh9aKzCesrFf96DEzcybLdRWRMhKeKVBmb2lm0=
696+
github.com/pulumi/pulumi/sdk/v3 v3.37.2 h1:tiPIZOWcOw/FmU8WHAOPePYiJm74yFc1DXLxDF1VKKo=
697+
github.com/pulumi/pulumi/sdk/v3 v3.37.2/go.mod h1:e1xuPnh9aKzCesrFf96DEzcybLdRWRMhKeKVBmb2lm0=
698698
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
699699
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
700700
github.com/rjeczalik/notify v0.9.2 h1:MiTWrPj55mNDHEiIX5YUSKefw/+lCQVoAFmD6oQm5w8=
@@ -849,8 +849,8 @@ golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPh
849849
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8=
850850
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
851851
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
852-
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 h1:71vQrMauZZhcTVK6KdYM+rklehEEwb3E+ZhaE5jrPrE=
853-
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
852+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d h1:sK3txAijHtOK88l68nt020reeT1ZdKLIYetKl95FzVY=
853+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
854854
golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
855855
golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
856856
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
@@ -1063,8 +1063,9 @@ golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBc
10631063
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
10641064
golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
10651065
golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1066-
golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886 h1:eJv7u3ksNXoLbGSKuv2s/SIO4tJVxc/A+MTpzxDgz/Q=
10671066
golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1067+
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 h1:0A+M6Uqn+Eje4kHMK80dtF3JCXC4ykBgQG4Fe06QRhQ=
1068+
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
10681069
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
10691070
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
10701071
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=

sdk/dotnet/IngressController.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Pulumi.KubernetesIngressNginx
1313
/// Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
1414
/// </summary>
1515
[KubernetesIngressNginxResourceType("kubernetes-ingress-nginx:index:IngressController")]
16-
public partial class IngressController : Pulumi.ComponentResource
16+
public partial class IngressController : global::Pulumi.ComponentResource
1717
{
1818
/// <summary>
1919
/// Detailed information about the status of the underlying Helm deployment.
@@ -47,7 +47,7 @@ private static ComponentResourceOptions MakeResourceOptions(ComponentResourceOpt
4747
}
4848
}
4949

50-
public sealed class IngressControllerArgs : Pulumi.ResourceArgs
50+
public sealed class IngressControllerArgs : global::Pulumi.ResourceArgs
5151
{
5252
[Input("controller")]
5353
public Input<Inputs.ControllerArgs>? Controller { get; set; }
@@ -142,5 +142,6 @@ public InputMap<ImmutableDictionary<string, string>> Udp
142142
public IngressControllerArgs()
143143
{
144144
}
145+
public static new IngressControllerArgs Empty => new IngressControllerArgs();
145146
}
146147
}

sdk/dotnet/Inputs/AutoscalingArgs.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Pulumi.KubernetesIngressNginx.Inputs
1111
{
1212

13-
public sealed class AutoscalingArgs : Pulumi.ResourceArgs
13+
public sealed class AutoscalingArgs : global::Pulumi.ResourceArgs
1414
{
1515
[Input("annotations")]
1616
private InputMap<string>? _annotations;
@@ -41,5 +41,6 @@ public InputMap<string> Annotations
4141
public AutoscalingArgs()
4242
{
4343
}
44+
public static new AutoscalingArgs Empty => new AutoscalingArgs();
4445
}
4546
}

sdk/dotnet/Inputs/AutoscalingBehaviorArgs.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Pulumi.KubernetesIngressNginx.Inputs
1111
{
1212

13-
public sealed class AutoscalingBehaviorArgs : Pulumi.ResourceArgs
13+
public sealed class AutoscalingBehaviorArgs : global::Pulumi.ResourceArgs
1414
{
1515
[Input("scaleDown")]
1616
public Input<Inputs.AutoscalingBehaviorScalingArgs>? ScaleDown { get; set; }
@@ -21,5 +21,6 @@ public sealed class AutoscalingBehaviorArgs : Pulumi.ResourceArgs
2121
public AutoscalingBehaviorArgs()
2222
{
2323
}
24+
public static new AutoscalingBehaviorArgs Empty => new AutoscalingBehaviorArgs();
2425
}
2526
}

sdk/dotnet/Inputs/AutoscalingBehaviorScalingArgs.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Pulumi.KubernetesIngressNginx.Inputs
1111
{
1212

13-
public sealed class AutoscalingBehaviorScalingArgs : Pulumi.ResourceArgs
13+
public sealed class AutoscalingBehaviorScalingArgs : global::Pulumi.ResourceArgs
1414
{
1515
[Input("policies")]
1616
private InputList<Inputs.AutoscalingBehaviorScalingPolicyArgs>? _policies;
@@ -26,5 +26,6 @@ public InputList<Inputs.AutoscalingBehaviorScalingPolicyArgs> Policies
2626
public AutoscalingBehaviorScalingArgs()
2727
{
2828
}
29+
public static new AutoscalingBehaviorScalingArgs Empty => new AutoscalingBehaviorScalingArgs();
2930
}
3031
}

sdk/dotnet/Inputs/AutoscalingBehaviorScalingPolicyArgs.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Pulumi.KubernetesIngressNginx.Inputs
1111
{
1212

13-
public sealed class AutoscalingBehaviorScalingPolicyArgs : Pulumi.ResourceArgs
13+
public sealed class AutoscalingBehaviorScalingPolicyArgs : global::Pulumi.ResourceArgs
1414
{
1515
[Input("periodSeconds")]
1616
public Input<int>? PeriodSeconds { get; set; }
@@ -24,5 +24,6 @@ public sealed class AutoscalingBehaviorScalingPolicyArgs : Pulumi.ResourceArgs
2424
public AutoscalingBehaviorScalingPolicyArgs()
2525
{
2626
}
27+
public static new AutoscalingBehaviorScalingPolicyArgs Empty => new AutoscalingBehaviorScalingPolicyArgs();
2728
}
2829
}

sdk/dotnet/Inputs/AutoscalingTemplateArgs.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Pulumi.KubernetesIngressNginx.Inputs
1111
{
1212

13-
public sealed class AutoscalingTemplateArgs : Pulumi.ResourceArgs
13+
public sealed class AutoscalingTemplateArgs : global::Pulumi.ResourceArgs
1414
{
1515
[Input("pods")]
1616
public Input<Inputs.AutoscalingTemplatePodsArgs>? Pods { get; set; }
@@ -21,5 +21,6 @@ public sealed class AutoscalingTemplateArgs : Pulumi.ResourceArgs
2121
public AutoscalingTemplateArgs()
2222
{
2323
}
24+
public static new AutoscalingTemplateArgs Empty => new AutoscalingTemplateArgs();
2425
}
2526
}

0 commit comments

Comments
 (0)