From f5d1e151a5c58579a3227795fe2cb7856ccfb040 Mon Sep 17 00:00:00 2001 From: Levi Blackstone Date: Tue, 16 Jun 2020 16:51:37 -0600 Subject: [PATCH] Set supported environment variables in SDK Provider classes Set all supported environment variables in the k8s provider schema so that the Provider class in each SDK handles them. --- CHANGELOG.md | 4 + provider/go.mod | 4 +- provider/go.sum | 12 +- provider/pkg/gen/schema.go | 15 + sdk/dotnet/Apps/V1/StatefulSet.cs | 2 +- sdk/dotnet/Apps/V1Beta1/StatefulSet.cs | 2 +- sdk/dotnet/Apps/V1Beta2/StatefulSet.cs | 2 +- sdk/dotnet/Batch/V1/Job.cs | 2 +- sdk/dotnet/Core/V1/Pod.cs | 2 +- sdk/dotnet/Core/V1/Secret.cs | 2 +- sdk/dotnet/Core/V1/Service.cs | 2 +- sdk/dotnet/Extensions/V1Beta1/Ingress.cs | 2 +- sdk/dotnet/Provider.cs | 3 + .../admissionregistration/v1/pulumiTypes.go | 47 +- .../v1beta1/pulumiTypes.go | 47 +- .../apiextensions/v1/pulumiTypes.go | 137 +- .../apiextensions/v1beta1/pulumiTypes.go | 129 +- .../apiregistration/v1/pulumiTypes.go | 39 +- .../apiregistration/v1beta1/pulumiTypes.go | 39 +- sdk/go/kubernetes/apps/v1/pulumiTypes.go | 187 +-- sdk/go/kubernetes/apps/v1/statefulSet.go | 2 +- sdk/go/kubernetes/apps/v1beta1/pulumiTypes.go | 139 +- sdk/go/kubernetes/apps/v1beta1/statefulSet.go | 2 +- sdk/go/kubernetes/apps/v1beta2/pulumiTypes.go | 206 +-- sdk/go/kubernetes/apps/v1beta2/statefulSet.go | 2 +- .../auditregistration/v1alpha1/pulumiTypes.go | 57 +- .../authentication/v1/pulumiTypes.go | 54 +- .../authentication/v1beta1/pulumiTypes.go | 27 +- .../authorization/v1/pulumiTypes.go | 80 +- .../authorization/v1beta1/pulumiTypes.go | 80 +- .../kubernetes/autoscaling/v1/pulumiTypes.go | 52 +- .../autoscaling/v2beta1/pulumiTypes.go | 115 +- .../autoscaling/v2beta2/pulumiTypes.go | 169 +-- sdk/go/kubernetes/batch/v1/job.go | 2 +- sdk/go/kubernetes/batch/v1/pulumiTypes.go | 37 +- .../kubernetes/batch/v1beta1/pulumiTypes.go | 33 +- .../kubernetes/batch/v2alpha1/pulumiTypes.go | 33 +- .../certificates/v1beta1/pulumiTypes.go | 39 +- .../kubernetes/coordination/v1/pulumiTypes.go | 17 +- .../coordination/v1beta1/pulumiTypes.go | 17 +- sdk/go/kubernetes/core/v1/pod.go | 2 +- sdk/go/kubernetes/core/v1/pulumiTypes.go | 1279 ++++++----------- .../discovery/v1beta1/pulumiTypes.go | 29 +- .../kubernetes/events/v1beta1/pulumiTypes.go | 17 +- .../extensions/v1beta1/pulumiTypes.go | 364 ++--- .../flowcontrol/v1alpha1/pulumiTypes.go | 156 +- sdk/go/kubernetes/meta/v1/pulumiTypes.go | 119 +- .../kubernetes/networking/v1/pulumiTypes.go | 49 +- .../networking/v1beta1/pulumiTypes.go | 82 +- .../kubernetes/node/v1alpha1/pulumiTypes.go | 33 +- sdk/go/kubernetes/node/v1beta1/pulumiTypes.go | 25 +- sdk/go/kubernetes/pkg/version/pulumiTypes.go | 3 +- .../kubernetes/policy/v1beta1/pulumiTypes.go | 123 +- sdk/go/kubernetes/provider.go | 9 + sdk/go/kubernetes/pulumiUtilities.go | 47 + sdk/go/kubernetes/rbac/v1/pulumiTypes.go | 64 +- .../kubernetes/rbac/v1alpha1/pulumiTypes.go | 64 +- sdk/go/kubernetes/rbac/v1beta1/pulumiTypes.go | 64 +- .../kubernetes/scheduling/v1/pulumiTypes.go | 9 +- .../scheduling/v1alpha1/pulumiTypes.go | 9 +- .../scheduling/v1beta1/pulumiTypes.go | 9 +- .../settings/v1alpha1/pulumiTypes.go | 17 +- sdk/go/kubernetes/storage/v1/pulumiTypes.go | 98 +- .../storage/v1alpha1/pulumiTypes.go | 41 +- .../kubernetes/storage/v1beta1/pulumiTypes.go | 98 +- sdk/nodejs/apps/v1/StatefulSet.ts | 2 +- sdk/nodejs/apps/v1beta1/StatefulSet.ts | 2 +- sdk/nodejs/apps/v1beta2/StatefulSet.ts | 2 +- sdk/nodejs/batch/v1/Job.ts | 2 +- sdk/nodejs/core/v1/Pod.ts | 2 +- sdk/nodejs/core/v1/Secret.ts | 2 +- sdk/nodejs/core/v1/Service.ts | 2 +- sdk/nodejs/extensions/v1beta1/Ingress.ts | 2 +- sdk/nodejs/provider.ts | 6 +- tests/go.mod | 4 +- tests/go.sum | 13 +- 76 files changed, 1763 insertions(+), 2928 deletions(-) create mode 100644 sdk/go/kubernetes/pulumiUtilities.go diff --git a/CHANGELOG.md b/CHANGELOG.md index 390a915f7a..94cf123cb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## HEAD (Unreleased) +### Improvements + +- Set supported environment variables in SDK Provider classes (https://github.com/pulumi/pulumi-kubernetes/pull/1166) + ## 2.3.1 (June 17, 2020) ### Improvements diff --git a/provider/go.mod b/provider/go.mod index 945a7e355c..86079ffd38 100644 --- a/provider/go.mod +++ b/provider/go.mod @@ -11,9 +11,9 @@ require ( github.com/imdario/mergo v0.3.8 github.com/mitchellh/go-wordwrap v1.0.0 github.com/pkg/errors v0.9.1 - github.com/pulumi/pulumi/pkg/v2 v2.3.1-0.20200607162109-9754465b04db + github.com/pulumi/pulumi/pkg/v2 v2.4.1-0.20200622153820-282c95ee402d github.com/pulumi/pulumi/sdk/v2 v2.3.0 - github.com/stretchr/testify v1.5.1 + github.com/stretchr/testify v1.6.1 google.golang.org/grpc v1.28.0 k8s.io/api v0.18.0 k8s.io/apimachinery v0.18.0 diff --git a/provider/go.sum b/provider/go.sum index 09504ee4c7..3fe71cbdcf 100644 --- a/provider/go.sum +++ b/provider/go.sum @@ -426,6 +426,8 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/pelletier/go-buffruneio v0.2.0/go.mod h1:JkE26KsDizTr40EUHkXVtNPvgGtbSNq5BcowyYOWdKo= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= +github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386 h1:LoCV5cscNVWyK5ChN/uCoIFJz8jZD63VQiGJIRgr6uo= +github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386/go.mod h1:MRxHTJrf9FhdfNQ8Hdeh9gmHevC9RJE/fu8M3JIGjoE= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -448,8 +450,8 @@ github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= -github.com/pulumi/pulumi/pkg/v2 v2.3.1-0.20200607162109-9754465b04db h1:5HrO1GNA53QEp+yN1UCX7BUsJD2I5/k1u2KLO4hOxOA= -github.com/pulumi/pulumi/pkg/v2 v2.3.1-0.20200607162109-9754465b04db/go.mod h1:aqo0wBboEEdy+T5EYKUB6YnzbL80VPjgJPwjttuHqT0= +github.com/pulumi/pulumi/pkg/v2 v2.4.1-0.20200622153820-282c95ee402d h1:a7+mvsLerdMp/tz1MKYYsAKTtjWPGz9sNzD+UscQRuU= +github.com/pulumi/pulumi/pkg/v2 v2.4.1-0.20200622153820-282c95ee402d/go.mod h1:zfUm4/GH2dVRlHZ3Yeb9bRweCQM7icVBdplu6MUDRrQ= github.com/pulumi/pulumi/sdk/v2 v2.0.0/go.mod h1:W7k1UDYerc5o97mHnlHHp5iQZKEby+oQrQefWt+2RF4= github.com/pulumi/pulumi/sdk/v2 v2.3.0 h1:uvRYCmoHILKlyyIbXa5CcLSKKt9n2s8j+GKTffpXQf4= github.com/pulumi/pulumi/sdk/v2 v2.3.0/go.mod h1:cvivzHVRA5Xu3NSE/obmHzO3L693IJSd5QccQuBOMUE= @@ -505,6 +507,8 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/texttheater/golang-levenshtein v0.0.0-20191208221605-eb6844b05fc6 h1:9VTskZOIRf2vKF3UL8TuWElry5pgUpV1tFSe/e/0m/E= github.com/texttheater/golang-levenshtein v0.0.0-20191208221605-eb6844b05fc6/go.mod h1:XDKHRm5ThF8YJjx001LtgelzsoaEcvnA7lVWz9EeX3g= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= @@ -786,7 +790,7 @@ google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8 google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.28.0 h1:bO/TA4OxCOummhSf10siHuG7vJOiwh7SpRpFZDkOgl4= google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -gopkg.in/AlecAivazis/survey.v1 v1.8.8/go.mod h1:CaHjv79TCgAvXMSFJSVgonHXYWxnhzI3eoHtnX5UgUo= +gopkg.in/AlecAivazis/survey.v1 v1.8.9-0.20200217094205-6773bdf39b7f/go.mod h1:CaHjv79TCgAvXMSFJSVgonHXYWxnhzI3eoHtnX5UgUo= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d/go.mod h1:cuepJuh7vyXfUyUwEgHQXw849cJrilpS5NeIjOWESAw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -818,6 +822,8 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/provider/pkg/gen/schema.go b/provider/pkg/gen/schema.go index ac35d2d3df..7b9a01bdda 100644 --- a/provider/pkg/gen/schema.go +++ b/provider/pkg/gen/schema.go @@ -81,6 +81,11 @@ func PulumiSchema(swagger map[string]interface{}) pschema.PackageSpec { }, InputProperties: map[string]pschema.PropertySpec{ "kubeconfig": { + DefaultInfo: &pschema.DefaultSpec{ + Environment: []string{ + "KUBECONFIG", + }, + }, Description: "The contents of a kubeconfig file. If this is set, this config will be used instead of $KUBECONFIG.", TypeSpec: pschema.TypeSpec{Type: "string"}, Language: map[string]json.RawMessage{ @@ -102,6 +107,11 @@ func PulumiSchema(swagger map[string]interface{}) pschema.PackageSpec { TypeSpec: pschema.TypeSpec{Type: "string"}, }, "enableDryRun": { + DefaultInfo: &pschema.DefaultSpec{ + Environment: []string{ + "PULUMI_K8S_ENABLE_DRY_RUN", + }, + }, Description: "BETA FEATURE - If present and set to true, enable server-side diff calculations.\nThis feature is in developer preview, and is disabled by default.\n\nThis config can be specified in the following ways, using this precedence:\n1. This `enableDryRun` parameter.\n2. The `PULUMI_K8S_ENABLE_DRY_RUN` environment variable.", TypeSpec: pschema.TypeSpec{Type: "boolean"}, }, @@ -110,6 +120,11 @@ func PulumiSchema(swagger map[string]interface{}) pschema.PackageSpec { TypeSpec: pschema.TypeSpec{Type: "string"}, }, "suppressDeprecationWarnings": { + DefaultInfo: &pschema.DefaultSpec{ + Environment: []string{ + "PULUMI_K8S_SUPPRESS_DEPRECATION_WARNINGS", + }, + }, Description: "If present and set to true, suppress apiVersion deprecation warnings from the CLI.\n\nThis config can be specified in the following ways, using this precedence:\n1. This `suppressDeprecationWarnings` parameter.\n2. The `PULUMI_K8S_SUPPRESS_DEPRECATION_WARNINGS` environment variable.", TypeSpec: pschema.TypeSpec{Type: "boolean"}, }, diff --git a/sdk/dotnet/Apps/V1/StatefulSet.cs b/sdk/dotnet/Apps/V1/StatefulSet.cs index fb6a84adbf..6c4770ccf6 100755 --- a/sdk/dotnet/Apps/V1/StatefulSet.cs +++ b/sdk/dotnet/Apps/V1/StatefulSet.cs @@ -13,7 +13,7 @@ namespace Pulumi.Kubernetes.Apps.V1 /// StatefulSet represents a set of pods with consistent identities. Identities are defined as: /// - Network: A single stable DNS and hostname. /// - Storage: As many VolumeClaims as requested. - /// The StatefulSet guarantees that a given network identity will always map to the same storage identity. + /// The StatefulSet guarantees that a given network identity will always map to the same storage identity. /// /// This resource waits until its status is ready before registering success /// for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/dotnet/Apps/V1Beta1/StatefulSet.cs b/sdk/dotnet/Apps/V1Beta1/StatefulSet.cs index 508a192c0c..060eedc5e7 100755 --- a/sdk/dotnet/Apps/V1Beta1/StatefulSet.cs +++ b/sdk/dotnet/Apps/V1Beta1/StatefulSet.cs @@ -13,7 +13,7 @@ namespace Pulumi.Kubernetes.Apps.V1Beta1 /// StatefulSet represents a set of pods with consistent identities. Identities are defined as: /// - Network: A single stable DNS and hostname. /// - Storage: As many VolumeClaims as requested. - /// The StatefulSet guarantees that a given network identity will always map to the same storage identity. + /// The StatefulSet guarantees that a given network identity will always map to the same storage identity. /// /// This resource waits until its status is ready before registering success /// for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/dotnet/Apps/V1Beta2/StatefulSet.cs b/sdk/dotnet/Apps/V1Beta2/StatefulSet.cs index 3be03f09ac..e64167819d 100755 --- a/sdk/dotnet/Apps/V1Beta2/StatefulSet.cs +++ b/sdk/dotnet/Apps/V1Beta2/StatefulSet.cs @@ -13,7 +13,7 @@ namespace Pulumi.Kubernetes.Apps.V1Beta2 /// StatefulSet represents a set of pods with consistent identities. Identities are defined as: /// - Network: A single stable DNS and hostname. /// - Storage: As many VolumeClaims as requested. - /// The StatefulSet guarantees that a given network identity will always map to the same storage identity. + /// The StatefulSet guarantees that a given network identity will always map to the same storage identity. /// /// This resource waits until its status is ready before registering success /// for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/dotnet/Batch/V1/Job.cs b/sdk/dotnet/Batch/V1/Job.cs index 53669169f2..e84d4ccca8 100755 --- a/sdk/dotnet/Batch/V1/Job.cs +++ b/sdk/dotnet/Batch/V1/Job.cs @@ -21,7 +21,7 @@ namespace Pulumi.Kubernetes.Batch.V1 /// 2. The Job's '.status.conditions' has a status of type 'Complete', and a 'status' set /// to 'True'. /// 3. The Job's '.status.conditions' do not have a status of type 'Failed', with a - /// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. + /// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. /// /// If the Job has not reached a Ready state after 10 minutes, it will /// time out and mark the resource update as Failed. You can override the default timeout value diff --git a/sdk/dotnet/Core/V1/Pod.cs b/sdk/dotnet/Core/V1/Pod.cs index 71965d1be0..a4430a0381 100755 --- a/sdk/dotnet/Core/V1/Pod.cs +++ b/sdk/dotnet/Core/V1/Pod.cs @@ -21,7 +21,7 @@ namespace Pulumi.Kubernetes.Core.V1 /// 2. The Pod is initialized ("Initialized" '.status.condition' is true). /// 3. The Pod is ready ("Ready" '.status.condition' is true) and the '.status.phase' is /// set to "Running". - /// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). + /// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). /// /// If the Pod has not reached a Ready state after 10 minutes, it will /// time out and mark the resource update as Failed. You can override the default timeout value diff --git a/sdk/dotnet/Core/V1/Secret.cs b/sdk/dotnet/Core/V1/Secret.cs index b91da8bd5d..06d1a5bb41 100755 --- a/sdk/dotnet/Core/V1/Secret.cs +++ b/sdk/dotnet/Core/V1/Secret.cs @@ -13,7 +13,7 @@ namespace Pulumi.Kubernetes.Core.V1 /// Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes. /// /// Note: While Pulumi automatically encrypts the 'data' and 'stringData' - /// fields, this encryption only applies to Pulumi's context, including the state file, + /// fields, this encryption only applies to Pulumi's context, including the state file, /// the Service, the CLI, etc. Kubernetes does not encrypt Secret resources by default, /// and the contents are visible to users with access to the Secret in Kubernetes using /// tools like 'kubectl'. diff --git a/sdk/dotnet/Core/V1/Service.cs b/sdk/dotnet/Core/V1/Service.cs index bad2fcc485..08668579f4 100755 --- a/sdk/dotnet/Core/V1/Service.cs +++ b/sdk/dotnet/Core/V1/Service.cs @@ -24,7 +24,7 @@ namespace Pulumi.Kubernetes.Core.V1 /// an "empty headless" Service [1] or a Service with '.spec.type: ExternalName'). /// 4. External IP address is allocated (if Service has '.spec.type: LoadBalancer'). /// - /// Known limitations: + /// Known limitations: /// Services targeting ReplicaSets (and, by extension, Deployments, /// StatefulSets, etc.) with '.spec.replicas' set to 0 are not handled, and will time /// out. To work around this limitation, set 'pulumi.com/skipAwait: "true"' on diff --git a/sdk/dotnet/Extensions/V1Beta1/Ingress.cs b/sdk/dotnet/Extensions/V1Beta1/Ingress.cs index b3cdb90d9d..fe6ad6a393 100755 --- a/sdk/dotnet/Extensions/V1Beta1/Ingress.cs +++ b/sdk/dotnet/Extensions/V1Beta1/Ingress.cs @@ -10,7 +10,7 @@ namespace Pulumi.Kubernetes.Extensions.V1Beta1 { /// - /// Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. + /// Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. /// /// This resource waits until its status is ready before registering success /// for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/dotnet/Provider.cs b/sdk/dotnet/Provider.cs index 0cf21a3f9e..955fbe4a8d 100644 --- a/sdk/dotnet/Provider.cs +++ b/sdk/dotnet/Provider.cs @@ -110,6 +110,9 @@ public sealed class ProviderArgs : Pulumi.ResourceArgs public ProviderArgs() { + EnableDryRun = Utilities.GetEnvBoolean("PULUMI_K8S_ENABLE_DRY_RUN"); + KubeConfig = Utilities.GetEnv("KUBECONFIG"); + SuppressDeprecationWarnings = Utilities.GetEnvBoolean("PULUMI_K8S_SUPPRESS_DEPRECATION_WARNINGS"); } } } diff --git a/sdk/go/kubernetes/admissionregistration/v1/pulumiTypes.go b/sdk/go/kubernetes/admissionregistration/v1/pulumiTypes.go index 3c73896eea..7abcce679e 100644 --- a/sdk/go/kubernetes/admissionregistration/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/admissionregistration/v1/pulumiTypes.go @@ -82,8 +82,7 @@ type MutatingWebhook struct { // MutatingWebhookInput is an input type that accepts MutatingWebhookArgs and MutatingWebhookOutput values. // You can construct a concrete instance of `MutatingWebhookInput` via: // -// MutatingWebhookArgs{...} -// +// MutatingWebhookArgs{...} type MutatingWebhookInput interface { pulumi.Input @@ -174,8 +173,7 @@ func (i MutatingWebhookArgs) ToMutatingWebhookOutputWithContext(ctx context.Cont // MutatingWebhookArrayInput is an input type that accepts MutatingWebhookArray and MutatingWebhookArrayOutput values. // You can construct a concrete instance of `MutatingWebhookArrayInput` via: // -// MutatingWebhookArray{ MutatingWebhookArgs{...} } -// +// MutatingWebhookArray{ MutatingWebhookArgs{...} } type MutatingWebhookArrayInput interface { pulumi.Input @@ -344,8 +342,7 @@ type MutatingWebhookConfigurationType struct { // MutatingWebhookConfigurationTypeInput is an input type that accepts MutatingWebhookConfigurationTypeArgs and MutatingWebhookConfigurationTypeOutput values. // You can construct a concrete instance of `MutatingWebhookConfigurationTypeInput` via: // -// MutatingWebhookConfigurationTypeArgs{...} -// +// MutatingWebhookConfigurationTypeArgs{...} type MutatingWebhookConfigurationTypeInput interface { pulumi.Input @@ -380,8 +377,7 @@ func (i MutatingWebhookConfigurationTypeArgs) ToMutatingWebhookConfigurationType // MutatingWebhookConfigurationTypeArrayInput is an input type that accepts MutatingWebhookConfigurationTypeArray and MutatingWebhookConfigurationTypeArrayOutput values. // You can construct a concrete instance of `MutatingWebhookConfigurationTypeArrayInput` via: // -// MutatingWebhookConfigurationTypeArray{ MutatingWebhookConfigurationTypeArgs{...} } -// +// MutatingWebhookConfigurationTypeArray{ MutatingWebhookConfigurationTypeArgs{...} } type MutatingWebhookConfigurationTypeArrayInput interface { pulumi.Input @@ -473,8 +469,7 @@ type MutatingWebhookConfigurationListType struct { // MutatingWebhookConfigurationListTypeInput is an input type that accepts MutatingWebhookConfigurationListTypeArgs and MutatingWebhookConfigurationListTypeOutput values. // You can construct a concrete instance of `MutatingWebhookConfigurationListTypeInput` via: // -// MutatingWebhookConfigurationListTypeArgs{...} -// +// MutatingWebhookConfigurationListTypeArgs{...} type MutatingWebhookConfigurationListTypeInput interface { pulumi.Input @@ -564,8 +559,7 @@ type RuleWithOperations struct { // RuleWithOperationsInput is an input type that accepts RuleWithOperationsArgs and RuleWithOperationsOutput values. // You can construct a concrete instance of `RuleWithOperationsInput` via: // -// RuleWithOperationsArgs{...} -// +// RuleWithOperationsArgs{...} type RuleWithOperationsInput interface { pulumi.Input @@ -608,8 +602,7 @@ func (i RuleWithOperationsArgs) ToRuleWithOperationsOutputWithContext(ctx contex // RuleWithOperationsArrayInput is an input type that accepts RuleWithOperationsArray and RuleWithOperationsArrayOutput values. // You can construct a concrete instance of `RuleWithOperationsArrayInput` via: // -// RuleWithOperationsArray{ RuleWithOperationsArgs{...} } -// +// RuleWithOperationsArray{ RuleWithOperationsArgs{...} } type RuleWithOperationsArrayInput interface { pulumi.Input @@ -712,8 +705,7 @@ type ServiceReference struct { // ServiceReferenceInput is an input type that accepts ServiceReferenceArgs and ServiceReferenceOutput values. // You can construct a concrete instance of `ServiceReferenceInput` via: // -// ServiceReferenceArgs{...} -// +// ServiceReferenceArgs{...} type ServiceReferenceInput interface { pulumi.Input @@ -756,12 +748,11 @@ func (i ServiceReferenceArgs) ToServiceReferencePtrOutputWithContext(ctx context // ServiceReferencePtrInput is an input type that accepts ServiceReferenceArgs, ServiceReferencePtr and ServiceReferencePtrOutput values. // You can construct a concrete instance of `ServiceReferencePtrInput` via: // -// ServiceReferenceArgs{...} +// ServiceReferenceArgs{...} // // or: // -// nil -// +// nil type ServiceReferencePtrInput interface { pulumi.Input @@ -953,8 +944,7 @@ type ValidatingWebhook struct { // ValidatingWebhookInput is an input type that accepts ValidatingWebhookArgs and ValidatingWebhookOutput values. // You can construct a concrete instance of `ValidatingWebhookInput` via: // -// ValidatingWebhookArgs{...} -// +// ValidatingWebhookArgs{...} type ValidatingWebhookInput interface { pulumi.Input @@ -1037,8 +1027,7 @@ func (i ValidatingWebhookArgs) ToValidatingWebhookOutputWithContext(ctx context. // ValidatingWebhookArrayInput is an input type that accepts ValidatingWebhookArray and ValidatingWebhookArrayOutput values. // You can construct a concrete instance of `ValidatingWebhookArrayInput` via: // -// ValidatingWebhookArray{ ValidatingWebhookArgs{...} } -// +// ValidatingWebhookArray{ ValidatingWebhookArgs{...} } type ValidatingWebhookArrayInput interface { pulumi.Input @@ -1196,8 +1185,7 @@ type ValidatingWebhookConfigurationType struct { // ValidatingWebhookConfigurationTypeInput is an input type that accepts ValidatingWebhookConfigurationTypeArgs and ValidatingWebhookConfigurationTypeOutput values. // You can construct a concrete instance of `ValidatingWebhookConfigurationTypeInput` via: // -// ValidatingWebhookConfigurationTypeArgs{...} -// +// ValidatingWebhookConfigurationTypeArgs{...} type ValidatingWebhookConfigurationTypeInput interface { pulumi.Input @@ -1232,8 +1220,7 @@ func (i ValidatingWebhookConfigurationTypeArgs) ToValidatingWebhookConfiguration // ValidatingWebhookConfigurationTypeArrayInput is an input type that accepts ValidatingWebhookConfigurationTypeArray and ValidatingWebhookConfigurationTypeArrayOutput values. // You can construct a concrete instance of `ValidatingWebhookConfigurationTypeArrayInput` via: // -// ValidatingWebhookConfigurationTypeArray{ ValidatingWebhookConfigurationTypeArgs{...} } -// +// ValidatingWebhookConfigurationTypeArray{ ValidatingWebhookConfigurationTypeArgs{...} } type ValidatingWebhookConfigurationTypeArrayInput interface { pulumi.Input @@ -1325,8 +1312,7 @@ type ValidatingWebhookConfigurationListType struct { // ValidatingWebhookConfigurationListTypeInput is an input type that accepts ValidatingWebhookConfigurationListTypeArgs and ValidatingWebhookConfigurationListTypeOutput values. // You can construct a concrete instance of `ValidatingWebhookConfigurationListTypeInput` via: // -// ValidatingWebhookConfigurationListTypeArgs{...} -// +// ValidatingWebhookConfigurationListTypeArgs{...} type ValidatingWebhookConfigurationListTypeInput interface { pulumi.Input @@ -1418,8 +1404,7 @@ type WebhookClientConfig struct { // WebhookClientConfigInput is an input type that accepts WebhookClientConfigArgs and WebhookClientConfigOutput values. // You can construct a concrete instance of `WebhookClientConfigInput` via: // -// WebhookClientConfigArgs{...} -// +// WebhookClientConfigArgs{...} type WebhookClientConfigInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/admissionregistration/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/admissionregistration/v1beta1/pulumiTypes.go index 2f51486d1c..54cf3e1990 100644 --- a/sdk/go/kubernetes/admissionregistration/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/admissionregistration/v1beta1/pulumiTypes.go @@ -82,8 +82,7 @@ type MutatingWebhook struct { // MutatingWebhookInput is an input type that accepts MutatingWebhookArgs and MutatingWebhookOutput values. // You can construct a concrete instance of `MutatingWebhookInput` via: // -// MutatingWebhookArgs{...} -// +// MutatingWebhookArgs{...} type MutatingWebhookInput interface { pulumi.Input @@ -174,8 +173,7 @@ func (i MutatingWebhookArgs) ToMutatingWebhookOutputWithContext(ctx context.Cont // MutatingWebhookArrayInput is an input type that accepts MutatingWebhookArray and MutatingWebhookArrayOutput values. // You can construct a concrete instance of `MutatingWebhookArrayInput` via: // -// MutatingWebhookArray{ MutatingWebhookArgs{...} } -// +// MutatingWebhookArray{ MutatingWebhookArgs{...} } type MutatingWebhookArrayInput interface { pulumi.Input @@ -344,8 +342,7 @@ type MutatingWebhookConfigurationType struct { // MutatingWebhookConfigurationTypeInput is an input type that accepts MutatingWebhookConfigurationTypeArgs and MutatingWebhookConfigurationTypeOutput values. // You can construct a concrete instance of `MutatingWebhookConfigurationTypeInput` via: // -// MutatingWebhookConfigurationTypeArgs{...} -// +// MutatingWebhookConfigurationTypeArgs{...} type MutatingWebhookConfigurationTypeInput interface { pulumi.Input @@ -380,8 +377,7 @@ func (i MutatingWebhookConfigurationTypeArgs) ToMutatingWebhookConfigurationType // MutatingWebhookConfigurationTypeArrayInput is an input type that accepts MutatingWebhookConfigurationTypeArray and MutatingWebhookConfigurationTypeArrayOutput values. // You can construct a concrete instance of `MutatingWebhookConfigurationTypeArrayInput` via: // -// MutatingWebhookConfigurationTypeArray{ MutatingWebhookConfigurationTypeArgs{...} } -// +// MutatingWebhookConfigurationTypeArray{ MutatingWebhookConfigurationTypeArgs{...} } type MutatingWebhookConfigurationTypeArrayInput interface { pulumi.Input @@ -473,8 +469,7 @@ type MutatingWebhookConfigurationListType struct { // MutatingWebhookConfigurationListTypeInput is an input type that accepts MutatingWebhookConfigurationListTypeArgs and MutatingWebhookConfigurationListTypeOutput values. // You can construct a concrete instance of `MutatingWebhookConfigurationListTypeInput` via: // -// MutatingWebhookConfigurationListTypeArgs{...} -// +// MutatingWebhookConfigurationListTypeArgs{...} type MutatingWebhookConfigurationListTypeInput interface { pulumi.Input @@ -564,8 +559,7 @@ type RuleWithOperations struct { // RuleWithOperationsInput is an input type that accepts RuleWithOperationsArgs and RuleWithOperationsOutput values. // You can construct a concrete instance of `RuleWithOperationsInput` via: // -// RuleWithOperationsArgs{...} -// +// RuleWithOperationsArgs{...} type RuleWithOperationsInput interface { pulumi.Input @@ -608,8 +602,7 @@ func (i RuleWithOperationsArgs) ToRuleWithOperationsOutputWithContext(ctx contex // RuleWithOperationsArrayInput is an input type that accepts RuleWithOperationsArray and RuleWithOperationsArrayOutput values. // You can construct a concrete instance of `RuleWithOperationsArrayInput` via: // -// RuleWithOperationsArray{ RuleWithOperationsArgs{...} } -// +// RuleWithOperationsArray{ RuleWithOperationsArgs{...} } type RuleWithOperationsArrayInput interface { pulumi.Input @@ -712,8 +705,7 @@ type ServiceReference struct { // ServiceReferenceInput is an input type that accepts ServiceReferenceArgs and ServiceReferenceOutput values. // You can construct a concrete instance of `ServiceReferenceInput` via: // -// ServiceReferenceArgs{...} -// +// ServiceReferenceArgs{...} type ServiceReferenceInput interface { pulumi.Input @@ -756,12 +748,11 @@ func (i ServiceReferenceArgs) ToServiceReferencePtrOutputWithContext(ctx context // ServiceReferencePtrInput is an input type that accepts ServiceReferenceArgs, ServiceReferencePtr and ServiceReferencePtrOutput values. // You can construct a concrete instance of `ServiceReferencePtrInput` via: // -// ServiceReferenceArgs{...} +// ServiceReferenceArgs{...} // // or: // -// nil -// +// nil type ServiceReferencePtrInput interface { pulumi.Input @@ -953,8 +944,7 @@ type ValidatingWebhook struct { // ValidatingWebhookInput is an input type that accepts ValidatingWebhookArgs and ValidatingWebhookOutput values. // You can construct a concrete instance of `ValidatingWebhookInput` via: // -// ValidatingWebhookArgs{...} -// +// ValidatingWebhookArgs{...} type ValidatingWebhookInput interface { pulumi.Input @@ -1037,8 +1027,7 @@ func (i ValidatingWebhookArgs) ToValidatingWebhookOutputWithContext(ctx context. // ValidatingWebhookArrayInput is an input type that accepts ValidatingWebhookArray and ValidatingWebhookArrayOutput values. // You can construct a concrete instance of `ValidatingWebhookArrayInput` via: // -// ValidatingWebhookArray{ ValidatingWebhookArgs{...} } -// +// ValidatingWebhookArray{ ValidatingWebhookArgs{...} } type ValidatingWebhookArrayInput interface { pulumi.Input @@ -1196,8 +1185,7 @@ type ValidatingWebhookConfigurationType struct { // ValidatingWebhookConfigurationTypeInput is an input type that accepts ValidatingWebhookConfigurationTypeArgs and ValidatingWebhookConfigurationTypeOutput values. // You can construct a concrete instance of `ValidatingWebhookConfigurationTypeInput` via: // -// ValidatingWebhookConfigurationTypeArgs{...} -// +// ValidatingWebhookConfigurationTypeArgs{...} type ValidatingWebhookConfigurationTypeInput interface { pulumi.Input @@ -1232,8 +1220,7 @@ func (i ValidatingWebhookConfigurationTypeArgs) ToValidatingWebhookConfiguration // ValidatingWebhookConfigurationTypeArrayInput is an input type that accepts ValidatingWebhookConfigurationTypeArray and ValidatingWebhookConfigurationTypeArrayOutput values. // You can construct a concrete instance of `ValidatingWebhookConfigurationTypeArrayInput` via: // -// ValidatingWebhookConfigurationTypeArray{ ValidatingWebhookConfigurationTypeArgs{...} } -// +// ValidatingWebhookConfigurationTypeArray{ ValidatingWebhookConfigurationTypeArgs{...} } type ValidatingWebhookConfigurationTypeArrayInput interface { pulumi.Input @@ -1325,8 +1312,7 @@ type ValidatingWebhookConfigurationListType struct { // ValidatingWebhookConfigurationListTypeInput is an input type that accepts ValidatingWebhookConfigurationListTypeArgs and ValidatingWebhookConfigurationListTypeOutput values. // You can construct a concrete instance of `ValidatingWebhookConfigurationListTypeInput` via: // -// ValidatingWebhookConfigurationListTypeArgs{...} -// +// ValidatingWebhookConfigurationListTypeArgs{...} type ValidatingWebhookConfigurationListTypeInput interface { pulumi.Input @@ -1418,8 +1404,7 @@ type WebhookClientConfig struct { // WebhookClientConfigInput is an input type that accepts WebhookClientConfigArgs and WebhookClientConfigOutput values. // You can construct a concrete instance of `WebhookClientConfigInput` via: // -// WebhookClientConfigArgs{...} -// +// WebhookClientConfigArgs{...} type WebhookClientConfigInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/apiextensions/v1/pulumiTypes.go b/sdk/go/kubernetes/apiextensions/v1/pulumiTypes.go index 4f7ba6bc2e..cb200c9b26 100644 --- a/sdk/go/kubernetes/apiextensions/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/apiextensions/v1/pulumiTypes.go @@ -30,8 +30,7 @@ type CustomResourceColumnDefinition struct { // CustomResourceColumnDefinitionInput is an input type that accepts CustomResourceColumnDefinitionArgs and CustomResourceColumnDefinitionOutput values. // You can construct a concrete instance of `CustomResourceColumnDefinitionInput` via: // -// CustomResourceColumnDefinitionArgs{...} -// +// CustomResourceColumnDefinitionArgs{...} type CustomResourceColumnDefinitionInput interface { pulumi.Input @@ -70,8 +69,7 @@ func (i CustomResourceColumnDefinitionArgs) ToCustomResourceColumnDefinitionOutp // CustomResourceColumnDefinitionArrayInput is an input type that accepts CustomResourceColumnDefinitionArray and CustomResourceColumnDefinitionArrayOutput values. // You can construct a concrete instance of `CustomResourceColumnDefinitionArrayInput` via: // -// CustomResourceColumnDefinitionArray{ CustomResourceColumnDefinitionArgs{...} } -// +// CustomResourceColumnDefinitionArray{ CustomResourceColumnDefinitionArgs{...} } type CustomResourceColumnDefinitionArrayInput interface { pulumi.Input @@ -170,8 +168,7 @@ type CustomResourceConversion struct { // CustomResourceConversionInput is an input type that accepts CustomResourceConversionArgs and CustomResourceConversionOutput values. // You can construct a concrete instance of `CustomResourceConversionInput` via: // -// CustomResourceConversionArgs{...} -// +// CustomResourceConversionArgs{...} type CustomResourceConversionInput interface { pulumi.Input @@ -211,12 +208,11 @@ func (i CustomResourceConversionArgs) ToCustomResourceConversionPtrOutputWithCon // CustomResourceConversionPtrInput is an input type that accepts CustomResourceConversionArgs, CustomResourceConversionPtr and CustomResourceConversionPtrOutput values. // You can construct a concrete instance of `CustomResourceConversionPtrInput` via: // -// CustomResourceConversionArgs{...} +// CustomResourceConversionArgs{...} // // or: // -// nil -// +// nil type CustomResourceConversionPtrInput interface { pulumi.Input @@ -333,8 +329,7 @@ type CustomResourceDefinitionType struct { // CustomResourceDefinitionTypeInput is an input type that accepts CustomResourceDefinitionTypeArgs and CustomResourceDefinitionTypeOutput values. // You can construct a concrete instance of `CustomResourceDefinitionTypeInput` via: // -// CustomResourceDefinitionTypeArgs{...} -// +// CustomResourceDefinitionTypeArgs{...} type CustomResourceDefinitionTypeInput interface { pulumi.Input @@ -370,8 +365,7 @@ func (i CustomResourceDefinitionTypeArgs) ToCustomResourceDefinitionTypeOutputWi // CustomResourceDefinitionTypeArrayInput is an input type that accepts CustomResourceDefinitionTypeArray and CustomResourceDefinitionTypeArrayOutput values. // You can construct a concrete instance of `CustomResourceDefinitionTypeArrayInput` via: // -// CustomResourceDefinitionTypeArray{ CustomResourceDefinitionTypeArgs{...} } -// +// CustomResourceDefinitionTypeArray{ CustomResourceDefinitionTypeArgs{...} } type CustomResourceDefinitionTypeArrayInput interface { pulumi.Input @@ -469,8 +463,7 @@ type CustomResourceDefinitionCondition struct { // CustomResourceDefinitionConditionInput is an input type that accepts CustomResourceDefinitionConditionArgs and CustomResourceDefinitionConditionOutput values. // You can construct a concrete instance of `CustomResourceDefinitionConditionInput` via: // -// CustomResourceDefinitionConditionArgs{...} -// +// CustomResourceDefinitionConditionArgs{...} type CustomResourceDefinitionConditionInput interface { pulumi.Input @@ -507,8 +500,7 @@ func (i CustomResourceDefinitionConditionArgs) ToCustomResourceDefinitionConditi // CustomResourceDefinitionConditionArrayInput is an input type that accepts CustomResourceDefinitionConditionArray and CustomResourceDefinitionConditionArrayOutput values. // You can construct a concrete instance of `CustomResourceDefinitionConditionArrayInput` via: // -// CustomResourceDefinitionConditionArray{ CustomResourceDefinitionConditionArgs{...} } -// +// CustomResourceDefinitionConditionArray{ CustomResourceDefinitionConditionArgs{...} } type CustomResourceDefinitionConditionArrayInput interface { pulumi.Input @@ -604,8 +596,7 @@ type CustomResourceDefinitionListType struct { // CustomResourceDefinitionListTypeInput is an input type that accepts CustomResourceDefinitionListTypeArgs and CustomResourceDefinitionListTypeOutput values. // You can construct a concrete instance of `CustomResourceDefinitionListTypeInput` via: // -// CustomResourceDefinitionListTypeArgs{...} -// +// CustomResourceDefinitionListTypeArgs{...} type CustomResourceDefinitionListTypeInput interface { pulumi.Input @@ -689,8 +680,7 @@ type CustomResourceDefinitionNames struct { // CustomResourceDefinitionNamesInput is an input type that accepts CustomResourceDefinitionNamesArgs and CustomResourceDefinitionNamesOutput values. // You can construct a concrete instance of `CustomResourceDefinitionNamesInput` via: // -// CustomResourceDefinitionNamesArgs{...} -// +// CustomResourceDefinitionNamesArgs{...} type CustomResourceDefinitionNamesInput interface { pulumi.Input @@ -737,12 +727,11 @@ func (i CustomResourceDefinitionNamesArgs) ToCustomResourceDefinitionNamesPtrOut // CustomResourceDefinitionNamesPtrInput is an input type that accepts CustomResourceDefinitionNamesArgs, CustomResourceDefinitionNamesPtr and CustomResourceDefinitionNamesPtrOutput values. // You can construct a concrete instance of `CustomResourceDefinitionNamesPtrInput` via: // -// CustomResourceDefinitionNamesArgs{...} +// CustomResourceDefinitionNamesArgs{...} // // or: // -// nil -// +// nil type CustomResourceDefinitionNamesPtrInput interface { pulumi.Input @@ -920,8 +909,7 @@ type CustomResourceDefinitionSpec struct { // CustomResourceDefinitionSpecInput is an input type that accepts CustomResourceDefinitionSpecArgs and CustomResourceDefinitionSpecOutput values. // You can construct a concrete instance of `CustomResourceDefinitionSpecInput` via: // -// CustomResourceDefinitionSpecArgs{...} -// +// CustomResourceDefinitionSpecArgs{...} type CustomResourceDefinitionSpecInput interface { pulumi.Input @@ -968,12 +956,11 @@ func (i CustomResourceDefinitionSpecArgs) ToCustomResourceDefinitionSpecPtrOutpu // CustomResourceDefinitionSpecPtrInput is an input type that accepts CustomResourceDefinitionSpecArgs, CustomResourceDefinitionSpecPtr and CustomResourceDefinitionSpecPtrOutput values. // You can construct a concrete instance of `CustomResourceDefinitionSpecPtrInput` via: // -// CustomResourceDefinitionSpecArgs{...} +// CustomResourceDefinitionSpecArgs{...} // // or: // -// nil -// +// nil type CustomResourceDefinitionSpecPtrInput interface { pulumi.Input @@ -1145,8 +1132,7 @@ type CustomResourceDefinitionStatus struct { // CustomResourceDefinitionStatusInput is an input type that accepts CustomResourceDefinitionStatusArgs and CustomResourceDefinitionStatusOutput values. // You can construct a concrete instance of `CustomResourceDefinitionStatusInput` via: // -// CustomResourceDefinitionStatusArgs{...} -// +// CustomResourceDefinitionStatusArgs{...} type CustomResourceDefinitionStatusInput interface { pulumi.Input @@ -1187,12 +1173,11 @@ func (i CustomResourceDefinitionStatusArgs) ToCustomResourceDefinitionStatusPtrO // CustomResourceDefinitionStatusPtrInput is an input type that accepts CustomResourceDefinitionStatusArgs, CustomResourceDefinitionStatusPtr and CustomResourceDefinitionStatusPtrOutput values. // You can construct a concrete instance of `CustomResourceDefinitionStatusPtrInput` via: // -// CustomResourceDefinitionStatusArgs{...} +// CustomResourceDefinitionStatusArgs{...} // // or: // -// nil -// +// nil type CustomResourceDefinitionStatusPtrInput interface { pulumi.Input @@ -1325,8 +1310,7 @@ type CustomResourceDefinitionVersion struct { // CustomResourceDefinitionVersionInput is an input type that accepts CustomResourceDefinitionVersionArgs and CustomResourceDefinitionVersionOutput values. // You can construct a concrete instance of `CustomResourceDefinitionVersionInput` via: // -// CustomResourceDefinitionVersionArgs{...} -// +// CustomResourceDefinitionVersionArgs{...} type CustomResourceDefinitionVersionInput interface { pulumi.Input @@ -1365,8 +1349,7 @@ func (i CustomResourceDefinitionVersionArgs) ToCustomResourceDefinitionVersionOu // CustomResourceDefinitionVersionArrayInput is an input type that accepts CustomResourceDefinitionVersionArray and CustomResourceDefinitionVersionArrayOutput values. // You can construct a concrete instance of `CustomResourceDefinitionVersionArrayInput` via: // -// CustomResourceDefinitionVersionArray{ CustomResourceDefinitionVersionArgs{...} } -// +// CustomResourceDefinitionVersionArray{ CustomResourceDefinitionVersionArgs{...} } type CustomResourceDefinitionVersionArrayInput interface { pulumi.Input @@ -1468,8 +1451,7 @@ type CustomResourceSubresourceScale struct { // CustomResourceSubresourceScaleInput is an input type that accepts CustomResourceSubresourceScaleArgs and CustomResourceSubresourceScaleOutput values. // You can construct a concrete instance of `CustomResourceSubresourceScaleInput` via: // -// CustomResourceSubresourceScaleArgs{...} -// +// CustomResourceSubresourceScaleArgs{...} type CustomResourceSubresourceScaleInput interface { pulumi.Input @@ -1510,12 +1492,11 @@ func (i CustomResourceSubresourceScaleArgs) ToCustomResourceSubresourceScalePtrO // CustomResourceSubresourceScalePtrInput is an input type that accepts CustomResourceSubresourceScaleArgs, CustomResourceSubresourceScalePtr and CustomResourceSubresourceScalePtrOutput values. // You can construct a concrete instance of `CustomResourceSubresourceScalePtrInput` via: // -// CustomResourceSubresourceScaleArgs{...} +// CustomResourceSubresourceScaleArgs{...} // // or: // -// nil -// +// nil type CustomResourceSubresourceScalePtrInput interface { pulumi.Input @@ -1640,8 +1621,7 @@ type CustomResourceSubresources struct { // CustomResourceSubresourcesInput is an input type that accepts CustomResourceSubresourcesArgs and CustomResourceSubresourcesOutput values. // You can construct a concrete instance of `CustomResourceSubresourcesInput` via: // -// CustomResourceSubresourcesArgs{...} -// +// CustomResourceSubresourcesArgs{...} type CustomResourceSubresourcesInput interface { pulumi.Input @@ -1680,12 +1660,11 @@ func (i CustomResourceSubresourcesArgs) ToCustomResourceSubresourcesPtrOutputWit // CustomResourceSubresourcesPtrInput is an input type that accepts CustomResourceSubresourcesArgs, CustomResourceSubresourcesPtr and CustomResourceSubresourcesPtrOutput values. // You can construct a concrete instance of `CustomResourceSubresourcesPtrInput` via: // -// CustomResourceSubresourcesArgs{...} +// CustomResourceSubresourcesArgs{...} // // or: // -// nil -// +// nil type CustomResourceSubresourcesPtrInput interface { pulumi.Input @@ -1793,8 +1772,7 @@ type CustomResourceValidation struct { // CustomResourceValidationInput is an input type that accepts CustomResourceValidationArgs and CustomResourceValidationOutput values. // You can construct a concrete instance of `CustomResourceValidationInput` via: // -// CustomResourceValidationArgs{...} -// +// CustomResourceValidationArgs{...} type CustomResourceValidationInput interface { pulumi.Input @@ -1831,12 +1809,11 @@ func (i CustomResourceValidationArgs) ToCustomResourceValidationPtrOutputWithCon // CustomResourceValidationPtrInput is an input type that accepts CustomResourceValidationArgs, CustomResourceValidationPtr and CustomResourceValidationPtrOutput values. // You can construct a concrete instance of `CustomResourceValidationPtrInput` via: // -// CustomResourceValidationArgs{...} +// CustomResourceValidationArgs{...} // // or: // -// nil -// +// nil type CustomResourceValidationPtrInput interface { pulumi.Input @@ -1929,8 +1906,7 @@ type ExternalDocumentation struct { // ExternalDocumentationInput is an input type that accepts ExternalDocumentationArgs and ExternalDocumentationOutput values. // You can construct a concrete instance of `ExternalDocumentationInput` via: // -// ExternalDocumentationArgs{...} -// +// ExternalDocumentationArgs{...} type ExternalDocumentationInput interface { pulumi.Input @@ -1967,12 +1943,11 @@ func (i ExternalDocumentationArgs) ToExternalDocumentationPtrOutputWithContext(c // ExternalDocumentationPtrInput is an input type that accepts ExternalDocumentationArgs, ExternalDocumentationPtr and ExternalDocumentationPtrOutput values. // You can construct a concrete instance of `ExternalDocumentationPtrInput` via: // -// ExternalDocumentationArgs{...} +// ExternalDocumentationArgs{...} // // or: // -// nil -// +// nil type ExternalDocumentationPtrInput interface { pulumi.Input @@ -2141,7 +2116,7 @@ type JSONSchemaProps struct { // These lists are like maps in that their elements have a non-index key // used to identify them. Order is preserved upon merge. The map tag // must only be used on a list with elements of type object. - // Defaults to atomic for arrays. + // Defaults to atomic for arrays. X_kubernetes_list_type *string `pulumi:"x_kubernetes_list_type"` // x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: // @@ -2159,8 +2134,7 @@ type JSONSchemaProps struct { // JSONSchemaPropsInput is an input type that accepts JSONSchemaPropsArgs and JSONSchemaPropsOutput values. // You can construct a concrete instance of `JSONSchemaPropsInput` via: // -// JSONSchemaPropsArgs{...} -// +// JSONSchemaPropsArgs{...} type JSONSchemaPropsInput interface { pulumi.Input @@ -2243,7 +2217,7 @@ type JSONSchemaPropsArgs struct { // These lists are like maps in that their elements have a non-index key // used to identify them. Order is preserved upon merge. The map tag // must only be used on a list with elements of type object. - // Defaults to atomic for arrays. + // Defaults to atomic for arrays. X_kubernetes_list_type pulumi.StringPtrInput `pulumi:"x_kubernetes_list_type"` // x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: // @@ -2281,12 +2255,11 @@ func (i JSONSchemaPropsArgs) ToJSONSchemaPropsPtrOutputWithContext(ctx context.C // JSONSchemaPropsPtrInput is an input type that accepts JSONSchemaPropsArgs, JSONSchemaPropsPtr and JSONSchemaPropsPtrOutput values. // You can construct a concrete instance of `JSONSchemaPropsPtrInput` via: // -// JSONSchemaPropsArgs{...} +// JSONSchemaPropsArgs{...} // // or: // -// nil -// +// nil type JSONSchemaPropsPtrInput interface { pulumi.Input @@ -2315,8 +2288,7 @@ func (i *jsonschemaPropsPtrType) ToJSONSchemaPropsPtrOutputWithContext(ctx conte // JSONSchemaPropsArrayInput is an input type that accepts JSONSchemaPropsArray and JSONSchemaPropsArrayOutput values. // You can construct a concrete instance of `JSONSchemaPropsArrayInput` via: // -// JSONSchemaPropsArray{ JSONSchemaPropsArgs{...} } -// +// JSONSchemaPropsArray{ JSONSchemaPropsArgs{...} } type JSONSchemaPropsArrayInput interface { pulumi.Input @@ -2341,8 +2313,7 @@ func (i JSONSchemaPropsArray) ToJSONSchemaPropsArrayOutputWithContext(ctx contex // JSONSchemaPropsMapInput is an input type that accepts JSONSchemaPropsMap and JSONSchemaPropsMapOutput values. // You can construct a concrete instance of `JSONSchemaPropsMapInput` via: // -// JSONSchemaPropsMap{ "key": JSONSchemaPropsArgs{...} } -// +// JSONSchemaPropsMap{ "key": JSONSchemaPropsArgs{...} } type JSONSchemaPropsMapInput interface { pulumi.Input @@ -2581,7 +2552,7 @@ func (o JSONSchemaPropsOutput) X_kubernetes_list_map_keys() pulumi.StringArrayOu // These lists are like maps in that their elements have a non-index key // used to identify them. Order is preserved upon merge. The map tag // must only be used on a list with elements of type object. -// Defaults to atomic for arrays. +// Defaults to atomic for arrays. func (o JSONSchemaPropsOutput) X_kubernetes_list_type() pulumi.StringPtrOutput { return o.ApplyT(func(v JSONSchemaProps) *string { return v.X_kubernetes_list_type }).(pulumi.StringPtrOutput) } @@ -3014,7 +2985,7 @@ func (o JSONSchemaPropsPtrOutput) X_kubernetes_list_map_keys() pulumi.StringArra // These lists are like maps in that their elements have a non-index key // used to identify them. Order is preserved upon merge. The map tag // must only be used on a list with elements of type object. -// Defaults to atomic for arrays. +// Defaults to atomic for arrays. func (o JSONSchemaPropsPtrOutput) X_kubernetes_list_type() pulumi.StringPtrOutput { return o.ApplyT(func(v *JSONSchemaProps) *string { if v == nil { @@ -3106,8 +3077,7 @@ type ServiceReference struct { // ServiceReferenceInput is an input type that accepts ServiceReferenceArgs and ServiceReferenceOutput values. // You can construct a concrete instance of `ServiceReferenceInput` via: // -// ServiceReferenceArgs{...} -// +// ServiceReferenceArgs{...} type ServiceReferenceInput interface { pulumi.Input @@ -3150,12 +3120,11 @@ func (i ServiceReferenceArgs) ToServiceReferencePtrOutputWithContext(ctx context // ServiceReferencePtrInput is an input type that accepts ServiceReferenceArgs, ServiceReferencePtr and ServiceReferencePtrOutput values. // You can construct a concrete instance of `ServiceReferencePtrInput` via: // -// ServiceReferenceArgs{...} +// ServiceReferenceArgs{...} // // or: // -// nil -// +// nil type ServiceReferencePtrInput interface { pulumi.Input @@ -3309,8 +3278,7 @@ type WebhookClientConfig struct { // WebhookClientConfigInput is an input type that accepts WebhookClientConfigArgs and WebhookClientConfigOutput values. // You can construct a concrete instance of `WebhookClientConfigInput` via: // -// WebhookClientConfigArgs{...} -// +// WebhookClientConfigArgs{...} type WebhookClientConfigInput interface { pulumi.Input @@ -3363,12 +3331,11 @@ func (i WebhookClientConfigArgs) ToWebhookClientConfigPtrOutputWithContext(ctx c // WebhookClientConfigPtrInput is an input type that accepts WebhookClientConfigArgs, WebhookClientConfigPtr and WebhookClientConfigPtrOutput values. // You can construct a concrete instance of `WebhookClientConfigPtrInput` via: // -// WebhookClientConfigArgs{...} +// WebhookClientConfigArgs{...} // // or: // -// nil -// +// nil type WebhookClientConfigPtrInput interface { pulumi.Input @@ -3517,8 +3484,7 @@ type WebhookConversion struct { // WebhookConversionInput is an input type that accepts WebhookConversionArgs and WebhookConversionOutput values. // You can construct a concrete instance of `WebhookConversionInput` via: // -// WebhookConversionArgs{...} -// +// WebhookConversionArgs{...} type WebhookConversionInput interface { pulumi.Input @@ -3557,12 +3523,11 @@ func (i WebhookConversionArgs) ToWebhookConversionPtrOutputWithContext(ctx conte // WebhookConversionPtrInput is an input type that accepts WebhookConversionArgs, WebhookConversionPtr and WebhookConversionPtrOutput values. // You can construct a concrete instance of `WebhookConversionPtrInput` via: // -// WebhookConversionArgs{...} +// WebhookConversionArgs{...} // // or: // -// nil -// +// nil type WebhookConversionPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/apiextensions/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/apiextensions/v1beta1/pulumiTypes.go index 821d158f5e..3a25ce9b23 100644 --- a/sdk/go/kubernetes/apiextensions/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/apiextensions/v1beta1/pulumiTypes.go @@ -30,8 +30,7 @@ type CustomResourceColumnDefinition struct { // CustomResourceColumnDefinitionInput is an input type that accepts CustomResourceColumnDefinitionArgs and CustomResourceColumnDefinitionOutput values. // You can construct a concrete instance of `CustomResourceColumnDefinitionInput` via: // -// CustomResourceColumnDefinitionArgs{...} -// +// CustomResourceColumnDefinitionArgs{...} type CustomResourceColumnDefinitionInput interface { pulumi.Input @@ -70,8 +69,7 @@ func (i CustomResourceColumnDefinitionArgs) ToCustomResourceColumnDefinitionOutp // CustomResourceColumnDefinitionArrayInput is an input type that accepts CustomResourceColumnDefinitionArray and CustomResourceColumnDefinitionArrayOutput values. // You can construct a concrete instance of `CustomResourceColumnDefinitionArrayInput` via: // -// CustomResourceColumnDefinitionArray{ CustomResourceColumnDefinitionArgs{...} } -// +// CustomResourceColumnDefinitionArray{ CustomResourceColumnDefinitionArgs{...} } type CustomResourceColumnDefinitionArrayInput interface { pulumi.Input @@ -172,8 +170,7 @@ type CustomResourceConversion struct { // CustomResourceConversionInput is an input type that accepts CustomResourceConversionArgs and CustomResourceConversionOutput values. // You can construct a concrete instance of `CustomResourceConversionInput` via: // -// CustomResourceConversionArgs{...} -// +// CustomResourceConversionArgs{...} type CustomResourceConversionInput interface { pulumi.Input @@ -215,12 +212,11 @@ func (i CustomResourceConversionArgs) ToCustomResourceConversionPtrOutputWithCon // CustomResourceConversionPtrInput is an input type that accepts CustomResourceConversionArgs, CustomResourceConversionPtr and CustomResourceConversionPtrOutput values. // You can construct a concrete instance of `CustomResourceConversionPtrInput` via: // -// CustomResourceConversionArgs{...} +// CustomResourceConversionArgs{...} // // or: // -// nil -// +// nil type CustomResourceConversionPtrInput interface { pulumi.Input @@ -352,8 +348,7 @@ type CustomResourceDefinitionType struct { // CustomResourceDefinitionTypeInput is an input type that accepts CustomResourceDefinitionTypeArgs and CustomResourceDefinitionTypeOutput values. // You can construct a concrete instance of `CustomResourceDefinitionTypeInput` via: // -// CustomResourceDefinitionTypeArgs{...} -// +// CustomResourceDefinitionTypeArgs{...} type CustomResourceDefinitionTypeInput interface { pulumi.Input @@ -389,8 +384,7 @@ func (i CustomResourceDefinitionTypeArgs) ToCustomResourceDefinitionTypeOutputWi // CustomResourceDefinitionTypeArrayInput is an input type that accepts CustomResourceDefinitionTypeArray and CustomResourceDefinitionTypeArrayOutput values. // You can construct a concrete instance of `CustomResourceDefinitionTypeArrayInput` via: // -// CustomResourceDefinitionTypeArray{ CustomResourceDefinitionTypeArgs{...} } -// +// CustomResourceDefinitionTypeArray{ CustomResourceDefinitionTypeArgs{...} } type CustomResourceDefinitionTypeArrayInput interface { pulumi.Input @@ -488,8 +482,7 @@ type CustomResourceDefinitionCondition struct { // CustomResourceDefinitionConditionInput is an input type that accepts CustomResourceDefinitionConditionArgs and CustomResourceDefinitionConditionOutput values. // You can construct a concrete instance of `CustomResourceDefinitionConditionInput` via: // -// CustomResourceDefinitionConditionArgs{...} -// +// CustomResourceDefinitionConditionArgs{...} type CustomResourceDefinitionConditionInput interface { pulumi.Input @@ -526,8 +519,7 @@ func (i CustomResourceDefinitionConditionArgs) ToCustomResourceDefinitionConditi // CustomResourceDefinitionConditionArrayInput is an input type that accepts CustomResourceDefinitionConditionArray and CustomResourceDefinitionConditionArrayOutput values. // You can construct a concrete instance of `CustomResourceDefinitionConditionArrayInput` via: // -// CustomResourceDefinitionConditionArray{ CustomResourceDefinitionConditionArgs{...} } -// +// CustomResourceDefinitionConditionArray{ CustomResourceDefinitionConditionArgs{...} } type CustomResourceDefinitionConditionArrayInput interface { pulumi.Input @@ -623,8 +615,7 @@ type CustomResourceDefinitionListType struct { // CustomResourceDefinitionListTypeInput is an input type that accepts CustomResourceDefinitionListTypeArgs and CustomResourceDefinitionListTypeOutput values. // You can construct a concrete instance of `CustomResourceDefinitionListTypeInput` via: // -// CustomResourceDefinitionListTypeArgs{...} -// +// CustomResourceDefinitionListTypeArgs{...} type CustomResourceDefinitionListTypeInput interface { pulumi.Input @@ -708,8 +699,7 @@ type CustomResourceDefinitionNames struct { // CustomResourceDefinitionNamesInput is an input type that accepts CustomResourceDefinitionNamesArgs and CustomResourceDefinitionNamesOutput values. // You can construct a concrete instance of `CustomResourceDefinitionNamesInput` via: // -// CustomResourceDefinitionNamesArgs{...} -// +// CustomResourceDefinitionNamesArgs{...} type CustomResourceDefinitionNamesInput interface { pulumi.Input @@ -756,12 +746,11 @@ func (i CustomResourceDefinitionNamesArgs) ToCustomResourceDefinitionNamesPtrOut // CustomResourceDefinitionNamesPtrInput is an input type that accepts CustomResourceDefinitionNamesArgs, CustomResourceDefinitionNamesPtr and CustomResourceDefinitionNamesPtrOutput values. // You can construct a concrete instance of `CustomResourceDefinitionNamesPtrInput` via: // -// CustomResourceDefinitionNamesArgs{...} +// CustomResourceDefinitionNamesArgs{...} // // or: // -// nil -// +// nil type CustomResourceDefinitionNamesPtrInput interface { pulumi.Input @@ -947,8 +936,7 @@ type CustomResourceDefinitionSpec struct { // CustomResourceDefinitionSpecInput is an input type that accepts CustomResourceDefinitionSpecArgs and CustomResourceDefinitionSpecOutput values. // You can construct a concrete instance of `CustomResourceDefinitionSpecInput` via: // -// CustomResourceDefinitionSpecArgs{...} -// +// CustomResourceDefinitionSpecArgs{...} type CustomResourceDefinitionSpecInput interface { pulumi.Input @@ -1003,12 +991,11 @@ func (i CustomResourceDefinitionSpecArgs) ToCustomResourceDefinitionSpecPtrOutpu // CustomResourceDefinitionSpecPtrInput is an input type that accepts CustomResourceDefinitionSpecArgs, CustomResourceDefinitionSpecPtr and CustomResourceDefinitionSpecPtrOutput values. // You can construct a concrete instance of `CustomResourceDefinitionSpecPtrInput` via: // -// CustomResourceDefinitionSpecArgs{...} +// CustomResourceDefinitionSpecArgs{...} // // or: // -// nil -// +// nil type CustomResourceDefinitionSpecPtrInput interface { pulumi.Input @@ -1242,8 +1229,7 @@ type CustomResourceDefinitionStatus struct { // CustomResourceDefinitionStatusInput is an input type that accepts CustomResourceDefinitionStatusArgs and CustomResourceDefinitionStatusOutput values. // You can construct a concrete instance of `CustomResourceDefinitionStatusInput` via: // -// CustomResourceDefinitionStatusArgs{...} -// +// CustomResourceDefinitionStatusArgs{...} type CustomResourceDefinitionStatusInput interface { pulumi.Input @@ -1284,12 +1270,11 @@ func (i CustomResourceDefinitionStatusArgs) ToCustomResourceDefinitionStatusPtrO // CustomResourceDefinitionStatusPtrInput is an input type that accepts CustomResourceDefinitionStatusArgs, CustomResourceDefinitionStatusPtr and CustomResourceDefinitionStatusPtrOutput values. // You can construct a concrete instance of `CustomResourceDefinitionStatusPtrInput` via: // -// CustomResourceDefinitionStatusArgs{...} +// CustomResourceDefinitionStatusArgs{...} // // or: // -// nil -// +// nil type CustomResourceDefinitionStatusPtrInput interface { pulumi.Input @@ -1422,8 +1407,7 @@ type CustomResourceDefinitionVersion struct { // CustomResourceDefinitionVersionInput is an input type that accepts CustomResourceDefinitionVersionArgs and CustomResourceDefinitionVersionOutput values. // You can construct a concrete instance of `CustomResourceDefinitionVersionInput` via: // -// CustomResourceDefinitionVersionArgs{...} -// +// CustomResourceDefinitionVersionArgs{...} type CustomResourceDefinitionVersionInput interface { pulumi.Input @@ -1462,8 +1446,7 @@ func (i CustomResourceDefinitionVersionArgs) ToCustomResourceDefinitionVersionOu // CustomResourceDefinitionVersionArrayInput is an input type that accepts CustomResourceDefinitionVersionArray and CustomResourceDefinitionVersionArrayOutput values. // You can construct a concrete instance of `CustomResourceDefinitionVersionArrayInput` via: // -// CustomResourceDefinitionVersionArray{ CustomResourceDefinitionVersionArgs{...} } -// +// CustomResourceDefinitionVersionArray{ CustomResourceDefinitionVersionArgs{...} } type CustomResourceDefinitionVersionArrayInput interface { pulumi.Input @@ -1565,8 +1548,7 @@ type CustomResourceSubresourceScale struct { // CustomResourceSubresourceScaleInput is an input type that accepts CustomResourceSubresourceScaleArgs and CustomResourceSubresourceScaleOutput values. // You can construct a concrete instance of `CustomResourceSubresourceScaleInput` via: // -// CustomResourceSubresourceScaleArgs{...} -// +// CustomResourceSubresourceScaleArgs{...} type CustomResourceSubresourceScaleInput interface { pulumi.Input @@ -1607,12 +1589,11 @@ func (i CustomResourceSubresourceScaleArgs) ToCustomResourceSubresourceScalePtrO // CustomResourceSubresourceScalePtrInput is an input type that accepts CustomResourceSubresourceScaleArgs, CustomResourceSubresourceScalePtr and CustomResourceSubresourceScalePtrOutput values. // You can construct a concrete instance of `CustomResourceSubresourceScalePtrInput` via: // -// CustomResourceSubresourceScaleArgs{...} +// CustomResourceSubresourceScaleArgs{...} // // or: // -// nil -// +// nil type CustomResourceSubresourceScalePtrInput interface { pulumi.Input @@ -1737,8 +1718,7 @@ type CustomResourceSubresources struct { // CustomResourceSubresourcesInput is an input type that accepts CustomResourceSubresourcesArgs and CustomResourceSubresourcesOutput values. // You can construct a concrete instance of `CustomResourceSubresourcesInput` via: // -// CustomResourceSubresourcesArgs{...} -// +// CustomResourceSubresourcesArgs{...} type CustomResourceSubresourcesInput interface { pulumi.Input @@ -1777,12 +1757,11 @@ func (i CustomResourceSubresourcesArgs) ToCustomResourceSubresourcesPtrOutputWit // CustomResourceSubresourcesPtrInput is an input type that accepts CustomResourceSubresourcesArgs, CustomResourceSubresourcesPtr and CustomResourceSubresourcesPtrOutput values. // You can construct a concrete instance of `CustomResourceSubresourcesPtrInput` via: // -// CustomResourceSubresourcesArgs{...} +// CustomResourceSubresourcesArgs{...} // // or: // -// nil -// +// nil type CustomResourceSubresourcesPtrInput interface { pulumi.Input @@ -1890,8 +1869,7 @@ type CustomResourceValidation struct { // CustomResourceValidationInput is an input type that accepts CustomResourceValidationArgs and CustomResourceValidationOutput values. // You can construct a concrete instance of `CustomResourceValidationInput` via: // -// CustomResourceValidationArgs{...} -// +// CustomResourceValidationArgs{...} type CustomResourceValidationInput interface { pulumi.Input @@ -1928,12 +1906,11 @@ func (i CustomResourceValidationArgs) ToCustomResourceValidationPtrOutputWithCon // CustomResourceValidationPtrInput is an input type that accepts CustomResourceValidationArgs, CustomResourceValidationPtr and CustomResourceValidationPtrOutput values. // You can construct a concrete instance of `CustomResourceValidationPtrInput` via: // -// CustomResourceValidationArgs{...} +// CustomResourceValidationArgs{...} // // or: // -// nil -// +// nil type CustomResourceValidationPtrInput interface { pulumi.Input @@ -2026,8 +2003,7 @@ type ExternalDocumentation struct { // ExternalDocumentationInput is an input type that accepts ExternalDocumentationArgs and ExternalDocumentationOutput values. // You can construct a concrete instance of `ExternalDocumentationInput` via: // -// ExternalDocumentationArgs{...} -// +// ExternalDocumentationArgs{...} type ExternalDocumentationInput interface { pulumi.Input @@ -2064,12 +2040,11 @@ func (i ExternalDocumentationArgs) ToExternalDocumentationPtrOutputWithContext(c // ExternalDocumentationPtrInput is an input type that accepts ExternalDocumentationArgs, ExternalDocumentationPtr and ExternalDocumentationPtrOutput values. // You can construct a concrete instance of `ExternalDocumentationPtrInput` via: // -// ExternalDocumentationArgs{...} +// ExternalDocumentationArgs{...} // // or: // -// nil -// +// nil type ExternalDocumentationPtrInput interface { pulumi.Input @@ -2238,7 +2213,7 @@ type JSONSchemaProps struct { // These lists are like maps in that their elements have a non-index key // used to identify them. Order is preserved upon merge. The map tag // must only be used on a list with elements of type object. - // Defaults to atomic for arrays. + // Defaults to atomic for arrays. X_kubernetes_list_type *string `pulumi:"x_kubernetes_list_type"` // x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: // @@ -2256,8 +2231,7 @@ type JSONSchemaProps struct { // JSONSchemaPropsInput is an input type that accepts JSONSchemaPropsArgs and JSONSchemaPropsOutput values. // You can construct a concrete instance of `JSONSchemaPropsInput` via: // -// JSONSchemaPropsArgs{...} -// +// JSONSchemaPropsArgs{...} type JSONSchemaPropsInput interface { pulumi.Input @@ -2340,7 +2314,7 @@ type JSONSchemaPropsArgs struct { // These lists are like maps in that their elements have a non-index key // used to identify them. Order is preserved upon merge. The map tag // must only be used on a list with elements of type object. - // Defaults to atomic for arrays. + // Defaults to atomic for arrays. X_kubernetes_list_type pulumi.StringPtrInput `pulumi:"x_kubernetes_list_type"` // x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: // @@ -2378,12 +2352,11 @@ func (i JSONSchemaPropsArgs) ToJSONSchemaPropsPtrOutputWithContext(ctx context.C // JSONSchemaPropsPtrInput is an input type that accepts JSONSchemaPropsArgs, JSONSchemaPropsPtr and JSONSchemaPropsPtrOutput values. // You can construct a concrete instance of `JSONSchemaPropsPtrInput` via: // -// JSONSchemaPropsArgs{...} +// JSONSchemaPropsArgs{...} // // or: // -// nil -// +// nil type JSONSchemaPropsPtrInput interface { pulumi.Input @@ -2412,8 +2385,7 @@ func (i *jsonschemaPropsPtrType) ToJSONSchemaPropsPtrOutputWithContext(ctx conte // JSONSchemaPropsArrayInput is an input type that accepts JSONSchemaPropsArray and JSONSchemaPropsArrayOutput values. // You can construct a concrete instance of `JSONSchemaPropsArrayInput` via: // -// JSONSchemaPropsArray{ JSONSchemaPropsArgs{...} } -// +// JSONSchemaPropsArray{ JSONSchemaPropsArgs{...} } type JSONSchemaPropsArrayInput interface { pulumi.Input @@ -2438,8 +2410,7 @@ func (i JSONSchemaPropsArray) ToJSONSchemaPropsArrayOutputWithContext(ctx contex // JSONSchemaPropsMapInput is an input type that accepts JSONSchemaPropsMap and JSONSchemaPropsMapOutput values. // You can construct a concrete instance of `JSONSchemaPropsMapInput` via: // -// JSONSchemaPropsMap{ "key": JSONSchemaPropsArgs{...} } -// +// JSONSchemaPropsMap{ "key": JSONSchemaPropsArgs{...} } type JSONSchemaPropsMapInput interface { pulumi.Input @@ -2678,7 +2649,7 @@ func (o JSONSchemaPropsOutput) X_kubernetes_list_map_keys() pulumi.StringArrayOu // These lists are like maps in that their elements have a non-index key // used to identify them. Order is preserved upon merge. The map tag // must only be used on a list with elements of type object. -// Defaults to atomic for arrays. +// Defaults to atomic for arrays. func (o JSONSchemaPropsOutput) X_kubernetes_list_type() pulumi.StringPtrOutput { return o.ApplyT(func(v JSONSchemaProps) *string { return v.X_kubernetes_list_type }).(pulumi.StringPtrOutput) } @@ -3111,7 +3082,7 @@ func (o JSONSchemaPropsPtrOutput) X_kubernetes_list_map_keys() pulumi.StringArra // These lists are like maps in that their elements have a non-index key // used to identify them. Order is preserved upon merge. The map tag // must only be used on a list with elements of type object. -// Defaults to atomic for arrays. +// Defaults to atomic for arrays. func (o JSONSchemaPropsPtrOutput) X_kubernetes_list_type() pulumi.StringPtrOutput { return o.ApplyT(func(v *JSONSchemaProps) *string { if v == nil { @@ -3203,8 +3174,7 @@ type ServiceReference struct { // ServiceReferenceInput is an input type that accepts ServiceReferenceArgs and ServiceReferenceOutput values. // You can construct a concrete instance of `ServiceReferenceInput` via: // -// ServiceReferenceArgs{...} -// +// ServiceReferenceArgs{...} type ServiceReferenceInput interface { pulumi.Input @@ -3247,12 +3217,11 @@ func (i ServiceReferenceArgs) ToServiceReferencePtrOutputWithContext(ctx context // ServiceReferencePtrInput is an input type that accepts ServiceReferenceArgs, ServiceReferencePtr and ServiceReferencePtrOutput values. // You can construct a concrete instance of `ServiceReferencePtrInput` via: // -// ServiceReferenceArgs{...} +// ServiceReferenceArgs{...} // // or: // -// nil -// +// nil type ServiceReferencePtrInput interface { pulumi.Input @@ -3406,8 +3375,7 @@ type WebhookClientConfig struct { // WebhookClientConfigInput is an input type that accepts WebhookClientConfigArgs and WebhookClientConfigOutput values. // You can construct a concrete instance of `WebhookClientConfigInput` via: // -// WebhookClientConfigArgs{...} -// +// WebhookClientConfigArgs{...} type WebhookClientConfigInput interface { pulumi.Input @@ -3460,12 +3428,11 @@ func (i WebhookClientConfigArgs) ToWebhookClientConfigPtrOutputWithContext(ctx c // WebhookClientConfigPtrInput is an input type that accepts WebhookClientConfigArgs, WebhookClientConfigPtr and WebhookClientConfigPtrOutput values. // You can construct a concrete instance of `WebhookClientConfigPtrInput` via: // -// WebhookClientConfigArgs{...} +// WebhookClientConfigArgs{...} // // or: // -// nil -// +// nil type WebhookClientConfigPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/apiregistration/v1/pulumiTypes.go b/sdk/go/kubernetes/apiregistration/v1/pulumiTypes.go index 3c84dbe4e8..72d25f0fb9 100644 --- a/sdk/go/kubernetes/apiregistration/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/apiregistration/v1/pulumiTypes.go @@ -27,8 +27,7 @@ type APIServiceType struct { // APIServiceTypeInput is an input type that accepts APIServiceTypeArgs and APIServiceTypeOutput values. // You can construct a concrete instance of `APIServiceTypeInput` via: // -// APIServiceTypeArgs{...} -// +// APIServiceTypeArgs{...} type APIServiceTypeInput interface { pulumi.Input @@ -64,8 +63,7 @@ func (i APIServiceTypeArgs) ToAPIServiceTypeOutputWithContext(ctx context.Contex // APIServiceTypeArrayInput is an input type that accepts APIServiceTypeArray and APIServiceTypeArrayOutput values. // You can construct a concrete instance of `APIServiceTypeArrayInput` via: // -// APIServiceTypeArray{ APIServiceTypeArgs{...} } -// +// APIServiceTypeArray{ APIServiceTypeArgs{...} } type APIServiceTypeArrayInput interface { pulumi.Input @@ -163,8 +161,7 @@ type APIServiceCondition struct { // APIServiceConditionInput is an input type that accepts APIServiceConditionArgs and APIServiceConditionOutput values. // You can construct a concrete instance of `APIServiceConditionInput` via: // -// APIServiceConditionArgs{...} -// +// APIServiceConditionArgs{...} type APIServiceConditionInput interface { pulumi.Input @@ -201,8 +198,7 @@ func (i APIServiceConditionArgs) ToAPIServiceConditionOutputWithContext(ctx cont // APIServiceConditionArrayInput is an input type that accepts APIServiceConditionArray and APIServiceConditionArrayOutput values. // You can construct a concrete instance of `APIServiceConditionArrayInput` via: // -// APIServiceConditionArray{ APIServiceConditionArgs{...} } -// +// APIServiceConditionArray{ APIServiceConditionArgs{...} } type APIServiceConditionArrayInput interface { pulumi.Input @@ -297,8 +293,7 @@ type APIServiceListType struct { // APIServiceListTypeInput is an input type that accepts APIServiceListTypeArgs and APIServiceListTypeOutput values. // You can construct a concrete instance of `APIServiceListTypeInput` via: // -// APIServiceListTypeArgs{...} -// +// APIServiceListTypeArgs{...} type APIServiceListTypeInput interface { pulumi.Input @@ -382,8 +377,7 @@ type APIServiceSpec struct { // APIServiceSpecInput is an input type that accepts APIServiceSpecArgs and APIServiceSpecOutput values. // You can construct a concrete instance of `APIServiceSpecInput` via: // -// APIServiceSpecArgs{...} -// +// APIServiceSpecArgs{...} type APIServiceSpecInput interface { pulumi.Input @@ -432,12 +426,11 @@ func (i APIServiceSpecArgs) ToAPIServiceSpecPtrOutputWithContext(ctx context.Con // APIServiceSpecPtrInput is an input type that accepts APIServiceSpecArgs, APIServiceSpecPtr and APIServiceSpecPtrOutput values. // You can construct a concrete instance of `APIServiceSpecPtrInput` via: // -// APIServiceSpecArgs{...} +// APIServiceSpecArgs{...} // // or: // -// nil -// +// nil type APIServiceSpecPtrInput interface { pulumi.Input @@ -620,8 +613,7 @@ type APIServiceStatus struct { // APIServiceStatusInput is an input type that accepts APIServiceStatusArgs and APIServiceStatusOutput values. // You can construct a concrete instance of `APIServiceStatusInput` via: // -// APIServiceStatusArgs{...} -// +// APIServiceStatusArgs{...} type APIServiceStatusInput interface { pulumi.Input @@ -658,12 +650,11 @@ func (i APIServiceStatusArgs) ToAPIServiceStatusPtrOutputWithContext(ctx context // APIServiceStatusPtrInput is an input type that accepts APIServiceStatusArgs, APIServiceStatusPtr and APIServiceStatusPtrOutput values. // You can construct a concrete instance of `APIServiceStatusPtrInput` via: // -// APIServiceStatusArgs{...} +// APIServiceStatusArgs{...} // // or: // -// nil -// +// nil type APIServiceStatusPtrInput interface { pulumi.Input @@ -760,8 +751,7 @@ type ServiceReference struct { // ServiceReferenceInput is an input type that accepts ServiceReferenceArgs and ServiceReferenceOutput values. // You can construct a concrete instance of `ServiceReferenceInput` via: // -// ServiceReferenceArgs{...} -// +// ServiceReferenceArgs{...} type ServiceReferenceInput interface { pulumi.Input @@ -802,12 +792,11 @@ func (i ServiceReferenceArgs) ToServiceReferencePtrOutputWithContext(ctx context // ServiceReferencePtrInput is an input type that accepts ServiceReferenceArgs, ServiceReferencePtr and ServiceReferencePtrOutput values. // You can construct a concrete instance of `ServiceReferencePtrInput` via: // -// ServiceReferenceArgs{...} +// ServiceReferenceArgs{...} // // or: // -// nil -// +// nil type ServiceReferencePtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/apiregistration/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/apiregistration/v1beta1/pulumiTypes.go index 2348f078e2..f315cb4794 100644 --- a/sdk/go/kubernetes/apiregistration/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/apiregistration/v1beta1/pulumiTypes.go @@ -27,8 +27,7 @@ type APIServiceType struct { // APIServiceTypeInput is an input type that accepts APIServiceTypeArgs and APIServiceTypeOutput values. // You can construct a concrete instance of `APIServiceTypeInput` via: // -// APIServiceTypeArgs{...} -// +// APIServiceTypeArgs{...} type APIServiceTypeInput interface { pulumi.Input @@ -64,8 +63,7 @@ func (i APIServiceTypeArgs) ToAPIServiceTypeOutputWithContext(ctx context.Contex // APIServiceTypeArrayInput is an input type that accepts APIServiceTypeArray and APIServiceTypeArrayOutput values. // You can construct a concrete instance of `APIServiceTypeArrayInput` via: // -// APIServiceTypeArray{ APIServiceTypeArgs{...} } -// +// APIServiceTypeArray{ APIServiceTypeArgs{...} } type APIServiceTypeArrayInput interface { pulumi.Input @@ -163,8 +161,7 @@ type APIServiceCondition struct { // APIServiceConditionInput is an input type that accepts APIServiceConditionArgs and APIServiceConditionOutput values. // You can construct a concrete instance of `APIServiceConditionInput` via: // -// APIServiceConditionArgs{...} -// +// APIServiceConditionArgs{...} type APIServiceConditionInput interface { pulumi.Input @@ -201,8 +198,7 @@ func (i APIServiceConditionArgs) ToAPIServiceConditionOutputWithContext(ctx cont // APIServiceConditionArrayInput is an input type that accepts APIServiceConditionArray and APIServiceConditionArrayOutput values. // You can construct a concrete instance of `APIServiceConditionArrayInput` via: // -// APIServiceConditionArray{ APIServiceConditionArgs{...} } -// +// APIServiceConditionArray{ APIServiceConditionArgs{...} } type APIServiceConditionArrayInput interface { pulumi.Input @@ -297,8 +293,7 @@ type APIServiceListType struct { // APIServiceListTypeInput is an input type that accepts APIServiceListTypeArgs and APIServiceListTypeOutput values. // You can construct a concrete instance of `APIServiceListTypeInput` via: // -// APIServiceListTypeArgs{...} -// +// APIServiceListTypeArgs{...} type APIServiceListTypeInput interface { pulumi.Input @@ -382,8 +377,7 @@ type APIServiceSpec struct { // APIServiceSpecInput is an input type that accepts APIServiceSpecArgs and APIServiceSpecOutput values. // You can construct a concrete instance of `APIServiceSpecInput` via: // -// APIServiceSpecArgs{...} -// +// APIServiceSpecArgs{...} type APIServiceSpecInput interface { pulumi.Input @@ -432,12 +426,11 @@ func (i APIServiceSpecArgs) ToAPIServiceSpecPtrOutputWithContext(ctx context.Con // APIServiceSpecPtrInput is an input type that accepts APIServiceSpecArgs, APIServiceSpecPtr and APIServiceSpecPtrOutput values. // You can construct a concrete instance of `APIServiceSpecPtrInput` via: // -// APIServiceSpecArgs{...} +// APIServiceSpecArgs{...} // // or: // -// nil -// +// nil type APIServiceSpecPtrInput interface { pulumi.Input @@ -620,8 +613,7 @@ type APIServiceStatus struct { // APIServiceStatusInput is an input type that accepts APIServiceStatusArgs and APIServiceStatusOutput values. // You can construct a concrete instance of `APIServiceStatusInput` via: // -// APIServiceStatusArgs{...} -// +// APIServiceStatusArgs{...} type APIServiceStatusInput interface { pulumi.Input @@ -658,12 +650,11 @@ func (i APIServiceStatusArgs) ToAPIServiceStatusPtrOutputWithContext(ctx context // APIServiceStatusPtrInput is an input type that accepts APIServiceStatusArgs, APIServiceStatusPtr and APIServiceStatusPtrOutput values. // You can construct a concrete instance of `APIServiceStatusPtrInput` via: // -// APIServiceStatusArgs{...} +// APIServiceStatusArgs{...} // // or: // -// nil -// +// nil type APIServiceStatusPtrInput interface { pulumi.Input @@ -760,8 +751,7 @@ type ServiceReference struct { // ServiceReferenceInput is an input type that accepts ServiceReferenceArgs and ServiceReferenceOutput values. // You can construct a concrete instance of `ServiceReferenceInput` via: // -// ServiceReferenceArgs{...} -// +// ServiceReferenceArgs{...} type ServiceReferenceInput interface { pulumi.Input @@ -802,12 +792,11 @@ func (i ServiceReferenceArgs) ToServiceReferencePtrOutputWithContext(ctx context // ServiceReferencePtrInput is an input type that accepts ServiceReferenceArgs, ServiceReferencePtr and ServiceReferencePtrOutput values. // You can construct a concrete instance of `ServiceReferencePtrInput` via: // -// ServiceReferenceArgs{...} +// ServiceReferenceArgs{...} // // or: // -// nil -// +// nil type ServiceReferencePtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/apps/v1/pulumiTypes.go b/sdk/go/kubernetes/apps/v1/pulumiTypes.go index fb557d7d1f..1050674d3c 100644 --- a/sdk/go/kubernetes/apps/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/apps/v1/pulumiTypes.go @@ -29,8 +29,7 @@ type ControllerRevisionType struct { // ControllerRevisionTypeInput is an input type that accepts ControllerRevisionTypeArgs and ControllerRevisionTypeOutput values. // You can construct a concrete instance of `ControllerRevisionTypeInput` via: // -// ControllerRevisionTypeArgs{...} -// +// ControllerRevisionTypeArgs{...} type ControllerRevisionTypeInput interface { pulumi.Input @@ -67,8 +66,7 @@ func (i ControllerRevisionTypeArgs) ToControllerRevisionTypeOutputWithContext(ct // ControllerRevisionTypeArrayInput is an input type that accepts ControllerRevisionTypeArray and ControllerRevisionTypeArrayOutput values. // You can construct a concrete instance of `ControllerRevisionTypeArrayInput` via: // -// ControllerRevisionTypeArray{ ControllerRevisionTypeArgs{...} } -// +// ControllerRevisionTypeArray{ ControllerRevisionTypeArgs{...} } type ControllerRevisionTypeArrayInput interface { pulumi.Input @@ -165,8 +163,7 @@ type ControllerRevisionListType struct { // ControllerRevisionListTypeInput is an input type that accepts ControllerRevisionListTypeArgs and ControllerRevisionListTypeOutput values. // You can construct a concrete instance of `ControllerRevisionListTypeInput` via: // -// ControllerRevisionListTypeArgs{...} -// +// ControllerRevisionListTypeArgs{...} type ControllerRevisionListTypeInput interface { pulumi.Input @@ -250,8 +247,7 @@ type DaemonSetType struct { // DaemonSetTypeInput is an input type that accepts DaemonSetTypeArgs and DaemonSetTypeOutput values. // You can construct a concrete instance of `DaemonSetTypeInput` via: // -// DaemonSetTypeArgs{...} -// +// DaemonSetTypeArgs{...} type DaemonSetTypeInput interface { pulumi.Input @@ -288,8 +284,7 @@ func (i DaemonSetTypeArgs) ToDaemonSetTypeOutputWithContext(ctx context.Context) // DaemonSetTypeArrayInput is an input type that accepts DaemonSetTypeArray and DaemonSetTypeArrayOutput values. // You can construct a concrete instance of `DaemonSetTypeArrayInput` via: // -// DaemonSetTypeArray{ DaemonSetTypeArgs{...} } -// +// DaemonSetTypeArray{ DaemonSetTypeArgs{...} } type DaemonSetTypeArrayInput interface { pulumi.Input @@ -388,8 +383,7 @@ type DaemonSetCondition struct { // DaemonSetConditionInput is an input type that accepts DaemonSetConditionArgs and DaemonSetConditionOutput values. // You can construct a concrete instance of `DaemonSetConditionInput` via: // -// DaemonSetConditionArgs{...} -// +// DaemonSetConditionArgs{...} type DaemonSetConditionInput interface { pulumi.Input @@ -426,8 +420,7 @@ func (i DaemonSetConditionArgs) ToDaemonSetConditionOutputWithContext(ctx contex // DaemonSetConditionArrayInput is an input type that accepts DaemonSetConditionArray and DaemonSetConditionArrayOutput values. // You can construct a concrete instance of `DaemonSetConditionArrayInput` via: // -// DaemonSetConditionArray{ DaemonSetConditionArgs{...} } -// +// DaemonSetConditionArray{ DaemonSetConditionArgs{...} } type DaemonSetConditionArrayInput interface { pulumi.Input @@ -524,8 +517,7 @@ type DaemonSetListType struct { // DaemonSetListTypeInput is an input type that accepts DaemonSetListTypeArgs and DaemonSetListTypeOutput values. // You can construct a concrete instance of `DaemonSetListTypeInput` via: // -// DaemonSetListTypeArgs{...} -// +// DaemonSetListTypeArgs{...} type DaemonSetListTypeInput interface { pulumi.Input @@ -609,8 +601,7 @@ type DaemonSetSpec struct { // DaemonSetSpecInput is an input type that accepts DaemonSetSpecArgs and DaemonSetSpecOutput values. // You can construct a concrete instance of `DaemonSetSpecInput` via: // -// DaemonSetSpecArgs{...} -// +// DaemonSetSpecArgs{...} type DaemonSetSpecInput interface { pulumi.Input @@ -655,12 +646,11 @@ func (i DaemonSetSpecArgs) ToDaemonSetSpecPtrOutputWithContext(ctx context.Conte // DaemonSetSpecPtrInput is an input type that accepts DaemonSetSpecArgs, DaemonSetSpecPtr and DaemonSetSpecPtrOutput values. // You can construct a concrete instance of `DaemonSetSpecPtrInput` via: // -// DaemonSetSpecArgs{...} +// DaemonSetSpecArgs{...} // // or: // -// nil -// +// nil type DaemonSetSpecPtrInput interface { pulumi.Input @@ -831,8 +821,7 @@ type DaemonSetStatus struct { // DaemonSetStatusInput is an input type that accepts DaemonSetStatusArgs and DaemonSetStatusOutput values. // You can construct a concrete instance of `DaemonSetStatusInput` via: // -// DaemonSetStatusArgs{...} -// +// DaemonSetStatusArgs{...} type DaemonSetStatusInput interface { pulumi.Input @@ -887,12 +876,11 @@ func (i DaemonSetStatusArgs) ToDaemonSetStatusPtrOutputWithContext(ctx context.C // DaemonSetStatusPtrInput is an input type that accepts DaemonSetStatusArgs, DaemonSetStatusPtr and DaemonSetStatusPtrOutput values. // You can construct a concrete instance of `DaemonSetStatusPtrInput` via: // -// DaemonSetStatusArgs{...} +// DaemonSetStatusArgs{...} // // or: // -// nil -// +// nil type DaemonSetStatusPtrInput interface { pulumi.Input @@ -1122,8 +1110,7 @@ type DaemonSetUpdateStrategy struct { // DaemonSetUpdateStrategyInput is an input type that accepts DaemonSetUpdateStrategyArgs and DaemonSetUpdateStrategyOutput values. // You can construct a concrete instance of `DaemonSetUpdateStrategyInput` via: // -// DaemonSetUpdateStrategyArgs{...} -// +// DaemonSetUpdateStrategyArgs{...} type DaemonSetUpdateStrategyInput interface { pulumi.Input @@ -1162,12 +1149,11 @@ func (i DaemonSetUpdateStrategyArgs) ToDaemonSetUpdateStrategyPtrOutputWithConte // DaemonSetUpdateStrategyPtrInput is an input type that accepts DaemonSetUpdateStrategyArgs, DaemonSetUpdateStrategyPtr and DaemonSetUpdateStrategyPtrOutput values. // You can construct a concrete instance of `DaemonSetUpdateStrategyPtrInput` via: // -// DaemonSetUpdateStrategyArgs{...} +// DaemonSetUpdateStrategyArgs{...} // // or: // -// nil -// +// nil type DaemonSetUpdateStrategyPtrInput interface { pulumi.Input @@ -1305,8 +1291,7 @@ type DeploymentType struct { // DeploymentTypeInput is an input type that accepts DeploymentTypeArgs and DeploymentTypeOutput values. // You can construct a concrete instance of `DeploymentTypeInput` via: // -// DeploymentTypeArgs{...} -// +// DeploymentTypeArgs{...} type DeploymentTypeInput interface { pulumi.Input @@ -1365,8 +1350,7 @@ func (i DeploymentTypeArgs) ToDeploymentTypeOutputWithContext(ctx context.Contex // DeploymentTypeArrayInput is an input type that accepts DeploymentTypeArray and DeploymentTypeArrayOutput values. // You can construct a concrete instance of `DeploymentTypeArrayInput` via: // -// DeploymentTypeArray{ DeploymentTypeArgs{...} } -// +// DeploymentTypeArray{ DeploymentTypeArgs{...} } type DeploymentTypeArrayInput interface { pulumi.Input @@ -1489,8 +1473,7 @@ type DeploymentCondition struct { // DeploymentConditionInput is an input type that accepts DeploymentConditionArgs and DeploymentConditionOutput values. // You can construct a concrete instance of `DeploymentConditionInput` via: // -// DeploymentConditionArgs{...} -// +// DeploymentConditionArgs{...} type DeploymentConditionInput interface { pulumi.Input @@ -1529,8 +1512,7 @@ func (i DeploymentConditionArgs) ToDeploymentConditionOutputWithContext(ctx cont // DeploymentConditionArrayInput is an input type that accepts DeploymentConditionArray and DeploymentConditionArrayOutput values. // You can construct a concrete instance of `DeploymentConditionArrayInput` via: // -// DeploymentConditionArray{ DeploymentConditionArgs{...} } -// +// DeploymentConditionArray{ DeploymentConditionArgs{...} } type DeploymentConditionArrayInput interface { pulumi.Input @@ -1632,8 +1614,7 @@ type DeploymentListType struct { // DeploymentListTypeInput is an input type that accepts DeploymentListTypeArgs and DeploymentListTypeOutput values. // You can construct a concrete instance of `DeploymentListTypeInput` via: // -// DeploymentListTypeArgs{...} -// +// DeploymentListTypeArgs{...} type DeploymentListTypeInput interface { pulumi.Input @@ -1723,8 +1704,7 @@ type DeploymentSpec struct { // DeploymentSpecInput is an input type that accepts DeploymentSpecArgs and DeploymentSpecOutput values. // You can construct a concrete instance of `DeploymentSpecInput` via: // -// DeploymentSpecArgs{...} -// +// DeploymentSpecArgs{...} type DeploymentSpecInput interface { pulumi.Input @@ -1775,12 +1755,11 @@ func (i DeploymentSpecArgs) ToDeploymentSpecPtrOutputWithContext(ctx context.Con // DeploymentSpecPtrInput is an input type that accepts DeploymentSpecArgs, DeploymentSpecPtr and DeploymentSpecPtrOutput values. // You can construct a concrete instance of `DeploymentSpecPtrInput` via: // -// DeploymentSpecArgs{...} +// DeploymentSpecArgs{...} // // or: // -// nil -// +// nil type DeploymentSpecPtrInput interface { pulumi.Input @@ -1992,8 +1971,7 @@ type DeploymentStatus struct { // DeploymentStatusInput is an input type that accepts DeploymentStatusArgs and DeploymentStatusOutput values. // You can construct a concrete instance of `DeploymentStatusInput` via: // -// DeploymentStatusArgs{...} -// +// DeploymentStatusArgs{...} type DeploymentStatusInput interface { pulumi.Input @@ -2044,12 +2022,11 @@ func (i DeploymentStatusArgs) ToDeploymentStatusPtrOutputWithContext(ctx context // DeploymentStatusPtrInput is an input type that accepts DeploymentStatusArgs, DeploymentStatusPtr and DeploymentStatusPtrOutput values. // You can construct a concrete instance of `DeploymentStatusPtrInput` via: // -// DeploymentStatusArgs{...} +// DeploymentStatusArgs{...} // // or: // -// nil -// +// nil type DeploymentStatusPtrInput interface { pulumi.Input @@ -2249,8 +2226,7 @@ type DeploymentStrategy struct { // DeploymentStrategyInput is an input type that accepts DeploymentStrategyArgs and DeploymentStrategyOutput values. // You can construct a concrete instance of `DeploymentStrategyInput` via: // -// DeploymentStrategyArgs{...} -// +// DeploymentStrategyArgs{...} type DeploymentStrategyInput interface { pulumi.Input @@ -2289,12 +2265,11 @@ func (i DeploymentStrategyArgs) ToDeploymentStrategyPtrOutputWithContext(ctx con // DeploymentStrategyPtrInput is an input type that accepts DeploymentStrategyArgs, DeploymentStrategyPtr and DeploymentStrategyPtrOutput values. // You can construct a concrete instance of `DeploymentStrategyPtrInput` via: // -// DeploymentStrategyArgs{...} +// DeploymentStrategyArgs{...} // // or: // -// nil -// +// nil type DeploymentStrategyPtrInput interface { pulumi.Input @@ -2410,8 +2385,7 @@ type ReplicaSetType struct { // ReplicaSetTypeInput is an input type that accepts ReplicaSetTypeArgs and ReplicaSetTypeOutput values. // You can construct a concrete instance of `ReplicaSetTypeInput` via: // -// ReplicaSetTypeArgs{...} -// +// ReplicaSetTypeArgs{...} type ReplicaSetTypeInput interface { pulumi.Input @@ -2448,8 +2422,7 @@ func (i ReplicaSetTypeArgs) ToReplicaSetTypeOutputWithContext(ctx context.Contex // ReplicaSetTypeArrayInput is an input type that accepts ReplicaSetTypeArray and ReplicaSetTypeArrayOutput values. // You can construct a concrete instance of `ReplicaSetTypeArrayInput` via: // -// ReplicaSetTypeArray{ ReplicaSetTypeArgs{...} } -// +// ReplicaSetTypeArray{ ReplicaSetTypeArgs{...} } type ReplicaSetTypeArrayInput interface { pulumi.Input @@ -2548,8 +2521,7 @@ type ReplicaSetCondition struct { // ReplicaSetConditionInput is an input type that accepts ReplicaSetConditionArgs and ReplicaSetConditionOutput values. // You can construct a concrete instance of `ReplicaSetConditionInput` via: // -// ReplicaSetConditionArgs{...} -// +// ReplicaSetConditionArgs{...} type ReplicaSetConditionInput interface { pulumi.Input @@ -2586,8 +2558,7 @@ func (i ReplicaSetConditionArgs) ToReplicaSetConditionOutputWithContext(ctx cont // ReplicaSetConditionArrayInput is an input type that accepts ReplicaSetConditionArray and ReplicaSetConditionArrayOutput values. // You can construct a concrete instance of `ReplicaSetConditionArrayInput` via: // -// ReplicaSetConditionArray{ ReplicaSetConditionArgs{...} } -// +// ReplicaSetConditionArray{ ReplicaSetConditionArgs{...} } type ReplicaSetConditionArrayInput interface { pulumi.Input @@ -2684,8 +2655,7 @@ type ReplicaSetListType struct { // ReplicaSetListTypeInput is an input type that accepts ReplicaSetListTypeArgs and ReplicaSetListTypeOutput values. // You can construct a concrete instance of `ReplicaSetListTypeInput` via: // -// ReplicaSetListTypeArgs{...} -// +// ReplicaSetListTypeArgs{...} type ReplicaSetListTypeInput interface { pulumi.Input @@ -2767,8 +2737,7 @@ type ReplicaSetSpec struct { // ReplicaSetSpecInput is an input type that accepts ReplicaSetSpecArgs and ReplicaSetSpecOutput values. // You can construct a concrete instance of `ReplicaSetSpecInput` via: // -// ReplicaSetSpecArgs{...} -// +// ReplicaSetSpecArgs{...} type ReplicaSetSpecInput interface { pulumi.Input @@ -2811,12 +2780,11 @@ func (i ReplicaSetSpecArgs) ToReplicaSetSpecPtrOutputWithContext(ctx context.Con // ReplicaSetSpecPtrInput is an input type that accepts ReplicaSetSpecArgs, ReplicaSetSpecPtr and ReplicaSetSpecPtrOutput values. // You can construct a concrete instance of `ReplicaSetSpecPtrInput` via: // -// ReplicaSetSpecArgs{...} +// ReplicaSetSpecArgs{...} // // or: // -// nil -// +// nil type ReplicaSetSpecPtrInput interface { pulumi.Input @@ -2964,8 +2932,7 @@ type ReplicaSetStatus struct { // ReplicaSetStatusInput is an input type that accepts ReplicaSetStatusArgs and ReplicaSetStatusOutput values. // You can construct a concrete instance of `ReplicaSetStatusInput` via: // -// ReplicaSetStatusArgs{...} -// +// ReplicaSetStatusArgs{...} type ReplicaSetStatusInput interface { pulumi.Input @@ -3012,12 +2979,11 @@ func (i ReplicaSetStatusArgs) ToReplicaSetStatusPtrOutputWithContext(ctx context // ReplicaSetStatusPtrInput is an input type that accepts ReplicaSetStatusArgs, ReplicaSetStatusPtr and ReplicaSetStatusPtrOutput values. // You can construct a concrete instance of `ReplicaSetStatusPtrInput` via: // -// ReplicaSetStatusArgs{...} +// ReplicaSetStatusArgs{...} // // or: // -// nil -// +// nil type ReplicaSetStatusPtrInput interface { pulumi.Input @@ -3185,8 +3151,7 @@ type RollingUpdateDaemonSet struct { // RollingUpdateDaemonSetInput is an input type that accepts RollingUpdateDaemonSetArgs and RollingUpdateDaemonSetOutput values. // You can construct a concrete instance of `RollingUpdateDaemonSetInput` via: // -// RollingUpdateDaemonSetArgs{...} -// +// RollingUpdateDaemonSetArgs{...} type RollingUpdateDaemonSetInput interface { pulumi.Input @@ -3223,12 +3188,11 @@ func (i RollingUpdateDaemonSetArgs) ToRollingUpdateDaemonSetPtrOutputWithContext // RollingUpdateDaemonSetPtrInput is an input type that accepts RollingUpdateDaemonSetArgs, RollingUpdateDaemonSetPtr and RollingUpdateDaemonSetPtrOutput values. // You can construct a concrete instance of `RollingUpdateDaemonSetPtrInput` via: // -// RollingUpdateDaemonSetArgs{...} +// RollingUpdateDaemonSetArgs{...} // // or: // -// nil -// +// nil type RollingUpdateDaemonSetPtrInput interface { pulumi.Input @@ -3323,8 +3287,7 @@ type RollingUpdateDeployment struct { // RollingUpdateDeploymentInput is an input type that accepts RollingUpdateDeploymentArgs and RollingUpdateDeploymentOutput values. // You can construct a concrete instance of `RollingUpdateDeploymentInput` via: // -// RollingUpdateDeploymentArgs{...} -// +// RollingUpdateDeploymentArgs{...} type RollingUpdateDeploymentInput interface { pulumi.Input @@ -3363,12 +3326,11 @@ func (i RollingUpdateDeploymentArgs) ToRollingUpdateDeploymentPtrOutputWithConte // RollingUpdateDeploymentPtrInput is an input type that accepts RollingUpdateDeploymentArgs, RollingUpdateDeploymentPtr and RollingUpdateDeploymentPtrOutput values. // You can construct a concrete instance of `RollingUpdateDeploymentPtrInput` via: // -// RollingUpdateDeploymentArgs{...} +// RollingUpdateDeploymentArgs{...} // // or: // -// nil -// +// nil type RollingUpdateDeploymentPtrInput interface { pulumi.Input @@ -3476,8 +3438,7 @@ type RollingUpdateStatefulSetStrategy struct { // RollingUpdateStatefulSetStrategyInput is an input type that accepts RollingUpdateStatefulSetStrategyArgs and RollingUpdateStatefulSetStrategyOutput values. // You can construct a concrete instance of `RollingUpdateStatefulSetStrategyInput` via: // -// RollingUpdateStatefulSetStrategyArgs{...} -// +// RollingUpdateStatefulSetStrategyArgs{...} type RollingUpdateStatefulSetStrategyInput interface { pulumi.Input @@ -3514,12 +3475,11 @@ func (i RollingUpdateStatefulSetStrategyArgs) ToRollingUpdateStatefulSetStrategy // RollingUpdateStatefulSetStrategyPtrInput is an input type that accepts RollingUpdateStatefulSetStrategyArgs, RollingUpdateStatefulSetStrategyPtr and RollingUpdateStatefulSetStrategyPtrOutput values. // You can construct a concrete instance of `RollingUpdateStatefulSetStrategyPtrInput` via: // -// RollingUpdateStatefulSetStrategyArgs{...} +// RollingUpdateStatefulSetStrategyArgs{...} // // or: // -// nil -// +// nil type RollingUpdateStatefulSetStrategyPtrInput interface { pulumi.Input @@ -3606,7 +3566,7 @@ func (o RollingUpdateStatefulSetStrategyPtrOutput) Partition() pulumi.IntPtrOutp // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -3635,8 +3595,7 @@ type StatefulSetType struct { // StatefulSetTypeInput is an input type that accepts StatefulSetTypeArgs and StatefulSetTypeOutput values. // You can construct a concrete instance of `StatefulSetTypeInput` via: // -// StatefulSetTypeArgs{...} -// +// StatefulSetTypeArgs{...} type StatefulSetTypeInput interface { pulumi.Input @@ -3647,7 +3606,7 @@ type StatefulSetTypeInput interface { // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -3688,8 +3647,7 @@ func (i StatefulSetTypeArgs) ToStatefulSetTypeOutputWithContext(ctx context.Cont // StatefulSetTypeArrayInput is an input type that accepts StatefulSetTypeArray and StatefulSetTypeArrayOutput values. // You can construct a concrete instance of `StatefulSetTypeArrayInput` via: // -// StatefulSetTypeArray{ StatefulSetTypeArgs{...} } -// +// StatefulSetTypeArray{ StatefulSetTypeArgs{...} } type StatefulSetTypeArrayInput interface { pulumi.Input @@ -3714,7 +3672,7 @@ func (i StatefulSetTypeArray) ToStatefulSetTypeArrayOutputWithContext(ctx contex // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -3803,8 +3761,7 @@ type StatefulSetCondition struct { // StatefulSetConditionInput is an input type that accepts StatefulSetConditionArgs and StatefulSetConditionOutput values. // You can construct a concrete instance of `StatefulSetConditionInput` via: // -// StatefulSetConditionArgs{...} -// +// StatefulSetConditionArgs{...} type StatefulSetConditionInput interface { pulumi.Input @@ -3841,8 +3798,7 @@ func (i StatefulSetConditionArgs) ToStatefulSetConditionOutputWithContext(ctx co // StatefulSetConditionArrayInput is an input type that accepts StatefulSetConditionArray and StatefulSetConditionArrayOutput values. // You can construct a concrete instance of `StatefulSetConditionArrayInput` via: // -// StatefulSetConditionArray{ StatefulSetConditionArgs{...} } -// +// StatefulSetConditionArray{ StatefulSetConditionArgs{...} } type StatefulSetConditionArrayInput interface { pulumi.Input @@ -3937,8 +3893,7 @@ type StatefulSetListType struct { // StatefulSetListTypeInput is an input type that accepts StatefulSetListTypeArgs and StatefulSetListTypeOutput values. // You can construct a concrete instance of `StatefulSetListTypeInput` via: // -// StatefulSetListTypeArgs{...} -// +// StatefulSetListTypeArgs{...} type StatefulSetListTypeInput interface { pulumi.Input @@ -4024,8 +3979,7 @@ type StatefulSetSpec struct { // StatefulSetSpecInput is an input type that accepts StatefulSetSpecArgs and StatefulSetSpecOutput values. // You can construct a concrete instance of `StatefulSetSpecInput` via: // -// StatefulSetSpecArgs{...} -// +// StatefulSetSpecArgs{...} type StatefulSetSpecInput interface { pulumi.Input @@ -4076,12 +4030,11 @@ func (i StatefulSetSpecArgs) ToStatefulSetSpecPtrOutputWithContext(ctx context.C // StatefulSetSpecPtrInput is an input type that accepts StatefulSetSpecArgs, StatefulSetSpecPtr and StatefulSetSpecPtrOutput values. // You can construct a concrete instance of `StatefulSetSpecPtrInput` via: // -// StatefulSetSpecArgs{...} +// StatefulSetSpecArgs{...} // // or: // -// nil -// +// nil type StatefulSetSpecPtrInput interface { pulumi.Input @@ -4295,8 +4248,7 @@ type StatefulSetStatus struct { // StatefulSetStatusInput is an input type that accepts StatefulSetStatusArgs and StatefulSetStatusOutput values. // You can construct a concrete instance of `StatefulSetStatusInput` via: // -// StatefulSetStatusArgs{...} -// +// StatefulSetStatusArgs{...} type StatefulSetStatusInput interface { pulumi.Input @@ -4349,12 +4301,11 @@ func (i StatefulSetStatusArgs) ToStatefulSetStatusPtrOutputWithContext(ctx conte // StatefulSetStatusPtrInput is an input type that accepts StatefulSetStatusArgs, StatefulSetStatusPtr and StatefulSetStatusPtrOutput values. // You can construct a concrete instance of `StatefulSetStatusPtrInput` via: // -// StatefulSetStatusArgs{...} +// StatefulSetStatusArgs{...} // // or: // -// nil -// +// nil type StatefulSetStatusPtrInput interface { pulumi.Input @@ -4569,8 +4520,7 @@ type StatefulSetUpdateStrategy struct { // StatefulSetUpdateStrategyInput is an input type that accepts StatefulSetUpdateStrategyArgs and StatefulSetUpdateStrategyOutput values. // You can construct a concrete instance of `StatefulSetUpdateStrategyInput` via: // -// StatefulSetUpdateStrategyArgs{...} -// +// StatefulSetUpdateStrategyArgs{...} type StatefulSetUpdateStrategyInput interface { pulumi.Input @@ -4609,12 +4559,11 @@ func (i StatefulSetUpdateStrategyArgs) ToStatefulSetUpdateStrategyPtrOutputWithC // StatefulSetUpdateStrategyPtrInput is an input type that accepts StatefulSetUpdateStrategyArgs, StatefulSetUpdateStrategyPtr and StatefulSetUpdateStrategyPtrOutput values. // You can construct a concrete instance of `StatefulSetUpdateStrategyPtrInput` via: // -// StatefulSetUpdateStrategyArgs{...} +// StatefulSetUpdateStrategyArgs{...} // // or: // -// nil -// +// nil type StatefulSetUpdateStrategyPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/apps/v1/statefulSet.go b/sdk/go/kubernetes/apps/v1/statefulSet.go index 2aeb8caed9..aab178a2c3 100644 --- a/sdk/go/kubernetes/apps/v1/statefulSet.go +++ b/sdk/go/kubernetes/apps/v1/statefulSet.go @@ -13,7 +13,7 @@ import ( // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/go/kubernetes/apps/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/apps/v1beta1/pulumiTypes.go index 7f06af3e6e..5088ea4de4 100644 --- a/sdk/go/kubernetes/apps/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/apps/v1beta1/pulumiTypes.go @@ -29,8 +29,7 @@ type ControllerRevisionType struct { // ControllerRevisionTypeInput is an input type that accepts ControllerRevisionTypeArgs and ControllerRevisionTypeOutput values. // You can construct a concrete instance of `ControllerRevisionTypeInput` via: // -// ControllerRevisionTypeArgs{...} -// +// ControllerRevisionTypeArgs{...} type ControllerRevisionTypeInput interface { pulumi.Input @@ -67,8 +66,7 @@ func (i ControllerRevisionTypeArgs) ToControllerRevisionTypeOutputWithContext(ct // ControllerRevisionTypeArrayInput is an input type that accepts ControllerRevisionTypeArray and ControllerRevisionTypeArrayOutput values. // You can construct a concrete instance of `ControllerRevisionTypeArrayInput` via: // -// ControllerRevisionTypeArray{ ControllerRevisionTypeArgs{...} } -// +// ControllerRevisionTypeArray{ ControllerRevisionTypeArgs{...} } type ControllerRevisionTypeArrayInput interface { pulumi.Input @@ -165,8 +163,7 @@ type ControllerRevisionListType struct { // ControllerRevisionListTypeInput is an input type that accepts ControllerRevisionListTypeArgs and ControllerRevisionListTypeOutput values. // You can construct a concrete instance of `ControllerRevisionListTypeInput` via: // -// ControllerRevisionListTypeArgs{...} -// +// ControllerRevisionListTypeArgs{...} type ControllerRevisionListTypeInput interface { pulumi.Input @@ -272,8 +269,7 @@ type DeploymentType struct { // DeploymentTypeInput is an input type that accepts DeploymentTypeArgs and DeploymentTypeOutput values. // You can construct a concrete instance of `DeploymentTypeInput` via: // -// DeploymentTypeArgs{...} -// +// DeploymentTypeArgs{...} type DeploymentTypeInput interface { pulumi.Input @@ -332,8 +328,7 @@ func (i DeploymentTypeArgs) ToDeploymentTypeOutputWithContext(ctx context.Contex // DeploymentTypeArrayInput is an input type that accepts DeploymentTypeArray and DeploymentTypeArrayOutput values. // You can construct a concrete instance of `DeploymentTypeArrayInput` via: // -// DeploymentTypeArray{ DeploymentTypeArgs{...} } -// +// DeploymentTypeArray{ DeploymentTypeArgs{...} } type DeploymentTypeArrayInput interface { pulumi.Input @@ -456,8 +451,7 @@ type DeploymentCondition struct { // DeploymentConditionInput is an input type that accepts DeploymentConditionArgs and DeploymentConditionOutput values. // You can construct a concrete instance of `DeploymentConditionInput` via: // -// DeploymentConditionArgs{...} -// +// DeploymentConditionArgs{...} type DeploymentConditionInput interface { pulumi.Input @@ -496,8 +490,7 @@ func (i DeploymentConditionArgs) ToDeploymentConditionOutputWithContext(ctx cont // DeploymentConditionArrayInput is an input type that accepts DeploymentConditionArray and DeploymentConditionArrayOutput values. // You can construct a concrete instance of `DeploymentConditionArrayInput` via: // -// DeploymentConditionArray{ DeploymentConditionArgs{...} } -// +// DeploymentConditionArray{ DeploymentConditionArgs{...} } type DeploymentConditionArrayInput interface { pulumi.Input @@ -599,8 +592,7 @@ type DeploymentListType struct { // DeploymentListTypeInput is an input type that accepts DeploymentListTypeArgs and DeploymentListTypeOutput values. // You can construct a concrete instance of `DeploymentListTypeInput` via: // -// DeploymentListTypeArgs{...} -// +// DeploymentListTypeArgs{...} type DeploymentListTypeInput interface { pulumi.Input @@ -684,8 +676,7 @@ type DeploymentRollback struct { // DeploymentRollbackInput is an input type that accepts DeploymentRollbackArgs and DeploymentRollbackOutput values. // You can construct a concrete instance of `DeploymentRollbackInput` via: // -// DeploymentRollbackArgs{...} -// +// DeploymentRollbackArgs{...} type DeploymentRollbackInput interface { pulumi.Input @@ -784,8 +775,7 @@ type DeploymentSpec struct { // DeploymentSpecInput is an input type that accepts DeploymentSpecArgs and DeploymentSpecOutput values. // You can construct a concrete instance of `DeploymentSpecInput` via: // -// DeploymentSpecArgs{...} -// +// DeploymentSpecArgs{...} type DeploymentSpecInput interface { pulumi.Input @@ -838,12 +828,11 @@ func (i DeploymentSpecArgs) ToDeploymentSpecPtrOutputWithContext(ctx context.Con // DeploymentSpecPtrInput is an input type that accepts DeploymentSpecArgs, DeploymentSpecPtr and DeploymentSpecPtrOutput values. // You can construct a concrete instance of `DeploymentSpecPtrInput` via: // -// DeploymentSpecArgs{...} +// DeploymentSpecArgs{...} // // or: // -// nil -// +// nil type DeploymentSpecPtrInput interface { pulumi.Input @@ -1070,8 +1059,7 @@ type DeploymentStatus struct { // DeploymentStatusInput is an input type that accepts DeploymentStatusArgs and DeploymentStatusOutput values. // You can construct a concrete instance of `DeploymentStatusInput` via: // -// DeploymentStatusArgs{...} -// +// DeploymentStatusArgs{...} type DeploymentStatusInput interface { pulumi.Input @@ -1122,12 +1110,11 @@ func (i DeploymentStatusArgs) ToDeploymentStatusPtrOutputWithContext(ctx context // DeploymentStatusPtrInput is an input type that accepts DeploymentStatusArgs, DeploymentStatusPtr and DeploymentStatusPtrOutput values. // You can construct a concrete instance of `DeploymentStatusPtrInput` via: // -// DeploymentStatusArgs{...} +// DeploymentStatusArgs{...} // // or: // -// nil -// +// nil type DeploymentStatusPtrInput interface { pulumi.Input @@ -1327,8 +1314,7 @@ type DeploymentStrategy struct { // DeploymentStrategyInput is an input type that accepts DeploymentStrategyArgs and DeploymentStrategyOutput values. // You can construct a concrete instance of `DeploymentStrategyInput` via: // -// DeploymentStrategyArgs{...} -// +// DeploymentStrategyArgs{...} type DeploymentStrategyInput interface { pulumi.Input @@ -1367,12 +1353,11 @@ func (i DeploymentStrategyArgs) ToDeploymentStrategyPtrOutputWithContext(ctx con // DeploymentStrategyPtrInput is an input type that accepts DeploymentStrategyArgs, DeploymentStrategyPtr and DeploymentStrategyPtrOutput values. // You can construct a concrete instance of `DeploymentStrategyPtrInput` via: // -// DeploymentStrategyArgs{...} +// DeploymentStrategyArgs{...} // // or: // -// nil -// +// nil type DeploymentStrategyPtrInput interface { pulumi.Input @@ -1480,8 +1465,7 @@ type RollbackConfig struct { // RollbackConfigInput is an input type that accepts RollbackConfigArgs and RollbackConfigOutput values. // You can construct a concrete instance of `RollbackConfigInput` via: // -// RollbackConfigArgs{...} -// +// RollbackConfigArgs{...} type RollbackConfigInput interface { pulumi.Input @@ -1518,12 +1502,11 @@ func (i RollbackConfigArgs) ToRollbackConfigPtrOutputWithContext(ctx context.Con // RollbackConfigPtrInput is an input type that accepts RollbackConfigArgs, RollbackConfigPtr and RollbackConfigPtrOutput values. // You can construct a concrete instance of `RollbackConfigPtrInput` via: // -// RollbackConfigArgs{...} +// RollbackConfigArgs{...} // // or: // -// nil -// +// nil type RollbackConfigPtrInput interface { pulumi.Input @@ -1618,8 +1601,7 @@ type RollingUpdateDeployment struct { // RollingUpdateDeploymentInput is an input type that accepts RollingUpdateDeploymentArgs and RollingUpdateDeploymentOutput values. // You can construct a concrete instance of `RollingUpdateDeploymentInput` via: // -// RollingUpdateDeploymentArgs{...} -// +// RollingUpdateDeploymentArgs{...} type RollingUpdateDeploymentInput interface { pulumi.Input @@ -1658,12 +1640,11 @@ func (i RollingUpdateDeploymentArgs) ToRollingUpdateDeploymentPtrOutputWithConte // RollingUpdateDeploymentPtrInput is an input type that accepts RollingUpdateDeploymentArgs, RollingUpdateDeploymentPtr and RollingUpdateDeploymentPtrOutput values. // You can construct a concrete instance of `RollingUpdateDeploymentPtrInput` via: // -// RollingUpdateDeploymentArgs{...} +// RollingUpdateDeploymentArgs{...} // // or: // -// nil -// +// nil type RollingUpdateDeploymentPtrInput interface { pulumi.Input @@ -1771,8 +1752,7 @@ type RollingUpdateStatefulSetStrategy struct { // RollingUpdateStatefulSetStrategyInput is an input type that accepts RollingUpdateStatefulSetStrategyArgs and RollingUpdateStatefulSetStrategyOutput values. // You can construct a concrete instance of `RollingUpdateStatefulSetStrategyInput` via: // -// RollingUpdateStatefulSetStrategyArgs{...} -// +// RollingUpdateStatefulSetStrategyArgs{...} type RollingUpdateStatefulSetStrategyInput interface { pulumi.Input @@ -1809,12 +1789,11 @@ func (i RollingUpdateStatefulSetStrategyArgs) ToRollingUpdateStatefulSetStrategy // RollingUpdateStatefulSetStrategyPtrInput is an input type that accepts RollingUpdateStatefulSetStrategyArgs, RollingUpdateStatefulSetStrategyPtr and RollingUpdateStatefulSetStrategyPtrOutput values. // You can construct a concrete instance of `RollingUpdateStatefulSetStrategyPtrInput` via: // -// RollingUpdateStatefulSetStrategyArgs{...} +// RollingUpdateStatefulSetStrategyArgs{...} // // or: // -// nil -// +// nil type RollingUpdateStatefulSetStrategyPtrInput interface { pulumi.Input @@ -1915,8 +1894,7 @@ type Scale struct { // ScaleInput is an input type that accepts ScaleArgs and ScaleOutput values. // You can construct a concrete instance of `ScaleInput` via: // -// ScaleArgs{...} -// +// ScaleArgs{...} type ScaleInput interface { pulumi.Input @@ -1999,8 +1977,7 @@ type ScaleSpec struct { // ScaleSpecInput is an input type that accepts ScaleSpecArgs and ScaleSpecOutput values. // You can construct a concrete instance of `ScaleSpecInput` via: // -// ScaleSpecArgs{...} -// +// ScaleSpecArgs{...} type ScaleSpecInput interface { pulumi.Input @@ -2037,12 +2014,11 @@ func (i ScaleSpecArgs) ToScaleSpecPtrOutputWithContext(ctx context.Context) Scal // ScaleSpecPtrInput is an input type that accepts ScaleSpecArgs, ScaleSpecPtr and ScaleSpecPtrOutput values. // You can construct a concrete instance of `ScaleSpecPtrInput` via: // -// ScaleSpecArgs{...} +// ScaleSpecArgs{...} // // or: // -// nil -// +// nil type ScaleSpecPtrInput interface { pulumi.Input @@ -2139,8 +2115,7 @@ type ScaleStatus struct { // ScaleStatusInput is an input type that accepts ScaleStatusArgs and ScaleStatusOutput values. // You can construct a concrete instance of `ScaleStatusInput` via: // -// ScaleStatusArgs{...} -// +// ScaleStatusArgs{...} type ScaleStatusInput interface { pulumi.Input @@ -2181,12 +2156,11 @@ func (i ScaleStatusArgs) ToScaleStatusPtrOutputWithContext(ctx context.Context) // ScaleStatusPtrInput is an input type that accepts ScaleStatusArgs, ScaleStatusPtr and ScaleStatusPtrOutput values. // You can construct a concrete instance of `ScaleStatusPtrInput` via: // -// ScaleStatusArgs{...} +// ScaleStatusArgs{...} // // or: // -// nil -// +// nil type ScaleStatusPtrInput interface { pulumi.Input @@ -2303,7 +2277,7 @@ func (o ScaleStatusPtrOutput) TargetSelector() pulumi.StringPtrOutput { // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -2332,8 +2306,7 @@ type StatefulSetType struct { // StatefulSetTypeInput is an input type that accepts StatefulSetTypeArgs and StatefulSetTypeOutput values. // You can construct a concrete instance of `StatefulSetTypeInput` via: // -// StatefulSetTypeArgs{...} -// +// StatefulSetTypeArgs{...} type StatefulSetTypeInput interface { pulumi.Input @@ -2344,7 +2317,7 @@ type StatefulSetTypeInput interface { // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -2385,8 +2358,7 @@ func (i StatefulSetTypeArgs) ToStatefulSetTypeOutputWithContext(ctx context.Cont // StatefulSetTypeArrayInput is an input type that accepts StatefulSetTypeArray and StatefulSetTypeArrayOutput values. // You can construct a concrete instance of `StatefulSetTypeArrayInput` via: // -// StatefulSetTypeArray{ StatefulSetTypeArgs{...} } -// +// StatefulSetTypeArray{ StatefulSetTypeArgs{...} } type StatefulSetTypeArrayInput interface { pulumi.Input @@ -2411,7 +2383,7 @@ func (i StatefulSetTypeArray) ToStatefulSetTypeArrayOutputWithContext(ctx contex // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -2500,8 +2472,7 @@ type StatefulSetCondition struct { // StatefulSetConditionInput is an input type that accepts StatefulSetConditionArgs and StatefulSetConditionOutput values. // You can construct a concrete instance of `StatefulSetConditionInput` via: // -// StatefulSetConditionArgs{...} -// +// StatefulSetConditionArgs{...} type StatefulSetConditionInput interface { pulumi.Input @@ -2538,8 +2509,7 @@ func (i StatefulSetConditionArgs) ToStatefulSetConditionOutputWithContext(ctx co // StatefulSetConditionArrayInput is an input type that accepts StatefulSetConditionArray and StatefulSetConditionArrayOutput values. // You can construct a concrete instance of `StatefulSetConditionArrayInput` via: // -// StatefulSetConditionArray{ StatefulSetConditionArgs{...} } -// +// StatefulSetConditionArray{ StatefulSetConditionArgs{...} } type StatefulSetConditionArrayInput interface { pulumi.Input @@ -2634,8 +2604,7 @@ type StatefulSetListType struct { // StatefulSetListTypeInput is an input type that accepts StatefulSetListTypeArgs and StatefulSetListTypeOutput values. // You can construct a concrete instance of `StatefulSetListTypeInput` via: // -// StatefulSetListTypeArgs{...} -// +// StatefulSetListTypeArgs{...} type StatefulSetListTypeInput interface { pulumi.Input @@ -2721,8 +2690,7 @@ type StatefulSetSpec struct { // StatefulSetSpecInput is an input type that accepts StatefulSetSpecArgs and StatefulSetSpecOutput values. // You can construct a concrete instance of `StatefulSetSpecInput` via: // -// StatefulSetSpecArgs{...} -// +// StatefulSetSpecArgs{...} type StatefulSetSpecInput interface { pulumi.Input @@ -2773,12 +2741,11 @@ func (i StatefulSetSpecArgs) ToStatefulSetSpecPtrOutputWithContext(ctx context.C // StatefulSetSpecPtrInput is an input type that accepts StatefulSetSpecArgs, StatefulSetSpecPtr and StatefulSetSpecPtrOutput values. // You can construct a concrete instance of `StatefulSetSpecPtrInput` via: // -// StatefulSetSpecArgs{...} +// StatefulSetSpecArgs{...} // // or: // -// nil -// +// nil type StatefulSetSpecPtrInput interface { pulumi.Input @@ -2992,8 +2959,7 @@ type StatefulSetStatus struct { // StatefulSetStatusInput is an input type that accepts StatefulSetStatusArgs and StatefulSetStatusOutput values. // You can construct a concrete instance of `StatefulSetStatusInput` via: // -// StatefulSetStatusArgs{...} -// +// StatefulSetStatusArgs{...} type StatefulSetStatusInput interface { pulumi.Input @@ -3046,12 +3012,11 @@ func (i StatefulSetStatusArgs) ToStatefulSetStatusPtrOutputWithContext(ctx conte // StatefulSetStatusPtrInput is an input type that accepts StatefulSetStatusArgs, StatefulSetStatusPtr and StatefulSetStatusPtrOutput values. // You can construct a concrete instance of `StatefulSetStatusPtrInput` via: // -// StatefulSetStatusArgs{...} +// StatefulSetStatusArgs{...} // // or: // -// nil -// +// nil type StatefulSetStatusPtrInput interface { pulumi.Input @@ -3266,8 +3231,7 @@ type StatefulSetUpdateStrategy struct { // StatefulSetUpdateStrategyInput is an input type that accepts StatefulSetUpdateStrategyArgs and StatefulSetUpdateStrategyOutput values. // You can construct a concrete instance of `StatefulSetUpdateStrategyInput` via: // -// StatefulSetUpdateStrategyArgs{...} -// +// StatefulSetUpdateStrategyArgs{...} type StatefulSetUpdateStrategyInput interface { pulumi.Input @@ -3306,12 +3270,11 @@ func (i StatefulSetUpdateStrategyArgs) ToStatefulSetUpdateStrategyPtrOutputWithC // StatefulSetUpdateStrategyPtrInput is an input type that accepts StatefulSetUpdateStrategyArgs, StatefulSetUpdateStrategyPtr and StatefulSetUpdateStrategyPtrOutput values. // You can construct a concrete instance of `StatefulSetUpdateStrategyPtrInput` via: // -// StatefulSetUpdateStrategyArgs{...} +// StatefulSetUpdateStrategyArgs{...} // // or: // -// nil -// +// nil type StatefulSetUpdateStrategyPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/apps/v1beta1/statefulSet.go b/sdk/go/kubernetes/apps/v1beta1/statefulSet.go index 6ebaac8c2b..3e9a03abde 100644 --- a/sdk/go/kubernetes/apps/v1beta1/statefulSet.go +++ b/sdk/go/kubernetes/apps/v1beta1/statefulSet.go @@ -13,7 +13,7 @@ import ( // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/go/kubernetes/apps/v1beta2/pulumiTypes.go b/sdk/go/kubernetes/apps/v1beta2/pulumiTypes.go index e0fc747623..af3215b979 100644 --- a/sdk/go/kubernetes/apps/v1beta2/pulumiTypes.go +++ b/sdk/go/kubernetes/apps/v1beta2/pulumiTypes.go @@ -29,8 +29,7 @@ type ControllerRevisionType struct { // ControllerRevisionTypeInput is an input type that accepts ControllerRevisionTypeArgs and ControllerRevisionTypeOutput values. // You can construct a concrete instance of `ControllerRevisionTypeInput` via: // -// ControllerRevisionTypeArgs{...} -// +// ControllerRevisionTypeArgs{...} type ControllerRevisionTypeInput interface { pulumi.Input @@ -67,8 +66,7 @@ func (i ControllerRevisionTypeArgs) ToControllerRevisionTypeOutputWithContext(ct // ControllerRevisionTypeArrayInput is an input type that accepts ControllerRevisionTypeArray and ControllerRevisionTypeArrayOutput values. // You can construct a concrete instance of `ControllerRevisionTypeArrayInput` via: // -// ControllerRevisionTypeArray{ ControllerRevisionTypeArgs{...} } -// +// ControllerRevisionTypeArray{ ControllerRevisionTypeArgs{...} } type ControllerRevisionTypeArrayInput interface { pulumi.Input @@ -165,8 +163,7 @@ type ControllerRevisionListType struct { // ControllerRevisionListTypeInput is an input type that accepts ControllerRevisionListTypeArgs and ControllerRevisionListTypeOutput values. // You can construct a concrete instance of `ControllerRevisionListTypeInput` via: // -// ControllerRevisionListTypeArgs{...} -// +// ControllerRevisionListTypeArgs{...} type ControllerRevisionListTypeInput interface { pulumi.Input @@ -250,8 +247,7 @@ type DaemonSetType struct { // DaemonSetTypeInput is an input type that accepts DaemonSetTypeArgs and DaemonSetTypeOutput values. // You can construct a concrete instance of `DaemonSetTypeInput` via: // -// DaemonSetTypeArgs{...} -// +// DaemonSetTypeArgs{...} type DaemonSetTypeInput interface { pulumi.Input @@ -288,8 +284,7 @@ func (i DaemonSetTypeArgs) ToDaemonSetTypeOutputWithContext(ctx context.Context) // DaemonSetTypeArrayInput is an input type that accepts DaemonSetTypeArray and DaemonSetTypeArrayOutput values. // You can construct a concrete instance of `DaemonSetTypeArrayInput` via: // -// DaemonSetTypeArray{ DaemonSetTypeArgs{...} } -// +// DaemonSetTypeArray{ DaemonSetTypeArgs{...} } type DaemonSetTypeArrayInput interface { pulumi.Input @@ -388,8 +383,7 @@ type DaemonSetCondition struct { // DaemonSetConditionInput is an input type that accepts DaemonSetConditionArgs and DaemonSetConditionOutput values. // You can construct a concrete instance of `DaemonSetConditionInput` via: // -// DaemonSetConditionArgs{...} -// +// DaemonSetConditionArgs{...} type DaemonSetConditionInput interface { pulumi.Input @@ -426,8 +420,7 @@ func (i DaemonSetConditionArgs) ToDaemonSetConditionOutputWithContext(ctx contex // DaemonSetConditionArrayInput is an input type that accepts DaemonSetConditionArray and DaemonSetConditionArrayOutput values. // You can construct a concrete instance of `DaemonSetConditionArrayInput` via: // -// DaemonSetConditionArray{ DaemonSetConditionArgs{...} } -// +// DaemonSetConditionArray{ DaemonSetConditionArgs{...} } type DaemonSetConditionArrayInput interface { pulumi.Input @@ -524,8 +517,7 @@ type DaemonSetListType struct { // DaemonSetListTypeInput is an input type that accepts DaemonSetListTypeArgs and DaemonSetListTypeOutput values. // You can construct a concrete instance of `DaemonSetListTypeInput` via: // -// DaemonSetListTypeArgs{...} -// +// DaemonSetListTypeArgs{...} type DaemonSetListTypeInput interface { pulumi.Input @@ -609,8 +601,7 @@ type DaemonSetSpec struct { // DaemonSetSpecInput is an input type that accepts DaemonSetSpecArgs and DaemonSetSpecOutput values. // You can construct a concrete instance of `DaemonSetSpecInput` via: // -// DaemonSetSpecArgs{...} -// +// DaemonSetSpecArgs{...} type DaemonSetSpecInput interface { pulumi.Input @@ -655,12 +646,11 @@ func (i DaemonSetSpecArgs) ToDaemonSetSpecPtrOutputWithContext(ctx context.Conte // DaemonSetSpecPtrInput is an input type that accepts DaemonSetSpecArgs, DaemonSetSpecPtr and DaemonSetSpecPtrOutput values. // You can construct a concrete instance of `DaemonSetSpecPtrInput` via: // -// DaemonSetSpecArgs{...} +// DaemonSetSpecArgs{...} // // or: // -// nil -// +// nil type DaemonSetSpecPtrInput interface { pulumi.Input @@ -831,8 +821,7 @@ type DaemonSetStatus struct { // DaemonSetStatusInput is an input type that accepts DaemonSetStatusArgs and DaemonSetStatusOutput values. // You can construct a concrete instance of `DaemonSetStatusInput` via: // -// DaemonSetStatusArgs{...} -// +// DaemonSetStatusArgs{...} type DaemonSetStatusInput interface { pulumi.Input @@ -887,12 +876,11 @@ func (i DaemonSetStatusArgs) ToDaemonSetStatusPtrOutputWithContext(ctx context.C // DaemonSetStatusPtrInput is an input type that accepts DaemonSetStatusArgs, DaemonSetStatusPtr and DaemonSetStatusPtrOutput values. // You can construct a concrete instance of `DaemonSetStatusPtrInput` via: // -// DaemonSetStatusArgs{...} +// DaemonSetStatusArgs{...} // // or: // -// nil -// +// nil type DaemonSetStatusPtrInput interface { pulumi.Input @@ -1122,8 +1110,7 @@ type DaemonSetUpdateStrategy struct { // DaemonSetUpdateStrategyInput is an input type that accepts DaemonSetUpdateStrategyArgs and DaemonSetUpdateStrategyOutput values. // You can construct a concrete instance of `DaemonSetUpdateStrategyInput` via: // -// DaemonSetUpdateStrategyArgs{...} -// +// DaemonSetUpdateStrategyArgs{...} type DaemonSetUpdateStrategyInput interface { pulumi.Input @@ -1162,12 +1149,11 @@ func (i DaemonSetUpdateStrategyArgs) ToDaemonSetUpdateStrategyPtrOutputWithConte // DaemonSetUpdateStrategyPtrInput is an input type that accepts DaemonSetUpdateStrategyArgs, DaemonSetUpdateStrategyPtr and DaemonSetUpdateStrategyPtrOutput values. // You can construct a concrete instance of `DaemonSetUpdateStrategyPtrInput` via: // -// DaemonSetUpdateStrategyArgs{...} +// DaemonSetUpdateStrategyArgs{...} // // or: // -// nil -// +// nil type DaemonSetUpdateStrategyPtrInput interface { pulumi.Input @@ -1305,8 +1291,7 @@ type DeploymentType struct { // DeploymentTypeInput is an input type that accepts DeploymentTypeArgs and DeploymentTypeOutput values. // You can construct a concrete instance of `DeploymentTypeInput` via: // -// DeploymentTypeArgs{...} -// +// DeploymentTypeArgs{...} type DeploymentTypeInput interface { pulumi.Input @@ -1365,8 +1350,7 @@ func (i DeploymentTypeArgs) ToDeploymentTypeOutputWithContext(ctx context.Contex // DeploymentTypeArrayInput is an input type that accepts DeploymentTypeArray and DeploymentTypeArrayOutput values. // You can construct a concrete instance of `DeploymentTypeArrayInput` via: // -// DeploymentTypeArray{ DeploymentTypeArgs{...} } -// +// DeploymentTypeArray{ DeploymentTypeArgs{...} } type DeploymentTypeArrayInput interface { pulumi.Input @@ -1489,8 +1473,7 @@ type DeploymentCondition struct { // DeploymentConditionInput is an input type that accepts DeploymentConditionArgs and DeploymentConditionOutput values. // You can construct a concrete instance of `DeploymentConditionInput` via: // -// DeploymentConditionArgs{...} -// +// DeploymentConditionArgs{...} type DeploymentConditionInput interface { pulumi.Input @@ -1529,8 +1512,7 @@ func (i DeploymentConditionArgs) ToDeploymentConditionOutputWithContext(ctx cont // DeploymentConditionArrayInput is an input type that accepts DeploymentConditionArray and DeploymentConditionArrayOutput values. // You can construct a concrete instance of `DeploymentConditionArrayInput` via: // -// DeploymentConditionArray{ DeploymentConditionArgs{...} } -// +// DeploymentConditionArray{ DeploymentConditionArgs{...} } type DeploymentConditionArrayInput interface { pulumi.Input @@ -1632,8 +1614,7 @@ type DeploymentListType struct { // DeploymentListTypeInput is an input type that accepts DeploymentListTypeArgs and DeploymentListTypeOutput values. // You can construct a concrete instance of `DeploymentListTypeInput` via: // -// DeploymentListTypeArgs{...} -// +// DeploymentListTypeArgs{...} type DeploymentListTypeInput interface { pulumi.Input @@ -1723,8 +1704,7 @@ type DeploymentSpec struct { // DeploymentSpecInput is an input type that accepts DeploymentSpecArgs and DeploymentSpecOutput values. // You can construct a concrete instance of `DeploymentSpecInput` via: // -// DeploymentSpecArgs{...} -// +// DeploymentSpecArgs{...} type DeploymentSpecInput interface { pulumi.Input @@ -1775,12 +1755,11 @@ func (i DeploymentSpecArgs) ToDeploymentSpecPtrOutputWithContext(ctx context.Con // DeploymentSpecPtrInput is an input type that accepts DeploymentSpecArgs, DeploymentSpecPtr and DeploymentSpecPtrOutput values. // You can construct a concrete instance of `DeploymentSpecPtrInput` via: // -// DeploymentSpecArgs{...} +// DeploymentSpecArgs{...} // // or: // -// nil -// +// nil type DeploymentSpecPtrInput interface { pulumi.Input @@ -1992,8 +1971,7 @@ type DeploymentStatus struct { // DeploymentStatusInput is an input type that accepts DeploymentStatusArgs and DeploymentStatusOutput values. // You can construct a concrete instance of `DeploymentStatusInput` via: // -// DeploymentStatusArgs{...} -// +// DeploymentStatusArgs{...} type DeploymentStatusInput interface { pulumi.Input @@ -2044,12 +2022,11 @@ func (i DeploymentStatusArgs) ToDeploymentStatusPtrOutputWithContext(ctx context // DeploymentStatusPtrInput is an input type that accepts DeploymentStatusArgs, DeploymentStatusPtr and DeploymentStatusPtrOutput values. // You can construct a concrete instance of `DeploymentStatusPtrInput` via: // -// DeploymentStatusArgs{...} +// DeploymentStatusArgs{...} // // or: // -// nil -// +// nil type DeploymentStatusPtrInput interface { pulumi.Input @@ -2249,8 +2226,7 @@ type DeploymentStrategy struct { // DeploymentStrategyInput is an input type that accepts DeploymentStrategyArgs and DeploymentStrategyOutput values. // You can construct a concrete instance of `DeploymentStrategyInput` via: // -// DeploymentStrategyArgs{...} -// +// DeploymentStrategyArgs{...} type DeploymentStrategyInput interface { pulumi.Input @@ -2289,12 +2265,11 @@ func (i DeploymentStrategyArgs) ToDeploymentStrategyPtrOutputWithContext(ctx con // DeploymentStrategyPtrInput is an input type that accepts DeploymentStrategyArgs, DeploymentStrategyPtr and DeploymentStrategyPtrOutput values. // You can construct a concrete instance of `DeploymentStrategyPtrInput` via: // -// DeploymentStrategyArgs{...} +// DeploymentStrategyArgs{...} // // or: // -// nil -// +// nil type DeploymentStrategyPtrInput interface { pulumi.Input @@ -2410,8 +2385,7 @@ type ReplicaSetType struct { // ReplicaSetTypeInput is an input type that accepts ReplicaSetTypeArgs and ReplicaSetTypeOutput values. // You can construct a concrete instance of `ReplicaSetTypeInput` via: // -// ReplicaSetTypeArgs{...} -// +// ReplicaSetTypeArgs{...} type ReplicaSetTypeInput interface { pulumi.Input @@ -2448,8 +2422,7 @@ func (i ReplicaSetTypeArgs) ToReplicaSetTypeOutputWithContext(ctx context.Contex // ReplicaSetTypeArrayInput is an input type that accepts ReplicaSetTypeArray and ReplicaSetTypeArrayOutput values. // You can construct a concrete instance of `ReplicaSetTypeArrayInput` via: // -// ReplicaSetTypeArray{ ReplicaSetTypeArgs{...} } -// +// ReplicaSetTypeArray{ ReplicaSetTypeArgs{...} } type ReplicaSetTypeArrayInput interface { pulumi.Input @@ -2548,8 +2521,7 @@ type ReplicaSetCondition struct { // ReplicaSetConditionInput is an input type that accepts ReplicaSetConditionArgs and ReplicaSetConditionOutput values. // You can construct a concrete instance of `ReplicaSetConditionInput` via: // -// ReplicaSetConditionArgs{...} -// +// ReplicaSetConditionArgs{...} type ReplicaSetConditionInput interface { pulumi.Input @@ -2586,8 +2558,7 @@ func (i ReplicaSetConditionArgs) ToReplicaSetConditionOutputWithContext(ctx cont // ReplicaSetConditionArrayInput is an input type that accepts ReplicaSetConditionArray and ReplicaSetConditionArrayOutput values. // You can construct a concrete instance of `ReplicaSetConditionArrayInput` via: // -// ReplicaSetConditionArray{ ReplicaSetConditionArgs{...} } -// +// ReplicaSetConditionArray{ ReplicaSetConditionArgs{...} } type ReplicaSetConditionArrayInput interface { pulumi.Input @@ -2684,8 +2655,7 @@ type ReplicaSetListType struct { // ReplicaSetListTypeInput is an input type that accepts ReplicaSetListTypeArgs and ReplicaSetListTypeOutput values. // You can construct a concrete instance of `ReplicaSetListTypeInput` via: // -// ReplicaSetListTypeArgs{...} -// +// ReplicaSetListTypeArgs{...} type ReplicaSetListTypeInput interface { pulumi.Input @@ -2767,8 +2737,7 @@ type ReplicaSetSpec struct { // ReplicaSetSpecInput is an input type that accepts ReplicaSetSpecArgs and ReplicaSetSpecOutput values. // You can construct a concrete instance of `ReplicaSetSpecInput` via: // -// ReplicaSetSpecArgs{...} -// +// ReplicaSetSpecArgs{...} type ReplicaSetSpecInput interface { pulumi.Input @@ -2811,12 +2780,11 @@ func (i ReplicaSetSpecArgs) ToReplicaSetSpecPtrOutputWithContext(ctx context.Con // ReplicaSetSpecPtrInput is an input type that accepts ReplicaSetSpecArgs, ReplicaSetSpecPtr and ReplicaSetSpecPtrOutput values. // You can construct a concrete instance of `ReplicaSetSpecPtrInput` via: // -// ReplicaSetSpecArgs{...} +// ReplicaSetSpecArgs{...} // // or: // -// nil -// +// nil type ReplicaSetSpecPtrInput interface { pulumi.Input @@ -2964,8 +2932,7 @@ type ReplicaSetStatus struct { // ReplicaSetStatusInput is an input type that accepts ReplicaSetStatusArgs and ReplicaSetStatusOutput values. // You can construct a concrete instance of `ReplicaSetStatusInput` via: // -// ReplicaSetStatusArgs{...} -// +// ReplicaSetStatusArgs{...} type ReplicaSetStatusInput interface { pulumi.Input @@ -3012,12 +2979,11 @@ func (i ReplicaSetStatusArgs) ToReplicaSetStatusPtrOutputWithContext(ctx context // ReplicaSetStatusPtrInput is an input type that accepts ReplicaSetStatusArgs, ReplicaSetStatusPtr and ReplicaSetStatusPtrOutput values. // You can construct a concrete instance of `ReplicaSetStatusPtrInput` via: // -// ReplicaSetStatusArgs{...} +// ReplicaSetStatusArgs{...} // // or: // -// nil -// +// nil type ReplicaSetStatusPtrInput interface { pulumi.Input @@ -3185,8 +3151,7 @@ type RollingUpdateDaemonSet struct { // RollingUpdateDaemonSetInput is an input type that accepts RollingUpdateDaemonSetArgs and RollingUpdateDaemonSetOutput values. // You can construct a concrete instance of `RollingUpdateDaemonSetInput` via: // -// RollingUpdateDaemonSetArgs{...} -// +// RollingUpdateDaemonSetArgs{...} type RollingUpdateDaemonSetInput interface { pulumi.Input @@ -3223,12 +3188,11 @@ func (i RollingUpdateDaemonSetArgs) ToRollingUpdateDaemonSetPtrOutputWithContext // RollingUpdateDaemonSetPtrInput is an input type that accepts RollingUpdateDaemonSetArgs, RollingUpdateDaemonSetPtr and RollingUpdateDaemonSetPtrOutput values. // You can construct a concrete instance of `RollingUpdateDaemonSetPtrInput` via: // -// RollingUpdateDaemonSetArgs{...} +// RollingUpdateDaemonSetArgs{...} // // or: // -// nil -// +// nil type RollingUpdateDaemonSetPtrInput interface { pulumi.Input @@ -3323,8 +3287,7 @@ type RollingUpdateDeployment struct { // RollingUpdateDeploymentInput is an input type that accepts RollingUpdateDeploymentArgs and RollingUpdateDeploymentOutput values. // You can construct a concrete instance of `RollingUpdateDeploymentInput` via: // -// RollingUpdateDeploymentArgs{...} -// +// RollingUpdateDeploymentArgs{...} type RollingUpdateDeploymentInput interface { pulumi.Input @@ -3363,12 +3326,11 @@ func (i RollingUpdateDeploymentArgs) ToRollingUpdateDeploymentPtrOutputWithConte // RollingUpdateDeploymentPtrInput is an input type that accepts RollingUpdateDeploymentArgs, RollingUpdateDeploymentPtr and RollingUpdateDeploymentPtrOutput values. // You can construct a concrete instance of `RollingUpdateDeploymentPtrInput` via: // -// RollingUpdateDeploymentArgs{...} +// RollingUpdateDeploymentArgs{...} // // or: // -// nil -// +// nil type RollingUpdateDeploymentPtrInput interface { pulumi.Input @@ -3476,8 +3438,7 @@ type RollingUpdateStatefulSetStrategy struct { // RollingUpdateStatefulSetStrategyInput is an input type that accepts RollingUpdateStatefulSetStrategyArgs and RollingUpdateStatefulSetStrategyOutput values. // You can construct a concrete instance of `RollingUpdateStatefulSetStrategyInput` via: // -// RollingUpdateStatefulSetStrategyArgs{...} -// +// RollingUpdateStatefulSetStrategyArgs{...} type RollingUpdateStatefulSetStrategyInput interface { pulumi.Input @@ -3514,12 +3475,11 @@ func (i RollingUpdateStatefulSetStrategyArgs) ToRollingUpdateStatefulSetStrategy // RollingUpdateStatefulSetStrategyPtrInput is an input type that accepts RollingUpdateStatefulSetStrategyArgs, RollingUpdateStatefulSetStrategyPtr and RollingUpdateStatefulSetStrategyPtrOutput values. // You can construct a concrete instance of `RollingUpdateStatefulSetStrategyPtrInput` via: // -// RollingUpdateStatefulSetStrategyArgs{...} +// RollingUpdateStatefulSetStrategyArgs{...} // // or: // -// nil -// +// nil type RollingUpdateStatefulSetStrategyPtrInput interface { pulumi.Input @@ -3620,8 +3580,7 @@ type Scale struct { // ScaleInput is an input type that accepts ScaleArgs and ScaleOutput values. // You can construct a concrete instance of `ScaleInput` via: // -// ScaleArgs{...} -// +// ScaleArgs{...} type ScaleInput interface { pulumi.Input @@ -3704,8 +3663,7 @@ type ScaleSpec struct { // ScaleSpecInput is an input type that accepts ScaleSpecArgs and ScaleSpecOutput values. // You can construct a concrete instance of `ScaleSpecInput` via: // -// ScaleSpecArgs{...} -// +// ScaleSpecArgs{...} type ScaleSpecInput interface { pulumi.Input @@ -3742,12 +3700,11 @@ func (i ScaleSpecArgs) ToScaleSpecPtrOutputWithContext(ctx context.Context) Scal // ScaleSpecPtrInput is an input type that accepts ScaleSpecArgs, ScaleSpecPtr and ScaleSpecPtrOutput values. // You can construct a concrete instance of `ScaleSpecPtrInput` via: // -// ScaleSpecArgs{...} +// ScaleSpecArgs{...} // // or: // -// nil -// +// nil type ScaleSpecPtrInput interface { pulumi.Input @@ -3844,8 +3801,7 @@ type ScaleStatus struct { // ScaleStatusInput is an input type that accepts ScaleStatusArgs and ScaleStatusOutput values. // You can construct a concrete instance of `ScaleStatusInput` via: // -// ScaleStatusArgs{...} -// +// ScaleStatusArgs{...} type ScaleStatusInput interface { pulumi.Input @@ -3886,12 +3842,11 @@ func (i ScaleStatusArgs) ToScaleStatusPtrOutputWithContext(ctx context.Context) // ScaleStatusPtrInput is an input type that accepts ScaleStatusArgs, ScaleStatusPtr and ScaleStatusPtrOutput values. // You can construct a concrete instance of `ScaleStatusPtrInput` via: // -// ScaleStatusArgs{...} +// ScaleStatusArgs{...} // // or: // -// nil -// +// nil type ScaleStatusPtrInput interface { pulumi.Input @@ -4008,7 +3963,7 @@ func (o ScaleStatusPtrOutput) TargetSelector() pulumi.StringPtrOutput { // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -4037,8 +3992,7 @@ type StatefulSetType struct { // StatefulSetTypeInput is an input type that accepts StatefulSetTypeArgs and StatefulSetTypeOutput values. // You can construct a concrete instance of `StatefulSetTypeInput` via: // -// StatefulSetTypeArgs{...} -// +// StatefulSetTypeArgs{...} type StatefulSetTypeInput interface { pulumi.Input @@ -4049,7 +4003,7 @@ type StatefulSetTypeInput interface { // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -4090,8 +4044,7 @@ func (i StatefulSetTypeArgs) ToStatefulSetTypeOutputWithContext(ctx context.Cont // StatefulSetTypeArrayInput is an input type that accepts StatefulSetTypeArray and StatefulSetTypeArrayOutput values. // You can construct a concrete instance of `StatefulSetTypeArrayInput` via: // -// StatefulSetTypeArray{ StatefulSetTypeArgs{...} } -// +// StatefulSetTypeArray{ StatefulSetTypeArgs{...} } type StatefulSetTypeArrayInput interface { pulumi.Input @@ -4116,7 +4069,7 @@ func (i StatefulSetTypeArray) ToStatefulSetTypeArrayOutputWithContext(ctx contex // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. @@ -4205,8 +4158,7 @@ type StatefulSetCondition struct { // StatefulSetConditionInput is an input type that accepts StatefulSetConditionArgs and StatefulSetConditionOutput values. // You can construct a concrete instance of `StatefulSetConditionInput` via: // -// StatefulSetConditionArgs{...} -// +// StatefulSetConditionArgs{...} type StatefulSetConditionInput interface { pulumi.Input @@ -4243,8 +4195,7 @@ func (i StatefulSetConditionArgs) ToStatefulSetConditionOutputWithContext(ctx co // StatefulSetConditionArrayInput is an input type that accepts StatefulSetConditionArray and StatefulSetConditionArrayOutput values. // You can construct a concrete instance of `StatefulSetConditionArrayInput` via: // -// StatefulSetConditionArray{ StatefulSetConditionArgs{...} } -// +// StatefulSetConditionArray{ StatefulSetConditionArgs{...} } type StatefulSetConditionArrayInput interface { pulumi.Input @@ -4339,8 +4290,7 @@ type StatefulSetListType struct { // StatefulSetListTypeInput is an input type that accepts StatefulSetListTypeArgs and StatefulSetListTypeOutput values. // You can construct a concrete instance of `StatefulSetListTypeInput` via: // -// StatefulSetListTypeArgs{...} -// +// StatefulSetListTypeArgs{...} type StatefulSetListTypeInput interface { pulumi.Input @@ -4426,8 +4376,7 @@ type StatefulSetSpec struct { // StatefulSetSpecInput is an input type that accepts StatefulSetSpecArgs and StatefulSetSpecOutput values. // You can construct a concrete instance of `StatefulSetSpecInput` via: // -// StatefulSetSpecArgs{...} -// +// StatefulSetSpecArgs{...} type StatefulSetSpecInput interface { pulumi.Input @@ -4478,12 +4427,11 @@ func (i StatefulSetSpecArgs) ToStatefulSetSpecPtrOutputWithContext(ctx context.C // StatefulSetSpecPtrInput is an input type that accepts StatefulSetSpecArgs, StatefulSetSpecPtr and StatefulSetSpecPtrOutput values. // You can construct a concrete instance of `StatefulSetSpecPtrInput` via: // -// StatefulSetSpecArgs{...} +// StatefulSetSpecArgs{...} // // or: // -// nil -// +// nil type StatefulSetSpecPtrInput interface { pulumi.Input @@ -4697,8 +4645,7 @@ type StatefulSetStatus struct { // StatefulSetStatusInput is an input type that accepts StatefulSetStatusArgs and StatefulSetStatusOutput values. // You can construct a concrete instance of `StatefulSetStatusInput` via: // -// StatefulSetStatusArgs{...} -// +// StatefulSetStatusArgs{...} type StatefulSetStatusInput interface { pulumi.Input @@ -4751,12 +4698,11 @@ func (i StatefulSetStatusArgs) ToStatefulSetStatusPtrOutputWithContext(ctx conte // StatefulSetStatusPtrInput is an input type that accepts StatefulSetStatusArgs, StatefulSetStatusPtr and StatefulSetStatusPtrOutput values. // You can construct a concrete instance of `StatefulSetStatusPtrInput` via: // -// StatefulSetStatusArgs{...} +// StatefulSetStatusArgs{...} // // or: // -// nil -// +// nil type StatefulSetStatusPtrInput interface { pulumi.Input @@ -4971,8 +4917,7 @@ type StatefulSetUpdateStrategy struct { // StatefulSetUpdateStrategyInput is an input type that accepts StatefulSetUpdateStrategyArgs and StatefulSetUpdateStrategyOutput values. // You can construct a concrete instance of `StatefulSetUpdateStrategyInput` via: // -// StatefulSetUpdateStrategyArgs{...} -// +// StatefulSetUpdateStrategyArgs{...} type StatefulSetUpdateStrategyInput interface { pulumi.Input @@ -5011,12 +4956,11 @@ func (i StatefulSetUpdateStrategyArgs) ToStatefulSetUpdateStrategyPtrOutputWithC // StatefulSetUpdateStrategyPtrInput is an input type that accepts StatefulSetUpdateStrategyArgs, StatefulSetUpdateStrategyPtr and StatefulSetUpdateStrategyPtrOutput values. // You can construct a concrete instance of `StatefulSetUpdateStrategyPtrInput` via: // -// StatefulSetUpdateStrategyArgs{...} +// StatefulSetUpdateStrategyArgs{...} // // or: // -// nil -// +// nil type StatefulSetUpdateStrategyPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/apps/v1beta2/statefulSet.go b/sdk/go/kubernetes/apps/v1beta2/statefulSet.go index 81a682de4a..560036bc64 100644 --- a/sdk/go/kubernetes/apps/v1beta2/statefulSet.go +++ b/sdk/go/kubernetes/apps/v1beta2/statefulSet.go @@ -13,7 +13,7 @@ import ( // StatefulSet represents a set of pods with consistent identities. Identities are defined as: // - Network: A single stable DNS and hostname. // - Storage: As many VolumeClaims as requested. -// The StatefulSet guarantees that a given network identity will always map to the same storage identity. +// The StatefulSet guarantees that a given network identity will always map to the same storage identity. // // This resource waits until its status is ready before registering success // for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/go/kubernetes/auditregistration/v1alpha1/pulumiTypes.go b/sdk/go/kubernetes/auditregistration/v1alpha1/pulumiTypes.go index 404df1a253..c37527b4f9 100644 --- a/sdk/go/kubernetes/auditregistration/v1alpha1/pulumiTypes.go +++ b/sdk/go/kubernetes/auditregistration/v1alpha1/pulumiTypes.go @@ -25,8 +25,7 @@ type AuditSinkType struct { // AuditSinkTypeInput is an input type that accepts AuditSinkTypeArgs and AuditSinkTypeOutput values. // You can construct a concrete instance of `AuditSinkTypeInput` via: // -// AuditSinkTypeArgs{...} -// +// AuditSinkTypeArgs{...} type AuditSinkTypeInput interface { pulumi.Input @@ -60,8 +59,7 @@ func (i AuditSinkTypeArgs) ToAuditSinkTypeOutputWithContext(ctx context.Context) // AuditSinkTypeArrayInput is an input type that accepts AuditSinkTypeArray and AuditSinkTypeArrayOutput values. // You can construct a concrete instance of `AuditSinkTypeArrayInput` via: // -// AuditSinkTypeArray{ AuditSinkTypeArgs{...} } -// +// AuditSinkTypeArray{ AuditSinkTypeArgs{...} } type AuditSinkTypeArrayInput interface { pulumi.Input @@ -151,8 +149,7 @@ type AuditSinkListType struct { // AuditSinkListTypeInput is an input type that accepts AuditSinkListTypeArgs and AuditSinkListTypeOutput values. // You can construct a concrete instance of `AuditSinkListTypeInput` via: // -// AuditSinkListTypeArgs{...} -// +// AuditSinkListTypeArgs{...} type AuditSinkListTypeInput interface { pulumi.Input @@ -228,8 +225,7 @@ type AuditSinkSpec struct { // AuditSinkSpecInput is an input type that accepts AuditSinkSpecArgs and AuditSinkSpecOutput values. // You can construct a concrete instance of `AuditSinkSpecInput` via: // -// AuditSinkSpecArgs{...} -// +// AuditSinkSpecArgs{...} type AuditSinkSpecInput interface { pulumi.Input @@ -268,12 +264,11 @@ func (i AuditSinkSpecArgs) ToAuditSinkSpecPtrOutputWithContext(ctx context.Conte // AuditSinkSpecPtrInput is an input type that accepts AuditSinkSpecArgs, AuditSinkSpecPtr and AuditSinkSpecPtrOutput values. // You can construct a concrete instance of `AuditSinkSpecPtrInput` via: // -// AuditSinkSpecArgs{...} +// AuditSinkSpecArgs{...} // // or: // -// nil -// +// nil type AuditSinkSpecPtrInput interface { pulumi.Input @@ -383,8 +378,7 @@ type Policy struct { // PolicyInput is an input type that accepts PolicyArgs and PolicyOutput values. // You can construct a concrete instance of `PolicyInput` via: // -// PolicyArgs{...} -// +// PolicyArgs{...} type PolicyInput interface { pulumi.Input @@ -423,12 +417,11 @@ func (i PolicyArgs) ToPolicyPtrOutputWithContext(ctx context.Context) PolicyPtrO // PolicyPtrInput is an input type that accepts PolicyArgs, PolicyPtr and PolicyPtrOutput values. // You can construct a concrete instance of `PolicyPtrInput` via: // -// PolicyArgs{...} +// PolicyArgs{...} // // or: // -// nil -// +// nil type PolicyPtrInput interface { pulumi.Input @@ -542,8 +535,7 @@ type ServiceReference struct { // ServiceReferenceInput is an input type that accepts ServiceReferenceArgs and ServiceReferenceOutput values. // You can construct a concrete instance of `ServiceReferenceInput` via: // -// ServiceReferenceArgs{...} -// +// ServiceReferenceArgs{...} type ServiceReferenceInput interface { pulumi.Input @@ -586,12 +578,11 @@ func (i ServiceReferenceArgs) ToServiceReferencePtrOutputWithContext(ctx context // ServiceReferencePtrInput is an input type that accepts ServiceReferenceArgs, ServiceReferencePtr and ServiceReferencePtrOutput values. // You can construct a concrete instance of `ServiceReferencePtrInput` via: // -// ServiceReferenceArgs{...} +// ServiceReferenceArgs{...} // // or: // -// nil -// +// nil type ServiceReferencePtrInput interface { pulumi.Input @@ -731,8 +722,7 @@ type Webhook struct { // WebhookInput is an input type that accepts WebhookArgs and WebhookOutput values. // You can construct a concrete instance of `WebhookInput` via: // -// WebhookArgs{...} -// +// WebhookArgs{...} type WebhookInput interface { pulumi.Input @@ -771,12 +761,11 @@ func (i WebhookArgs) ToWebhookPtrOutputWithContext(ctx context.Context) WebhookP // WebhookPtrInput is an input type that accepts WebhookArgs, WebhookPtr and WebhookPtrOutput values. // You can construct a concrete instance of `WebhookPtrInput` via: // -// WebhookArgs{...} +// WebhookArgs{...} // // or: // -// nil -// +// nil type WebhookPtrInput interface { pulumi.Input @@ -900,8 +889,7 @@ type WebhookClientConfig struct { // WebhookClientConfigInput is an input type that accepts WebhookClientConfigArgs and WebhookClientConfigOutput values. // You can construct a concrete instance of `WebhookClientConfigInput` via: // -// WebhookClientConfigArgs{...} -// +// WebhookClientConfigArgs{...} type WebhookClientConfigInput interface { pulumi.Input @@ -954,12 +942,11 @@ func (i WebhookClientConfigArgs) ToWebhookClientConfigPtrOutputWithContext(ctx c // WebhookClientConfigPtrInput is an input type that accepts WebhookClientConfigArgs, WebhookClientConfigPtr and WebhookClientConfigPtrOutput values. // You can construct a concrete instance of `WebhookClientConfigPtrInput` via: // -// WebhookClientConfigArgs{...} +// WebhookClientConfigArgs{...} // // or: // -// nil -// +// nil type WebhookClientConfigPtrInput interface { pulumi.Input @@ -1108,8 +1095,7 @@ type WebhookThrottleConfig struct { // WebhookThrottleConfigInput is an input type that accepts WebhookThrottleConfigArgs and WebhookThrottleConfigOutput values. // You can construct a concrete instance of `WebhookThrottleConfigInput` via: // -// WebhookThrottleConfigArgs{...} -// +// WebhookThrottleConfigArgs{...} type WebhookThrottleConfigInput interface { pulumi.Input @@ -1148,12 +1134,11 @@ func (i WebhookThrottleConfigArgs) ToWebhookThrottleConfigPtrOutputWithContext(c // WebhookThrottleConfigPtrInput is an input type that accepts WebhookThrottleConfigArgs, WebhookThrottleConfigPtr and WebhookThrottleConfigPtrOutput values. // You can construct a concrete instance of `WebhookThrottleConfigPtrInput` via: // -// WebhookThrottleConfigArgs{...} +// WebhookThrottleConfigArgs{...} // // or: // -// nil -// +// nil type WebhookThrottleConfigPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/authentication/v1/pulumiTypes.go b/sdk/go/kubernetes/authentication/v1/pulumiTypes.go index 813c1bee02..781dda7303 100644 --- a/sdk/go/kubernetes/authentication/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/authentication/v1/pulumiTypes.go @@ -26,8 +26,7 @@ type BoundObjectReference struct { // BoundObjectReferenceInput is an input type that accepts BoundObjectReferenceArgs and BoundObjectReferenceOutput values. // You can construct a concrete instance of `BoundObjectReferenceInput` via: // -// BoundObjectReferenceArgs{...} -// +// BoundObjectReferenceArgs{...} type BoundObjectReferenceInput interface { pulumi.Input @@ -70,12 +69,11 @@ func (i BoundObjectReferenceArgs) ToBoundObjectReferencePtrOutputWithContext(ctx // BoundObjectReferencePtrInput is an input type that accepts BoundObjectReferenceArgs, BoundObjectReferencePtr and BoundObjectReferencePtrOutput values. // You can construct a concrete instance of `BoundObjectReferencePtrInput` via: // -// BoundObjectReferenceArgs{...} +// BoundObjectReferenceArgs{...} // // or: // -// nil -// +// nil type BoundObjectReferencePtrInput interface { pulumi.Input @@ -218,8 +216,7 @@ type TokenRequestType struct { // TokenRequestTypeInput is an input type that accepts TokenRequestTypeArgs and TokenRequestTypeOutput values. // You can construct a concrete instance of `TokenRequestTypeInput` via: // -// TokenRequestTypeArgs{...} -// +// TokenRequestTypeArgs{...} type TokenRequestTypeInput interface { pulumi.Input @@ -300,8 +297,7 @@ type TokenRequestSpec struct { // TokenRequestSpecInput is an input type that accepts TokenRequestSpecArgs and TokenRequestSpecOutput values. // You can construct a concrete instance of `TokenRequestSpecInput` via: // -// TokenRequestSpecArgs{...} -// +// TokenRequestSpecArgs{...} type TokenRequestSpecInput interface { pulumi.Input @@ -342,12 +338,11 @@ func (i TokenRequestSpecArgs) ToTokenRequestSpecPtrOutputWithContext(ctx context // TokenRequestSpecPtrInput is an input type that accepts TokenRequestSpecArgs, TokenRequestSpecPtr and TokenRequestSpecPtrOutput values. // You can construct a concrete instance of `TokenRequestSpecPtrInput` via: // -// TokenRequestSpecArgs{...} +// TokenRequestSpecArgs{...} // // or: // -// nil -// +// nil type TokenRequestSpecPtrInput interface { pulumi.Input @@ -472,8 +467,7 @@ type TokenRequestStatus struct { // TokenRequestStatusInput is an input type that accepts TokenRequestStatusArgs and TokenRequestStatusOutput values. // You can construct a concrete instance of `TokenRequestStatusInput` via: // -// TokenRequestStatusArgs{...} -// +// TokenRequestStatusArgs{...} type TokenRequestStatusInput interface { pulumi.Input @@ -512,12 +506,11 @@ func (i TokenRequestStatusArgs) ToTokenRequestStatusPtrOutputWithContext(ctx con // TokenRequestStatusPtrInput is an input type that accepts TokenRequestStatusArgs, TokenRequestStatusPtr and TokenRequestStatusPtrOutput values. // You can construct a concrete instance of `TokenRequestStatusPtrInput` via: // -// TokenRequestStatusArgs{...} +// TokenRequestStatusArgs{...} // // or: // -// nil -// +// nil type TokenRequestStatusPtrInput interface { pulumi.Input @@ -632,8 +625,7 @@ type TokenReviewType struct { // TokenReviewTypeInput is an input type that accepts TokenReviewTypeArgs and TokenReviewTypeOutput values. // You can construct a concrete instance of `TokenReviewTypeInput` via: // -// TokenReviewTypeArgs{...} -// +// TokenReviewTypeArgs{...} type TokenReviewTypeInput interface { pulumi.Input @@ -716,8 +708,7 @@ type TokenReviewSpec struct { // TokenReviewSpecInput is an input type that accepts TokenReviewSpecArgs and TokenReviewSpecOutput values. // You can construct a concrete instance of `TokenReviewSpecInput` via: // -// TokenReviewSpecArgs{...} -// +// TokenReviewSpecArgs{...} type TokenReviewSpecInput interface { pulumi.Input @@ -756,12 +747,11 @@ func (i TokenReviewSpecArgs) ToTokenReviewSpecPtrOutputWithContext(ctx context.C // TokenReviewSpecPtrInput is an input type that accepts TokenReviewSpecArgs, TokenReviewSpecPtr and TokenReviewSpecPtrOutput values. // You can construct a concrete instance of `TokenReviewSpecPtrInput` via: // -// TokenReviewSpecArgs{...} +// TokenReviewSpecArgs{...} // // or: // -// nil -// +// nil type TokenReviewSpecPtrInput interface { pulumi.Input @@ -875,8 +865,7 @@ type TokenReviewStatus struct { // TokenReviewStatusInput is an input type that accepts TokenReviewStatusArgs and TokenReviewStatusOutput values. // You can construct a concrete instance of `TokenReviewStatusInput` via: // -// TokenReviewStatusArgs{...} -// +// TokenReviewStatusArgs{...} type TokenReviewStatusInput interface { pulumi.Input @@ -919,12 +908,11 @@ func (i TokenReviewStatusArgs) ToTokenReviewStatusPtrOutputWithContext(ctx conte // TokenReviewStatusPtrInput is an input type that accepts TokenReviewStatusArgs, TokenReviewStatusPtr and TokenReviewStatusPtrOutput values. // You can construct a concrete instance of `TokenReviewStatusPtrInput` via: // -// TokenReviewStatusArgs{...} +// TokenReviewStatusArgs{...} // // or: // -// nil -// +// nil type TokenReviewStatusPtrInput interface { pulumi.Input @@ -1068,8 +1056,7 @@ type UserInfo struct { // UserInfoInput is an input type that accepts UserInfoArgs and UserInfoOutput values. // You can construct a concrete instance of `UserInfoInput` via: // -// UserInfoArgs{...} -// +// UserInfoArgs{...} type UserInfoInput interface { pulumi.Input @@ -1112,12 +1099,11 @@ func (i UserInfoArgs) ToUserInfoPtrOutputWithContext(ctx context.Context) UserIn // UserInfoPtrInput is an input type that accepts UserInfoArgs, UserInfoPtr and UserInfoPtrOutput values. // You can construct a concrete instance of `UserInfoPtrInput` via: // -// UserInfoArgs{...} +// UserInfoArgs{...} // // or: // -// nil -// +// nil type UserInfoPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/authentication/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/authentication/v1beta1/pulumiTypes.go index d9b42e44a1..d9df15ced2 100644 --- a/sdk/go/kubernetes/authentication/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/authentication/v1beta1/pulumiTypes.go @@ -27,8 +27,7 @@ type TokenReviewType struct { // TokenReviewTypeInput is an input type that accepts TokenReviewTypeArgs and TokenReviewTypeOutput values. // You can construct a concrete instance of `TokenReviewTypeInput` via: // -// TokenReviewTypeArgs{...} -// +// TokenReviewTypeArgs{...} type TokenReviewTypeInput interface { pulumi.Input @@ -111,8 +110,7 @@ type TokenReviewSpec struct { // TokenReviewSpecInput is an input type that accepts TokenReviewSpecArgs and TokenReviewSpecOutput values. // You can construct a concrete instance of `TokenReviewSpecInput` via: // -// TokenReviewSpecArgs{...} -// +// TokenReviewSpecArgs{...} type TokenReviewSpecInput interface { pulumi.Input @@ -151,12 +149,11 @@ func (i TokenReviewSpecArgs) ToTokenReviewSpecPtrOutputWithContext(ctx context.C // TokenReviewSpecPtrInput is an input type that accepts TokenReviewSpecArgs, TokenReviewSpecPtr and TokenReviewSpecPtrOutput values. // You can construct a concrete instance of `TokenReviewSpecPtrInput` via: // -// TokenReviewSpecArgs{...} +// TokenReviewSpecArgs{...} // // or: // -// nil -// +// nil type TokenReviewSpecPtrInput interface { pulumi.Input @@ -270,8 +267,7 @@ type TokenReviewStatus struct { // TokenReviewStatusInput is an input type that accepts TokenReviewStatusArgs and TokenReviewStatusOutput values. // You can construct a concrete instance of `TokenReviewStatusInput` via: // -// TokenReviewStatusArgs{...} -// +// TokenReviewStatusArgs{...} type TokenReviewStatusInput interface { pulumi.Input @@ -314,12 +310,11 @@ func (i TokenReviewStatusArgs) ToTokenReviewStatusPtrOutputWithContext(ctx conte // TokenReviewStatusPtrInput is an input type that accepts TokenReviewStatusArgs, TokenReviewStatusPtr and TokenReviewStatusPtrOutput values. // You can construct a concrete instance of `TokenReviewStatusPtrInput` via: // -// TokenReviewStatusArgs{...} +// TokenReviewStatusArgs{...} // // or: // -// nil -// +// nil type TokenReviewStatusPtrInput interface { pulumi.Input @@ -463,8 +458,7 @@ type UserInfo struct { // UserInfoInput is an input type that accepts UserInfoArgs and UserInfoOutput values. // You can construct a concrete instance of `UserInfoInput` via: // -// UserInfoArgs{...} -// +// UserInfoArgs{...} type UserInfoInput interface { pulumi.Input @@ -507,12 +501,11 @@ func (i UserInfoArgs) ToUserInfoPtrOutputWithContext(ctx context.Context) UserIn // UserInfoPtrInput is an input type that accepts UserInfoArgs, UserInfoPtr and UserInfoPtrOutput values. // You can construct a concrete instance of `UserInfoPtrInput` via: // -// UserInfoArgs{...} +// UserInfoArgs{...} // // or: // -// nil -// +// nil type UserInfoPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/authorization/v1/pulumiTypes.go b/sdk/go/kubernetes/authorization/v1/pulumiTypes.go index ae7b4c2fea..deff9721f0 100644 --- a/sdk/go/kubernetes/authorization/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/authorization/v1/pulumiTypes.go @@ -27,8 +27,7 @@ type LocalSubjectAccessReviewType struct { // LocalSubjectAccessReviewTypeInput is an input type that accepts LocalSubjectAccessReviewTypeArgs and LocalSubjectAccessReviewTypeOutput values. // You can construct a concrete instance of `LocalSubjectAccessReviewTypeInput` via: // -// LocalSubjectAccessReviewTypeArgs{...} -// +// LocalSubjectAccessReviewTypeArgs{...} type LocalSubjectAccessReviewTypeInput interface { pulumi.Input @@ -111,8 +110,7 @@ type NonResourceAttributes struct { // NonResourceAttributesInput is an input type that accepts NonResourceAttributesArgs and NonResourceAttributesOutput values. // You can construct a concrete instance of `NonResourceAttributesInput` via: // -// NonResourceAttributesArgs{...} -// +// NonResourceAttributesArgs{...} type NonResourceAttributesInput interface { pulumi.Input @@ -151,12 +149,11 @@ func (i NonResourceAttributesArgs) ToNonResourceAttributesPtrOutputWithContext(c // NonResourceAttributesPtrInput is an input type that accepts NonResourceAttributesArgs, NonResourceAttributesPtr and NonResourceAttributesPtrOutput values. // You can construct a concrete instance of `NonResourceAttributesPtrInput` via: // -// NonResourceAttributesArgs{...} +// NonResourceAttributesArgs{...} // // or: // -// nil -// +// nil type NonResourceAttributesPtrInput interface { pulumi.Input @@ -266,8 +263,7 @@ type NonResourceRule struct { // NonResourceRuleInput is an input type that accepts NonResourceRuleArgs and NonResourceRuleOutput values. // You can construct a concrete instance of `NonResourceRuleInput` via: // -// NonResourceRuleArgs{...} -// +// NonResourceRuleArgs{...} type NonResourceRuleInput interface { pulumi.Input @@ -298,8 +294,7 @@ func (i NonResourceRuleArgs) ToNonResourceRuleOutputWithContext(ctx context.Cont // NonResourceRuleArrayInput is an input type that accepts NonResourceRuleArray and NonResourceRuleArrayOutput values. // You can construct a concrete instance of `NonResourceRuleArrayInput` via: // -// NonResourceRuleArray{ NonResourceRuleArgs{...} } -// +// NonResourceRuleArray{ NonResourceRuleArgs{...} } type NonResourceRuleArrayInput interface { pulumi.Input @@ -387,8 +382,7 @@ type ResourceAttributes struct { // ResourceAttributesInput is an input type that accepts ResourceAttributesArgs and ResourceAttributesOutput values. // You can construct a concrete instance of `ResourceAttributesInput` via: // -// ResourceAttributesArgs{...} -// +// ResourceAttributesArgs{...} type ResourceAttributesInput interface { pulumi.Input @@ -437,12 +431,11 @@ func (i ResourceAttributesArgs) ToResourceAttributesPtrOutputWithContext(ctx con // ResourceAttributesPtrInput is an input type that accepts ResourceAttributesArgs, ResourceAttributesPtr and ResourceAttributesPtrOutput values. // You can construct a concrete instance of `ResourceAttributesPtrInput` via: // -// ResourceAttributesArgs{...} +// ResourceAttributesArgs{...} // // or: // -// nil -// +// nil type ResourceAttributesPtrInput interface { pulumi.Input @@ -632,8 +625,7 @@ type ResourceRule struct { // ResourceRuleInput is an input type that accepts ResourceRuleArgs and ResourceRuleOutput values. // You can construct a concrete instance of `ResourceRuleInput` via: // -// ResourceRuleArgs{...} -// +// ResourceRuleArgs{...} type ResourceRuleInput interface { pulumi.Input @@ -669,8 +661,7 @@ func (i ResourceRuleArgs) ToResourceRuleOutputWithContext(ctx context.Context) R // ResourceRuleArrayInput is an input type that accepts ResourceRuleArray and ResourceRuleArrayOutput values. // You can construct a concrete instance of `ResourceRuleArrayInput` via: // -// ResourceRuleArray{ ResourceRuleArgs{...} } -// +// ResourceRuleArray{ ResourceRuleArgs{...} } type ResourceRuleArrayInput interface { pulumi.Input @@ -764,8 +755,7 @@ type SelfSubjectAccessReviewType struct { // SelfSubjectAccessReviewTypeInput is an input type that accepts SelfSubjectAccessReviewTypeArgs and SelfSubjectAccessReviewTypeOutput values. // You can construct a concrete instance of `SelfSubjectAccessReviewTypeInput` via: // -// SelfSubjectAccessReviewTypeArgs{...} -// +// SelfSubjectAccessReviewTypeArgs{...} type SelfSubjectAccessReviewTypeInput interface { pulumi.Input @@ -848,8 +838,7 @@ type SelfSubjectAccessReviewSpec struct { // SelfSubjectAccessReviewSpecInput is an input type that accepts SelfSubjectAccessReviewSpecArgs and SelfSubjectAccessReviewSpecOutput values. // You can construct a concrete instance of `SelfSubjectAccessReviewSpecInput` via: // -// SelfSubjectAccessReviewSpecArgs{...} -// +// SelfSubjectAccessReviewSpecArgs{...} type SelfSubjectAccessReviewSpecInput interface { pulumi.Input @@ -888,12 +877,11 @@ func (i SelfSubjectAccessReviewSpecArgs) ToSelfSubjectAccessReviewSpecPtrOutputW // SelfSubjectAccessReviewSpecPtrInput is an input type that accepts SelfSubjectAccessReviewSpecArgs, SelfSubjectAccessReviewSpecPtr and SelfSubjectAccessReviewSpecPtrOutput values. // You can construct a concrete instance of `SelfSubjectAccessReviewSpecPtrInput` via: // -// SelfSubjectAccessReviewSpecArgs{...} +// SelfSubjectAccessReviewSpecArgs{...} // // or: // -// nil -// +// nil type SelfSubjectAccessReviewSpecPtrInput interface { pulumi.Input @@ -1008,8 +996,7 @@ type SelfSubjectRulesReviewType struct { // SelfSubjectRulesReviewTypeInput is an input type that accepts SelfSubjectRulesReviewTypeArgs and SelfSubjectRulesReviewTypeOutput values. // You can construct a concrete instance of `SelfSubjectRulesReviewTypeInput` via: // -// SelfSubjectRulesReviewTypeArgs{...} -// +// SelfSubjectRulesReviewTypeArgs{...} type SelfSubjectRulesReviewTypeInput interface { pulumi.Input @@ -1089,8 +1076,7 @@ type SelfSubjectRulesReviewSpec struct { // SelfSubjectRulesReviewSpecInput is an input type that accepts SelfSubjectRulesReviewSpecArgs and SelfSubjectRulesReviewSpecOutput values. // You can construct a concrete instance of `SelfSubjectRulesReviewSpecInput` via: // -// SelfSubjectRulesReviewSpecArgs{...} -// +// SelfSubjectRulesReviewSpecArgs{...} type SelfSubjectRulesReviewSpecInput interface { pulumi.Input @@ -1126,12 +1112,11 @@ func (i SelfSubjectRulesReviewSpecArgs) ToSelfSubjectRulesReviewSpecPtrOutputWit // SelfSubjectRulesReviewSpecPtrInput is an input type that accepts SelfSubjectRulesReviewSpecArgs, SelfSubjectRulesReviewSpecPtr and SelfSubjectRulesReviewSpecPtrOutput values. // You can construct a concrete instance of `SelfSubjectRulesReviewSpecPtrInput` via: // -// SelfSubjectRulesReviewSpecArgs{...} +// SelfSubjectRulesReviewSpecArgs{...} // // or: // -// nil -// +// nil type SelfSubjectRulesReviewSpecPtrInput interface { pulumi.Input @@ -1230,8 +1215,7 @@ type SubjectAccessReviewType struct { // SubjectAccessReviewTypeInput is an input type that accepts SubjectAccessReviewTypeArgs and SubjectAccessReviewTypeOutput values. // You can construct a concrete instance of `SubjectAccessReviewTypeInput` via: // -// SubjectAccessReviewTypeArgs{...} -// +// SubjectAccessReviewTypeArgs{...} type SubjectAccessReviewTypeInput interface { pulumi.Input @@ -1322,8 +1306,7 @@ type SubjectAccessReviewSpec struct { // SubjectAccessReviewSpecInput is an input type that accepts SubjectAccessReviewSpecArgs and SubjectAccessReviewSpecOutput values. // You can construct a concrete instance of `SubjectAccessReviewSpecInput` via: // -// SubjectAccessReviewSpecArgs{...} -// +// SubjectAccessReviewSpecArgs{...} type SubjectAccessReviewSpecInput interface { pulumi.Input @@ -1370,12 +1353,11 @@ func (i SubjectAccessReviewSpecArgs) ToSubjectAccessReviewSpecPtrOutputWithConte // SubjectAccessReviewSpecPtrInput is an input type that accepts SubjectAccessReviewSpecArgs, SubjectAccessReviewSpecPtr and SubjectAccessReviewSpecPtrOutput values. // You can construct a concrete instance of `SubjectAccessReviewSpecPtrInput` via: // -// SubjectAccessReviewSpecArgs{...} +// SubjectAccessReviewSpecArgs{...} // // or: // -// nil -// +// nil type SubjectAccessReviewSpecPtrInput interface { pulumi.Input @@ -1549,8 +1531,7 @@ type SubjectAccessReviewStatus struct { // SubjectAccessReviewStatusInput is an input type that accepts SubjectAccessReviewStatusArgs and SubjectAccessReviewStatusOutput values. // You can construct a concrete instance of `SubjectAccessReviewStatusInput` via: // -// SubjectAccessReviewStatusArgs{...} -// +// SubjectAccessReviewStatusArgs{...} type SubjectAccessReviewStatusInput interface { pulumi.Input @@ -1593,12 +1574,11 @@ func (i SubjectAccessReviewStatusArgs) ToSubjectAccessReviewStatusPtrOutputWithC // SubjectAccessReviewStatusPtrInput is an input type that accepts SubjectAccessReviewStatusArgs, SubjectAccessReviewStatusPtr and SubjectAccessReviewStatusPtrOutput values. // You can construct a concrete instance of `SubjectAccessReviewStatusPtrInput` via: // -// SubjectAccessReviewStatusArgs{...} +// SubjectAccessReviewStatusArgs{...} // // or: // -// nil -// +// nil type SubjectAccessReviewStatusPtrInput interface { pulumi.Input @@ -1742,8 +1722,7 @@ type SubjectRulesReviewStatus struct { // SubjectRulesReviewStatusInput is an input type that accepts SubjectRulesReviewStatusArgs and SubjectRulesReviewStatusOutput values. // You can construct a concrete instance of `SubjectRulesReviewStatusInput` via: // -// SubjectRulesReviewStatusArgs{...} -// +// SubjectRulesReviewStatusArgs{...} type SubjectRulesReviewStatusInput interface { pulumi.Input @@ -1786,12 +1765,11 @@ func (i SubjectRulesReviewStatusArgs) ToSubjectRulesReviewStatusPtrOutputWithCon // SubjectRulesReviewStatusPtrInput is an input type that accepts SubjectRulesReviewStatusArgs, SubjectRulesReviewStatusPtr and SubjectRulesReviewStatusPtrOutput values. // You can construct a concrete instance of `SubjectRulesReviewStatusPtrInput` via: // -// SubjectRulesReviewStatusArgs{...} +// SubjectRulesReviewStatusArgs{...} // // or: // -// nil -// +// nil type SubjectRulesReviewStatusPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/authorization/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/authorization/v1beta1/pulumiTypes.go index 0c326fce98..5fb26b318a 100644 --- a/sdk/go/kubernetes/authorization/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/authorization/v1beta1/pulumiTypes.go @@ -27,8 +27,7 @@ type LocalSubjectAccessReviewType struct { // LocalSubjectAccessReviewTypeInput is an input type that accepts LocalSubjectAccessReviewTypeArgs and LocalSubjectAccessReviewTypeOutput values. // You can construct a concrete instance of `LocalSubjectAccessReviewTypeInput` via: // -// LocalSubjectAccessReviewTypeArgs{...} -// +// LocalSubjectAccessReviewTypeArgs{...} type LocalSubjectAccessReviewTypeInput interface { pulumi.Input @@ -111,8 +110,7 @@ type NonResourceAttributes struct { // NonResourceAttributesInput is an input type that accepts NonResourceAttributesArgs and NonResourceAttributesOutput values. // You can construct a concrete instance of `NonResourceAttributesInput` via: // -// NonResourceAttributesArgs{...} -// +// NonResourceAttributesArgs{...} type NonResourceAttributesInput interface { pulumi.Input @@ -151,12 +149,11 @@ func (i NonResourceAttributesArgs) ToNonResourceAttributesPtrOutputWithContext(c // NonResourceAttributesPtrInput is an input type that accepts NonResourceAttributesArgs, NonResourceAttributesPtr and NonResourceAttributesPtrOutput values. // You can construct a concrete instance of `NonResourceAttributesPtrInput` via: // -// NonResourceAttributesArgs{...} +// NonResourceAttributesArgs{...} // // or: // -// nil -// +// nil type NonResourceAttributesPtrInput interface { pulumi.Input @@ -266,8 +263,7 @@ type NonResourceRule struct { // NonResourceRuleInput is an input type that accepts NonResourceRuleArgs and NonResourceRuleOutput values. // You can construct a concrete instance of `NonResourceRuleInput` via: // -// NonResourceRuleArgs{...} -// +// NonResourceRuleArgs{...} type NonResourceRuleInput interface { pulumi.Input @@ -298,8 +294,7 @@ func (i NonResourceRuleArgs) ToNonResourceRuleOutputWithContext(ctx context.Cont // NonResourceRuleArrayInput is an input type that accepts NonResourceRuleArray and NonResourceRuleArrayOutput values. // You can construct a concrete instance of `NonResourceRuleArrayInput` via: // -// NonResourceRuleArray{ NonResourceRuleArgs{...} } -// +// NonResourceRuleArray{ NonResourceRuleArgs{...} } type NonResourceRuleArrayInput interface { pulumi.Input @@ -387,8 +382,7 @@ type ResourceAttributes struct { // ResourceAttributesInput is an input type that accepts ResourceAttributesArgs and ResourceAttributesOutput values. // You can construct a concrete instance of `ResourceAttributesInput` via: // -// ResourceAttributesArgs{...} -// +// ResourceAttributesArgs{...} type ResourceAttributesInput interface { pulumi.Input @@ -437,12 +431,11 @@ func (i ResourceAttributesArgs) ToResourceAttributesPtrOutputWithContext(ctx con // ResourceAttributesPtrInput is an input type that accepts ResourceAttributesArgs, ResourceAttributesPtr and ResourceAttributesPtrOutput values. // You can construct a concrete instance of `ResourceAttributesPtrInput` via: // -// ResourceAttributesArgs{...} +// ResourceAttributesArgs{...} // // or: // -// nil -// +// nil type ResourceAttributesPtrInput interface { pulumi.Input @@ -632,8 +625,7 @@ type ResourceRule struct { // ResourceRuleInput is an input type that accepts ResourceRuleArgs and ResourceRuleOutput values. // You can construct a concrete instance of `ResourceRuleInput` via: // -// ResourceRuleArgs{...} -// +// ResourceRuleArgs{...} type ResourceRuleInput interface { pulumi.Input @@ -669,8 +661,7 @@ func (i ResourceRuleArgs) ToResourceRuleOutputWithContext(ctx context.Context) R // ResourceRuleArrayInput is an input type that accepts ResourceRuleArray and ResourceRuleArrayOutput values. // You can construct a concrete instance of `ResourceRuleArrayInput` via: // -// ResourceRuleArray{ ResourceRuleArgs{...} } -// +// ResourceRuleArray{ ResourceRuleArgs{...} } type ResourceRuleArrayInput interface { pulumi.Input @@ -764,8 +755,7 @@ type SelfSubjectAccessReviewType struct { // SelfSubjectAccessReviewTypeInput is an input type that accepts SelfSubjectAccessReviewTypeArgs and SelfSubjectAccessReviewTypeOutput values. // You can construct a concrete instance of `SelfSubjectAccessReviewTypeInput` via: // -// SelfSubjectAccessReviewTypeArgs{...} -// +// SelfSubjectAccessReviewTypeArgs{...} type SelfSubjectAccessReviewTypeInput interface { pulumi.Input @@ -848,8 +838,7 @@ type SelfSubjectAccessReviewSpec struct { // SelfSubjectAccessReviewSpecInput is an input type that accepts SelfSubjectAccessReviewSpecArgs and SelfSubjectAccessReviewSpecOutput values. // You can construct a concrete instance of `SelfSubjectAccessReviewSpecInput` via: // -// SelfSubjectAccessReviewSpecArgs{...} -// +// SelfSubjectAccessReviewSpecArgs{...} type SelfSubjectAccessReviewSpecInput interface { pulumi.Input @@ -888,12 +877,11 @@ func (i SelfSubjectAccessReviewSpecArgs) ToSelfSubjectAccessReviewSpecPtrOutputW // SelfSubjectAccessReviewSpecPtrInput is an input type that accepts SelfSubjectAccessReviewSpecArgs, SelfSubjectAccessReviewSpecPtr and SelfSubjectAccessReviewSpecPtrOutput values. // You can construct a concrete instance of `SelfSubjectAccessReviewSpecPtrInput` via: // -// SelfSubjectAccessReviewSpecArgs{...} +// SelfSubjectAccessReviewSpecArgs{...} // // or: // -// nil -// +// nil type SelfSubjectAccessReviewSpecPtrInput interface { pulumi.Input @@ -1008,8 +996,7 @@ type SelfSubjectRulesReviewType struct { // SelfSubjectRulesReviewTypeInput is an input type that accepts SelfSubjectRulesReviewTypeArgs and SelfSubjectRulesReviewTypeOutput values. // You can construct a concrete instance of `SelfSubjectRulesReviewTypeInput` via: // -// SelfSubjectRulesReviewTypeArgs{...} -// +// SelfSubjectRulesReviewTypeArgs{...} type SelfSubjectRulesReviewTypeInput interface { pulumi.Input @@ -1089,8 +1076,7 @@ type SelfSubjectRulesReviewSpec struct { // SelfSubjectRulesReviewSpecInput is an input type that accepts SelfSubjectRulesReviewSpecArgs and SelfSubjectRulesReviewSpecOutput values. // You can construct a concrete instance of `SelfSubjectRulesReviewSpecInput` via: // -// SelfSubjectRulesReviewSpecArgs{...} -// +// SelfSubjectRulesReviewSpecArgs{...} type SelfSubjectRulesReviewSpecInput interface { pulumi.Input @@ -1126,12 +1112,11 @@ func (i SelfSubjectRulesReviewSpecArgs) ToSelfSubjectRulesReviewSpecPtrOutputWit // SelfSubjectRulesReviewSpecPtrInput is an input type that accepts SelfSubjectRulesReviewSpecArgs, SelfSubjectRulesReviewSpecPtr and SelfSubjectRulesReviewSpecPtrOutput values. // You can construct a concrete instance of `SelfSubjectRulesReviewSpecPtrInput` via: // -// SelfSubjectRulesReviewSpecArgs{...} +// SelfSubjectRulesReviewSpecArgs{...} // // or: // -// nil -// +// nil type SelfSubjectRulesReviewSpecPtrInput interface { pulumi.Input @@ -1230,8 +1215,7 @@ type SubjectAccessReviewType struct { // SubjectAccessReviewTypeInput is an input type that accepts SubjectAccessReviewTypeArgs and SubjectAccessReviewTypeOutput values. // You can construct a concrete instance of `SubjectAccessReviewTypeInput` via: // -// SubjectAccessReviewTypeArgs{...} -// +// SubjectAccessReviewTypeArgs{...} type SubjectAccessReviewTypeInput interface { pulumi.Input @@ -1322,8 +1306,7 @@ type SubjectAccessReviewSpec struct { // SubjectAccessReviewSpecInput is an input type that accepts SubjectAccessReviewSpecArgs and SubjectAccessReviewSpecOutput values. // You can construct a concrete instance of `SubjectAccessReviewSpecInput` via: // -// SubjectAccessReviewSpecArgs{...} -// +// SubjectAccessReviewSpecArgs{...} type SubjectAccessReviewSpecInput interface { pulumi.Input @@ -1370,12 +1353,11 @@ func (i SubjectAccessReviewSpecArgs) ToSubjectAccessReviewSpecPtrOutputWithConte // SubjectAccessReviewSpecPtrInput is an input type that accepts SubjectAccessReviewSpecArgs, SubjectAccessReviewSpecPtr and SubjectAccessReviewSpecPtrOutput values. // You can construct a concrete instance of `SubjectAccessReviewSpecPtrInput` via: // -// SubjectAccessReviewSpecArgs{...} +// SubjectAccessReviewSpecArgs{...} // // or: // -// nil -// +// nil type SubjectAccessReviewSpecPtrInput interface { pulumi.Input @@ -1549,8 +1531,7 @@ type SubjectAccessReviewStatus struct { // SubjectAccessReviewStatusInput is an input type that accepts SubjectAccessReviewStatusArgs and SubjectAccessReviewStatusOutput values. // You can construct a concrete instance of `SubjectAccessReviewStatusInput` via: // -// SubjectAccessReviewStatusArgs{...} -// +// SubjectAccessReviewStatusArgs{...} type SubjectAccessReviewStatusInput interface { pulumi.Input @@ -1593,12 +1574,11 @@ func (i SubjectAccessReviewStatusArgs) ToSubjectAccessReviewStatusPtrOutputWithC // SubjectAccessReviewStatusPtrInput is an input type that accepts SubjectAccessReviewStatusArgs, SubjectAccessReviewStatusPtr and SubjectAccessReviewStatusPtrOutput values. // You can construct a concrete instance of `SubjectAccessReviewStatusPtrInput` via: // -// SubjectAccessReviewStatusArgs{...} +// SubjectAccessReviewStatusArgs{...} // // or: // -// nil -// +// nil type SubjectAccessReviewStatusPtrInput interface { pulumi.Input @@ -1742,8 +1722,7 @@ type SubjectRulesReviewStatus struct { // SubjectRulesReviewStatusInput is an input type that accepts SubjectRulesReviewStatusArgs and SubjectRulesReviewStatusOutput values. // You can construct a concrete instance of `SubjectRulesReviewStatusInput` via: // -// SubjectRulesReviewStatusArgs{...} -// +// SubjectRulesReviewStatusArgs{...} type SubjectRulesReviewStatusInput interface { pulumi.Input @@ -1786,12 +1765,11 @@ func (i SubjectRulesReviewStatusArgs) ToSubjectRulesReviewStatusPtrOutputWithCon // SubjectRulesReviewStatusPtrInput is an input type that accepts SubjectRulesReviewStatusArgs, SubjectRulesReviewStatusPtr and SubjectRulesReviewStatusPtrOutput values. // You can construct a concrete instance of `SubjectRulesReviewStatusPtrInput` via: // -// SubjectRulesReviewStatusArgs{...} +// SubjectRulesReviewStatusArgs{...} // // or: // -// nil -// +// nil type SubjectRulesReviewStatusPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/autoscaling/v1/pulumiTypes.go b/sdk/go/kubernetes/autoscaling/v1/pulumiTypes.go index 4dedb50624..afa9fac7bf 100644 --- a/sdk/go/kubernetes/autoscaling/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/autoscaling/v1/pulumiTypes.go @@ -24,8 +24,7 @@ type CrossVersionObjectReference struct { // CrossVersionObjectReferenceInput is an input type that accepts CrossVersionObjectReferenceArgs and CrossVersionObjectReferenceOutput values. // You can construct a concrete instance of `CrossVersionObjectReferenceInput` via: // -// CrossVersionObjectReferenceArgs{...} -// +// CrossVersionObjectReferenceArgs{...} type CrossVersionObjectReferenceInput interface { pulumi.Input @@ -66,12 +65,11 @@ func (i CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferencePtrOutputW // CrossVersionObjectReferencePtrInput is an input type that accepts CrossVersionObjectReferenceArgs, CrossVersionObjectReferencePtr and CrossVersionObjectReferencePtrOutput values. // You can construct a concrete instance of `CrossVersionObjectReferencePtrInput` via: // -// CrossVersionObjectReferenceArgs{...} +// CrossVersionObjectReferenceArgs{...} // // or: // -// nil -// +// nil type CrossVersionObjectReferencePtrInput interface { pulumi.Input @@ -202,8 +200,7 @@ type HorizontalPodAutoscalerType struct { // HorizontalPodAutoscalerTypeInput is an input type that accepts HorizontalPodAutoscalerTypeArgs and HorizontalPodAutoscalerTypeOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerTypeInput` via: // -// HorizontalPodAutoscalerTypeArgs{...} -// +// HorizontalPodAutoscalerTypeArgs{...} type HorizontalPodAutoscalerTypeInput interface { pulumi.Input @@ -240,8 +237,7 @@ func (i HorizontalPodAutoscalerTypeArgs) ToHorizontalPodAutoscalerTypeOutputWith // HorizontalPodAutoscalerTypeArrayInput is an input type that accepts HorizontalPodAutoscalerTypeArray and HorizontalPodAutoscalerTypeArrayOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerTypeArrayInput` via: // -// HorizontalPodAutoscalerTypeArray{ HorizontalPodAutoscalerTypeArgs{...} } -// +// HorizontalPodAutoscalerTypeArray{ HorizontalPodAutoscalerTypeArgs{...} } type HorizontalPodAutoscalerTypeArrayInput interface { pulumi.Input @@ -338,8 +334,7 @@ type HorizontalPodAutoscalerListType struct { // HorizontalPodAutoscalerListTypeInput is an input type that accepts HorizontalPodAutoscalerListTypeArgs and HorizontalPodAutoscalerListTypeOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerListTypeInput` via: // -// HorizontalPodAutoscalerListTypeArgs{...} -// +// HorizontalPodAutoscalerListTypeArgs{...} type HorizontalPodAutoscalerListTypeInput interface { pulumi.Input @@ -421,8 +416,7 @@ type HorizontalPodAutoscalerSpec struct { // HorizontalPodAutoscalerSpecInput is an input type that accepts HorizontalPodAutoscalerSpecArgs and HorizontalPodAutoscalerSpecOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerSpecInput` via: // -// HorizontalPodAutoscalerSpecArgs{...} -// +// HorizontalPodAutoscalerSpecArgs{...} type HorizontalPodAutoscalerSpecInput interface { pulumi.Input @@ -465,12 +459,11 @@ func (i HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecPtrOutputW // HorizontalPodAutoscalerSpecPtrInput is an input type that accepts HorizontalPodAutoscalerSpecArgs, HorizontalPodAutoscalerSpecPtr and HorizontalPodAutoscalerSpecPtrOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerSpecPtrInput` via: // -// HorizontalPodAutoscalerSpecArgs{...} +// HorizontalPodAutoscalerSpecArgs{...} // // or: // -// nil -// +// nil type HorizontalPodAutoscalerSpecPtrInput interface { pulumi.Input @@ -616,8 +609,7 @@ type HorizontalPodAutoscalerStatus struct { // HorizontalPodAutoscalerStatusInput is an input type that accepts HorizontalPodAutoscalerStatusArgs and HorizontalPodAutoscalerStatusOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerStatusInput` via: // -// HorizontalPodAutoscalerStatusArgs{...} -// +// HorizontalPodAutoscalerStatusArgs{...} type HorizontalPodAutoscalerStatusInput interface { pulumi.Input @@ -662,12 +654,11 @@ func (i HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusPtrOut // HorizontalPodAutoscalerStatusPtrInput is an input type that accepts HorizontalPodAutoscalerStatusArgs, HorizontalPodAutoscalerStatusPtr and HorizontalPodAutoscalerStatusPtrOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerStatusPtrInput` via: // -// HorizontalPodAutoscalerStatusArgs{...} +// HorizontalPodAutoscalerStatusArgs{...} // // or: // -// nil -// +// nil type HorizontalPodAutoscalerStatusPtrInput interface { pulumi.Input @@ -828,8 +819,7 @@ type Scale struct { // ScaleInput is an input type that accepts ScaleArgs and ScaleOutput values. // You can construct a concrete instance of `ScaleInput` via: // -// ScaleArgs{...} -// +// ScaleArgs{...} type ScaleInput interface { pulumi.Input @@ -912,8 +902,7 @@ type ScaleSpec struct { // ScaleSpecInput is an input type that accepts ScaleSpecArgs and ScaleSpecOutput values. // You can construct a concrete instance of `ScaleSpecInput` via: // -// ScaleSpecArgs{...} -// +// ScaleSpecArgs{...} type ScaleSpecInput interface { pulumi.Input @@ -950,12 +939,11 @@ func (i ScaleSpecArgs) ToScaleSpecPtrOutputWithContext(ctx context.Context) Scal // ScaleSpecPtrInput is an input type that accepts ScaleSpecArgs, ScaleSpecPtr and ScaleSpecPtrOutput values. // You can construct a concrete instance of `ScaleSpecPtrInput` via: // -// ScaleSpecArgs{...} +// ScaleSpecArgs{...} // // or: // -// nil -// +// nil type ScaleSpecPtrInput interface { pulumi.Input @@ -1050,8 +1038,7 @@ type ScaleStatus struct { // ScaleStatusInput is an input type that accepts ScaleStatusArgs and ScaleStatusOutput values. // You can construct a concrete instance of `ScaleStatusInput` via: // -// ScaleStatusArgs{...} -// +// ScaleStatusArgs{...} type ScaleStatusInput interface { pulumi.Input @@ -1090,12 +1077,11 @@ func (i ScaleStatusArgs) ToScaleStatusPtrOutputWithContext(ctx context.Context) // ScaleStatusPtrInput is an input type that accepts ScaleStatusArgs, ScaleStatusPtr and ScaleStatusPtrOutput values. // You can construct a concrete instance of `ScaleStatusPtrInput` via: // -// ScaleStatusArgs{...} +// ScaleStatusArgs{...} // // or: // -// nil -// +// nil type ScaleStatusPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/autoscaling/v2beta1/pulumiTypes.go b/sdk/go/kubernetes/autoscaling/v2beta1/pulumiTypes.go index ec5ac972db..24243631a1 100644 --- a/sdk/go/kubernetes/autoscaling/v2beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/autoscaling/v2beta1/pulumiTypes.go @@ -24,8 +24,7 @@ type CrossVersionObjectReference struct { // CrossVersionObjectReferenceInput is an input type that accepts CrossVersionObjectReferenceArgs and CrossVersionObjectReferenceOutput values. // You can construct a concrete instance of `CrossVersionObjectReferenceInput` via: // -// CrossVersionObjectReferenceArgs{...} -// +// CrossVersionObjectReferenceArgs{...} type CrossVersionObjectReferenceInput interface { pulumi.Input @@ -66,12 +65,11 @@ func (i CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferencePtrOutputW // CrossVersionObjectReferencePtrInput is an input type that accepts CrossVersionObjectReferenceArgs, CrossVersionObjectReferencePtr and CrossVersionObjectReferencePtrOutput values. // You can construct a concrete instance of `CrossVersionObjectReferencePtrInput` via: // -// CrossVersionObjectReferenceArgs{...} +// CrossVersionObjectReferenceArgs{...} // // or: // -// nil -// +// nil type CrossVersionObjectReferencePtrInput interface { pulumi.Input @@ -200,8 +198,7 @@ type ExternalMetricSource struct { // ExternalMetricSourceInput is an input type that accepts ExternalMetricSourceArgs and ExternalMetricSourceOutput values. // You can construct a concrete instance of `ExternalMetricSourceInput` via: // -// ExternalMetricSourceArgs{...} -// +// ExternalMetricSourceArgs{...} type ExternalMetricSourceInput interface { pulumi.Input @@ -244,12 +241,11 @@ func (i ExternalMetricSourceArgs) ToExternalMetricSourcePtrOutputWithContext(ctx // ExternalMetricSourcePtrInput is an input type that accepts ExternalMetricSourceArgs, ExternalMetricSourcePtr and ExternalMetricSourcePtrOutput values. // You can construct a concrete instance of `ExternalMetricSourcePtrInput` via: // -// ExternalMetricSourceArgs{...} +// ExternalMetricSourceArgs{...} // // or: // -// nil -// +// nil type ExternalMetricSourcePtrInput interface { pulumi.Input @@ -393,8 +389,7 @@ type ExternalMetricStatus struct { // ExternalMetricStatusInput is an input type that accepts ExternalMetricStatusArgs and ExternalMetricStatusOutput values. // You can construct a concrete instance of `ExternalMetricStatusInput` via: // -// ExternalMetricStatusArgs{...} -// +// ExternalMetricStatusArgs{...} type ExternalMetricStatusInput interface { pulumi.Input @@ -437,12 +432,11 @@ func (i ExternalMetricStatusArgs) ToExternalMetricStatusPtrOutputWithContext(ctx // ExternalMetricStatusPtrInput is an input type that accepts ExternalMetricStatusArgs, ExternalMetricStatusPtr and ExternalMetricStatusPtrOutput values. // You can construct a concrete instance of `ExternalMetricStatusPtrInput` via: // -// ExternalMetricStatusArgs{...} +// ExternalMetricStatusArgs{...} // // or: // -// nil -// +// nil type ExternalMetricStatusPtrInput interface { pulumi.Input @@ -588,8 +582,7 @@ type HorizontalPodAutoscalerType struct { // HorizontalPodAutoscalerTypeInput is an input type that accepts HorizontalPodAutoscalerTypeArgs and HorizontalPodAutoscalerTypeOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerTypeInput` via: // -// HorizontalPodAutoscalerTypeArgs{...} -// +// HorizontalPodAutoscalerTypeArgs{...} type HorizontalPodAutoscalerTypeInput interface { pulumi.Input @@ -626,8 +619,7 @@ func (i HorizontalPodAutoscalerTypeArgs) ToHorizontalPodAutoscalerTypeOutputWith // HorizontalPodAutoscalerTypeArrayInput is an input type that accepts HorizontalPodAutoscalerTypeArray and HorizontalPodAutoscalerTypeArrayOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerTypeArrayInput` via: // -// HorizontalPodAutoscalerTypeArray{ HorizontalPodAutoscalerTypeArgs{...} } -// +// HorizontalPodAutoscalerTypeArray{ HorizontalPodAutoscalerTypeArgs{...} } type HorizontalPodAutoscalerTypeArrayInput interface { pulumi.Input @@ -726,8 +718,7 @@ type HorizontalPodAutoscalerCondition struct { // HorizontalPodAutoscalerConditionInput is an input type that accepts HorizontalPodAutoscalerConditionArgs and HorizontalPodAutoscalerConditionOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerConditionInput` via: // -// HorizontalPodAutoscalerConditionArgs{...} -// +// HorizontalPodAutoscalerConditionArgs{...} type HorizontalPodAutoscalerConditionInput interface { pulumi.Input @@ -764,8 +755,7 @@ func (i HorizontalPodAutoscalerConditionArgs) ToHorizontalPodAutoscalerCondition // HorizontalPodAutoscalerConditionArrayInput is an input type that accepts HorizontalPodAutoscalerConditionArray and HorizontalPodAutoscalerConditionArrayOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerConditionArrayInput` via: // -// HorizontalPodAutoscalerConditionArray{ HorizontalPodAutoscalerConditionArgs{...} } -// +// HorizontalPodAutoscalerConditionArray{ HorizontalPodAutoscalerConditionArgs{...} } type HorizontalPodAutoscalerConditionArrayInput interface { pulumi.Input @@ -862,8 +852,7 @@ type HorizontalPodAutoscalerListType struct { // HorizontalPodAutoscalerListTypeInput is an input type that accepts HorizontalPodAutoscalerListTypeArgs and HorizontalPodAutoscalerListTypeOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerListTypeInput` via: // -// HorizontalPodAutoscalerListTypeArgs{...} -// +// HorizontalPodAutoscalerListTypeArgs{...} type HorizontalPodAutoscalerListTypeInput interface { pulumi.Input @@ -945,8 +934,7 @@ type HorizontalPodAutoscalerSpec struct { // HorizontalPodAutoscalerSpecInput is an input type that accepts HorizontalPodAutoscalerSpecArgs and HorizontalPodAutoscalerSpecOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerSpecInput` via: // -// HorizontalPodAutoscalerSpecArgs{...} -// +// HorizontalPodAutoscalerSpecArgs{...} type HorizontalPodAutoscalerSpecInput interface { pulumi.Input @@ -989,12 +977,11 @@ func (i HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecPtrOutputW // HorizontalPodAutoscalerSpecPtrInput is an input type that accepts HorizontalPodAutoscalerSpecArgs, HorizontalPodAutoscalerSpecPtr and HorizontalPodAutoscalerSpecPtrOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerSpecPtrInput` via: // -// HorizontalPodAutoscalerSpecArgs{...} +// HorizontalPodAutoscalerSpecArgs{...} // // or: // -// nil -// +// nil type HorizontalPodAutoscalerSpecPtrInput interface { pulumi.Input @@ -1142,8 +1129,7 @@ type HorizontalPodAutoscalerStatus struct { // HorizontalPodAutoscalerStatusInput is an input type that accepts HorizontalPodAutoscalerStatusArgs and HorizontalPodAutoscalerStatusOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerStatusInput` via: // -// HorizontalPodAutoscalerStatusArgs{...} -// +// HorizontalPodAutoscalerStatusArgs{...} type HorizontalPodAutoscalerStatusInput interface { pulumi.Input @@ -1190,12 +1176,11 @@ func (i HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusPtrOut // HorizontalPodAutoscalerStatusPtrInput is an input type that accepts HorizontalPodAutoscalerStatusArgs, HorizontalPodAutoscalerStatusPtr and HorizontalPodAutoscalerStatusPtrOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerStatusPtrInput` via: // -// HorizontalPodAutoscalerStatusArgs{...} +// HorizontalPodAutoscalerStatusArgs{...} // // or: // -// nil -// +// nil type HorizontalPodAutoscalerStatusPtrInput interface { pulumi.Input @@ -1371,8 +1356,7 @@ type MetricSpec struct { // MetricSpecInput is an input type that accepts MetricSpecArgs and MetricSpecOutput values. // You can construct a concrete instance of `MetricSpecInput` via: // -// MetricSpecArgs{...} -// +// MetricSpecArgs{...} type MetricSpecInput interface { pulumi.Input @@ -1409,8 +1393,7 @@ func (i MetricSpecArgs) ToMetricSpecOutputWithContext(ctx context.Context) Metri // MetricSpecArrayInput is an input type that accepts MetricSpecArray and MetricSpecArrayOutput values. // You can construct a concrete instance of `MetricSpecArrayInput` via: // -// MetricSpecArray{ MetricSpecArgs{...} } -// +// MetricSpecArray{ MetricSpecArgs{...} } type MetricSpecArrayInput interface { pulumi.Input @@ -1509,8 +1492,7 @@ type MetricStatus struct { // MetricStatusInput is an input type that accepts MetricStatusArgs and MetricStatusOutput values. // You can construct a concrete instance of `MetricStatusInput` via: // -// MetricStatusArgs{...} -// +// MetricStatusArgs{...} type MetricStatusInput interface { pulumi.Input @@ -1547,8 +1529,7 @@ func (i MetricStatusArgs) ToMetricStatusOutputWithContext(ctx context.Context) M // MetricStatusArrayInput is an input type that accepts MetricStatusArray and MetricStatusArrayOutput values. // You can construct a concrete instance of `MetricStatusArrayInput` via: // -// MetricStatusArray{ MetricStatusArgs{...} } -// +// MetricStatusArray{ MetricStatusArgs{...} } type MetricStatusArrayInput interface { pulumi.Input @@ -1647,8 +1628,7 @@ type ObjectMetricSource struct { // ObjectMetricSourceInput is an input type that accepts ObjectMetricSourceArgs and ObjectMetricSourceOutput values. // You can construct a concrete instance of `ObjectMetricSourceInput` via: // -// ObjectMetricSourceArgs{...} -// +// ObjectMetricSourceArgs{...} type ObjectMetricSourceInput interface { pulumi.Input @@ -1693,12 +1673,11 @@ func (i ObjectMetricSourceArgs) ToObjectMetricSourcePtrOutputWithContext(ctx con // ObjectMetricSourcePtrInput is an input type that accepts ObjectMetricSourceArgs, ObjectMetricSourcePtr and ObjectMetricSourcePtrOutput values. // You can construct a concrete instance of `ObjectMetricSourcePtrInput` via: // -// ObjectMetricSourceArgs{...} +// ObjectMetricSourceArgs{...} // // or: // -// nil -// +// nil type ObjectMetricSourcePtrInput interface { pulumi.Input @@ -1859,8 +1838,7 @@ type ObjectMetricStatus struct { // ObjectMetricStatusInput is an input type that accepts ObjectMetricStatusArgs and ObjectMetricStatusOutput values. // You can construct a concrete instance of `ObjectMetricStatusInput` via: // -// ObjectMetricStatusArgs{...} -// +// ObjectMetricStatusArgs{...} type ObjectMetricStatusInput interface { pulumi.Input @@ -1905,12 +1883,11 @@ func (i ObjectMetricStatusArgs) ToObjectMetricStatusPtrOutputWithContext(ctx con // ObjectMetricStatusPtrInput is an input type that accepts ObjectMetricStatusArgs, ObjectMetricStatusPtr and ObjectMetricStatusPtrOutput values. // You can construct a concrete instance of `ObjectMetricStatusPtrInput` via: // -// ObjectMetricStatusArgs{...} +// ObjectMetricStatusArgs{...} // // or: // -// nil -// +// nil type ObjectMetricStatusPtrInput interface { pulumi.Input @@ -2067,8 +2044,7 @@ type PodsMetricSource struct { // PodsMetricSourceInput is an input type that accepts PodsMetricSourceArgs and PodsMetricSourceOutput values. // You can construct a concrete instance of `PodsMetricSourceInput` via: // -// PodsMetricSourceArgs{...} -// +// PodsMetricSourceArgs{...} type PodsMetricSourceInput interface { pulumi.Input @@ -2109,12 +2085,11 @@ func (i PodsMetricSourceArgs) ToPodsMetricSourcePtrOutputWithContext(ctx context // PodsMetricSourcePtrInput is an input type that accepts PodsMetricSourceArgs, PodsMetricSourcePtr and PodsMetricSourcePtrOutput values. // You can construct a concrete instance of `PodsMetricSourcePtrInput` via: // -// PodsMetricSourceArgs{...} +// PodsMetricSourceArgs{...} // // or: // -// nil -// +// nil type PodsMetricSourcePtrInput interface { pulumi.Input @@ -2241,8 +2216,7 @@ type PodsMetricStatus struct { // PodsMetricStatusInput is an input type that accepts PodsMetricStatusArgs and PodsMetricStatusOutput values. // You can construct a concrete instance of `PodsMetricStatusInput` via: // -// PodsMetricStatusArgs{...} -// +// PodsMetricStatusArgs{...} type PodsMetricStatusInput interface { pulumi.Input @@ -2283,12 +2257,11 @@ func (i PodsMetricStatusArgs) ToPodsMetricStatusPtrOutputWithContext(ctx context // PodsMetricStatusPtrInput is an input type that accepts PodsMetricStatusArgs, PodsMetricStatusPtr and PodsMetricStatusPtrOutput values. // You can construct a concrete instance of `PodsMetricStatusPtrInput` via: // -// PodsMetricStatusArgs{...} +// PodsMetricStatusArgs{...} // // or: // -// nil -// +// nil type PodsMetricStatusPtrInput interface { pulumi.Input @@ -2415,8 +2388,7 @@ type ResourceMetricSource struct { // ResourceMetricSourceInput is an input type that accepts ResourceMetricSourceArgs and ResourceMetricSourceOutput values. // You can construct a concrete instance of `ResourceMetricSourceInput` via: // -// ResourceMetricSourceArgs{...} -// +// ResourceMetricSourceArgs{...} type ResourceMetricSourceInput interface { pulumi.Input @@ -2457,12 +2429,11 @@ func (i ResourceMetricSourceArgs) ToResourceMetricSourcePtrOutputWithContext(ctx // ResourceMetricSourcePtrInput is an input type that accepts ResourceMetricSourceArgs, ResourceMetricSourcePtr and ResourceMetricSourcePtrOutput values. // You can construct a concrete instance of `ResourceMetricSourcePtrInput` via: // -// ResourceMetricSourceArgs{...} +// ResourceMetricSourceArgs{...} // // or: // -// nil -// +// nil type ResourceMetricSourcePtrInput interface { pulumi.Input @@ -2589,8 +2560,7 @@ type ResourceMetricStatus struct { // ResourceMetricStatusInput is an input type that accepts ResourceMetricStatusArgs and ResourceMetricStatusOutput values. // You can construct a concrete instance of `ResourceMetricStatusInput` via: // -// ResourceMetricStatusArgs{...} -// +// ResourceMetricStatusArgs{...} type ResourceMetricStatusInput interface { pulumi.Input @@ -2631,12 +2601,11 @@ func (i ResourceMetricStatusArgs) ToResourceMetricStatusPtrOutputWithContext(ctx // ResourceMetricStatusPtrInput is an input type that accepts ResourceMetricStatusArgs, ResourceMetricStatusPtr and ResourceMetricStatusPtrOutput values. // You can construct a concrete instance of `ResourceMetricStatusPtrInput` via: // -// ResourceMetricStatusArgs{...} +// ResourceMetricStatusArgs{...} // // or: // -// nil -// +// nil type ResourceMetricStatusPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/autoscaling/v2beta2/pulumiTypes.go b/sdk/go/kubernetes/autoscaling/v2beta2/pulumiTypes.go index 7bc95fd74b..2ffb2f6084 100644 --- a/sdk/go/kubernetes/autoscaling/v2beta2/pulumiTypes.go +++ b/sdk/go/kubernetes/autoscaling/v2beta2/pulumiTypes.go @@ -24,8 +24,7 @@ type CrossVersionObjectReference struct { // CrossVersionObjectReferenceInput is an input type that accepts CrossVersionObjectReferenceArgs and CrossVersionObjectReferenceOutput values. // You can construct a concrete instance of `CrossVersionObjectReferenceInput` via: // -// CrossVersionObjectReferenceArgs{...} -// +// CrossVersionObjectReferenceArgs{...} type CrossVersionObjectReferenceInput interface { pulumi.Input @@ -66,12 +65,11 @@ func (i CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferencePtrOutputW // CrossVersionObjectReferencePtrInput is an input type that accepts CrossVersionObjectReferenceArgs, CrossVersionObjectReferencePtr and CrossVersionObjectReferencePtrOutput values. // You can construct a concrete instance of `CrossVersionObjectReferencePtrInput` via: // -// CrossVersionObjectReferenceArgs{...} +// CrossVersionObjectReferenceArgs{...} // // or: // -// nil -// +// nil type CrossVersionObjectReferencePtrInput interface { pulumi.Input @@ -196,8 +194,7 @@ type ExternalMetricSource struct { // ExternalMetricSourceInput is an input type that accepts ExternalMetricSourceArgs and ExternalMetricSourceOutput values. // You can construct a concrete instance of `ExternalMetricSourceInput` via: // -// ExternalMetricSourceArgs{...} -// +// ExternalMetricSourceArgs{...} type ExternalMetricSourceInput interface { pulumi.Input @@ -236,12 +233,11 @@ func (i ExternalMetricSourceArgs) ToExternalMetricSourcePtrOutputWithContext(ctx // ExternalMetricSourcePtrInput is an input type that accepts ExternalMetricSourceArgs, ExternalMetricSourcePtr and ExternalMetricSourcePtrOutput values. // You can construct a concrete instance of `ExternalMetricSourcePtrInput` via: // -// ExternalMetricSourceArgs{...} +// ExternalMetricSourceArgs{...} // // or: // -// nil -// +// nil type ExternalMetricSourcePtrInput interface { pulumi.Input @@ -351,8 +347,7 @@ type ExternalMetricStatus struct { // ExternalMetricStatusInput is an input type that accepts ExternalMetricStatusArgs and ExternalMetricStatusOutput values. // You can construct a concrete instance of `ExternalMetricStatusInput` via: // -// ExternalMetricStatusArgs{...} -// +// ExternalMetricStatusArgs{...} type ExternalMetricStatusInput interface { pulumi.Input @@ -391,12 +386,11 @@ func (i ExternalMetricStatusArgs) ToExternalMetricStatusPtrOutputWithContext(ctx // ExternalMetricStatusPtrInput is an input type that accepts ExternalMetricStatusArgs, ExternalMetricStatusPtr and ExternalMetricStatusPtrOutput values. // You can construct a concrete instance of `ExternalMetricStatusPtrInput` via: // -// ExternalMetricStatusArgs{...} +// ExternalMetricStatusArgs{...} // // or: // -// nil -// +// nil type ExternalMetricStatusPtrInput interface { pulumi.Input @@ -508,8 +502,7 @@ type HPAScalingPolicy struct { // HPAScalingPolicyInput is an input type that accepts HPAScalingPolicyArgs and HPAScalingPolicyOutput values. // You can construct a concrete instance of `HPAScalingPolicyInput` via: // -// HPAScalingPolicyArgs{...} -// +// HPAScalingPolicyArgs{...} type HPAScalingPolicyInput interface { pulumi.Input @@ -542,8 +535,7 @@ func (i HPAScalingPolicyArgs) ToHPAScalingPolicyOutputWithContext(ctx context.Co // HPAScalingPolicyArrayInput is an input type that accepts HPAScalingPolicyArray and HPAScalingPolicyArrayOutput values. // You can construct a concrete instance of `HPAScalingPolicyArrayInput` via: // -// HPAScalingPolicyArray{ HPAScalingPolicyArgs{...} } -// +// HPAScalingPolicyArray{ HPAScalingPolicyArgs{...} } type HPAScalingPolicyArrayInput interface { pulumi.Input @@ -628,8 +620,7 @@ type HPAScalingRules struct { // HPAScalingRulesInput is an input type that accepts HPAScalingRulesArgs and HPAScalingRulesOutput values. // You can construct a concrete instance of `HPAScalingRulesInput` via: // -// HPAScalingRulesArgs{...} -// +// HPAScalingRulesArgs{...} type HPAScalingRulesInput interface { pulumi.Input @@ -670,12 +661,11 @@ func (i HPAScalingRulesArgs) ToHPAScalingRulesPtrOutputWithContext(ctx context.C // HPAScalingRulesPtrInput is an input type that accepts HPAScalingRulesArgs, HPAScalingRulesPtr and HPAScalingRulesPtrOutput values. // You can construct a concrete instance of `HPAScalingRulesPtrInput` via: // -// HPAScalingRulesArgs{...} +// HPAScalingRulesArgs{...} // // or: // -// nil -// +// nil type HPAScalingRulesPtrInput interface { pulumi.Input @@ -806,8 +796,7 @@ type HorizontalPodAutoscalerType struct { // HorizontalPodAutoscalerTypeInput is an input type that accepts HorizontalPodAutoscalerTypeArgs and HorizontalPodAutoscalerTypeOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerTypeInput` via: // -// HorizontalPodAutoscalerTypeArgs{...} -// +// HorizontalPodAutoscalerTypeArgs{...} type HorizontalPodAutoscalerTypeInput interface { pulumi.Input @@ -844,8 +833,7 @@ func (i HorizontalPodAutoscalerTypeArgs) ToHorizontalPodAutoscalerTypeOutputWith // HorizontalPodAutoscalerTypeArrayInput is an input type that accepts HorizontalPodAutoscalerTypeArray and HorizontalPodAutoscalerTypeArrayOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerTypeArrayInput` via: // -// HorizontalPodAutoscalerTypeArray{ HorizontalPodAutoscalerTypeArgs{...} } -// +// HorizontalPodAutoscalerTypeArray{ HorizontalPodAutoscalerTypeArgs{...} } type HorizontalPodAutoscalerTypeArrayInput interface { pulumi.Input @@ -934,15 +922,14 @@ type HorizontalPodAutoscalerBehavior struct { // scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of: // * increase no more than 4 pods per 60 seconds // * double the number of pods per 60 seconds - // No stabilization is used. + // No stabilization is used. ScaleUp *HPAScalingRules `pulumi:"scaleUp"` } // HorizontalPodAutoscalerBehaviorInput is an input type that accepts HorizontalPodAutoscalerBehaviorArgs and HorizontalPodAutoscalerBehaviorOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerBehaviorInput` via: // -// HorizontalPodAutoscalerBehaviorArgs{...} -// +// HorizontalPodAutoscalerBehaviorArgs{...} type HorizontalPodAutoscalerBehaviorInput interface { pulumi.Input @@ -957,7 +944,7 @@ type HorizontalPodAutoscalerBehaviorArgs struct { // scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of: // * increase no more than 4 pods per 60 seconds // * double the number of pods per 60 seconds - // No stabilization is used. + // No stabilization is used. ScaleUp HPAScalingRulesPtrInput `pulumi:"scaleUp"` } @@ -984,12 +971,11 @@ func (i HorizontalPodAutoscalerBehaviorArgs) ToHorizontalPodAutoscalerBehaviorPt // HorizontalPodAutoscalerBehaviorPtrInput is an input type that accepts HorizontalPodAutoscalerBehaviorArgs, HorizontalPodAutoscalerBehaviorPtr and HorizontalPodAutoscalerBehaviorPtrOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerBehaviorPtrInput` via: // -// HorizontalPodAutoscalerBehaviorArgs{...} +// HorizontalPodAutoscalerBehaviorArgs{...} // // or: // -// nil -// +// nil type HorizontalPodAutoscalerBehaviorPtrInput interface { pulumi.Input @@ -1048,7 +1034,7 @@ func (o HorizontalPodAutoscalerBehaviorOutput) ScaleDown() HPAScalingRulesPtrOut // scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of: // * increase no more than 4 pods per 60 seconds // * double the number of pods per 60 seconds -// No stabilization is used. +// No stabilization is used. func (o HorizontalPodAutoscalerBehaviorOutput) ScaleUp() HPAScalingRulesPtrOutput { return o.ApplyT(func(v HorizontalPodAutoscalerBehavior) *HPAScalingRules { return v.ScaleUp }).(HPAScalingRulesPtrOutput) } @@ -1084,7 +1070,7 @@ func (o HorizontalPodAutoscalerBehaviorPtrOutput) ScaleDown() HPAScalingRulesPtr // scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of: // * increase no more than 4 pods per 60 seconds // * double the number of pods per 60 seconds -// No stabilization is used. +// No stabilization is used. func (o HorizontalPodAutoscalerBehaviorPtrOutput) ScaleUp() HPAScalingRulesPtrOutput { return o.ApplyT(func(v *HorizontalPodAutoscalerBehavior) *HPAScalingRules { if v == nil { @@ -1111,8 +1097,7 @@ type HorizontalPodAutoscalerCondition struct { // HorizontalPodAutoscalerConditionInput is an input type that accepts HorizontalPodAutoscalerConditionArgs and HorizontalPodAutoscalerConditionOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerConditionInput` via: // -// HorizontalPodAutoscalerConditionArgs{...} -// +// HorizontalPodAutoscalerConditionArgs{...} type HorizontalPodAutoscalerConditionInput interface { pulumi.Input @@ -1149,8 +1134,7 @@ func (i HorizontalPodAutoscalerConditionArgs) ToHorizontalPodAutoscalerCondition // HorizontalPodAutoscalerConditionArrayInput is an input type that accepts HorizontalPodAutoscalerConditionArray and HorizontalPodAutoscalerConditionArrayOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerConditionArrayInput` via: // -// HorizontalPodAutoscalerConditionArray{ HorizontalPodAutoscalerConditionArgs{...} } -// +// HorizontalPodAutoscalerConditionArray{ HorizontalPodAutoscalerConditionArgs{...} } type HorizontalPodAutoscalerConditionArrayInput interface { pulumi.Input @@ -1247,8 +1231,7 @@ type HorizontalPodAutoscalerListType struct { // HorizontalPodAutoscalerListTypeInput is an input type that accepts HorizontalPodAutoscalerListTypeArgs and HorizontalPodAutoscalerListTypeOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerListTypeInput` via: // -// HorizontalPodAutoscalerListTypeArgs{...} -// +// HorizontalPodAutoscalerListTypeArgs{...} type HorizontalPodAutoscalerListTypeInput interface { pulumi.Input @@ -1332,8 +1315,7 @@ type HorizontalPodAutoscalerSpec struct { // HorizontalPodAutoscalerSpecInput is an input type that accepts HorizontalPodAutoscalerSpecArgs and HorizontalPodAutoscalerSpecOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerSpecInput` via: // -// HorizontalPodAutoscalerSpecArgs{...} -// +// HorizontalPodAutoscalerSpecArgs{...} type HorizontalPodAutoscalerSpecInput interface { pulumi.Input @@ -1378,12 +1360,11 @@ func (i HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecPtrOutputW // HorizontalPodAutoscalerSpecPtrInput is an input type that accepts HorizontalPodAutoscalerSpecArgs, HorizontalPodAutoscalerSpecPtr and HorizontalPodAutoscalerSpecPtrOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerSpecPtrInput` via: // -// HorizontalPodAutoscalerSpecArgs{...} +// HorizontalPodAutoscalerSpecArgs{...} // // or: // -// nil -// +// nil type HorizontalPodAutoscalerSpecPtrInput interface { pulumi.Input @@ -1546,8 +1527,7 @@ type HorizontalPodAutoscalerStatus struct { // HorizontalPodAutoscalerStatusInput is an input type that accepts HorizontalPodAutoscalerStatusArgs and HorizontalPodAutoscalerStatusOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerStatusInput` via: // -// HorizontalPodAutoscalerStatusArgs{...} -// +// HorizontalPodAutoscalerStatusArgs{...} type HorizontalPodAutoscalerStatusInput interface { pulumi.Input @@ -1594,12 +1574,11 @@ func (i HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusPtrOut // HorizontalPodAutoscalerStatusPtrInput is an input type that accepts HorizontalPodAutoscalerStatusArgs, HorizontalPodAutoscalerStatusPtr and HorizontalPodAutoscalerStatusPtrOutput values. // You can construct a concrete instance of `HorizontalPodAutoscalerStatusPtrInput` via: // -// HorizontalPodAutoscalerStatusArgs{...} +// HorizontalPodAutoscalerStatusArgs{...} // // or: // -// nil -// +// nil type HorizontalPodAutoscalerStatusPtrInput interface { pulumi.Input @@ -1769,8 +1748,7 @@ type MetricIdentifier struct { // MetricIdentifierInput is an input type that accepts MetricIdentifierArgs and MetricIdentifierOutput values. // You can construct a concrete instance of `MetricIdentifierInput` via: // -// MetricIdentifierArgs{...} -// +// MetricIdentifierArgs{...} type MetricIdentifierInput interface { pulumi.Input @@ -1809,12 +1787,11 @@ func (i MetricIdentifierArgs) ToMetricIdentifierPtrOutputWithContext(ctx context // MetricIdentifierPtrInput is an input type that accepts MetricIdentifierArgs, MetricIdentifierPtr and MetricIdentifierPtrOutput values. // You can construct a concrete instance of `MetricIdentifierPtrInput` via: // -// MetricIdentifierArgs{...} +// MetricIdentifierArgs{...} // // or: // -// nil -// +// nil type MetricIdentifierPtrInput interface { pulumi.Input @@ -1930,8 +1907,7 @@ type MetricSpec struct { // MetricSpecInput is an input type that accepts MetricSpecArgs and MetricSpecOutput values. // You can construct a concrete instance of `MetricSpecInput` via: // -// MetricSpecArgs{...} -// +// MetricSpecArgs{...} type MetricSpecInput interface { pulumi.Input @@ -1968,8 +1944,7 @@ func (i MetricSpecArgs) ToMetricSpecOutputWithContext(ctx context.Context) Metri // MetricSpecArrayInput is an input type that accepts MetricSpecArray and MetricSpecArrayOutput values. // You can construct a concrete instance of `MetricSpecArrayInput` via: // -// MetricSpecArray{ MetricSpecArgs{...} } -// +// MetricSpecArray{ MetricSpecArgs{...} } type MetricSpecArrayInput interface { pulumi.Input @@ -2068,8 +2043,7 @@ type MetricStatus struct { // MetricStatusInput is an input type that accepts MetricStatusArgs and MetricStatusOutput values. // You can construct a concrete instance of `MetricStatusInput` via: // -// MetricStatusArgs{...} -// +// MetricStatusArgs{...} type MetricStatusInput interface { pulumi.Input @@ -2106,8 +2080,7 @@ func (i MetricStatusArgs) ToMetricStatusOutputWithContext(ctx context.Context) M // MetricStatusArrayInput is an input type that accepts MetricStatusArray and MetricStatusArrayOutput values. // You can construct a concrete instance of `MetricStatusArrayInput` via: // -// MetricStatusArray{ MetricStatusArgs{...} } -// +// MetricStatusArray{ MetricStatusArgs{...} } type MetricStatusArrayInput interface { pulumi.Input @@ -2204,8 +2177,7 @@ type MetricTarget struct { // MetricTargetInput is an input type that accepts MetricTargetArgs and MetricTargetOutput values. // You can construct a concrete instance of `MetricTargetInput` via: // -// MetricTargetArgs{...} -// +// MetricTargetArgs{...} type MetricTargetInput interface { pulumi.Input @@ -2248,12 +2220,11 @@ func (i MetricTargetArgs) ToMetricTargetPtrOutputWithContext(ctx context.Context // MetricTargetPtrInput is an input type that accepts MetricTargetArgs, MetricTargetPtr and MetricTargetPtrOutput values. // You can construct a concrete instance of `MetricTargetPtrInput` via: // -// MetricTargetArgs{...} +// MetricTargetArgs{...} // // or: // -// nil -// +// nil type MetricTargetPtrInput interface { pulumi.Input @@ -2395,8 +2366,7 @@ type MetricValueStatus struct { // MetricValueStatusInput is an input type that accepts MetricValueStatusArgs and MetricValueStatusOutput values. // You can construct a concrete instance of `MetricValueStatusInput` via: // -// MetricValueStatusArgs{...} -// +// MetricValueStatusArgs{...} type MetricValueStatusInput interface { pulumi.Input @@ -2437,12 +2407,11 @@ func (i MetricValueStatusArgs) ToMetricValueStatusPtrOutputWithContext(ctx conte // MetricValueStatusPtrInput is an input type that accepts MetricValueStatusArgs, MetricValueStatusPtr and MetricValueStatusPtrOutput values. // You can construct a concrete instance of `MetricValueStatusPtrInput` via: // -// MetricValueStatusArgs{...} +// MetricValueStatusArgs{...} // // or: // -// nil -// +// nil type MetricValueStatusPtrInput interface { pulumi.Input @@ -2568,8 +2537,7 @@ type ObjectMetricSource struct { // ObjectMetricSourceInput is an input type that accepts ObjectMetricSourceArgs and ObjectMetricSourceOutput values. // You can construct a concrete instance of `ObjectMetricSourceInput` via: // -// ObjectMetricSourceArgs{...} -// +// ObjectMetricSourceArgs{...} type ObjectMetricSourceInput interface { pulumi.Input @@ -2609,12 +2577,11 @@ func (i ObjectMetricSourceArgs) ToObjectMetricSourcePtrOutputWithContext(ctx con // ObjectMetricSourcePtrInput is an input type that accepts ObjectMetricSourceArgs, ObjectMetricSourcePtr and ObjectMetricSourcePtrOutput values. // You can construct a concrete instance of `ObjectMetricSourcePtrInput` via: // -// ObjectMetricSourceArgs{...} +// ObjectMetricSourceArgs{...} // // or: // -// nil -// +// nil type ObjectMetricSourcePtrInput interface { pulumi.Input @@ -2737,8 +2704,7 @@ type ObjectMetricStatus struct { // ObjectMetricStatusInput is an input type that accepts ObjectMetricStatusArgs and ObjectMetricStatusOutput values. // You can construct a concrete instance of `ObjectMetricStatusInput` via: // -// ObjectMetricStatusArgs{...} -// +// ObjectMetricStatusArgs{...} type ObjectMetricStatusInput interface { pulumi.Input @@ -2778,12 +2744,11 @@ func (i ObjectMetricStatusArgs) ToObjectMetricStatusPtrOutputWithContext(ctx con // ObjectMetricStatusPtrInput is an input type that accepts ObjectMetricStatusArgs, ObjectMetricStatusPtr and ObjectMetricStatusPtrOutput values. // You can construct a concrete instance of `ObjectMetricStatusPtrInput` via: // -// ObjectMetricStatusArgs{...} +// ObjectMetricStatusArgs{...} // // or: // -// nil -// +// nil type ObjectMetricStatusPtrInput interface { pulumi.Input @@ -2906,8 +2871,7 @@ type PodsMetricSource struct { // PodsMetricSourceInput is an input type that accepts PodsMetricSourceArgs and PodsMetricSourceOutput values. // You can construct a concrete instance of `PodsMetricSourceInput` via: // -// PodsMetricSourceArgs{...} -// +// PodsMetricSourceArgs{...} type PodsMetricSourceInput interface { pulumi.Input @@ -2946,12 +2910,11 @@ func (i PodsMetricSourceArgs) ToPodsMetricSourcePtrOutputWithContext(ctx context // PodsMetricSourcePtrInput is an input type that accepts PodsMetricSourceArgs, PodsMetricSourcePtr and PodsMetricSourcePtrOutput values. // You can construct a concrete instance of `PodsMetricSourcePtrInput` via: // -// PodsMetricSourceArgs{...} +// PodsMetricSourceArgs{...} // // or: // -// nil -// +// nil type PodsMetricSourcePtrInput interface { pulumi.Input @@ -3061,8 +3024,7 @@ type PodsMetricStatus struct { // PodsMetricStatusInput is an input type that accepts PodsMetricStatusArgs and PodsMetricStatusOutput values. // You can construct a concrete instance of `PodsMetricStatusInput` via: // -// PodsMetricStatusArgs{...} -// +// PodsMetricStatusArgs{...} type PodsMetricStatusInput interface { pulumi.Input @@ -3101,12 +3063,11 @@ func (i PodsMetricStatusArgs) ToPodsMetricStatusPtrOutputWithContext(ctx context // PodsMetricStatusPtrInput is an input type that accepts PodsMetricStatusArgs, PodsMetricStatusPtr and PodsMetricStatusPtrOutput values. // You can construct a concrete instance of `PodsMetricStatusPtrInput` via: // -// PodsMetricStatusArgs{...} +// PodsMetricStatusArgs{...} // // or: // -// nil -// +// nil type PodsMetricStatusPtrInput interface { pulumi.Input @@ -3216,8 +3177,7 @@ type ResourceMetricSource struct { // ResourceMetricSourceInput is an input type that accepts ResourceMetricSourceArgs and ResourceMetricSourceOutput values. // You can construct a concrete instance of `ResourceMetricSourceInput` via: // -// ResourceMetricSourceArgs{...} -// +// ResourceMetricSourceArgs{...} type ResourceMetricSourceInput interface { pulumi.Input @@ -3256,12 +3216,11 @@ func (i ResourceMetricSourceArgs) ToResourceMetricSourcePtrOutputWithContext(ctx // ResourceMetricSourcePtrInput is an input type that accepts ResourceMetricSourceArgs, ResourceMetricSourcePtr and ResourceMetricSourcePtrOutput values. // You can construct a concrete instance of `ResourceMetricSourcePtrInput` via: // -// ResourceMetricSourceArgs{...} +// ResourceMetricSourceArgs{...} // // or: // -// nil -// +// nil type ResourceMetricSourcePtrInput interface { pulumi.Input @@ -3371,8 +3330,7 @@ type ResourceMetricStatus struct { // ResourceMetricStatusInput is an input type that accepts ResourceMetricStatusArgs and ResourceMetricStatusOutput values. // You can construct a concrete instance of `ResourceMetricStatusInput` via: // -// ResourceMetricStatusArgs{...} -// +// ResourceMetricStatusArgs{...} type ResourceMetricStatusInput interface { pulumi.Input @@ -3411,12 +3369,11 @@ func (i ResourceMetricStatusArgs) ToResourceMetricStatusPtrOutputWithContext(ctx // ResourceMetricStatusPtrInput is an input type that accepts ResourceMetricStatusArgs, ResourceMetricStatusPtr and ResourceMetricStatusPtrOutput values. // You can construct a concrete instance of `ResourceMetricStatusPtrInput` via: // -// ResourceMetricStatusArgs{...} +// ResourceMetricStatusArgs{...} // // or: // -// nil -// +// nil type ResourceMetricStatusPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/batch/v1/job.go b/sdk/go/kubernetes/batch/v1/job.go index 7b7926b899..3692e53e95 100644 --- a/sdk/go/kubernetes/batch/v1/job.go +++ b/sdk/go/kubernetes/batch/v1/job.go @@ -21,7 +21,7 @@ import ( // 2. The Job's '.status.conditions' has a status of type 'Complete', and a 'status' set // to 'True'. // 3. The Job's '.status.conditions' do not have a status of type 'Failed', with a -// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. +// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. // // If the Job has not reached a Ready state after 10 minutes, it will // time out and mark the resource update as Failed. You can override the default timeout value diff --git a/sdk/go/kubernetes/batch/v1/pulumiTypes.go b/sdk/go/kubernetes/batch/v1/pulumiTypes.go index 9f13d532c7..48deec1912 100644 --- a/sdk/go/kubernetes/batch/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/batch/v1/pulumiTypes.go @@ -23,7 +23,7 @@ import ( // 2. The Job's '.status.conditions' has a status of type 'Complete', and a 'status' set // to 'True'. // 3. The Job's '.status.conditions' do not have a status of type 'Failed', with a -// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. +// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. // // If the Job has not reached a Ready state after 10 minutes, it will // time out and mark the resource update as Failed. You can override the default timeout value @@ -44,8 +44,7 @@ type JobType struct { // JobTypeInput is an input type that accepts JobTypeArgs and JobTypeOutput values. // You can construct a concrete instance of `JobTypeInput` via: // -// JobTypeArgs{...} -// +// JobTypeArgs{...} type JobTypeInput interface { pulumi.Input @@ -64,7 +63,7 @@ type JobTypeInput interface { // 2. The Job's '.status.conditions' has a status of type 'Complete', and a 'status' set // to 'True'. // 3. The Job's '.status.conditions' do not have a status of type 'Failed', with a -// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. +// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. // // If the Job has not reached a Ready state after 10 minutes, it will // time out and mark the resource update as Failed. You can override the default timeout value @@ -97,8 +96,7 @@ func (i JobTypeArgs) ToJobTypeOutputWithContext(ctx context.Context) JobTypeOutp // JobTypeArrayInput is an input type that accepts JobTypeArray and JobTypeArrayOutput values. // You can construct a concrete instance of `JobTypeArrayInput` via: // -// JobTypeArray{ JobTypeArgs{...} } -// +// JobTypeArray{ JobTypeArgs{...} } type JobTypeArrayInput interface { pulumi.Input @@ -131,7 +129,7 @@ func (i JobTypeArray) ToJobTypeArrayOutputWithContext(ctx context.Context) JobTy // 2. The Job's '.status.conditions' has a status of type 'Complete', and a 'status' set // to 'True'. // 3. The Job's '.status.conditions' do not have a status of type 'Failed', with a -// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. +// 'status' set to 'True'. If this condition is set, we should fail the Job immediately. // // If the Job has not reached a Ready state after 10 minutes, it will // time out and mark the resource update as Failed. You can override the default timeout value @@ -214,8 +212,7 @@ type JobCondition struct { // JobConditionInput is an input type that accepts JobConditionArgs and JobConditionOutput values. // You can construct a concrete instance of `JobConditionInput` via: // -// JobConditionArgs{...} -// +// JobConditionArgs{...} type JobConditionInput interface { pulumi.Input @@ -254,8 +251,7 @@ func (i JobConditionArgs) ToJobConditionOutputWithContext(ctx context.Context) J // JobConditionArrayInput is an input type that accepts JobConditionArray and JobConditionArrayOutput values. // You can construct a concrete instance of `JobConditionArrayInput` via: // -// JobConditionArray{ JobConditionArgs{...} } -// +// JobConditionArray{ JobConditionArgs{...} } type JobConditionArrayInput interface { pulumi.Input @@ -357,8 +353,7 @@ type JobListType struct { // JobListTypeInput is an input type that accepts JobListTypeArgs and JobListTypeOutput values. // You can construct a concrete instance of `JobListTypeInput` via: // -// JobListTypeArgs{...} -// +// JobListTypeArgs{...} type JobListTypeInput interface { pulumi.Input @@ -448,8 +443,7 @@ type JobSpec struct { // JobSpecInput is an input type that accepts JobSpecArgs and JobSpecOutput values. // You can construct a concrete instance of `JobSpecInput` via: // -// JobSpecArgs{...} -// +// JobSpecArgs{...} type JobSpecInput interface { pulumi.Input @@ -500,12 +494,11 @@ func (i JobSpecArgs) ToJobSpecPtrOutputWithContext(ctx context.Context) JobSpecP // JobSpecPtrInput is an input type that accepts JobSpecArgs, JobSpecPtr and JobSpecPtrOutput values. // You can construct a concrete instance of `JobSpecPtrInput` via: // -// JobSpecArgs{...} +// JobSpecArgs{...} // // or: // -// nil -// +// nil type JobSpecPtrInput interface { pulumi.Input @@ -713,8 +706,7 @@ type JobStatus struct { // JobStatusInput is an input type that accepts JobStatusArgs and JobStatusOutput values. // You can construct a concrete instance of `JobStatusInput` via: // -// JobStatusArgs{...} -// +// JobStatusArgs{...} type JobStatusInput interface { pulumi.Input @@ -761,12 +753,11 @@ func (i JobStatusArgs) ToJobStatusPtrOutputWithContext(ctx context.Context) JobS // JobStatusPtrInput is an input type that accepts JobStatusArgs, JobStatusPtr and JobStatusPtrOutput values. // You can construct a concrete instance of `JobStatusPtrInput` via: // -// JobStatusArgs{...} +// JobStatusArgs{...} // // or: // -// nil -// +// nil type JobStatusPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/batch/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/batch/v1beta1/pulumiTypes.go index 8db776f781..428b8b4a50 100644 --- a/sdk/go/kubernetes/batch/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/batch/v1beta1/pulumiTypes.go @@ -30,8 +30,7 @@ type CronJobType struct { // CronJobTypeInput is an input type that accepts CronJobTypeArgs and CronJobTypeOutput values. // You can construct a concrete instance of `CronJobTypeInput` via: // -// CronJobTypeArgs{...} -// +// CronJobTypeArgs{...} type CronJobTypeInput interface { pulumi.Input @@ -68,8 +67,7 @@ func (i CronJobTypeArgs) ToCronJobTypeOutputWithContext(ctx context.Context) Cro // CronJobTypeArrayInput is an input type that accepts CronJobTypeArray and CronJobTypeArrayOutput values. // You can construct a concrete instance of `CronJobTypeArrayInput` via: // -// CronJobTypeArray{ CronJobTypeArgs{...} } -// +// CronJobTypeArray{ CronJobTypeArgs{...} } type CronJobTypeArrayInput interface { pulumi.Input @@ -166,8 +164,7 @@ type CronJobListType struct { // CronJobListTypeInput is an input type that accepts CronJobListTypeArgs and CronJobListTypeOutput values. // You can construct a concrete instance of `CronJobListTypeInput` via: // -// CronJobListTypeArgs{...} -// +// CronJobListTypeArgs{...} type CronJobListTypeInput interface { pulumi.Input @@ -255,8 +252,7 @@ type CronJobSpec struct { // CronJobSpecInput is an input type that accepts CronJobSpecArgs and CronJobSpecOutput values. // You can construct a concrete instance of `CronJobSpecInput` via: // -// CronJobSpecArgs{...} -// +// CronJobSpecArgs{...} type CronJobSpecInput interface { pulumi.Input @@ -305,12 +301,11 @@ func (i CronJobSpecArgs) ToCronJobSpecPtrOutputWithContext(ctx context.Context) // CronJobSpecPtrInput is an input type that accepts CronJobSpecArgs, CronJobSpecPtr and CronJobSpecPtrOutput values. // You can construct a concrete instance of `CronJobSpecPtrInput` via: // -// CronJobSpecArgs{...} +// CronJobSpecArgs{...} // // or: // -// nil -// +// nil type CronJobSpecPtrInput interface { pulumi.Input @@ -495,8 +490,7 @@ type CronJobStatus struct { // CronJobStatusInput is an input type that accepts CronJobStatusArgs and CronJobStatusOutput values. // You can construct a concrete instance of `CronJobStatusInput` via: // -// CronJobStatusArgs{...} -// +// CronJobStatusArgs{...} type CronJobStatusInput interface { pulumi.Input @@ -535,12 +529,11 @@ func (i CronJobStatusArgs) ToCronJobStatusPtrOutputWithContext(ctx context.Conte // CronJobStatusPtrInput is an input type that accepts CronJobStatusArgs, CronJobStatusPtr and CronJobStatusPtrOutput values. // You can construct a concrete instance of `CronJobStatusPtrInput` via: // -// CronJobStatusArgs{...} +// CronJobStatusArgs{...} // // or: // -// nil -// +// nil type CronJobStatusPtrInput interface { pulumi.Input @@ -650,8 +643,7 @@ type JobTemplateSpec struct { // JobTemplateSpecInput is an input type that accepts JobTemplateSpecArgs and JobTemplateSpecOutput values. // You can construct a concrete instance of `JobTemplateSpecInput` via: // -// JobTemplateSpecArgs{...} -// +// JobTemplateSpecArgs{...} type JobTemplateSpecInput interface { pulumi.Input @@ -690,12 +682,11 @@ func (i JobTemplateSpecArgs) ToJobTemplateSpecPtrOutputWithContext(ctx context.C // JobTemplateSpecPtrInput is an input type that accepts JobTemplateSpecArgs, JobTemplateSpecPtr and JobTemplateSpecPtrOutput values. // You can construct a concrete instance of `JobTemplateSpecPtrInput` via: // -// JobTemplateSpecArgs{...} +// JobTemplateSpecArgs{...} // // or: // -// nil -// +// nil type JobTemplateSpecPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/batch/v2alpha1/pulumiTypes.go b/sdk/go/kubernetes/batch/v2alpha1/pulumiTypes.go index 06e9131bdd..0a54e48a19 100644 --- a/sdk/go/kubernetes/batch/v2alpha1/pulumiTypes.go +++ b/sdk/go/kubernetes/batch/v2alpha1/pulumiTypes.go @@ -30,8 +30,7 @@ type CronJobType struct { // CronJobTypeInput is an input type that accepts CronJobTypeArgs and CronJobTypeOutput values. // You can construct a concrete instance of `CronJobTypeInput` via: // -// CronJobTypeArgs{...} -// +// CronJobTypeArgs{...} type CronJobTypeInput interface { pulumi.Input @@ -68,8 +67,7 @@ func (i CronJobTypeArgs) ToCronJobTypeOutputWithContext(ctx context.Context) Cro // CronJobTypeArrayInput is an input type that accepts CronJobTypeArray and CronJobTypeArrayOutput values. // You can construct a concrete instance of `CronJobTypeArrayInput` via: // -// CronJobTypeArray{ CronJobTypeArgs{...} } -// +// CronJobTypeArray{ CronJobTypeArgs{...} } type CronJobTypeArrayInput interface { pulumi.Input @@ -166,8 +164,7 @@ type CronJobListType struct { // CronJobListTypeInput is an input type that accepts CronJobListTypeArgs and CronJobListTypeOutput values. // You can construct a concrete instance of `CronJobListTypeInput` via: // -// CronJobListTypeArgs{...} -// +// CronJobListTypeArgs{...} type CronJobListTypeInput interface { pulumi.Input @@ -255,8 +252,7 @@ type CronJobSpec struct { // CronJobSpecInput is an input type that accepts CronJobSpecArgs and CronJobSpecOutput values. // You can construct a concrete instance of `CronJobSpecInput` via: // -// CronJobSpecArgs{...} -// +// CronJobSpecArgs{...} type CronJobSpecInput interface { pulumi.Input @@ -305,12 +301,11 @@ func (i CronJobSpecArgs) ToCronJobSpecPtrOutputWithContext(ctx context.Context) // CronJobSpecPtrInput is an input type that accepts CronJobSpecArgs, CronJobSpecPtr and CronJobSpecPtrOutput values. // You can construct a concrete instance of `CronJobSpecPtrInput` via: // -// CronJobSpecArgs{...} +// CronJobSpecArgs{...} // // or: // -// nil -// +// nil type CronJobSpecPtrInput interface { pulumi.Input @@ -495,8 +490,7 @@ type CronJobStatus struct { // CronJobStatusInput is an input type that accepts CronJobStatusArgs and CronJobStatusOutput values. // You can construct a concrete instance of `CronJobStatusInput` via: // -// CronJobStatusArgs{...} -// +// CronJobStatusArgs{...} type CronJobStatusInput interface { pulumi.Input @@ -535,12 +529,11 @@ func (i CronJobStatusArgs) ToCronJobStatusPtrOutputWithContext(ctx context.Conte // CronJobStatusPtrInput is an input type that accepts CronJobStatusArgs, CronJobStatusPtr and CronJobStatusPtrOutput values. // You can construct a concrete instance of `CronJobStatusPtrInput` via: // -// CronJobStatusArgs{...} +// CronJobStatusArgs{...} // // or: // -// nil -// +// nil type CronJobStatusPtrInput interface { pulumi.Input @@ -650,8 +643,7 @@ type JobTemplateSpec struct { // JobTemplateSpecInput is an input type that accepts JobTemplateSpecArgs and JobTemplateSpecOutput values. // You can construct a concrete instance of `JobTemplateSpecInput` via: // -// JobTemplateSpecArgs{...} -// +// JobTemplateSpecArgs{...} type JobTemplateSpecInput interface { pulumi.Input @@ -690,12 +682,11 @@ func (i JobTemplateSpecArgs) ToJobTemplateSpecPtrOutputWithContext(ctx context.C // JobTemplateSpecPtrInput is an input type that accepts JobTemplateSpecArgs, JobTemplateSpecPtr and JobTemplateSpecPtrOutput values. // You can construct a concrete instance of `JobTemplateSpecPtrInput` via: // -// JobTemplateSpecArgs{...} +// JobTemplateSpecArgs{...} // // or: // -// nil -// +// nil type JobTemplateSpecPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/certificates/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/certificates/v1beta1/pulumiTypes.go index 7b0615c024..35eece7b74 100644 --- a/sdk/go/kubernetes/certificates/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/certificates/v1beta1/pulumiTypes.go @@ -27,8 +27,7 @@ type CertificateSigningRequestType struct { // CertificateSigningRequestTypeInput is an input type that accepts CertificateSigningRequestTypeArgs and CertificateSigningRequestTypeOutput values. // You can construct a concrete instance of `CertificateSigningRequestTypeInput` via: // -// CertificateSigningRequestTypeArgs{...} -// +// CertificateSigningRequestTypeArgs{...} type CertificateSigningRequestTypeInput interface { pulumi.Input @@ -64,8 +63,7 @@ func (i CertificateSigningRequestTypeArgs) ToCertificateSigningRequestTypeOutput // CertificateSigningRequestTypeArrayInput is an input type that accepts CertificateSigningRequestTypeArray and CertificateSigningRequestTypeArrayOutput values. // You can construct a concrete instance of `CertificateSigningRequestTypeArrayInput` via: // -// CertificateSigningRequestTypeArray{ CertificateSigningRequestTypeArgs{...} } -// +// CertificateSigningRequestTypeArray{ CertificateSigningRequestTypeArgs{...} } type CertificateSigningRequestTypeArrayInput interface { pulumi.Input @@ -160,8 +158,7 @@ type CertificateSigningRequestCondition struct { // CertificateSigningRequestConditionInput is an input type that accepts CertificateSigningRequestConditionArgs and CertificateSigningRequestConditionOutput values. // You can construct a concrete instance of `CertificateSigningRequestConditionInput` via: // -// CertificateSigningRequestConditionArgs{...} -// +// CertificateSigningRequestConditionArgs{...} type CertificateSigningRequestConditionInput interface { pulumi.Input @@ -195,8 +192,7 @@ func (i CertificateSigningRequestConditionArgs) ToCertificateSigningRequestCondi // CertificateSigningRequestConditionArrayInput is an input type that accepts CertificateSigningRequestConditionArray and CertificateSigningRequestConditionArrayOutput values. // You can construct a concrete instance of `CertificateSigningRequestConditionArrayInput` via: // -// CertificateSigningRequestConditionArray{ CertificateSigningRequestConditionArgs{...} } -// +// CertificateSigningRequestConditionArray{ CertificateSigningRequestConditionArgs{...} } type CertificateSigningRequestConditionArrayInput interface { pulumi.Input @@ -284,8 +280,7 @@ type CertificateSigningRequestListType struct { // CertificateSigningRequestListTypeInput is an input type that accepts CertificateSigningRequestListTypeArgs and CertificateSigningRequestListTypeOutput values. // You can construct a concrete instance of `CertificateSigningRequestListTypeInput` via: // -// CertificateSigningRequestListTypeArgs{...} -// +// CertificateSigningRequestListTypeArgs{...} type CertificateSigningRequestListTypeInput interface { pulumi.Input @@ -360,7 +355,7 @@ type CertificateSigningRequestSpec struct { // 2. If it's a kubelet serving certificate, it is assigned // "kubernetes.io/kubelet-serving". // 3. Otherwise, it is assigned "kubernetes.io/legacy-unknown". - // Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. + // Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. SignerName *string `pulumi:"signerName"` // UID information about the requesting user. See user.Info interface for details. Uid *string `pulumi:"uid"` @@ -374,8 +369,7 @@ type CertificateSigningRequestSpec struct { // CertificateSigningRequestSpecInput is an input type that accepts CertificateSigningRequestSpecArgs and CertificateSigningRequestSpecOutput values. // You can construct a concrete instance of `CertificateSigningRequestSpecInput` via: // -// CertificateSigningRequestSpecArgs{...} -// +// CertificateSigningRequestSpecArgs{...} type CertificateSigningRequestSpecInput interface { pulumi.Input @@ -397,7 +391,7 @@ type CertificateSigningRequestSpecArgs struct { // 2. If it's a kubelet serving certificate, it is assigned // "kubernetes.io/kubelet-serving". // 3. Otherwise, it is assigned "kubernetes.io/legacy-unknown". - // Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. + // Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. SignerName pulumi.StringPtrInput `pulumi:"signerName"` // UID information about the requesting user. See user.Info interface for details. Uid pulumi.StringPtrInput `pulumi:"uid"` @@ -431,12 +425,11 @@ func (i CertificateSigningRequestSpecArgs) ToCertificateSigningRequestSpecPtrOut // CertificateSigningRequestSpecPtrInput is an input type that accepts CertificateSigningRequestSpecArgs, CertificateSigningRequestSpecPtr and CertificateSigningRequestSpecPtrOutput values. // You can construct a concrete instance of `CertificateSigningRequestSpecPtrInput` via: // -// CertificateSigningRequestSpecArgs{...} +// CertificateSigningRequestSpecArgs{...} // // or: // -// nil -// +// nil type CertificateSigningRequestSpecPtrInput interface { pulumi.Input @@ -508,7 +501,7 @@ func (o CertificateSigningRequestSpecOutput) Request() pulumi.StringOutput { // 2. If it's a kubelet serving certificate, it is assigned // "kubernetes.io/kubelet-serving". // 3. Otherwise, it is assigned "kubernetes.io/legacy-unknown". -// Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. +// Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. func (o CertificateSigningRequestSpecOutput) SignerName() pulumi.StringPtrOutput { return o.ApplyT(func(v CertificateSigningRequestSpec) *string { return v.SignerName }).(pulumi.StringPtrOutput) } @@ -583,7 +576,7 @@ func (o CertificateSigningRequestSpecPtrOutput) Request() pulumi.StringPtrOutput // 2. If it's a kubelet serving certificate, it is assigned // "kubernetes.io/kubelet-serving". // 3. Otherwise, it is assigned "kubernetes.io/legacy-unknown". -// Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. +// Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. func (o CertificateSigningRequestSpecPtrOutput) SignerName() pulumi.StringPtrOutput { return o.ApplyT(func(v *CertificateSigningRequestSpec) *string { if v == nil { @@ -634,8 +627,7 @@ type CertificateSigningRequestStatus struct { // CertificateSigningRequestStatusInput is an input type that accepts CertificateSigningRequestStatusArgs and CertificateSigningRequestStatusOutput values. // You can construct a concrete instance of `CertificateSigningRequestStatusInput` via: // -// CertificateSigningRequestStatusArgs{...} -// +// CertificateSigningRequestStatusArgs{...} type CertificateSigningRequestStatusInput interface { pulumi.Input @@ -673,12 +665,11 @@ func (i CertificateSigningRequestStatusArgs) ToCertificateSigningRequestStatusPt // CertificateSigningRequestStatusPtrInput is an input type that accepts CertificateSigningRequestStatusArgs, CertificateSigningRequestStatusPtr and CertificateSigningRequestStatusPtrOutput values. // You can construct a concrete instance of `CertificateSigningRequestStatusPtrInput` via: // -// CertificateSigningRequestStatusArgs{...} +// CertificateSigningRequestStatusArgs{...} // // or: // -// nil -// +// nil type CertificateSigningRequestStatusPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/coordination/v1/pulumiTypes.go b/sdk/go/kubernetes/coordination/v1/pulumiTypes.go index 540abb6cc3..139ea682bf 100644 --- a/sdk/go/kubernetes/coordination/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/coordination/v1/pulumiTypes.go @@ -26,8 +26,7 @@ type LeaseType struct { // LeaseTypeInput is an input type that accepts LeaseTypeArgs and LeaseTypeOutput values. // You can construct a concrete instance of `LeaseTypeInput` via: // -// LeaseTypeArgs{...} -// +// LeaseTypeArgs{...} type LeaseTypeInput interface { pulumi.Input @@ -62,8 +61,7 @@ func (i LeaseTypeArgs) ToLeaseTypeOutputWithContext(ctx context.Context) LeaseTy // LeaseTypeArrayInput is an input type that accepts LeaseTypeArray and LeaseTypeArrayOutput values. // You can construct a concrete instance of `LeaseTypeArrayInput` via: // -// LeaseTypeArray{ LeaseTypeArgs{...} } -// +// LeaseTypeArray{ LeaseTypeArgs{...} } type LeaseTypeArrayInput interface { pulumi.Input @@ -155,8 +153,7 @@ type LeaseListType struct { // LeaseListTypeInput is an input type that accepts LeaseListTypeArgs and LeaseListTypeOutput values. // You can construct a concrete instance of `LeaseListTypeInput` via: // -// LeaseListTypeArgs{...} -// +// LeaseListTypeArgs{...} type LeaseListTypeInput interface { pulumi.Input @@ -240,8 +237,7 @@ type LeaseSpec struct { // LeaseSpecInput is an input type that accepts LeaseSpecArgs and LeaseSpecOutput values. // You can construct a concrete instance of `LeaseSpecInput` via: // -// LeaseSpecArgs{...} -// +// LeaseSpecArgs{...} type LeaseSpecInput interface { pulumi.Input @@ -286,12 +282,11 @@ func (i LeaseSpecArgs) ToLeaseSpecPtrOutputWithContext(ctx context.Context) Leas // LeaseSpecPtrInput is an input type that accepts LeaseSpecArgs, LeaseSpecPtr and LeaseSpecPtrOutput values. // You can construct a concrete instance of `LeaseSpecPtrInput` via: // -// LeaseSpecArgs{...} +// LeaseSpecArgs{...} // // or: // -// nil -// +// nil type LeaseSpecPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/coordination/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/coordination/v1beta1/pulumiTypes.go index 35b7de0d93..8328c3fead 100644 --- a/sdk/go/kubernetes/coordination/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/coordination/v1beta1/pulumiTypes.go @@ -26,8 +26,7 @@ type LeaseType struct { // LeaseTypeInput is an input type that accepts LeaseTypeArgs and LeaseTypeOutput values. // You can construct a concrete instance of `LeaseTypeInput` via: // -// LeaseTypeArgs{...} -// +// LeaseTypeArgs{...} type LeaseTypeInput interface { pulumi.Input @@ -62,8 +61,7 @@ func (i LeaseTypeArgs) ToLeaseTypeOutputWithContext(ctx context.Context) LeaseTy // LeaseTypeArrayInput is an input type that accepts LeaseTypeArray and LeaseTypeArrayOutput values. // You can construct a concrete instance of `LeaseTypeArrayInput` via: // -// LeaseTypeArray{ LeaseTypeArgs{...} } -// +// LeaseTypeArray{ LeaseTypeArgs{...} } type LeaseTypeArrayInput interface { pulumi.Input @@ -155,8 +153,7 @@ type LeaseListType struct { // LeaseListTypeInput is an input type that accepts LeaseListTypeArgs and LeaseListTypeOutput values. // You can construct a concrete instance of `LeaseListTypeInput` via: // -// LeaseListTypeArgs{...} -// +// LeaseListTypeArgs{...} type LeaseListTypeInput interface { pulumi.Input @@ -240,8 +237,7 @@ type LeaseSpec struct { // LeaseSpecInput is an input type that accepts LeaseSpecArgs and LeaseSpecOutput values. // You can construct a concrete instance of `LeaseSpecInput` via: // -// LeaseSpecArgs{...} -// +// LeaseSpecArgs{...} type LeaseSpecInput interface { pulumi.Input @@ -286,12 +282,11 @@ func (i LeaseSpecArgs) ToLeaseSpecPtrOutputWithContext(ctx context.Context) Leas // LeaseSpecPtrInput is an input type that accepts LeaseSpecArgs, LeaseSpecPtr and LeaseSpecPtrOutput values. // You can construct a concrete instance of `LeaseSpecPtrInput` via: // -// LeaseSpecArgs{...} +// LeaseSpecArgs{...} // // or: // -// nil -// +// nil type LeaseSpecPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/core/v1/pod.go b/sdk/go/kubernetes/core/v1/pod.go index 63c99272bf..cdeba08380 100644 --- a/sdk/go/kubernetes/core/v1/pod.go +++ b/sdk/go/kubernetes/core/v1/pod.go @@ -21,7 +21,7 @@ import ( // 2. The Pod is initialized ("Initialized" '.status.condition' is true). // 3. The Pod is ready ("Ready" '.status.condition' is true) and the '.status.phase' is // set to "Running". -// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). +// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). // // If the Pod has not reached a Ready state after 10 minutes, it will // time out and mark the resource update as Failed. You can override the default timeout value diff --git a/sdk/go/kubernetes/core/v1/pulumiTypes.go b/sdk/go/kubernetes/core/v1/pulumiTypes.go index ea4b5d50da..3d8401491c 100644 --- a/sdk/go/kubernetes/core/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/core/v1/pulumiTypes.go @@ -28,8 +28,7 @@ type AWSElasticBlockStoreVolumeSource struct { // AWSElasticBlockStoreVolumeSourceInput is an input type that accepts AWSElasticBlockStoreVolumeSourceArgs and AWSElasticBlockStoreVolumeSourceOutput values. // You can construct a concrete instance of `AWSElasticBlockStoreVolumeSourceInput` via: // -// AWSElasticBlockStoreVolumeSourceArgs{...} -// +// AWSElasticBlockStoreVolumeSourceArgs{...} type AWSElasticBlockStoreVolumeSourceInput interface { pulumi.Input @@ -74,12 +73,11 @@ func (i AWSElasticBlockStoreVolumeSourceArgs) ToAWSElasticBlockStoreVolumeSource // AWSElasticBlockStoreVolumeSourcePtrInput is an input type that accepts AWSElasticBlockStoreVolumeSourceArgs, AWSElasticBlockStoreVolumeSourcePtr and AWSElasticBlockStoreVolumeSourcePtrOutput values. // You can construct a concrete instance of `AWSElasticBlockStoreVolumeSourcePtrInput` via: // -// AWSElasticBlockStoreVolumeSourceArgs{...} +// AWSElasticBlockStoreVolumeSourceArgs{...} // // or: // -// nil -// +// nil type AWSElasticBlockStoreVolumeSourcePtrInput interface { pulumi.Input @@ -223,8 +221,7 @@ type Affinity struct { // AffinityInput is an input type that accepts AffinityArgs and AffinityOutput values. // You can construct a concrete instance of `AffinityInput` via: // -// AffinityArgs{...} -// +// AffinityArgs{...} type AffinityInput interface { pulumi.Input @@ -265,12 +262,11 @@ func (i AffinityArgs) ToAffinityPtrOutputWithContext(ctx context.Context) Affini // AffinityPtrInput is an input type that accepts AffinityArgs, AffinityPtr and AffinityPtrOutput values. // You can construct a concrete instance of `AffinityPtrInput` via: // -// AffinityArgs{...} +// AffinityArgs{...} // // or: // -// nil -// +// nil type AffinityPtrInput interface { pulumi.Input @@ -395,8 +391,7 @@ type AttachedVolume struct { // AttachedVolumeInput is an input type that accepts AttachedVolumeArgs and AttachedVolumeOutput values. // You can construct a concrete instance of `AttachedVolumeInput` via: // -// AttachedVolumeArgs{...} -// +// AttachedVolumeArgs{...} type AttachedVolumeInput interface { pulumi.Input @@ -427,8 +422,7 @@ func (i AttachedVolumeArgs) ToAttachedVolumeOutputWithContext(ctx context.Contex // AttachedVolumeArrayInput is an input type that accepts AttachedVolumeArray and AttachedVolumeArrayOutput values. // You can construct a concrete instance of `AttachedVolumeArrayInput` via: // -// AttachedVolumeArray{ AttachedVolumeArgs{...} } -// +// AttachedVolumeArray{ AttachedVolumeArgs{...} } type AttachedVolumeArrayInput interface { pulumi.Input @@ -514,8 +508,7 @@ type AzureDiskVolumeSource struct { // AzureDiskVolumeSourceInput is an input type that accepts AzureDiskVolumeSourceArgs and AzureDiskVolumeSourceOutput values. // You can construct a concrete instance of `AzureDiskVolumeSourceInput` via: // -// AzureDiskVolumeSourceArgs{...} -// +// AzureDiskVolumeSourceArgs{...} type AzureDiskVolumeSourceInput interface { pulumi.Input @@ -562,12 +555,11 @@ func (i AzureDiskVolumeSourceArgs) ToAzureDiskVolumeSourcePtrOutputWithContext(c // AzureDiskVolumeSourcePtrInput is an input type that accepts AzureDiskVolumeSourceArgs, AzureDiskVolumeSourcePtr and AzureDiskVolumeSourcePtrOutput values. // You can construct a concrete instance of `AzureDiskVolumeSourcePtrInput` via: // -// AzureDiskVolumeSourceArgs{...} +// AzureDiskVolumeSourceArgs{...} // // or: // -// nil -// +// nil type AzureDiskVolumeSourcePtrInput interface { pulumi.Input @@ -741,8 +733,7 @@ type AzureFilePersistentVolumeSource struct { // AzureFilePersistentVolumeSourceInput is an input type that accepts AzureFilePersistentVolumeSourceArgs and AzureFilePersistentVolumeSourceOutput values. // You can construct a concrete instance of `AzureFilePersistentVolumeSourceInput` via: // -// AzureFilePersistentVolumeSourceArgs{...} -// +// AzureFilePersistentVolumeSourceArgs{...} type AzureFilePersistentVolumeSourceInput interface { pulumi.Input @@ -785,12 +776,11 @@ func (i AzureFilePersistentVolumeSourceArgs) ToAzureFilePersistentVolumeSourcePt // AzureFilePersistentVolumeSourcePtrInput is an input type that accepts AzureFilePersistentVolumeSourceArgs, AzureFilePersistentVolumeSourcePtr and AzureFilePersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `AzureFilePersistentVolumeSourcePtrInput` via: // -// AzureFilePersistentVolumeSourceArgs{...} +// AzureFilePersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type AzureFilePersistentVolumeSourcePtrInput interface { pulumi.Input @@ -932,8 +922,7 @@ type AzureFileVolumeSource struct { // AzureFileVolumeSourceInput is an input type that accepts AzureFileVolumeSourceArgs and AzureFileVolumeSourceOutput values. // You can construct a concrete instance of `AzureFileVolumeSourceInput` via: // -// AzureFileVolumeSourceArgs{...} -// +// AzureFileVolumeSourceArgs{...} type AzureFileVolumeSourceInput interface { pulumi.Input @@ -974,12 +963,11 @@ func (i AzureFileVolumeSourceArgs) ToAzureFileVolumeSourcePtrOutputWithContext(c // AzureFileVolumeSourcePtrInput is an input type that accepts AzureFileVolumeSourceArgs, AzureFileVolumeSourcePtr and AzureFileVolumeSourcePtrOutput values. // You can construct a concrete instance of `AzureFileVolumeSourcePtrInput` via: // -// AzureFileVolumeSourceArgs{...} +// AzureFileVolumeSourceArgs{...} // // or: // -// nil -// +// nil type AzureFileVolumeSourcePtrInput interface { pulumi.Input @@ -1108,8 +1096,7 @@ type BindingType struct { // BindingTypeInput is an input type that accepts BindingTypeArgs and BindingTypeOutput values. // You can construct a concrete instance of `BindingTypeInput` via: // -// BindingTypeArgs{...} -// +// BindingTypeArgs{...} type BindingTypeInput interface { pulumi.Input @@ -1201,8 +1188,7 @@ type CSIPersistentVolumeSource struct { // CSIPersistentVolumeSourceInput is an input type that accepts CSIPersistentVolumeSourceArgs and CSIPersistentVolumeSourceOutput values. // You can construct a concrete instance of `CSIPersistentVolumeSourceInput` via: // -// CSIPersistentVolumeSourceArgs{...} -// +// CSIPersistentVolumeSourceArgs{...} type CSIPersistentVolumeSourceInput interface { pulumi.Input @@ -1255,12 +1241,11 @@ func (i CSIPersistentVolumeSourceArgs) ToCSIPersistentVolumeSourcePtrOutputWithC // CSIPersistentVolumeSourcePtrInput is an input type that accepts CSIPersistentVolumeSourceArgs, CSIPersistentVolumeSourcePtr and CSIPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `CSIPersistentVolumeSourcePtrInput` via: // -// CSIPersistentVolumeSourceArgs{...} +// CSIPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type CSIPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -1481,8 +1466,7 @@ type CSIVolumeSource struct { // CSIVolumeSourceInput is an input type that accepts CSIVolumeSourceArgs and CSIVolumeSourceOutput values. // You can construct a concrete instance of `CSIVolumeSourceInput` via: // -// CSIVolumeSourceArgs{...} -// +// CSIVolumeSourceArgs{...} type CSIVolumeSourceInput interface { pulumi.Input @@ -1527,12 +1511,11 @@ func (i CSIVolumeSourceArgs) ToCSIVolumeSourcePtrOutputWithContext(ctx context.C // CSIVolumeSourcePtrInput is an input type that accepts CSIVolumeSourceArgs, CSIVolumeSourcePtr and CSIVolumeSourcePtrOutput values. // You can construct a concrete instance of `CSIVolumeSourcePtrInput` via: // -// CSIVolumeSourceArgs{...} +// CSIVolumeSourceArgs{...} // // or: // -// nil -// +// nil type CSIVolumeSourcePtrInput interface { pulumi.Input @@ -1687,8 +1670,7 @@ type Capabilities struct { // CapabilitiesInput is an input type that accepts CapabilitiesArgs and CapabilitiesOutput values. // You can construct a concrete instance of `CapabilitiesInput` via: // -// CapabilitiesArgs{...} -// +// CapabilitiesArgs{...} type CapabilitiesInput interface { pulumi.Input @@ -1727,12 +1709,11 @@ func (i CapabilitiesArgs) ToCapabilitiesPtrOutputWithContext(ctx context.Context // CapabilitiesPtrInput is an input type that accepts CapabilitiesArgs, CapabilitiesPtr and CapabilitiesPtrOutput values. // You can construct a concrete instance of `CapabilitiesPtrInput` via: // -// CapabilitiesArgs{...} +// CapabilitiesArgs{...} // // or: // -// nil -// +// nil type CapabilitiesPtrInput interface { pulumi.Input @@ -1850,8 +1831,7 @@ type CephFSPersistentVolumeSource struct { // CephFSPersistentVolumeSourceInput is an input type that accepts CephFSPersistentVolumeSourceArgs and CephFSPersistentVolumeSourceOutput values. // You can construct a concrete instance of `CephFSPersistentVolumeSourceInput` via: // -// CephFSPersistentVolumeSourceArgs{...} -// +// CephFSPersistentVolumeSourceArgs{...} type CephFSPersistentVolumeSourceInput interface { pulumi.Input @@ -1898,12 +1878,11 @@ func (i CephFSPersistentVolumeSourceArgs) ToCephFSPersistentVolumeSourcePtrOutpu // CephFSPersistentVolumeSourcePtrInput is an input type that accepts CephFSPersistentVolumeSourceArgs, CephFSPersistentVolumeSourcePtr and CephFSPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `CephFSPersistentVolumeSourcePtrInput` via: // -// CephFSPersistentVolumeSourceArgs{...} +// CephFSPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type CephFSPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -2081,8 +2060,7 @@ type CephFSVolumeSource struct { // CephFSVolumeSourceInput is an input type that accepts CephFSVolumeSourceArgs and CephFSVolumeSourceOutput values. // You can construct a concrete instance of `CephFSVolumeSourceInput` via: // -// CephFSVolumeSourceArgs{...} -// +// CephFSVolumeSourceArgs{...} type CephFSVolumeSourceInput interface { pulumi.Input @@ -2129,12 +2107,11 @@ func (i CephFSVolumeSourceArgs) ToCephFSVolumeSourcePtrOutputWithContext(ctx con // CephFSVolumeSourcePtrInput is an input type that accepts CephFSVolumeSourceArgs, CephFSVolumeSourcePtr and CephFSVolumeSourcePtrOutput values. // You can construct a concrete instance of `CephFSVolumeSourcePtrInput` via: // -// CephFSVolumeSourceArgs{...} +// CephFSVolumeSourceArgs{...} // // or: // -// nil -// +// nil type CephFSVolumeSourcePtrInput interface { pulumi.Input @@ -2308,8 +2285,7 @@ type CinderPersistentVolumeSource struct { // CinderPersistentVolumeSourceInput is an input type that accepts CinderPersistentVolumeSourceArgs and CinderPersistentVolumeSourceOutput values. // You can construct a concrete instance of `CinderPersistentVolumeSourceInput` via: // -// CinderPersistentVolumeSourceArgs{...} -// +// CinderPersistentVolumeSourceArgs{...} type CinderPersistentVolumeSourceInput interface { pulumi.Input @@ -2352,12 +2328,11 @@ func (i CinderPersistentVolumeSourceArgs) ToCinderPersistentVolumeSourcePtrOutpu // CinderPersistentVolumeSourcePtrInput is an input type that accepts CinderPersistentVolumeSourceArgs, CinderPersistentVolumeSourcePtr and CinderPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `CinderPersistentVolumeSourcePtrInput` via: // -// CinderPersistentVolumeSourceArgs{...} +// CinderPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type CinderPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -2501,8 +2476,7 @@ type CinderVolumeSource struct { // CinderVolumeSourceInput is an input type that accepts CinderVolumeSourceArgs and CinderVolumeSourceOutput values. // You can construct a concrete instance of `CinderVolumeSourceInput` via: // -// CinderVolumeSourceArgs{...} -// +// CinderVolumeSourceArgs{...} type CinderVolumeSourceInput interface { pulumi.Input @@ -2545,12 +2519,11 @@ func (i CinderVolumeSourceArgs) ToCinderVolumeSourcePtrOutputWithContext(ctx con // CinderVolumeSourcePtrInput is an input type that accepts CinderVolumeSourceArgs, CinderVolumeSourcePtr and CinderVolumeSourcePtrOutput values. // You can construct a concrete instance of `CinderVolumeSourcePtrInput` via: // -// CinderVolumeSourceArgs{...} +// CinderVolumeSourceArgs{...} // // or: // -// nil -// +// nil type CinderVolumeSourcePtrInput interface { pulumi.Input @@ -2688,8 +2661,7 @@ type ClientIPConfig struct { // ClientIPConfigInput is an input type that accepts ClientIPConfigArgs and ClientIPConfigOutput values. // You can construct a concrete instance of `ClientIPConfigInput` via: // -// ClientIPConfigArgs{...} -// +// ClientIPConfigArgs{...} type ClientIPConfigInput interface { pulumi.Input @@ -2726,12 +2698,11 @@ func (i ClientIPConfigArgs) ToClientIPConfigPtrOutputWithContext(ctx context.Con // ClientIPConfigPtrInput is an input type that accepts ClientIPConfigArgs, ClientIPConfigPtr and ClientIPConfigPtrOutput values. // You can construct a concrete instance of `ClientIPConfigPtrInput` via: // -// ClientIPConfigArgs{...} +// ClientIPConfigArgs{...} // // or: // -// nil -// +// nil type ClientIPConfigPtrInput interface { pulumi.Input @@ -2830,8 +2801,7 @@ type ComponentCondition struct { // ComponentConditionInput is an input type that accepts ComponentConditionArgs and ComponentConditionOutput values. // You can construct a concrete instance of `ComponentConditionInput` via: // -// ComponentConditionArgs{...} -// +// ComponentConditionArgs{...} type ComponentConditionInput interface { pulumi.Input @@ -2866,8 +2836,7 @@ func (i ComponentConditionArgs) ToComponentConditionOutputWithContext(ctx contex // ComponentConditionArrayInput is an input type that accepts ComponentConditionArray and ComponentConditionArrayOutput values. // You can construct a concrete instance of `ComponentConditionArrayInput` via: // -// ComponentConditionArray{ ComponentConditionArgs{...} } -// +// ComponentConditionArray{ ComponentConditionArgs{...} } type ComponentConditionArrayInput interface { pulumi.Input @@ -2959,8 +2928,7 @@ type ComponentStatusType struct { // ComponentStatusTypeInput is an input type that accepts ComponentStatusTypeArgs and ComponentStatusTypeOutput values. // You can construct a concrete instance of `ComponentStatusTypeInput` via: // -// ComponentStatusTypeArgs{...} -// +// ComponentStatusTypeArgs{...} type ComponentStatusTypeInput interface { pulumi.Input @@ -2995,8 +2963,7 @@ func (i ComponentStatusTypeArgs) ToComponentStatusTypeOutputWithContext(ctx cont // ComponentStatusTypeArrayInput is an input type that accepts ComponentStatusTypeArray and ComponentStatusTypeArrayOutput values. // You can construct a concrete instance of `ComponentStatusTypeArrayInput` via: // -// ComponentStatusTypeArray{ ComponentStatusTypeArgs{...} } -// +// ComponentStatusTypeArray{ ComponentStatusTypeArgs{...} } type ComponentStatusTypeArrayInput interface { pulumi.Input @@ -3088,8 +3055,7 @@ type ComponentStatusListType struct { // ComponentStatusListTypeInput is an input type that accepts ComponentStatusListTypeArgs and ComponentStatusListTypeOutput values. // You can construct a concrete instance of `ComponentStatusListTypeInput` via: // -// ComponentStatusListTypeArgs{...} -// +// ComponentStatusListTypeArgs{...} type ComponentStatusListTypeInput interface { pulumi.Input @@ -3175,8 +3141,7 @@ type ConfigMapType struct { // ConfigMapTypeInput is an input type that accepts ConfigMapTypeArgs and ConfigMapTypeOutput values. // You can construct a concrete instance of `ConfigMapTypeInput` via: // -// ConfigMapTypeArgs{...} -// +// ConfigMapTypeArgs{...} type ConfigMapTypeInput interface { pulumi.Input @@ -3215,8 +3180,7 @@ func (i ConfigMapTypeArgs) ToConfigMapTypeOutputWithContext(ctx context.Context) // ConfigMapTypeArrayInput is an input type that accepts ConfigMapTypeArray and ConfigMapTypeArrayOutput values. // You can construct a concrete instance of `ConfigMapTypeArrayInput` via: // -// ConfigMapTypeArray{ ConfigMapTypeArgs{...} } -// +// ConfigMapTypeArray{ ConfigMapTypeArgs{...} } type ConfigMapTypeArrayInput interface { pulumi.Input @@ -3316,8 +3280,7 @@ type ConfigMapEnvSource struct { // ConfigMapEnvSourceInput is an input type that accepts ConfigMapEnvSourceArgs and ConfigMapEnvSourceOutput values. // You can construct a concrete instance of `ConfigMapEnvSourceInput` via: // -// ConfigMapEnvSourceArgs{...} -// +// ConfigMapEnvSourceArgs{...} type ConfigMapEnvSourceInput interface { pulumi.Input @@ -3358,12 +3321,11 @@ func (i ConfigMapEnvSourceArgs) ToConfigMapEnvSourcePtrOutputWithContext(ctx con // ConfigMapEnvSourcePtrInput is an input type that accepts ConfigMapEnvSourceArgs, ConfigMapEnvSourcePtr and ConfigMapEnvSourcePtrOutput values. // You can construct a concrete instance of `ConfigMapEnvSourcePtrInput` via: // -// ConfigMapEnvSourceArgs{...} +// ConfigMapEnvSourceArgs{...} // // or: // -// nil -// +// nil type ConfigMapEnvSourcePtrInput interface { pulumi.Input @@ -3477,8 +3439,7 @@ type ConfigMapKeySelector struct { // ConfigMapKeySelectorInput is an input type that accepts ConfigMapKeySelectorArgs and ConfigMapKeySelectorOutput values. // You can construct a concrete instance of `ConfigMapKeySelectorInput` via: // -// ConfigMapKeySelectorArgs{...} -// +// ConfigMapKeySelectorArgs{...} type ConfigMapKeySelectorInput interface { pulumi.Input @@ -3519,12 +3480,11 @@ func (i ConfigMapKeySelectorArgs) ToConfigMapKeySelectorPtrOutputWithContext(ctx // ConfigMapKeySelectorPtrInput is an input type that accepts ConfigMapKeySelectorArgs, ConfigMapKeySelectorPtr and ConfigMapKeySelectorPtrOutput values. // You can construct a concrete instance of `ConfigMapKeySelectorPtrInput` via: // -// ConfigMapKeySelectorArgs{...} +// ConfigMapKeySelectorArgs{...} // // or: // -// nil -// +// nil type ConfigMapKeySelectorPtrInput interface { pulumi.Input @@ -3653,8 +3613,7 @@ type ConfigMapListType struct { // ConfigMapListTypeInput is an input type that accepts ConfigMapListTypeArgs and ConfigMapListTypeOutput values. // You can construct a concrete instance of `ConfigMapListTypeInput` via: // -// ConfigMapListTypeArgs{...} -// +// ConfigMapListTypeArgs{...} type ConfigMapListTypeInput interface { pulumi.Input @@ -3738,8 +3697,7 @@ type ConfigMapNodeConfigSource struct { // ConfigMapNodeConfigSourceInput is an input type that accepts ConfigMapNodeConfigSourceArgs and ConfigMapNodeConfigSourceOutput values. // You can construct a concrete instance of `ConfigMapNodeConfigSourceInput` via: // -// ConfigMapNodeConfigSourceArgs{...} -// +// ConfigMapNodeConfigSourceArgs{...} type ConfigMapNodeConfigSourceInput interface { pulumi.Input @@ -3784,12 +3742,11 @@ func (i ConfigMapNodeConfigSourceArgs) ToConfigMapNodeConfigSourcePtrOutputWithC // ConfigMapNodeConfigSourcePtrInput is an input type that accepts ConfigMapNodeConfigSourceArgs, ConfigMapNodeConfigSourcePtr and ConfigMapNodeConfigSourcePtrOutput values. // You can construct a concrete instance of `ConfigMapNodeConfigSourcePtrInput` via: // -// ConfigMapNodeConfigSourceArgs{...} +// ConfigMapNodeConfigSourceArgs{...} // // or: // -// nil -// +// nil type ConfigMapNodeConfigSourcePtrInput interface { pulumi.Input @@ -3948,8 +3905,7 @@ type ConfigMapProjection struct { // ConfigMapProjectionInput is an input type that accepts ConfigMapProjectionArgs and ConfigMapProjectionOutput values. // You can construct a concrete instance of `ConfigMapProjectionInput` via: // -// ConfigMapProjectionArgs{...} -// +// ConfigMapProjectionArgs{...} type ConfigMapProjectionInput interface { pulumi.Input @@ -3992,12 +3948,11 @@ func (i ConfigMapProjectionArgs) ToConfigMapProjectionPtrOutputWithContext(ctx c // ConfigMapProjectionPtrInput is an input type that accepts ConfigMapProjectionArgs, ConfigMapProjectionPtr and ConfigMapProjectionPtrOutput values. // You can construct a concrete instance of `ConfigMapProjectionPtrInput` via: // -// ConfigMapProjectionArgs{...} +// ConfigMapProjectionArgs{...} // // or: // -// nil -// +// nil type ConfigMapProjectionPtrInput interface { pulumi.Input @@ -4130,8 +4085,7 @@ type ConfigMapVolumeSource struct { // ConfigMapVolumeSourceInput is an input type that accepts ConfigMapVolumeSourceArgs and ConfigMapVolumeSourceOutput values. // You can construct a concrete instance of `ConfigMapVolumeSourceInput` via: // -// ConfigMapVolumeSourceArgs{...} -// +// ConfigMapVolumeSourceArgs{...} type ConfigMapVolumeSourceInput interface { pulumi.Input @@ -4176,12 +4130,11 @@ func (i ConfigMapVolumeSourceArgs) ToConfigMapVolumeSourcePtrOutputWithContext(c // ConfigMapVolumeSourcePtrInput is an input type that accepts ConfigMapVolumeSourceArgs, ConfigMapVolumeSourcePtr and ConfigMapVolumeSourcePtrOutput values. // You can construct a concrete instance of `ConfigMapVolumeSourcePtrInput` via: // -// ConfigMapVolumeSourceArgs{...} +// ConfigMapVolumeSourceArgs{...} // // or: // -// nil -// +// nil type ConfigMapVolumeSourcePtrInput interface { pulumi.Input @@ -4363,8 +4316,7 @@ type Container struct { // ContainerInput is an input type that accepts ContainerArgs and ContainerOutput values. // You can construct a concrete instance of `ContainerInput` via: // -// ContainerArgs{...} -// +// ContainerArgs{...} type ContainerInput interface { pulumi.Input @@ -4435,8 +4387,7 @@ func (i ContainerArgs) ToContainerOutputWithContext(ctx context.Context) Contain // ContainerArrayInput is an input type that accepts ContainerArray and ContainerArrayOutput values. // You can construct a concrete instance of `ContainerArrayInput` via: // -// ContainerArray{ ContainerArgs{...} } -// +// ContainerArray{ ContainerArgs{...} } type ContainerArrayInput interface { pulumi.Input @@ -4614,8 +4565,7 @@ type ContainerImage struct { // ContainerImageInput is an input type that accepts ContainerImageArgs and ContainerImageOutput values. // You can construct a concrete instance of `ContainerImageInput` via: // -// ContainerImageArgs{...} -// +// ContainerImageArgs{...} type ContainerImageInput interface { pulumi.Input @@ -4646,8 +4596,7 @@ func (i ContainerImageArgs) ToContainerImageOutputWithContext(ctx context.Contex // ContainerImageArrayInput is an input type that accepts ContainerImageArray and ContainerImageArrayOutput values. // You can construct a concrete instance of `ContainerImageArrayInput` via: // -// ContainerImageArray{ ContainerImageArgs{...} } -// +// ContainerImageArray{ ContainerImageArgs{...} } type ContainerImageArrayInput interface { pulumi.Input @@ -4731,8 +4680,7 @@ type ContainerPort struct { // ContainerPortInput is an input type that accepts ContainerPortArgs and ContainerPortOutput values. // You can construct a concrete instance of `ContainerPortInput` via: // -// ContainerPortArgs{...} -// +// ContainerPortArgs{...} type ContainerPortInput interface { pulumi.Input @@ -4769,8 +4717,7 @@ func (i ContainerPortArgs) ToContainerPortOutputWithContext(ctx context.Context) // ContainerPortArrayInput is an input type that accepts ContainerPortArray and ContainerPortArrayOutput values. // You can construct a concrete instance of `ContainerPortArrayInput` via: // -// ContainerPortArray{ ContainerPortArgs{...} } -// +// ContainerPortArray{ ContainerPortArgs{...} } type ContainerPortArrayInput interface { pulumi.Input @@ -4865,8 +4812,7 @@ type ContainerState struct { // ContainerStateInput is an input type that accepts ContainerStateArgs and ContainerStateOutput values. // You can construct a concrete instance of `ContainerStateInput` via: // -// ContainerStateArgs{...} -// +// ContainerStateArgs{...} type ContainerStateInput interface { pulumi.Input @@ -4907,12 +4853,11 @@ func (i ContainerStateArgs) ToContainerStatePtrOutputWithContext(ctx context.Con // ContainerStatePtrInput is an input type that accepts ContainerStateArgs, ContainerStatePtr and ContainerStatePtrOutput values. // You can construct a concrete instance of `ContainerStatePtrInput` via: // -// ContainerStateArgs{...} +// ContainerStateArgs{...} // // or: // -// nil -// +// nil type ContainerStatePtrInput interface { pulumi.Input @@ -5035,8 +4980,7 @@ type ContainerStateRunning struct { // ContainerStateRunningInput is an input type that accepts ContainerStateRunningArgs and ContainerStateRunningOutput values. // You can construct a concrete instance of `ContainerStateRunningInput` via: // -// ContainerStateRunningArgs{...} -// +// ContainerStateRunningArgs{...} type ContainerStateRunningInput interface { pulumi.Input @@ -5073,12 +5017,11 @@ func (i ContainerStateRunningArgs) ToContainerStateRunningPtrOutputWithContext(c // ContainerStateRunningPtrInput is an input type that accepts ContainerStateRunningArgs, ContainerStateRunningPtr and ContainerStateRunningPtrOutput values. // You can construct a concrete instance of `ContainerStateRunningPtrInput` via: // -// ContainerStateRunningArgs{...} +// ContainerStateRunningArgs{...} // // or: // -// nil -// +// nil type ContainerStateRunningPtrInput interface { pulumi.Input @@ -5183,8 +5126,7 @@ type ContainerStateTerminated struct { // ContainerStateTerminatedInput is an input type that accepts ContainerStateTerminatedArgs and ContainerStateTerminatedOutput values. // You can construct a concrete instance of `ContainerStateTerminatedInput` via: // -// ContainerStateTerminatedArgs{...} -// +// ContainerStateTerminatedArgs{...} type ContainerStateTerminatedInput interface { pulumi.Input @@ -5233,12 +5175,11 @@ func (i ContainerStateTerminatedArgs) ToContainerStateTerminatedPtrOutputWithCon // ContainerStateTerminatedPtrInput is an input type that accepts ContainerStateTerminatedArgs, ContainerStateTerminatedPtr and ContainerStateTerminatedPtrOutput values. // You can construct a concrete instance of `ContainerStateTerminatedPtrInput` via: // -// ContainerStateTerminatedArgs{...} +// ContainerStateTerminatedArgs{...} // // or: // -// nil -// +// nil type ContainerStateTerminatedPtrInput interface { pulumi.Input @@ -5423,8 +5364,7 @@ type ContainerStateWaiting struct { // ContainerStateWaitingInput is an input type that accepts ContainerStateWaitingArgs and ContainerStateWaitingOutput values. // You can construct a concrete instance of `ContainerStateWaitingInput` via: // -// ContainerStateWaitingArgs{...} -// +// ContainerStateWaitingArgs{...} type ContainerStateWaitingInput interface { pulumi.Input @@ -5463,12 +5403,11 @@ func (i ContainerStateWaitingArgs) ToContainerStateWaitingPtrOutputWithContext(c // ContainerStateWaitingPtrInput is an input type that accepts ContainerStateWaitingArgs, ContainerStateWaitingPtr and ContainerStateWaitingPtrOutput values. // You can construct a concrete instance of `ContainerStateWaitingPtrInput` via: // -// ContainerStateWaitingArgs{...} +// ContainerStateWaitingArgs{...} // // or: // -// nil -// +// nil type ContainerStateWaitingPtrInput interface { pulumi.Input @@ -5592,8 +5531,7 @@ type ContainerStatus struct { // ContainerStatusInput is an input type that accepts ContainerStatusArgs and ContainerStatusOutput values. // You can construct a concrete instance of `ContainerStatusInput` via: // -// ContainerStatusArgs{...} -// +// ContainerStatusArgs{...} type ContainerStatusInput interface { pulumi.Input @@ -5638,8 +5576,7 @@ func (i ContainerStatusArgs) ToContainerStatusOutputWithContext(ctx context.Cont // ContainerStatusArrayInput is an input type that accepts ContainerStatusArray and ContainerStatusArrayOutput values. // You can construct a concrete instance of `ContainerStatusArrayInput` via: // -// ContainerStatusArray{ ContainerStatusArgs{...} } -// +// ContainerStatusArray{ ContainerStatusArgs{...} } type ContainerStatusArrayInput interface { pulumi.Input @@ -5750,8 +5687,7 @@ type DaemonEndpoint struct { // DaemonEndpointInput is an input type that accepts DaemonEndpointArgs and DaemonEndpointOutput values. // You can construct a concrete instance of `DaemonEndpointInput` via: // -// DaemonEndpointArgs{...} -// +// DaemonEndpointArgs{...} type DaemonEndpointInput interface { pulumi.Input @@ -5788,12 +5724,11 @@ func (i DaemonEndpointArgs) ToDaemonEndpointPtrOutputWithContext(ctx context.Con // DaemonEndpointPtrInput is an input type that accepts DaemonEndpointArgs, DaemonEndpointPtr and DaemonEndpointPtrOutput values. // You can construct a concrete instance of `DaemonEndpointPtrInput` via: // -// DaemonEndpointArgs{...} +// DaemonEndpointArgs{...} // // or: // -// nil -// +// nil type DaemonEndpointPtrInput interface { pulumi.Input @@ -5886,8 +5821,7 @@ type DownwardAPIProjection struct { // DownwardAPIProjectionInput is an input type that accepts DownwardAPIProjectionArgs and DownwardAPIProjectionOutput values. // You can construct a concrete instance of `DownwardAPIProjectionInput` via: // -// DownwardAPIProjectionArgs{...} -// +// DownwardAPIProjectionArgs{...} type DownwardAPIProjectionInput interface { pulumi.Input @@ -5924,12 +5858,11 @@ func (i DownwardAPIProjectionArgs) ToDownwardAPIProjectionPtrOutputWithContext(c // DownwardAPIProjectionPtrInput is an input type that accepts DownwardAPIProjectionArgs, DownwardAPIProjectionPtr and DownwardAPIProjectionPtrOutput values. // You can construct a concrete instance of `DownwardAPIProjectionPtrInput` via: // -// DownwardAPIProjectionArgs{...} +// DownwardAPIProjectionArgs{...} // // or: // -// nil -// +// nil type DownwardAPIProjectionPtrInput interface { pulumi.Input @@ -6028,8 +5961,7 @@ type DownwardAPIVolumeFile struct { // DownwardAPIVolumeFileInput is an input type that accepts DownwardAPIVolumeFileArgs and DownwardAPIVolumeFileOutput values. // You can construct a concrete instance of `DownwardAPIVolumeFileInput` via: // -// DownwardAPIVolumeFileArgs{...} -// +// DownwardAPIVolumeFileArgs{...} type DownwardAPIVolumeFileInput interface { pulumi.Input @@ -6064,8 +5996,7 @@ func (i DownwardAPIVolumeFileArgs) ToDownwardAPIVolumeFileOutputWithContext(ctx // DownwardAPIVolumeFileArrayInput is an input type that accepts DownwardAPIVolumeFileArray and DownwardAPIVolumeFileArrayOutput values. // You can construct a concrete instance of `DownwardAPIVolumeFileArrayInput` via: // -// DownwardAPIVolumeFileArray{ DownwardAPIVolumeFileArgs{...} } -// +// DownwardAPIVolumeFileArray{ DownwardAPIVolumeFileArgs{...} } type DownwardAPIVolumeFileArrayInput interface { pulumi.Input @@ -6153,8 +6084,7 @@ type DownwardAPIVolumeSource struct { // DownwardAPIVolumeSourceInput is an input type that accepts DownwardAPIVolumeSourceArgs and DownwardAPIVolumeSourceOutput values. // You can construct a concrete instance of `DownwardAPIVolumeSourceInput` via: // -// DownwardAPIVolumeSourceArgs{...} -// +// DownwardAPIVolumeSourceArgs{...} type DownwardAPIVolumeSourceInput interface { pulumi.Input @@ -6193,12 +6123,11 @@ func (i DownwardAPIVolumeSourceArgs) ToDownwardAPIVolumeSourcePtrOutputWithConte // DownwardAPIVolumeSourcePtrInput is an input type that accepts DownwardAPIVolumeSourceArgs, DownwardAPIVolumeSourcePtr and DownwardAPIVolumeSourcePtrOutput values. // You can construct a concrete instance of `DownwardAPIVolumeSourcePtrInput` via: // -// DownwardAPIVolumeSourceArgs{...} +// DownwardAPIVolumeSourceArgs{...} // // or: // -// nil -// +// nil type DownwardAPIVolumeSourcePtrInput interface { pulumi.Input @@ -6308,8 +6237,7 @@ type EmptyDirVolumeSource struct { // EmptyDirVolumeSourceInput is an input type that accepts EmptyDirVolumeSourceArgs and EmptyDirVolumeSourceOutput values. // You can construct a concrete instance of `EmptyDirVolumeSourceInput` via: // -// EmptyDirVolumeSourceArgs{...} -// +// EmptyDirVolumeSourceArgs{...} type EmptyDirVolumeSourceInput interface { pulumi.Input @@ -6348,12 +6276,11 @@ func (i EmptyDirVolumeSourceArgs) ToEmptyDirVolumeSourcePtrOutputWithContext(ctx // EmptyDirVolumeSourcePtrInput is an input type that accepts EmptyDirVolumeSourceArgs, EmptyDirVolumeSourcePtr and EmptyDirVolumeSourcePtrOutput values. // You can construct a concrete instance of `EmptyDirVolumeSourcePtrInput` via: // -// EmptyDirVolumeSourceArgs{...} +// EmptyDirVolumeSourceArgs{...} // // or: // -// nil -// +// nil type EmptyDirVolumeSourcePtrInput interface { pulumi.Input @@ -6467,8 +6394,7 @@ type EndpointAddress struct { // EndpointAddressInput is an input type that accepts EndpointAddressArgs and EndpointAddressOutput values. // You can construct a concrete instance of `EndpointAddressInput` via: // -// EndpointAddressArgs{...} -// +// EndpointAddressArgs{...} type EndpointAddressInput interface { pulumi.Input @@ -6503,8 +6429,7 @@ func (i EndpointAddressArgs) ToEndpointAddressOutputWithContext(ctx context.Cont // EndpointAddressArrayInput is an input type that accepts EndpointAddressArray and EndpointAddressArrayOutput values. // You can construct a concrete instance of `EndpointAddressArrayInput` via: // -// EndpointAddressArray{ EndpointAddressArgs{...} } -// +// EndpointAddressArray{ EndpointAddressArgs{...} } type EndpointAddressArrayInput interface { pulumi.Input @@ -6596,8 +6521,7 @@ type EndpointPort struct { // EndpointPortInput is an input type that accepts EndpointPortArgs and EndpointPortOutput values. // You can construct a concrete instance of `EndpointPortInput` via: // -// EndpointPortArgs{...} -// +// EndpointPortArgs{...} type EndpointPortInput interface { pulumi.Input @@ -6632,8 +6556,7 @@ func (i EndpointPortArgs) ToEndpointPortOutputWithContext(ctx context.Context) E // EndpointPortArrayInput is an input type that accepts EndpointPortArray and EndpointPortArrayOutput values. // You can construct a concrete instance of `EndpointPortArrayInput` via: // -// EndpointPortArray{ EndpointPortArgs{...} } -// +// EndpointPortArray{ EndpointPortArgs{...} } type EndpointPortArrayInput interface { pulumi.Input @@ -6730,8 +6653,7 @@ type EndpointSubset struct { // EndpointSubsetInput is an input type that accepts EndpointSubsetArgs and EndpointSubsetOutput values. // You can construct a concrete instance of `EndpointSubsetInput` via: // -// EndpointSubsetArgs{...} -// +// EndpointSubsetArgs{...} type EndpointSubsetInput interface { pulumi.Input @@ -6771,8 +6693,7 @@ func (i EndpointSubsetArgs) ToEndpointSubsetOutputWithContext(ctx context.Contex // EndpointSubsetArrayInput is an input type that accepts EndpointSubsetArray and EndpointSubsetArrayOutput values. // You can construct a concrete instance of `EndpointSubsetArrayInput` via: // -// EndpointSubsetArray{ EndpointSubsetArgs{...} } -// +// EndpointSubsetArray{ EndpointSubsetArgs{...} } type EndpointSubsetArrayInput interface { pulumi.Input @@ -6877,8 +6798,7 @@ type EndpointsType struct { // EndpointsTypeInput is an input type that accepts EndpointsTypeArgs and EndpointsTypeOutput values. // You can construct a concrete instance of `EndpointsTypeInput` via: // -// EndpointsTypeArgs{...} -// +// EndpointsTypeArgs{...} type EndpointsTypeInput interface { pulumi.Input @@ -6924,8 +6844,7 @@ func (i EndpointsTypeArgs) ToEndpointsTypeOutputWithContext(ctx context.Context) // EndpointsTypeArrayInput is an input type that accepts EndpointsTypeArray and EndpointsTypeArrayOutput values. // You can construct a concrete instance of `EndpointsTypeArrayInput` via: // -// EndpointsTypeArray{ EndpointsTypeArgs{...} } -// +// EndpointsTypeArray{ EndpointsTypeArgs{...} } type EndpointsTypeArrayInput interface { pulumi.Input @@ -7028,8 +6947,7 @@ type EndpointsListType struct { // EndpointsListTypeInput is an input type that accepts EndpointsListTypeArgs and EndpointsListTypeOutput values. // You can construct a concrete instance of `EndpointsListTypeInput` via: // -// EndpointsListTypeArgs{...} -// +// EndpointsListTypeArgs{...} type EndpointsListTypeInput interface { pulumi.Input @@ -7109,8 +7027,7 @@ type EnvFromSource struct { // EnvFromSourceInput is an input type that accepts EnvFromSourceArgs and EnvFromSourceOutput values. // You can construct a concrete instance of `EnvFromSourceInput` via: // -// EnvFromSourceArgs{...} -// +// EnvFromSourceArgs{...} type EnvFromSourceInput interface { pulumi.Input @@ -7143,8 +7060,7 @@ func (i EnvFromSourceArgs) ToEnvFromSourceOutputWithContext(ctx context.Context) // EnvFromSourceArrayInput is an input type that accepts EnvFromSourceArray and EnvFromSourceArrayOutput values. // You can construct a concrete instance of `EnvFromSourceArrayInput` via: // -// EnvFromSourceArray{ EnvFromSourceArgs{...} } -// +// EnvFromSourceArray{ EnvFromSourceArgs{...} } type EnvFromSourceArrayInput interface { pulumi.Input @@ -7229,8 +7145,7 @@ type EnvVar struct { // EnvVarInput is an input type that accepts EnvVarArgs and EnvVarOutput values. // You can construct a concrete instance of `EnvVarInput` via: // -// EnvVarArgs{...} -// +// EnvVarArgs{...} type EnvVarInput interface { pulumi.Input @@ -7263,8 +7178,7 @@ func (i EnvVarArgs) ToEnvVarOutputWithContext(ctx context.Context) EnvVarOutput // EnvVarArrayInput is an input type that accepts EnvVarArray and EnvVarArrayOutput values. // You can construct a concrete instance of `EnvVarArrayInput` via: // -// EnvVarArray{ EnvVarArgs{...} } -// +// EnvVarArray{ EnvVarArgs{...} } type EnvVarArrayInput interface { pulumi.Input @@ -7351,8 +7265,7 @@ type EnvVarSource struct { // EnvVarSourceInput is an input type that accepts EnvVarSourceArgs and EnvVarSourceOutput values. // You can construct a concrete instance of `EnvVarSourceInput` via: // -// EnvVarSourceArgs{...} -// +// EnvVarSourceArgs{...} type EnvVarSourceInput interface { pulumi.Input @@ -7395,12 +7308,11 @@ func (i EnvVarSourceArgs) ToEnvVarSourcePtrOutputWithContext(ctx context.Context // EnvVarSourcePtrInput is an input type that accepts EnvVarSourceArgs, EnvVarSourcePtr and EnvVarSourcePtrOutput values. // You can construct a concrete instance of `EnvVarSourcePtrInput` via: // -// EnvVarSourceArgs{...} +// EnvVarSourceArgs{...} // // or: // -// nil -// +// nil type EnvVarSourcePtrInput interface { pulumi.Input @@ -7582,8 +7494,7 @@ type EphemeralContainer struct { // EphemeralContainerInput is an input type that accepts EphemeralContainerArgs and EphemeralContainerOutput values. // You can construct a concrete instance of `EphemeralContainerInput` via: // -// EphemeralContainerArgs{...} -// +// EphemeralContainerArgs{...} type EphemeralContainerInput interface { pulumi.Input @@ -7656,8 +7567,7 @@ func (i EphemeralContainerArgs) ToEphemeralContainerOutputWithContext(ctx contex // EphemeralContainerArrayInput is an input type that accepts EphemeralContainerArray and EphemeralContainerArrayOutput values. // You can construct a concrete instance of `EphemeralContainerArrayInput` via: // -// EphemeralContainerArray{ EphemeralContainerArgs{...} } -// +// EphemeralContainerArray{ EphemeralContainerArgs{...} } type EphemeralContainerArrayInput interface { pulumi.Input @@ -7870,8 +7780,7 @@ type EventType struct { // EventTypeInput is an input type that accepts EventTypeArgs and EventTypeOutput values. // You can construct a concrete instance of `EventTypeInput` via: // -// EventTypeArgs{...} -// +// EventTypeArgs{...} type EventTypeInput interface { pulumi.Input @@ -7932,8 +7841,7 @@ func (i EventTypeArgs) ToEventTypeOutputWithContext(ctx context.Context) EventTy // EventTypeArrayInput is an input type that accepts EventTypeArray and EventTypeArrayOutput values. // You can construct a concrete instance of `EventTypeArrayInput` via: // -// EventTypeArray{ EventTypeArgs{...} } -// +// EventTypeArray{ EventTypeArgs{...} } type EventTypeArrayInput interface { pulumi.Input @@ -8090,8 +7998,7 @@ type EventListType struct { // EventListTypeInput is an input type that accepts EventListTypeArgs and EventListTypeOutput values. // You can construct a concrete instance of `EventListTypeInput` via: // -// EventListTypeArgs{...} -// +// EventListTypeArgs{...} type EventListTypeInput interface { pulumi.Input @@ -8171,8 +8078,7 @@ type EventSeries struct { // EventSeriesInput is an input type that accepts EventSeriesArgs and EventSeriesOutput values. // You can construct a concrete instance of `EventSeriesInput` via: // -// EventSeriesArgs{...} -// +// EventSeriesArgs{...} type EventSeriesInput interface { pulumi.Input @@ -8213,12 +8119,11 @@ func (i EventSeriesArgs) ToEventSeriesPtrOutputWithContext(ctx context.Context) // EventSeriesPtrInput is an input type that accepts EventSeriesArgs, EventSeriesPtr and EventSeriesPtrOutput values. // You can construct a concrete instance of `EventSeriesPtrInput` via: // -// EventSeriesArgs{...} +// EventSeriesArgs{...} // // or: // -// nil -// +// nil type EventSeriesPtrInput interface { pulumi.Input @@ -8343,8 +8248,7 @@ type EventSource struct { // EventSourceInput is an input type that accepts EventSourceArgs and EventSourceOutput values. // You can construct a concrete instance of `EventSourceInput` via: // -// EventSourceArgs{...} -// +// EventSourceArgs{...} type EventSourceInput interface { pulumi.Input @@ -8383,12 +8287,11 @@ func (i EventSourceArgs) ToEventSourcePtrOutputWithContext(ctx context.Context) // EventSourcePtrInput is an input type that accepts EventSourceArgs, EventSourcePtr and EventSourcePtrOutput values. // You can construct a concrete instance of `EventSourcePtrInput` via: // -// EventSourceArgs{...} +// EventSourceArgs{...} // // or: // -// nil -// +// nil type EventSourcePtrInput interface { pulumi.Input @@ -8496,8 +8399,7 @@ type ExecAction struct { // ExecActionInput is an input type that accepts ExecActionArgs and ExecActionOutput values. // You can construct a concrete instance of `ExecActionInput` via: // -// ExecActionArgs{...} -// +// ExecActionArgs{...} type ExecActionInput interface { pulumi.Input @@ -8534,12 +8436,11 @@ func (i ExecActionArgs) ToExecActionPtrOutputWithContext(ctx context.Context) Ex // ExecActionPtrInput is an input type that accepts ExecActionArgs, ExecActionPtr and ExecActionPtrOutput values. // You can construct a concrete instance of `ExecActionPtrInput` via: // -// ExecActionArgs{...} +// ExecActionArgs{...} // // or: // -// nil -// +// nil type ExecActionPtrInput interface { pulumi.Input @@ -8640,8 +8541,7 @@ type FCVolumeSource struct { // FCVolumeSourceInput is an input type that accepts FCVolumeSourceArgs and FCVolumeSourceOutput values. // You can construct a concrete instance of `FCVolumeSourceInput` via: // -// FCVolumeSourceArgs{...} -// +// FCVolumeSourceArgs{...} type FCVolumeSourceInput interface { pulumi.Input @@ -8686,12 +8586,11 @@ func (i FCVolumeSourceArgs) ToFCVolumeSourcePtrOutputWithContext(ctx context.Con // FCVolumeSourcePtrInput is an input type that accepts FCVolumeSourceArgs, FCVolumeSourcePtr and FCVolumeSourcePtrOutput values. // You can construct a concrete instance of `FCVolumeSourcePtrInput` via: // -// FCVolumeSourceArgs{...} +// FCVolumeSourceArgs{...} // // or: // -// nil -// +// nil type FCVolumeSourcePtrInput interface { pulumi.Input @@ -8852,8 +8751,7 @@ type FlexPersistentVolumeSource struct { // FlexPersistentVolumeSourceInput is an input type that accepts FlexPersistentVolumeSourceArgs and FlexPersistentVolumeSourceOutput values. // You can construct a concrete instance of `FlexPersistentVolumeSourceInput` via: // -// FlexPersistentVolumeSourceArgs{...} -// +// FlexPersistentVolumeSourceArgs{...} type FlexPersistentVolumeSourceInput interface { pulumi.Input @@ -8898,12 +8796,11 @@ func (i FlexPersistentVolumeSourceArgs) ToFlexPersistentVolumeSourcePtrOutputWit // FlexPersistentVolumeSourcePtrInput is an input type that accepts FlexPersistentVolumeSourceArgs, FlexPersistentVolumeSourcePtr and FlexPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `FlexPersistentVolumeSourcePtrInput` via: // -// FlexPersistentVolumeSourceArgs{...} +// FlexPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type FlexPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -9064,8 +8961,7 @@ type FlexVolumeSource struct { // FlexVolumeSourceInput is an input type that accepts FlexVolumeSourceArgs and FlexVolumeSourceOutput values. // You can construct a concrete instance of `FlexVolumeSourceInput` via: // -// FlexVolumeSourceArgs{...} -// +// FlexVolumeSourceArgs{...} type FlexVolumeSourceInput interface { pulumi.Input @@ -9110,12 +9006,11 @@ func (i FlexVolumeSourceArgs) ToFlexVolumeSourcePtrOutputWithContext(ctx context // FlexVolumeSourcePtrInput is an input type that accepts FlexVolumeSourceArgs, FlexVolumeSourcePtr and FlexVolumeSourcePtrOutput values. // You can construct a concrete instance of `FlexVolumeSourcePtrInput` via: // -// FlexVolumeSourceArgs{...} +// FlexVolumeSourceArgs{...} // // or: // -// nil -// +// nil type FlexVolumeSourcePtrInput interface { pulumi.Input @@ -9270,8 +9165,7 @@ type FlockerVolumeSource struct { // FlockerVolumeSourceInput is an input type that accepts FlockerVolumeSourceArgs and FlockerVolumeSourceOutput values. // You can construct a concrete instance of `FlockerVolumeSourceInput` via: // -// FlockerVolumeSourceArgs{...} -// +// FlockerVolumeSourceArgs{...} type FlockerVolumeSourceInput interface { pulumi.Input @@ -9310,12 +9204,11 @@ func (i FlockerVolumeSourceArgs) ToFlockerVolumeSourcePtrOutputWithContext(ctx c // FlockerVolumeSourcePtrInput is an input type that accepts FlockerVolumeSourceArgs, FlockerVolumeSourcePtr and FlockerVolumeSourcePtrOutput values. // You can construct a concrete instance of `FlockerVolumeSourcePtrInput` via: // -// FlockerVolumeSourceArgs{...} +// FlockerVolumeSourceArgs{...} // // or: // -// nil -// +// nil type FlockerVolumeSourcePtrInput interface { pulumi.Input @@ -9431,8 +9324,7 @@ type GCEPersistentDiskVolumeSource struct { // GCEPersistentDiskVolumeSourceInput is an input type that accepts GCEPersistentDiskVolumeSourceArgs and GCEPersistentDiskVolumeSourceOutput values. // You can construct a concrete instance of `GCEPersistentDiskVolumeSourceInput` via: // -// GCEPersistentDiskVolumeSourceArgs{...} -// +// GCEPersistentDiskVolumeSourceArgs{...} type GCEPersistentDiskVolumeSourceInput interface { pulumi.Input @@ -9477,12 +9369,11 @@ func (i GCEPersistentDiskVolumeSourceArgs) ToGCEPersistentDiskVolumeSourcePtrOut // GCEPersistentDiskVolumeSourcePtrInput is an input type that accepts GCEPersistentDiskVolumeSourceArgs, GCEPersistentDiskVolumeSourcePtr and GCEPersistentDiskVolumeSourcePtrOutput values. // You can construct a concrete instance of `GCEPersistentDiskVolumeSourcePtrInput` via: // -// GCEPersistentDiskVolumeSourceArgs{...} +// GCEPersistentDiskVolumeSourceArgs{...} // // or: // -// nil -// +// nil type GCEPersistentDiskVolumeSourcePtrInput interface { pulumi.Input @@ -9628,8 +9519,7 @@ type GitRepoVolumeSource struct { // GitRepoVolumeSourceInput is an input type that accepts GitRepoVolumeSourceArgs and GitRepoVolumeSourceOutput values. // You can construct a concrete instance of `GitRepoVolumeSourceInput` via: // -// GitRepoVolumeSourceArgs{...} -// +// GitRepoVolumeSourceArgs{...} type GitRepoVolumeSourceInput interface { pulumi.Input @@ -9672,12 +9562,11 @@ func (i GitRepoVolumeSourceArgs) ToGitRepoVolumeSourcePtrOutputWithContext(ctx c // GitRepoVolumeSourcePtrInput is an input type that accepts GitRepoVolumeSourceArgs, GitRepoVolumeSourcePtr and GitRepoVolumeSourcePtrOutput values. // You can construct a concrete instance of `GitRepoVolumeSourcePtrInput` via: // -// GitRepoVolumeSourceArgs{...} +// GitRepoVolumeSourceArgs{...} // // or: // -// nil -// +// nil type GitRepoVolumeSourcePtrInput interface { pulumi.Input @@ -9808,8 +9697,7 @@ type GlusterfsPersistentVolumeSource struct { // GlusterfsPersistentVolumeSourceInput is an input type that accepts GlusterfsPersistentVolumeSourceArgs and GlusterfsPersistentVolumeSourceOutput values. // You can construct a concrete instance of `GlusterfsPersistentVolumeSourceInput` via: // -// GlusterfsPersistentVolumeSourceArgs{...} -// +// GlusterfsPersistentVolumeSourceArgs{...} type GlusterfsPersistentVolumeSourceInput interface { pulumi.Input @@ -9852,12 +9740,11 @@ func (i GlusterfsPersistentVolumeSourceArgs) ToGlusterfsPersistentVolumeSourcePt // GlusterfsPersistentVolumeSourcePtrInput is an input type that accepts GlusterfsPersistentVolumeSourceArgs, GlusterfsPersistentVolumeSourcePtr and GlusterfsPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `GlusterfsPersistentVolumeSourcePtrInput` via: // -// GlusterfsPersistentVolumeSourceArgs{...} +// GlusterfsPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type GlusterfsPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -9999,8 +9886,7 @@ type GlusterfsVolumeSource struct { // GlusterfsVolumeSourceInput is an input type that accepts GlusterfsVolumeSourceArgs and GlusterfsVolumeSourceOutput values. // You can construct a concrete instance of `GlusterfsVolumeSourceInput` via: // -// GlusterfsVolumeSourceArgs{...} -// +// GlusterfsVolumeSourceArgs{...} type GlusterfsVolumeSourceInput interface { pulumi.Input @@ -10041,12 +9927,11 @@ func (i GlusterfsVolumeSourceArgs) ToGlusterfsVolumeSourcePtrOutputWithContext(c // GlusterfsVolumeSourcePtrInput is an input type that accepts GlusterfsVolumeSourceArgs, GlusterfsVolumeSourcePtr and GlusterfsVolumeSourcePtrOutput values. // You can construct a concrete instance of `GlusterfsVolumeSourcePtrInput` via: // -// GlusterfsVolumeSourceArgs{...} +// GlusterfsVolumeSourceArgs{...} // // or: // -// nil -// +// nil type GlusterfsVolumeSourcePtrInput interface { pulumi.Input @@ -10177,8 +10062,7 @@ type HTTPGetAction struct { // HTTPGetActionInput is an input type that accepts HTTPGetActionArgs and HTTPGetActionOutput values. // You can construct a concrete instance of `HTTPGetActionInput` via: // -// HTTPGetActionArgs{...} -// +// HTTPGetActionArgs{...} type HTTPGetActionInput interface { pulumi.Input @@ -10223,12 +10107,11 @@ func (i HTTPGetActionArgs) ToHTTPGetActionPtrOutputWithContext(ctx context.Conte // HTTPGetActionPtrInput is an input type that accepts HTTPGetActionArgs, HTTPGetActionPtr and HTTPGetActionPtrOutput values. // You can construct a concrete instance of `HTTPGetActionPtrInput` via: // -// HTTPGetActionArgs{...} +// HTTPGetActionArgs{...} // // or: // -// nil -// +// nil type HTTPGetActionPtrInput interface { pulumi.Input @@ -10383,8 +10266,7 @@ type HTTPHeader struct { // HTTPHeaderInput is an input type that accepts HTTPHeaderArgs and HTTPHeaderOutput values. // You can construct a concrete instance of `HTTPHeaderInput` via: // -// HTTPHeaderArgs{...} -// +// HTTPHeaderArgs{...} type HTTPHeaderInput interface { pulumi.Input @@ -10415,8 +10297,7 @@ func (i HTTPHeaderArgs) ToHTTPHeaderOutputWithContext(ctx context.Context) HTTPH // HTTPHeaderArrayInput is an input type that accepts HTTPHeaderArray and HTTPHeaderArrayOutput values. // You can construct a concrete instance of `HTTPHeaderArrayInput` via: // -// HTTPHeaderArray{ HTTPHeaderArgs{...} } -// +// HTTPHeaderArray{ HTTPHeaderArgs{...} } type HTTPHeaderArrayInput interface { pulumi.Input @@ -10496,8 +10377,7 @@ type Handler struct { // HandlerInput is an input type that accepts HandlerArgs and HandlerOutput values. // You can construct a concrete instance of `HandlerInput` via: // -// HandlerArgs{...} -// +// HandlerArgs{...} type HandlerInput interface { pulumi.Input @@ -10538,12 +10418,11 @@ func (i HandlerArgs) ToHandlerPtrOutputWithContext(ctx context.Context) HandlerP // HandlerPtrInput is an input type that accepts HandlerArgs, HandlerPtr and HandlerPtrOutput values. // You can construct a concrete instance of `HandlerPtrInput` via: // -// HandlerArgs{...} +// HandlerArgs{...} // // or: // -// nil -// +// nil type HandlerPtrInput interface { pulumi.Input @@ -10668,8 +10547,7 @@ type HostAlias struct { // HostAliasInput is an input type that accepts HostAliasArgs and HostAliasOutput values. // You can construct a concrete instance of `HostAliasInput` via: // -// HostAliasArgs{...} -// +// HostAliasArgs{...} type HostAliasInput interface { pulumi.Input @@ -10700,8 +10578,7 @@ func (i HostAliasArgs) ToHostAliasOutputWithContext(ctx context.Context) HostAli // HostAliasArrayInput is an input type that accepts HostAliasArray and HostAliasArrayOutput values. // You can construct a concrete instance of `HostAliasArrayInput` via: // -// HostAliasArray{ HostAliasArgs{...} } -// +// HostAliasArray{ HostAliasArgs{...} } type HostAliasArrayInput interface { pulumi.Input @@ -10779,8 +10656,7 @@ type HostPathVolumeSource struct { // HostPathVolumeSourceInput is an input type that accepts HostPathVolumeSourceArgs and HostPathVolumeSourceOutput values. // You can construct a concrete instance of `HostPathVolumeSourceInput` via: // -// HostPathVolumeSourceArgs{...} -// +// HostPathVolumeSourceArgs{...} type HostPathVolumeSourceInput interface { pulumi.Input @@ -10819,12 +10695,11 @@ func (i HostPathVolumeSourceArgs) ToHostPathVolumeSourcePtrOutputWithContext(ctx // HostPathVolumeSourcePtrInput is an input type that accepts HostPathVolumeSourceArgs, HostPathVolumeSourcePtr and HostPathVolumeSourcePtrOutput values. // You can construct a concrete instance of `HostPathVolumeSourcePtrInput` via: // -// HostPathVolumeSourceArgs{...} +// HostPathVolumeSourceArgs{...} // // or: // -// nil -// +// nil type HostPathVolumeSourcePtrInput interface { pulumi.Input @@ -10952,8 +10827,7 @@ type ISCSIPersistentVolumeSource struct { // ISCSIPersistentVolumeSourceInput is an input type that accepts ISCSIPersistentVolumeSourceArgs and ISCSIPersistentVolumeSourceOutput values. // You can construct a concrete instance of `ISCSIPersistentVolumeSourceInput` via: // -// ISCSIPersistentVolumeSourceArgs{...} -// +// ISCSIPersistentVolumeSourceArgs{...} type ISCSIPersistentVolumeSourceInput interface { pulumi.Input @@ -11010,12 +10884,11 @@ func (i ISCSIPersistentVolumeSourceArgs) ToISCSIPersistentVolumeSourcePtrOutputW // ISCSIPersistentVolumeSourcePtrInput is an input type that accepts ISCSIPersistentVolumeSourceArgs, ISCSIPersistentVolumeSourcePtr and ISCSIPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `ISCSIPersistentVolumeSourcePtrInput` via: // -// ISCSIPersistentVolumeSourceArgs{...} +// ISCSIPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type ISCSIPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -11278,8 +11151,7 @@ type ISCSIVolumeSource struct { // ISCSIVolumeSourceInput is an input type that accepts ISCSIVolumeSourceArgs and ISCSIVolumeSourceOutput values. // You can construct a concrete instance of `ISCSIVolumeSourceInput` via: // -// ISCSIVolumeSourceArgs{...} -// +// ISCSIVolumeSourceArgs{...} type ISCSIVolumeSourceInput interface { pulumi.Input @@ -11336,12 +11208,11 @@ func (i ISCSIVolumeSourceArgs) ToISCSIVolumeSourcePtrOutputWithContext(ctx conte // ISCSIVolumeSourcePtrInput is an input type that accepts ISCSIVolumeSourceArgs, ISCSIVolumeSourcePtr and ISCSIVolumeSourcePtrOutput values. // You can construct a concrete instance of `ISCSIVolumeSourcePtrInput` via: // -// ISCSIVolumeSourceArgs{...} +// ISCSIVolumeSourceArgs{...} // // or: // -// nil -// +// nil type ISCSIVolumeSourcePtrInput interface { pulumi.Input @@ -11588,8 +11459,7 @@ type KeyToPath struct { // KeyToPathInput is an input type that accepts KeyToPathArgs and KeyToPathOutput values. // You can construct a concrete instance of `KeyToPathInput` via: // -// KeyToPathArgs{...} -// +// KeyToPathArgs{...} type KeyToPathInput interface { pulumi.Input @@ -11622,8 +11492,7 @@ func (i KeyToPathArgs) ToKeyToPathOutputWithContext(ctx context.Context) KeyToPa // KeyToPathArrayInput is an input type that accepts KeyToPathArray and KeyToPathArrayOutput values. // You can construct a concrete instance of `KeyToPathArrayInput` via: // -// KeyToPathArray{ KeyToPathArgs{...} } -// +// KeyToPathArray{ KeyToPathArgs{...} } type KeyToPathArrayInput interface { pulumi.Input @@ -11706,8 +11575,7 @@ type Lifecycle struct { // LifecycleInput is an input type that accepts LifecycleArgs and LifecycleOutput values. // You can construct a concrete instance of `LifecycleInput` via: // -// LifecycleArgs{...} -// +// LifecycleArgs{...} type LifecycleInput interface { pulumi.Input @@ -11746,12 +11614,11 @@ func (i LifecycleArgs) ToLifecyclePtrOutputWithContext(ctx context.Context) Life // LifecyclePtrInput is an input type that accepts LifecycleArgs, LifecyclePtr and LifecyclePtrOutput values. // You can construct a concrete instance of `LifecyclePtrInput` via: // -// LifecycleArgs{...} +// LifecycleArgs{...} // // or: // -// nil -// +// nil type LifecyclePtrInput interface { pulumi.Input @@ -11865,8 +11732,7 @@ type LimitRangeType struct { // LimitRangeTypeInput is an input type that accepts LimitRangeTypeArgs and LimitRangeTypeOutput values. // You can construct a concrete instance of `LimitRangeTypeInput` via: // -// LimitRangeTypeArgs{...} -// +// LimitRangeTypeArgs{...} type LimitRangeTypeInput interface { pulumi.Input @@ -11901,8 +11767,7 @@ func (i LimitRangeTypeArgs) ToLimitRangeTypeOutputWithContext(ctx context.Contex // LimitRangeTypeArrayInput is an input type that accepts LimitRangeTypeArray and LimitRangeTypeArrayOutput values. // You can construct a concrete instance of `LimitRangeTypeArrayInput` via: // -// LimitRangeTypeArray{ LimitRangeTypeArgs{...} } -// +// LimitRangeTypeArray{ LimitRangeTypeArgs{...} } type LimitRangeTypeArrayInput interface { pulumi.Input @@ -11998,8 +11863,7 @@ type LimitRangeItem struct { // LimitRangeItemInput is an input type that accepts LimitRangeItemArgs and LimitRangeItemOutput values. // You can construct a concrete instance of `LimitRangeItemInput` via: // -// LimitRangeItemArgs{...} -// +// LimitRangeItemArgs{...} type LimitRangeItemInput interface { pulumi.Input @@ -12038,8 +11902,7 @@ func (i LimitRangeItemArgs) ToLimitRangeItemOutputWithContext(ctx context.Contex // LimitRangeItemArrayInput is an input type that accepts LimitRangeItemArray and LimitRangeItemArrayOutput values. // You can construct a concrete instance of `LimitRangeItemArrayInput` via: // -// LimitRangeItemArray{ LimitRangeItemArgs{...} } -// +// LimitRangeItemArray{ LimitRangeItemArgs{...} } type LimitRangeItemArrayInput interface { pulumi.Input @@ -12141,8 +12004,7 @@ type LimitRangeListType struct { // LimitRangeListTypeInput is an input type that accepts LimitRangeListTypeArgs and LimitRangeListTypeOutput values. // You can construct a concrete instance of `LimitRangeListTypeInput` via: // -// LimitRangeListTypeArgs{...} -// +// LimitRangeListTypeArgs{...} type LimitRangeListTypeInput interface { pulumi.Input @@ -12218,8 +12080,7 @@ type LimitRangeSpec struct { // LimitRangeSpecInput is an input type that accepts LimitRangeSpecArgs and LimitRangeSpecOutput values. // You can construct a concrete instance of `LimitRangeSpecInput` via: // -// LimitRangeSpecArgs{...} -// +// LimitRangeSpecArgs{...} type LimitRangeSpecInput interface { pulumi.Input @@ -12256,12 +12117,11 @@ func (i LimitRangeSpecArgs) ToLimitRangeSpecPtrOutputWithContext(ctx context.Con // LimitRangeSpecPtrInput is an input type that accepts LimitRangeSpecArgs, LimitRangeSpecPtr and LimitRangeSpecPtrOutput values. // You can construct a concrete instance of `LimitRangeSpecPtrInput` via: // -// LimitRangeSpecArgs{...} +// LimitRangeSpecArgs{...} // // or: // -// nil -// +// nil type LimitRangeSpecPtrInput interface { pulumi.Input @@ -12356,8 +12216,7 @@ type LoadBalancerIngress struct { // LoadBalancerIngressInput is an input type that accepts LoadBalancerIngressArgs and LoadBalancerIngressOutput values. // You can construct a concrete instance of `LoadBalancerIngressInput` via: // -// LoadBalancerIngressArgs{...} -// +// LoadBalancerIngressArgs{...} type LoadBalancerIngressInput interface { pulumi.Input @@ -12388,8 +12247,7 @@ func (i LoadBalancerIngressArgs) ToLoadBalancerIngressOutputWithContext(ctx cont // LoadBalancerIngressArrayInput is an input type that accepts LoadBalancerIngressArray and LoadBalancerIngressArrayOutput values. // You can construct a concrete instance of `LoadBalancerIngressArrayInput` via: // -// LoadBalancerIngressArray{ LoadBalancerIngressArgs{...} } -// +// LoadBalancerIngressArray{ LoadBalancerIngressArgs{...} } type LoadBalancerIngressArrayInput interface { pulumi.Input @@ -12465,8 +12323,7 @@ type LoadBalancerStatus struct { // LoadBalancerStatusInput is an input type that accepts LoadBalancerStatusArgs and LoadBalancerStatusOutput values. // You can construct a concrete instance of `LoadBalancerStatusInput` via: // -// LoadBalancerStatusArgs{...} -// +// LoadBalancerStatusArgs{...} type LoadBalancerStatusInput interface { pulumi.Input @@ -12503,12 +12360,11 @@ func (i LoadBalancerStatusArgs) ToLoadBalancerStatusPtrOutputWithContext(ctx con // LoadBalancerStatusPtrInput is an input type that accepts LoadBalancerStatusArgs, LoadBalancerStatusPtr and LoadBalancerStatusPtrOutput values. // You can construct a concrete instance of `LoadBalancerStatusPtrInput` via: // -// LoadBalancerStatusArgs{...} +// LoadBalancerStatusArgs{...} // // or: // -// nil -// +// nil type LoadBalancerStatusPtrInput interface { pulumi.Input @@ -12601,8 +12457,7 @@ type LocalObjectReference struct { // LocalObjectReferenceInput is an input type that accepts LocalObjectReferenceArgs and LocalObjectReferenceOutput values. // You can construct a concrete instance of `LocalObjectReferenceInput` via: // -// LocalObjectReferenceArgs{...} -// +// LocalObjectReferenceArgs{...} type LocalObjectReferenceInput interface { pulumi.Input @@ -12639,12 +12494,11 @@ func (i LocalObjectReferenceArgs) ToLocalObjectReferencePtrOutputWithContext(ctx // LocalObjectReferencePtrInput is an input type that accepts LocalObjectReferenceArgs, LocalObjectReferencePtr and LocalObjectReferencePtrOutput values. // You can construct a concrete instance of `LocalObjectReferencePtrInput` via: // -// LocalObjectReferenceArgs{...} +// LocalObjectReferenceArgs{...} // // or: // -// nil -// +// nil type LocalObjectReferencePtrInput interface { pulumi.Input @@ -12673,8 +12527,7 @@ func (i *localObjectReferencePtrType) ToLocalObjectReferencePtrOutputWithContext // LocalObjectReferenceArrayInput is an input type that accepts LocalObjectReferenceArray and LocalObjectReferenceArrayOutput values. // You can construct a concrete instance of `LocalObjectReferenceArrayInput` via: // -// LocalObjectReferenceArray{ LocalObjectReferenceArgs{...} } -// +// LocalObjectReferenceArray{ LocalObjectReferenceArgs{...} } type LocalObjectReferenceArrayInput interface { pulumi.Input @@ -12785,8 +12638,7 @@ type LocalVolumeSource struct { // LocalVolumeSourceInput is an input type that accepts LocalVolumeSourceArgs and LocalVolumeSourceOutput values. // You can construct a concrete instance of `LocalVolumeSourceInput` via: // -// LocalVolumeSourceArgs{...} -// +// LocalVolumeSourceArgs{...} type LocalVolumeSourceInput interface { pulumi.Input @@ -12825,12 +12677,11 @@ func (i LocalVolumeSourceArgs) ToLocalVolumeSourcePtrOutputWithContext(ctx conte // LocalVolumeSourcePtrInput is an input type that accepts LocalVolumeSourceArgs, LocalVolumeSourcePtr and LocalVolumeSourcePtrOutput values. // You can construct a concrete instance of `LocalVolumeSourcePtrInput` via: // -// LocalVolumeSourceArgs{...} +// LocalVolumeSourceArgs{...} // // or: // -// nil -// +// nil type LocalVolumeSourcePtrInput interface { pulumi.Input @@ -12942,8 +12793,7 @@ type NFSVolumeSource struct { // NFSVolumeSourceInput is an input type that accepts NFSVolumeSourceArgs and NFSVolumeSourceOutput values. // You can construct a concrete instance of `NFSVolumeSourceInput` via: // -// NFSVolumeSourceArgs{...} -// +// NFSVolumeSourceArgs{...} type NFSVolumeSourceInput interface { pulumi.Input @@ -12984,12 +12834,11 @@ func (i NFSVolumeSourceArgs) ToNFSVolumeSourcePtrOutputWithContext(ctx context.C // NFSVolumeSourcePtrInput is an input type that accepts NFSVolumeSourceArgs, NFSVolumeSourcePtr and NFSVolumeSourcePtrOutput values. // You can construct a concrete instance of `NFSVolumeSourcePtrInput` via: // -// NFSVolumeSourceArgs{...} +// NFSVolumeSourceArgs{...} // // or: // -// nil -// +// nil type NFSVolumeSourcePtrInput interface { pulumi.Input @@ -13120,8 +12969,7 @@ type NamespaceType struct { // NamespaceTypeInput is an input type that accepts NamespaceTypeArgs and NamespaceTypeOutput values. // You can construct a concrete instance of `NamespaceTypeInput` via: // -// NamespaceTypeArgs{...} -// +// NamespaceTypeArgs{...} type NamespaceTypeInput interface { pulumi.Input @@ -13158,8 +13006,7 @@ func (i NamespaceTypeArgs) ToNamespaceTypeOutputWithContext(ctx context.Context) // NamespaceTypeArrayInput is an input type that accepts NamespaceTypeArray and NamespaceTypeArrayOutput values. // You can construct a concrete instance of `NamespaceTypeArrayInput` via: // -// NamespaceTypeArray{ NamespaceTypeArgs{...} } -// +// NamespaceTypeArray{ NamespaceTypeArgs{...} } type NamespaceTypeArrayInput interface { pulumi.Input @@ -13255,8 +13102,7 @@ type NamespaceCondition struct { // NamespaceConditionInput is an input type that accepts NamespaceConditionArgs and NamespaceConditionOutput values. // You can construct a concrete instance of `NamespaceConditionInput` via: // -// NamespaceConditionArgs{...} -// +// NamespaceConditionArgs{...} type NamespaceConditionInput interface { pulumi.Input @@ -13290,8 +13136,7 @@ func (i NamespaceConditionArgs) ToNamespaceConditionOutputWithContext(ctx contex // NamespaceConditionArrayInput is an input type that accepts NamespaceConditionArray and NamespaceConditionArrayOutput values. // You can construct a concrete instance of `NamespaceConditionArrayInput` via: // -// NamespaceConditionArray{ NamespaceConditionArgs{...} } -// +// NamespaceConditionArray{ NamespaceConditionArgs{...} } type NamespaceConditionArrayInput interface { pulumi.Input @@ -13385,8 +13230,7 @@ type NamespaceListType struct { // NamespaceListTypeInput is an input type that accepts NamespaceListTypeArgs and NamespaceListTypeOutput values. // You can construct a concrete instance of `NamespaceListTypeInput` via: // -// NamespaceListTypeArgs{...} -// +// NamespaceListTypeArgs{...} type NamespaceListTypeInput interface { pulumi.Input @@ -13462,8 +13306,7 @@ type NamespaceSpec struct { // NamespaceSpecInput is an input type that accepts NamespaceSpecArgs and NamespaceSpecOutput values. // You can construct a concrete instance of `NamespaceSpecInput` via: // -// NamespaceSpecArgs{...} -// +// NamespaceSpecArgs{...} type NamespaceSpecInput interface { pulumi.Input @@ -13500,12 +13343,11 @@ func (i NamespaceSpecArgs) ToNamespaceSpecPtrOutputWithContext(ctx context.Conte // NamespaceSpecPtrInput is an input type that accepts NamespaceSpecArgs, NamespaceSpecPtr and NamespaceSpecPtrOutput values. // You can construct a concrete instance of `NamespaceSpecPtrInput` via: // -// NamespaceSpecArgs{...} +// NamespaceSpecArgs{...} // // or: // -// nil -// +// nil type NamespaceSpecPtrInput interface { pulumi.Input @@ -13600,8 +13442,7 @@ type NamespaceStatus struct { // NamespaceStatusInput is an input type that accepts NamespaceStatusArgs and NamespaceStatusOutput values. // You can construct a concrete instance of `NamespaceStatusInput` via: // -// NamespaceStatusArgs{...} -// +// NamespaceStatusArgs{...} type NamespaceStatusInput interface { pulumi.Input @@ -13640,12 +13481,11 @@ func (i NamespaceStatusArgs) ToNamespaceStatusPtrOutputWithContext(ctx context.C // NamespaceStatusPtrInput is an input type that accepts NamespaceStatusArgs, NamespaceStatusPtr and NamespaceStatusPtrOutput values. // You can construct a concrete instance of `NamespaceStatusPtrInput` via: // -// NamespaceStatusArgs{...} +// NamespaceStatusArgs{...} // // or: // -// nil -// +// nil type NamespaceStatusPtrInput interface { pulumi.Input @@ -13761,8 +13601,7 @@ type NodeType struct { // NodeTypeInput is an input type that accepts NodeTypeArgs and NodeTypeOutput values. // You can construct a concrete instance of `NodeTypeInput` via: // -// NodeTypeArgs{...} -// +// NodeTypeArgs{...} type NodeTypeInput interface { pulumi.Input @@ -13799,8 +13638,7 @@ func (i NodeTypeArgs) ToNodeTypeOutputWithContext(ctx context.Context) NodeTypeO // NodeTypeArrayInput is an input type that accepts NodeTypeArray and NodeTypeArrayOutput values. // You can construct a concrete instance of `NodeTypeArrayInput` via: // -// NodeTypeArray{ NodeTypeArgs{...} } -// +// NodeTypeArray{ NodeTypeArgs{...} } type NodeTypeArrayInput interface { pulumi.Input @@ -13893,8 +13731,7 @@ type NodeAddress struct { // NodeAddressInput is an input type that accepts NodeAddressArgs and NodeAddressOutput values. // You can construct a concrete instance of `NodeAddressInput` via: // -// NodeAddressArgs{...} -// +// NodeAddressArgs{...} type NodeAddressInput interface { pulumi.Input @@ -13925,8 +13762,7 @@ func (i NodeAddressArgs) ToNodeAddressOutputWithContext(ctx context.Context) Nod // NodeAddressArrayInput is an input type that accepts NodeAddressArray and NodeAddressArrayOutput values. // You can construct a concrete instance of `NodeAddressArrayInput` via: // -// NodeAddressArray{ NodeAddressArgs{...} } -// +// NodeAddressArray{ NodeAddressArgs{...} } type NodeAddressArrayInput interface { pulumi.Input @@ -14004,8 +13840,7 @@ type NodeAffinity struct { // NodeAffinityInput is an input type that accepts NodeAffinityArgs and NodeAffinityOutput values. // You can construct a concrete instance of `NodeAffinityInput` via: // -// NodeAffinityArgs{...} -// +// NodeAffinityArgs{...} type NodeAffinityInput interface { pulumi.Input @@ -14044,12 +13879,11 @@ func (i NodeAffinityArgs) ToNodeAffinityPtrOutputWithContext(ctx context.Context // NodeAffinityPtrInput is an input type that accepts NodeAffinityArgs, NodeAffinityPtr and NodeAffinityPtrOutput values. // You can construct a concrete instance of `NodeAffinityPtrInput` via: // -// NodeAffinityArgs{...} +// NodeAffinityArgs{...} // // or: // -// nil -// +// nil type NodeAffinityPtrInput interface { pulumi.Input @@ -14169,8 +14003,7 @@ type NodeCondition struct { // NodeConditionInput is an input type that accepts NodeConditionArgs and NodeConditionOutput values. // You can construct a concrete instance of `NodeConditionInput` via: // -// NodeConditionArgs{...} -// +// NodeConditionArgs{...} type NodeConditionInput interface { pulumi.Input @@ -14209,8 +14042,7 @@ func (i NodeConditionArgs) ToNodeConditionOutputWithContext(ctx context.Context) // NodeConditionArrayInput is an input type that accepts NodeConditionArray and NodeConditionArrayOutput values. // You can construct a concrete instance of `NodeConditionArrayInput` via: // -// NodeConditionArray{ NodeConditionArgs{...} } -// +// NodeConditionArray{ NodeConditionArgs{...} } type NodeConditionArrayInput interface { pulumi.Input @@ -14306,8 +14138,7 @@ type NodeConfigSource struct { // NodeConfigSourceInput is an input type that accepts NodeConfigSourceArgs and NodeConfigSourceOutput values. // You can construct a concrete instance of `NodeConfigSourceInput` via: // -// NodeConfigSourceArgs{...} -// +// NodeConfigSourceArgs{...} type NodeConfigSourceInput interface { pulumi.Input @@ -14344,12 +14175,11 @@ func (i NodeConfigSourceArgs) ToNodeConfigSourcePtrOutputWithContext(ctx context // NodeConfigSourcePtrInput is an input type that accepts NodeConfigSourceArgs, NodeConfigSourcePtr and NodeConfigSourcePtrOutput values. // You can construct a concrete instance of `NodeConfigSourcePtrInput` via: // -// NodeConfigSourceArgs{...} +// NodeConfigSourceArgs{...} // // or: // -// nil -// +// nil type NodeConfigSourcePtrInput interface { pulumi.Input @@ -14448,8 +14278,7 @@ type NodeConfigStatus struct { // NodeConfigStatusInput is an input type that accepts NodeConfigStatusArgs and NodeConfigStatusOutput values. // You can construct a concrete instance of `NodeConfigStatusInput` via: // -// NodeConfigStatusArgs{...} -// +// NodeConfigStatusArgs{...} type NodeConfigStatusInput interface { pulumi.Input @@ -14492,12 +14321,11 @@ func (i NodeConfigStatusArgs) ToNodeConfigStatusPtrOutputWithContext(ctx context // NodeConfigStatusPtrInput is an input type that accepts NodeConfigStatusArgs, NodeConfigStatusPtr and NodeConfigStatusPtrOutput values. // You can construct a concrete instance of `NodeConfigStatusPtrInput` via: // -// NodeConfigStatusArgs{...} +// NodeConfigStatusArgs{...} // // or: // -// nil -// +// nil type NodeConfigStatusPtrInput interface { pulumi.Input @@ -14635,8 +14463,7 @@ type NodeDaemonEndpoints struct { // NodeDaemonEndpointsInput is an input type that accepts NodeDaemonEndpointsArgs and NodeDaemonEndpointsOutput values. // You can construct a concrete instance of `NodeDaemonEndpointsInput` via: // -// NodeDaemonEndpointsArgs{...} -// +// NodeDaemonEndpointsArgs{...} type NodeDaemonEndpointsInput interface { pulumi.Input @@ -14673,12 +14500,11 @@ func (i NodeDaemonEndpointsArgs) ToNodeDaemonEndpointsPtrOutputWithContext(ctx c // NodeDaemonEndpointsPtrInput is an input type that accepts NodeDaemonEndpointsArgs, NodeDaemonEndpointsPtr and NodeDaemonEndpointsPtrOutput values. // You can construct a concrete instance of `NodeDaemonEndpointsPtrInput` via: // -// NodeDaemonEndpointsArgs{...} +// NodeDaemonEndpointsArgs{...} // // or: // -// nil -// +// nil type NodeDaemonEndpointsPtrInput interface { pulumi.Input @@ -14777,8 +14603,7 @@ type NodeListType struct { // NodeListTypeInput is an input type that accepts NodeListTypeArgs and NodeListTypeOutput values. // You can construct a concrete instance of `NodeListTypeInput` via: // -// NodeListTypeArgs{...} -// +// NodeListTypeArgs{...} type NodeListTypeInput interface { pulumi.Input @@ -14854,8 +14679,7 @@ type NodeSelector struct { // NodeSelectorInput is an input type that accepts NodeSelectorArgs and NodeSelectorOutput values. // You can construct a concrete instance of `NodeSelectorInput` via: // -// NodeSelectorArgs{...} -// +// NodeSelectorArgs{...} type NodeSelectorInput interface { pulumi.Input @@ -14892,12 +14716,11 @@ func (i NodeSelectorArgs) ToNodeSelectorPtrOutputWithContext(ctx context.Context // NodeSelectorPtrInput is an input type that accepts NodeSelectorArgs, NodeSelectorPtr and NodeSelectorPtrOutput values. // You can construct a concrete instance of `NodeSelectorPtrInput` via: // -// NodeSelectorArgs{...} +// NodeSelectorArgs{...} // // or: // -// nil -// +// nil type NodeSelectorPtrInput interface { pulumi.Input @@ -14994,8 +14817,7 @@ type NodeSelectorRequirement struct { // NodeSelectorRequirementInput is an input type that accepts NodeSelectorRequirementArgs and NodeSelectorRequirementOutput values. // You can construct a concrete instance of `NodeSelectorRequirementInput` via: // -// NodeSelectorRequirementArgs{...} -// +// NodeSelectorRequirementArgs{...} type NodeSelectorRequirementInput interface { pulumi.Input @@ -15028,8 +14850,7 @@ func (i NodeSelectorRequirementArgs) ToNodeSelectorRequirementOutputWithContext( // NodeSelectorRequirementArrayInput is an input type that accepts NodeSelectorRequirementArray and NodeSelectorRequirementArrayOutput values. // You can construct a concrete instance of `NodeSelectorRequirementArrayInput` via: // -// NodeSelectorRequirementArray{ NodeSelectorRequirementArgs{...} } -// +// NodeSelectorRequirementArray{ NodeSelectorRequirementArgs{...} } type NodeSelectorRequirementArrayInput interface { pulumi.Input @@ -15112,8 +14933,7 @@ type NodeSelectorTerm struct { // NodeSelectorTermInput is an input type that accepts NodeSelectorTermArgs and NodeSelectorTermOutput values. // You can construct a concrete instance of `NodeSelectorTermInput` via: // -// NodeSelectorTermArgs{...} -// +// NodeSelectorTermArgs{...} type NodeSelectorTermInput interface { pulumi.Input @@ -15144,8 +14964,7 @@ func (i NodeSelectorTermArgs) ToNodeSelectorTermOutputWithContext(ctx context.Co // NodeSelectorTermArrayInput is an input type that accepts NodeSelectorTermArray and NodeSelectorTermArrayOutput values. // You can construct a concrete instance of `NodeSelectorTermArrayInput` via: // -// NodeSelectorTermArray{ NodeSelectorTermArgs{...} } -// +// NodeSelectorTermArray{ NodeSelectorTermArgs{...} } type NodeSelectorTermArrayInput interface { pulumi.Input @@ -15233,8 +15052,7 @@ type NodeSpec struct { // NodeSpecInput is an input type that accepts NodeSpecArgs and NodeSpecOutput values. // You can construct a concrete instance of `NodeSpecInput` via: // -// NodeSpecArgs{...} -// +// NodeSpecArgs{...} type NodeSpecInput interface { pulumi.Input @@ -15283,12 +15101,11 @@ func (i NodeSpecArgs) ToNodeSpecPtrOutputWithContext(ctx context.Context) NodeSp // NodeSpecPtrInput is an input type that accepts NodeSpecArgs, NodeSpecPtr and NodeSpecPtrOutput values. // You can construct a concrete instance of `NodeSpecPtrInput` via: // -// NodeSpecArgs{...} +// NodeSpecArgs{...} // // or: // -// nil -// +// nil type NodeSpecPtrInput interface { pulumi.Input @@ -15491,8 +15308,7 @@ type NodeStatus struct { // NodeStatusInput is an input type that accepts NodeStatusArgs and NodeStatusOutput values. // You can construct a concrete instance of `NodeStatusInput` via: // -// NodeStatusArgs{...} -// +// NodeStatusArgs{...} type NodeStatusInput interface { pulumi.Input @@ -15549,12 +15365,11 @@ func (i NodeStatusArgs) ToNodeStatusPtrOutputWithContext(ctx context.Context) No // NodeStatusPtrInput is an input type that accepts NodeStatusArgs, NodeStatusPtr and NodeStatusPtrOutput values. // You can construct a concrete instance of `NodeStatusPtrInput` via: // -// NodeStatusArgs{...} +// NodeStatusArgs{...} // // or: // -// nil -// +// nil type NodeStatusPtrInput interface { pulumi.Input @@ -15815,8 +15630,7 @@ type NodeSystemInfo struct { // NodeSystemInfoInput is an input type that accepts NodeSystemInfoArgs and NodeSystemInfoOutput values. // You can construct a concrete instance of `NodeSystemInfoInput` via: // -// NodeSystemInfoArgs{...} -// +// NodeSystemInfoArgs{...} type NodeSystemInfoInput interface { pulumi.Input @@ -15871,12 +15685,11 @@ func (i NodeSystemInfoArgs) ToNodeSystemInfoPtrOutputWithContext(ctx context.Con // NodeSystemInfoPtrInput is an input type that accepts NodeSystemInfoArgs, NodeSystemInfoPtr and NodeSystemInfoPtrOutput values. // You can construct a concrete instance of `NodeSystemInfoPtrInput` via: // -// NodeSystemInfoArgs{...} +// NodeSystemInfoArgs{...} // // or: // -// nil -// +// nil type NodeSystemInfoPtrInput interface { pulumi.Input @@ -16106,8 +15919,7 @@ type ObjectFieldSelector struct { // ObjectFieldSelectorInput is an input type that accepts ObjectFieldSelectorArgs and ObjectFieldSelectorOutput values. // You can construct a concrete instance of `ObjectFieldSelectorInput` via: // -// ObjectFieldSelectorArgs{...} -// +// ObjectFieldSelectorArgs{...} type ObjectFieldSelectorInput interface { pulumi.Input @@ -16146,12 +15958,11 @@ func (i ObjectFieldSelectorArgs) ToObjectFieldSelectorPtrOutputWithContext(ctx c // ObjectFieldSelectorPtrInput is an input type that accepts ObjectFieldSelectorArgs, ObjectFieldSelectorPtr and ObjectFieldSelectorPtrOutput values. // You can construct a concrete instance of `ObjectFieldSelectorPtrInput` via: // -// ObjectFieldSelectorArgs{...} +// ObjectFieldSelectorArgs{...} // // or: // -// nil -// +// nil type ObjectFieldSelectorPtrInput interface { pulumi.Input @@ -16271,8 +16082,7 @@ type ObjectReference struct { // ObjectReferenceInput is an input type that accepts ObjectReferenceArgs and ObjectReferenceOutput values. // You can construct a concrete instance of `ObjectReferenceInput` via: // -// ObjectReferenceArgs{...} -// +// ObjectReferenceArgs{...} type ObjectReferenceInput interface { pulumi.Input @@ -16321,12 +16131,11 @@ func (i ObjectReferenceArgs) ToObjectReferencePtrOutputWithContext(ctx context.C // ObjectReferencePtrInput is an input type that accepts ObjectReferenceArgs, ObjectReferencePtr and ObjectReferencePtrOutput values. // You can construct a concrete instance of `ObjectReferencePtrInput` via: // -// ObjectReferenceArgs{...} +// ObjectReferenceArgs{...} // // or: // -// nil -// +// nil type ObjectReferencePtrInput interface { pulumi.Input @@ -16355,8 +16164,7 @@ func (i *objectReferencePtrType) ToObjectReferencePtrOutputWithContext(ctx conte // ObjectReferenceArrayInput is an input type that accepts ObjectReferenceArray and ObjectReferenceArrayOutput values. // You can construct a concrete instance of `ObjectReferenceArrayInput` via: // -// ObjectReferenceArray{ ObjectReferenceArgs{...} } -// +// ObjectReferenceArray{ ObjectReferenceArgs{...} } type ObjectReferenceArrayInput interface { pulumi.Input @@ -16563,8 +16371,7 @@ type PersistentVolumeType struct { // PersistentVolumeTypeInput is an input type that accepts PersistentVolumeTypeArgs and PersistentVolumeTypeOutput values. // You can construct a concrete instance of `PersistentVolumeTypeInput` via: // -// PersistentVolumeTypeArgs{...} -// +// PersistentVolumeTypeArgs{...} type PersistentVolumeTypeInput interface { pulumi.Input @@ -16601,8 +16408,7 @@ func (i PersistentVolumeTypeArgs) ToPersistentVolumeTypeOutputWithContext(ctx co // PersistentVolumeTypeArrayInput is an input type that accepts PersistentVolumeTypeArray and PersistentVolumeTypeArrayOutput values. // You can construct a concrete instance of `PersistentVolumeTypeArrayInput` via: // -// PersistentVolumeTypeArray{ PersistentVolumeTypeArgs{...} } -// +// PersistentVolumeTypeArray{ PersistentVolumeTypeArgs{...} } type PersistentVolumeTypeArrayInput interface { pulumi.Input @@ -16701,8 +16507,7 @@ type PersistentVolumeClaimType struct { // PersistentVolumeClaimTypeInput is an input type that accepts PersistentVolumeClaimTypeArgs and PersistentVolumeClaimTypeOutput values. // You can construct a concrete instance of `PersistentVolumeClaimTypeInput` via: // -// PersistentVolumeClaimTypeArgs{...} -// +// PersistentVolumeClaimTypeArgs{...} type PersistentVolumeClaimTypeInput interface { pulumi.Input @@ -16739,8 +16544,7 @@ func (i PersistentVolumeClaimTypeArgs) ToPersistentVolumeClaimTypeOutputWithCont // PersistentVolumeClaimTypeArrayInput is an input type that accepts PersistentVolumeClaimTypeArray and PersistentVolumeClaimTypeArrayOutput values. // You can construct a concrete instance of `PersistentVolumeClaimTypeArrayInput` via: // -// PersistentVolumeClaimTypeArray{ PersistentVolumeClaimTypeArgs{...} } -// +// PersistentVolumeClaimTypeArray{ PersistentVolumeClaimTypeArgs{...} } type PersistentVolumeClaimTypeArrayInput interface { pulumi.Input @@ -16839,8 +16643,7 @@ type PersistentVolumeClaimCondition struct { // PersistentVolumeClaimConditionInput is an input type that accepts PersistentVolumeClaimConditionArgs and PersistentVolumeClaimConditionOutput values. // You can construct a concrete instance of `PersistentVolumeClaimConditionInput` via: // -// PersistentVolumeClaimConditionArgs{...} -// +// PersistentVolumeClaimConditionArgs{...} type PersistentVolumeClaimConditionInput interface { pulumi.Input @@ -16877,8 +16680,7 @@ func (i PersistentVolumeClaimConditionArgs) ToPersistentVolumeClaimConditionOutp // PersistentVolumeClaimConditionArrayInput is an input type that accepts PersistentVolumeClaimConditionArray and PersistentVolumeClaimConditionArrayOutput values. // You can construct a concrete instance of `PersistentVolumeClaimConditionArrayInput` via: // -// PersistentVolumeClaimConditionArray{ PersistentVolumeClaimConditionArgs{...} } -// +// PersistentVolumeClaimConditionArray{ PersistentVolumeClaimConditionArgs{...} } type PersistentVolumeClaimConditionArrayInput interface { pulumi.Input @@ -16978,8 +16780,7 @@ type PersistentVolumeClaimListType struct { // PersistentVolumeClaimListTypeInput is an input type that accepts PersistentVolumeClaimListTypeArgs and PersistentVolumeClaimListTypeOutput values. // You can construct a concrete instance of `PersistentVolumeClaimListTypeInput` via: // -// PersistentVolumeClaimListTypeArgs{...} -// +// PersistentVolumeClaimListTypeArgs{...} type PersistentVolumeClaimListTypeInput interface { pulumi.Input @@ -17067,8 +16868,7 @@ type PersistentVolumeClaimSpec struct { // PersistentVolumeClaimSpecInput is an input type that accepts PersistentVolumeClaimSpecArgs and PersistentVolumeClaimSpecOutput values. // You can construct a concrete instance of `PersistentVolumeClaimSpecInput` via: // -// PersistentVolumeClaimSpecArgs{...} -// +// PersistentVolumeClaimSpecArgs{...} type PersistentVolumeClaimSpecInput interface { pulumi.Input @@ -17117,12 +16917,11 @@ func (i PersistentVolumeClaimSpecArgs) ToPersistentVolumeClaimSpecPtrOutputWithC // PersistentVolumeClaimSpecPtrInput is an input type that accepts PersistentVolumeClaimSpecArgs, PersistentVolumeClaimSpecPtr and PersistentVolumeClaimSpecPtrOutput values. // You can construct a concrete instance of `PersistentVolumeClaimSpecPtrInput` via: // -// PersistentVolumeClaimSpecArgs{...} +// PersistentVolumeClaimSpecArgs{...} // // or: // -// nil -// +// nil type PersistentVolumeClaimSpecPtrInput interface { pulumi.Input @@ -17311,8 +17110,7 @@ type PersistentVolumeClaimStatus struct { // PersistentVolumeClaimStatusInput is an input type that accepts PersistentVolumeClaimStatusArgs and PersistentVolumeClaimStatusOutput values. // You can construct a concrete instance of `PersistentVolumeClaimStatusInput` via: // -// PersistentVolumeClaimStatusArgs{...} -// +// PersistentVolumeClaimStatusArgs{...} type PersistentVolumeClaimStatusInput interface { pulumi.Input @@ -17355,12 +17153,11 @@ func (i PersistentVolumeClaimStatusArgs) ToPersistentVolumeClaimStatusPtrOutputW // PersistentVolumeClaimStatusPtrInput is an input type that accepts PersistentVolumeClaimStatusArgs, PersistentVolumeClaimStatusPtr and PersistentVolumeClaimStatusPtrOutput values. // You can construct a concrete instance of `PersistentVolumeClaimStatusPtrInput` via: // -// PersistentVolumeClaimStatusArgs{...} +// PersistentVolumeClaimStatusArgs{...} // // or: // -// nil -// +// nil type PersistentVolumeClaimStatusPtrInput interface { pulumi.Input @@ -17500,8 +17297,7 @@ type PersistentVolumeClaimVolumeSource struct { // PersistentVolumeClaimVolumeSourceInput is an input type that accepts PersistentVolumeClaimVolumeSourceArgs and PersistentVolumeClaimVolumeSourceOutput values. // You can construct a concrete instance of `PersistentVolumeClaimVolumeSourceInput` via: // -// PersistentVolumeClaimVolumeSourceArgs{...} -// +// PersistentVolumeClaimVolumeSourceArgs{...} type PersistentVolumeClaimVolumeSourceInput interface { pulumi.Input @@ -17540,12 +17336,11 @@ func (i PersistentVolumeClaimVolumeSourceArgs) ToPersistentVolumeClaimVolumeSour // PersistentVolumeClaimVolumeSourcePtrInput is an input type that accepts PersistentVolumeClaimVolumeSourceArgs, PersistentVolumeClaimVolumeSourcePtr and PersistentVolumeClaimVolumeSourcePtrOutput values. // You can construct a concrete instance of `PersistentVolumeClaimVolumeSourcePtrInput` via: // -// PersistentVolumeClaimVolumeSourceArgs{...} +// PersistentVolumeClaimVolumeSourceArgs{...} // // or: // -// nil -// +// nil type PersistentVolumeClaimVolumeSourcePtrInput interface { pulumi.Input @@ -17659,8 +17454,7 @@ type PersistentVolumeListType struct { // PersistentVolumeListTypeInput is an input type that accepts PersistentVolumeListTypeArgs and PersistentVolumeListTypeOutput values. // You can construct a concrete instance of `PersistentVolumeListTypeInput` via: // -// PersistentVolumeListTypeArgs{...} -// +// PersistentVolumeListTypeArgs{...} type PersistentVolumeListTypeInput interface { pulumi.Input @@ -17794,8 +17588,7 @@ type PersistentVolumeSpec struct { // PersistentVolumeSpecInput is an input type that accepts PersistentVolumeSpecArgs and PersistentVolumeSpecOutput values. // You can construct a concrete instance of `PersistentVolumeSpecInput` via: // -// PersistentVolumeSpecArgs{...} -// +// PersistentVolumeSpecArgs{...} type PersistentVolumeSpecInput interface { pulumi.Input @@ -17890,12 +17683,11 @@ func (i PersistentVolumeSpecArgs) ToPersistentVolumeSpecPtrOutputWithContext(ctx // PersistentVolumeSpecPtrInput is an input type that accepts PersistentVolumeSpecArgs, PersistentVolumeSpecPtr and PersistentVolumeSpecPtrOutput values. // You can construct a concrete instance of `PersistentVolumeSpecPtrInput` via: // -// PersistentVolumeSpecArgs{...} +// PersistentVolumeSpecArgs{...} // // or: // -// nil -// +// nil type PersistentVolumeSpecPtrInput interface { pulumi.Input @@ -18427,8 +18219,7 @@ type PersistentVolumeStatus struct { // PersistentVolumeStatusInput is an input type that accepts PersistentVolumeStatusArgs and PersistentVolumeStatusOutput values. // You can construct a concrete instance of `PersistentVolumeStatusInput` via: // -// PersistentVolumeStatusArgs{...} -// +// PersistentVolumeStatusArgs{...} type PersistentVolumeStatusInput interface { pulumi.Input @@ -18469,12 +18260,11 @@ func (i PersistentVolumeStatusArgs) ToPersistentVolumeStatusPtrOutputWithContext // PersistentVolumeStatusPtrInput is an input type that accepts PersistentVolumeStatusArgs, PersistentVolumeStatusPtr and PersistentVolumeStatusPtrOutput values. // You can construct a concrete instance of `PersistentVolumeStatusPtrInput` via: // -// PersistentVolumeStatusArgs{...} +// PersistentVolumeStatusArgs{...} // // or: // -// nil -// +// nil type PersistentVolumeStatusPtrInput interface { pulumi.Input @@ -18599,8 +18389,7 @@ type PhotonPersistentDiskVolumeSource struct { // PhotonPersistentDiskVolumeSourceInput is an input type that accepts PhotonPersistentDiskVolumeSourceArgs and PhotonPersistentDiskVolumeSourceOutput values. // You can construct a concrete instance of `PhotonPersistentDiskVolumeSourceInput` via: // -// PhotonPersistentDiskVolumeSourceArgs{...} -// +// PhotonPersistentDiskVolumeSourceArgs{...} type PhotonPersistentDiskVolumeSourceInput interface { pulumi.Input @@ -18639,12 +18428,11 @@ func (i PhotonPersistentDiskVolumeSourceArgs) ToPhotonPersistentDiskVolumeSource // PhotonPersistentDiskVolumeSourcePtrInput is an input type that accepts PhotonPersistentDiskVolumeSourceArgs, PhotonPersistentDiskVolumeSourcePtr and PhotonPersistentDiskVolumeSourcePtrOutput values. // You can construct a concrete instance of `PhotonPersistentDiskVolumeSourcePtrInput` via: // -// PhotonPersistentDiskVolumeSourceArgs{...} +// PhotonPersistentDiskVolumeSourceArgs{...} // // or: // -// nil -// +// nil type PhotonPersistentDiskVolumeSourcePtrInput interface { pulumi.Input @@ -18754,7 +18542,7 @@ func (o PhotonPersistentDiskVolumeSourcePtrOutput) PdID() pulumi.StringPtrOutput // 2. The Pod is initialized ("Initialized" '.status.condition' is true). // 3. The Pod is ready ("Ready" '.status.condition' is true) and the '.status.phase' is // set to "Running". -// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). +// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). // // If the Pod has not reached a Ready state after 10 minutes, it will // time out and mark the resource update as Failed. You can override the default timeout value @@ -18775,8 +18563,7 @@ type PodType struct { // PodTypeInput is an input type that accepts PodTypeArgs and PodTypeOutput values. // You can construct a concrete instance of `PodTypeInput` via: // -// PodTypeArgs{...} -// +// PodTypeArgs{...} type PodTypeInput interface { pulumi.Input @@ -18795,7 +18582,7 @@ type PodTypeInput interface { // 2. The Pod is initialized ("Initialized" '.status.condition' is true). // 3. The Pod is ready ("Ready" '.status.condition' is true) and the '.status.phase' is // set to "Running". -// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). +// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). // // If the Pod has not reached a Ready state after 10 minutes, it will // time out and mark the resource update as Failed. You can override the default timeout value @@ -18828,8 +18615,7 @@ func (i PodTypeArgs) ToPodTypeOutputWithContext(ctx context.Context) PodTypeOutp // PodTypeArrayInput is an input type that accepts PodTypeArray and PodTypeArrayOutput values. // You can construct a concrete instance of `PodTypeArrayInput` via: // -// PodTypeArray{ PodTypeArgs{...} } -// +// PodTypeArray{ PodTypeArgs{...} } type PodTypeArrayInput interface { pulumi.Input @@ -18862,7 +18648,7 @@ func (i PodTypeArray) ToPodTypeArrayOutputWithContext(ctx context.Context) PodTy // 2. The Pod is initialized ("Initialized" '.status.condition' is true). // 3. The Pod is ready ("Ready" '.status.condition' is true) and the '.status.phase' is // set to "Running". -// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). +// Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). // // If the Pod has not reached a Ready state after 10 minutes, it will // time out and mark the resource update as Failed. You can override the default timeout value @@ -18937,8 +18723,7 @@ type PodAffinity struct { // PodAffinityInput is an input type that accepts PodAffinityArgs and PodAffinityOutput values. // You can construct a concrete instance of `PodAffinityInput` via: // -// PodAffinityArgs{...} -// +// PodAffinityArgs{...} type PodAffinityInput interface { pulumi.Input @@ -18977,12 +18762,11 @@ func (i PodAffinityArgs) ToPodAffinityPtrOutputWithContext(ctx context.Context) // PodAffinityPtrInput is an input type that accepts PodAffinityArgs, PodAffinityPtr and PodAffinityPtrOutput values. // You can construct a concrete instance of `PodAffinityPtrInput` via: // -// PodAffinityArgs{...} +// PodAffinityArgs{...} // // or: // -// nil -// +// nil type PodAffinityPtrInput interface { pulumi.Input @@ -19096,8 +18880,7 @@ type PodAffinityTerm struct { // PodAffinityTermInput is an input type that accepts PodAffinityTermArgs and PodAffinityTermOutput values. // You can construct a concrete instance of `PodAffinityTermInput` via: // -// PodAffinityTermArgs{...} -// +// PodAffinityTermArgs{...} type PodAffinityTermInput interface { pulumi.Input @@ -19130,8 +18913,7 @@ func (i PodAffinityTermArgs) ToPodAffinityTermOutputWithContext(ctx context.Cont // PodAffinityTermArrayInput is an input type that accepts PodAffinityTermArray and PodAffinityTermArrayOutput values. // You can construct a concrete instance of `PodAffinityTermArrayInput` via: // -// PodAffinityTermArray{ PodAffinityTermArgs{...} } -// +// PodAffinityTermArray{ PodAffinityTermArgs{...} } type PodAffinityTermArrayInput interface { pulumi.Input @@ -19214,8 +18996,7 @@ type PodAntiAffinity struct { // PodAntiAffinityInput is an input type that accepts PodAntiAffinityArgs and PodAntiAffinityOutput values. // You can construct a concrete instance of `PodAntiAffinityInput` via: // -// PodAntiAffinityArgs{...} -// +// PodAntiAffinityArgs{...} type PodAntiAffinityInput interface { pulumi.Input @@ -19254,12 +19035,11 @@ func (i PodAntiAffinityArgs) ToPodAntiAffinityPtrOutputWithContext(ctx context.C // PodAntiAffinityPtrInput is an input type that accepts PodAntiAffinityArgs, PodAntiAffinityPtr and PodAntiAffinityPtrOutput values. // You can construct a concrete instance of `PodAntiAffinityPtrInput` via: // -// PodAntiAffinityArgs{...} +// PodAntiAffinityArgs{...} // // or: // -// nil -// +// nil type PodAntiAffinityPtrInput interface { pulumi.Input @@ -19379,8 +19159,7 @@ type PodCondition struct { // PodConditionInput is an input type that accepts PodConditionArgs and PodConditionOutput values. // You can construct a concrete instance of `PodConditionInput` via: // -// PodConditionArgs{...} -// +// PodConditionArgs{...} type PodConditionInput interface { pulumi.Input @@ -19419,8 +19198,7 @@ func (i PodConditionArgs) ToPodConditionOutputWithContext(ctx context.Context) P // PodConditionArrayInput is an input type that accepts PodConditionArray and PodConditionArrayOutput values. // You can construct a concrete instance of `PodConditionArrayInput` via: // -// PodConditionArray{ PodConditionArgs{...} } -// +// PodConditionArray{ PodConditionArgs{...} } type PodConditionArrayInput interface { pulumi.Input @@ -19520,8 +19298,7 @@ type PodDNSConfig struct { // PodDNSConfigInput is an input type that accepts PodDNSConfigArgs and PodDNSConfigOutput values. // You can construct a concrete instance of `PodDNSConfigInput` via: // -// PodDNSConfigArgs{...} -// +// PodDNSConfigArgs{...} type PodDNSConfigInput interface { pulumi.Input @@ -19562,12 +19339,11 @@ func (i PodDNSConfigArgs) ToPodDNSConfigPtrOutputWithContext(ctx context.Context // PodDNSConfigPtrInput is an input type that accepts PodDNSConfigArgs, PodDNSConfigPtr and PodDNSConfigPtrOutput values. // You can construct a concrete instance of `PodDNSConfigPtrInput` via: // -// PodDNSConfigArgs{...} +// PodDNSConfigArgs{...} // // or: // -// nil -// +// nil type PodDNSConfigPtrInput interface { pulumi.Input @@ -19691,8 +19467,7 @@ type PodDNSConfigOption struct { // PodDNSConfigOptionInput is an input type that accepts PodDNSConfigOptionArgs and PodDNSConfigOptionOutput values. // You can construct a concrete instance of `PodDNSConfigOptionInput` via: // -// PodDNSConfigOptionArgs{...} -// +// PodDNSConfigOptionArgs{...} type PodDNSConfigOptionInput interface { pulumi.Input @@ -19722,8 +19497,7 @@ func (i PodDNSConfigOptionArgs) ToPodDNSConfigOptionOutputWithContext(ctx contex // PodDNSConfigOptionArrayInput is an input type that accepts PodDNSConfigOptionArray and PodDNSConfigOptionArrayOutput values. // You can construct a concrete instance of `PodDNSConfigOptionArrayInput` via: // -// PodDNSConfigOptionArray{ PodDNSConfigOptionArgs{...} } -// +// PodDNSConfigOptionArray{ PodDNSConfigOptionArgs{...} } type PodDNSConfigOptionArrayInput interface { pulumi.Input @@ -19799,8 +19573,7 @@ type PodIP struct { // PodIPInput is an input type that accepts PodIPArgs and PodIPOutput values. // You can construct a concrete instance of `PodIPInput` via: // -// PodIPArgs{...} -// +// PodIPArgs{...} type PodIPInput interface { pulumi.Input @@ -19830,8 +19603,7 @@ func (i PodIPArgs) ToPodIPOutputWithContext(ctx context.Context) PodIPOutput { // PodIPArrayInput is an input type that accepts PodIPArray and PodIPArrayOutput values. // You can construct a concrete instance of `PodIPArrayInput` via: // -// PodIPArray{ PodIPArgs{...} } -// +// PodIPArray{ PodIPArgs{...} } type PodIPArrayInput interface { pulumi.Input @@ -19909,8 +19681,7 @@ type PodListType struct { // PodListTypeInput is an input type that accepts PodListTypeArgs and PodListTypeOutput values. // You can construct a concrete instance of `PodListTypeInput` via: // -// PodListTypeArgs{...} -// +// PodListTypeArgs{...} type PodListTypeInput interface { pulumi.Input @@ -19986,8 +19757,7 @@ type PodReadinessGate struct { // PodReadinessGateInput is an input type that accepts PodReadinessGateArgs and PodReadinessGateOutput values. // You can construct a concrete instance of `PodReadinessGateInput` via: // -// PodReadinessGateArgs{...} -// +// PodReadinessGateArgs{...} type PodReadinessGateInput interface { pulumi.Input @@ -20016,8 +19786,7 @@ func (i PodReadinessGateArgs) ToPodReadinessGateOutputWithContext(ctx context.Co // PodReadinessGateArrayInput is an input type that accepts PodReadinessGateArray and PodReadinessGateArrayOutput values. // You can construct a concrete instance of `PodReadinessGateArrayInput` via: // -// PodReadinessGateArray{ PodReadinessGateArgs{...} } -// +// PodReadinessGateArray{ PodReadinessGateArgs{...} } type PodReadinessGateArrayInput interface { pulumi.Input @@ -20108,8 +19877,7 @@ type PodSecurityContext struct { // PodSecurityContextInput is an input type that accepts PodSecurityContextArgs and PodSecurityContextOutput values. // You can construct a concrete instance of `PodSecurityContextInput` via: // -// PodSecurityContextArgs{...} -// +// PodSecurityContextArgs{...} type PodSecurityContextInput interface { pulumi.Input @@ -20166,12 +19934,11 @@ func (i PodSecurityContextArgs) ToPodSecurityContextPtrOutputWithContext(ctx con // PodSecurityContextPtrInput is an input type that accepts PodSecurityContextArgs, PodSecurityContextPtr and PodSecurityContextPtrOutput values. // You can construct a concrete instance of `PodSecurityContextPtrInput` via: // -// PodSecurityContextArgs{...} +// PodSecurityContextArgs{...} // // or: // -// nil -// +// nil type PodSecurityContextPtrInput interface { pulumi.Input @@ -20458,8 +20225,7 @@ type PodSpec struct { // PodSpecInput is an input type that accepts PodSpecArgs and PodSpecOutput values. // You can construct a concrete instance of `PodSpecInput` via: // -// PodSpecArgs{...} -// +// PodSpecArgs{...} type PodSpecInput interface { pulumi.Input @@ -20562,12 +20328,11 @@ func (i PodSpecArgs) ToPodSpecPtrOutputWithContext(ctx context.Context) PodSpecP // PodSpecPtrInput is an input type that accepts PodSpecArgs, PodSpecPtr and PodSpecPtrOutput values. // You can construct a concrete instance of `PodSpecPtrInput` via: // -// PodSpecArgs{...} +// PodSpecArgs{...} // // or: // -// nil -// +// nil type PodSpecPtrInput interface { pulumi.Input @@ -21183,8 +20948,7 @@ type PodStatus struct { // PodStatusInput is an input type that accepts PodStatusArgs and PodStatusOutput values. // You can construct a concrete instance of `PodStatusInput` via: // -// PodStatusArgs{...} -// +// PodStatusArgs{...} type PodStatusInput interface { pulumi.Input @@ -21249,12 +21013,11 @@ func (i PodStatusArgs) ToPodStatusPtrOutputWithContext(ctx context.Context) PodS // PodStatusPtrInput is an input type that accepts PodStatusArgs, PodStatusPtr and PodStatusPtrOutput values. // You can construct a concrete instance of `PodStatusPtrInput` via: // -// PodStatusArgs{...} +// PodStatusArgs{...} // // or: // -// nil -// +// nil type PodStatusPtrInput interface { pulumi.Input @@ -21541,8 +21304,7 @@ type PodTemplateType struct { // PodTemplateTypeInput is an input type that accepts PodTemplateTypeArgs and PodTemplateTypeOutput values. // You can construct a concrete instance of `PodTemplateTypeInput` via: // -// PodTemplateTypeArgs{...} -// +// PodTemplateTypeArgs{...} type PodTemplateTypeInput interface { pulumi.Input @@ -21577,8 +21339,7 @@ func (i PodTemplateTypeArgs) ToPodTemplateTypeOutputWithContext(ctx context.Cont // PodTemplateTypeArrayInput is an input type that accepts PodTemplateTypeArray and PodTemplateTypeArrayOutput values. // You can construct a concrete instance of `PodTemplateTypeArrayInput` via: // -// PodTemplateTypeArray{ PodTemplateTypeArgs{...} } -// +// PodTemplateTypeArray{ PodTemplateTypeArgs{...} } type PodTemplateTypeArrayInput interface { pulumi.Input @@ -21670,8 +21431,7 @@ type PodTemplateListType struct { // PodTemplateListTypeInput is an input type that accepts PodTemplateListTypeArgs and PodTemplateListTypeOutput values. // You can construct a concrete instance of `PodTemplateListTypeInput` via: // -// PodTemplateListTypeArgs{...} -// +// PodTemplateListTypeArgs{...} type PodTemplateListTypeInput interface { pulumi.Input @@ -21749,8 +21509,7 @@ type PodTemplateSpec struct { // PodTemplateSpecInput is an input type that accepts PodTemplateSpecArgs and PodTemplateSpecOutput values. // You can construct a concrete instance of `PodTemplateSpecInput` via: // -// PodTemplateSpecArgs{...} -// +// PodTemplateSpecArgs{...} type PodTemplateSpecInput interface { pulumi.Input @@ -21789,12 +21548,11 @@ func (i PodTemplateSpecArgs) ToPodTemplateSpecPtrOutputWithContext(ctx context.C // PodTemplateSpecPtrInput is an input type that accepts PodTemplateSpecArgs, PodTemplateSpecPtr and PodTemplateSpecPtrOutput values. // You can construct a concrete instance of `PodTemplateSpecPtrInput` via: // -// PodTemplateSpecArgs{...} +// PodTemplateSpecArgs{...} // // or: // -// nil -// +// nil type PodTemplateSpecPtrInput interface { pulumi.Input @@ -21906,8 +21664,7 @@ type PortworxVolumeSource struct { // PortworxVolumeSourceInput is an input type that accepts PortworxVolumeSourceArgs and PortworxVolumeSourceOutput values. // You can construct a concrete instance of `PortworxVolumeSourceInput` via: // -// PortworxVolumeSourceArgs{...} -// +// PortworxVolumeSourceArgs{...} type PortworxVolumeSourceInput interface { pulumi.Input @@ -21948,12 +21705,11 @@ func (i PortworxVolumeSourceArgs) ToPortworxVolumeSourcePtrOutputWithContext(ctx // PortworxVolumeSourcePtrInput is an input type that accepts PortworxVolumeSourceArgs, PortworxVolumeSourcePtr and PortworxVolumeSourcePtrOutput values. // You can construct a concrete instance of `PortworxVolumeSourcePtrInput` via: // -// PortworxVolumeSourceArgs{...} +// PortworxVolumeSourceArgs{...} // // or: // -// nil -// +// nil type PortworxVolumeSourcePtrInput interface { pulumi.Input @@ -22078,8 +21834,7 @@ type PreferredSchedulingTerm struct { // PreferredSchedulingTermInput is an input type that accepts PreferredSchedulingTermArgs and PreferredSchedulingTermOutput values. // You can construct a concrete instance of `PreferredSchedulingTermInput` via: // -// PreferredSchedulingTermArgs{...} -// +// PreferredSchedulingTermArgs{...} type PreferredSchedulingTermInput interface { pulumi.Input @@ -22110,8 +21865,7 @@ func (i PreferredSchedulingTermArgs) ToPreferredSchedulingTermOutputWithContext( // PreferredSchedulingTermArrayInput is an input type that accepts PreferredSchedulingTermArray and PreferredSchedulingTermArrayOutput values. // You can construct a concrete instance of `PreferredSchedulingTermArrayInput` via: // -// PreferredSchedulingTermArray{ PreferredSchedulingTermArgs{...} } -// +// PreferredSchedulingTermArray{ PreferredSchedulingTermArgs{...} } type PreferredSchedulingTermArrayInput interface { pulumi.Input @@ -22201,8 +21955,7 @@ type Probe struct { // ProbeInput is an input type that accepts ProbeArgs and ProbeOutput values. // You can construct a concrete instance of `ProbeInput` via: // -// ProbeArgs{...} -// +// ProbeArgs{...} type ProbeInput interface { pulumi.Input @@ -22253,12 +22006,11 @@ func (i ProbeArgs) ToProbePtrOutputWithContext(ctx context.Context) ProbePtrOutp // ProbePtrInput is an input type that accepts ProbeArgs, ProbePtr and ProbePtrOutput values. // You can construct a concrete instance of `ProbePtrInput` via: // -// ProbeArgs{...} +// ProbeArgs{...} // // or: // -// nil -// +// nil type ProbePtrInput interface { pulumi.Input @@ -22458,8 +22210,7 @@ type ProjectedVolumeSource struct { // ProjectedVolumeSourceInput is an input type that accepts ProjectedVolumeSourceArgs and ProjectedVolumeSourceOutput values. // You can construct a concrete instance of `ProjectedVolumeSourceInput` via: // -// ProjectedVolumeSourceArgs{...} -// +// ProjectedVolumeSourceArgs{...} type ProjectedVolumeSourceInput interface { pulumi.Input @@ -22498,12 +22249,11 @@ func (i ProjectedVolumeSourceArgs) ToProjectedVolumeSourcePtrOutputWithContext(c // ProjectedVolumeSourcePtrInput is an input type that accepts ProjectedVolumeSourceArgs, ProjectedVolumeSourcePtr and ProjectedVolumeSourcePtrOutput values. // You can construct a concrete instance of `ProjectedVolumeSourcePtrInput` via: // -// ProjectedVolumeSourceArgs{...} +// ProjectedVolumeSourceArgs{...} // // or: // -// nil -// +// nil type ProjectedVolumeSourcePtrInput interface { pulumi.Input @@ -22621,8 +22371,7 @@ type QuobyteVolumeSource struct { // QuobyteVolumeSourceInput is an input type that accepts QuobyteVolumeSourceArgs and QuobyteVolumeSourceOutput values. // You can construct a concrete instance of `QuobyteVolumeSourceInput` via: // -// QuobyteVolumeSourceArgs{...} -// +// QuobyteVolumeSourceArgs{...} type QuobyteVolumeSourceInput interface { pulumi.Input @@ -22669,12 +22418,11 @@ func (i QuobyteVolumeSourceArgs) ToQuobyteVolumeSourcePtrOutputWithContext(ctx c // QuobyteVolumeSourcePtrInput is an input type that accepts QuobyteVolumeSourceArgs, QuobyteVolumeSourcePtr and QuobyteVolumeSourcePtrOutput values. // You can construct a concrete instance of `QuobyteVolumeSourcePtrInput` via: // -// QuobyteVolumeSourceArgs{...} +// QuobyteVolumeSourceArgs{...} // // or: // -// nil -// +// nil type QuobyteVolumeSourcePtrInput interface { pulumi.Input @@ -22856,8 +22604,7 @@ type RBDPersistentVolumeSource struct { // RBDPersistentVolumeSourceInput is an input type that accepts RBDPersistentVolumeSourceArgs and RBDPersistentVolumeSourceOutput values. // You can construct a concrete instance of `RBDPersistentVolumeSourceInput` via: // -// RBDPersistentVolumeSourceArgs{...} -// +// RBDPersistentVolumeSourceArgs{...} type RBDPersistentVolumeSourceInput interface { pulumi.Input @@ -22908,12 +22655,11 @@ func (i RBDPersistentVolumeSourceArgs) ToRBDPersistentVolumeSourcePtrOutputWithC // RBDPersistentVolumeSourcePtrInput is an input type that accepts RBDPersistentVolumeSourceArgs, RBDPersistentVolumeSourcePtr and RBDPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `RBDPersistentVolumeSourcePtrInput` via: // -// RBDPersistentVolumeSourceArgs{...} +// RBDPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type RBDPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -23125,8 +22871,7 @@ type RBDVolumeSource struct { // RBDVolumeSourceInput is an input type that accepts RBDVolumeSourceArgs and RBDVolumeSourceOutput values. // You can construct a concrete instance of `RBDVolumeSourceInput` via: // -// RBDVolumeSourceArgs{...} -// +// RBDVolumeSourceArgs{...} type RBDVolumeSourceInput interface { pulumi.Input @@ -23177,12 +22922,11 @@ func (i RBDVolumeSourceArgs) ToRBDVolumeSourcePtrOutputWithContext(ctx context.C // RBDVolumeSourcePtrInput is an input type that accepts RBDVolumeSourceArgs, RBDVolumeSourcePtr and RBDVolumeSourcePtrOutput values. // You can construct a concrete instance of `RBDVolumeSourcePtrInput` via: // -// RBDVolumeSourceArgs{...} +// RBDVolumeSourceArgs{...} // // or: // -// nil -// +// nil type RBDVolumeSourcePtrInput interface { pulumi.Input @@ -23388,8 +23132,7 @@ type ReplicationControllerType struct { // ReplicationControllerTypeInput is an input type that accepts ReplicationControllerTypeArgs and ReplicationControllerTypeOutput values. // You can construct a concrete instance of `ReplicationControllerTypeInput` via: // -// ReplicationControllerTypeArgs{...} -// +// ReplicationControllerTypeArgs{...} type ReplicationControllerTypeInput interface { pulumi.Input @@ -23426,8 +23169,7 @@ func (i ReplicationControllerTypeArgs) ToReplicationControllerTypeOutputWithCont // ReplicationControllerTypeArrayInput is an input type that accepts ReplicationControllerTypeArray and ReplicationControllerTypeArrayOutput values. // You can construct a concrete instance of `ReplicationControllerTypeArrayInput` via: // -// ReplicationControllerTypeArray{ ReplicationControllerTypeArgs{...} } -// +// ReplicationControllerTypeArray{ ReplicationControllerTypeArgs{...} } type ReplicationControllerTypeArrayInput interface { pulumi.Input @@ -23526,8 +23268,7 @@ type ReplicationControllerCondition struct { // ReplicationControllerConditionInput is an input type that accepts ReplicationControllerConditionArgs and ReplicationControllerConditionOutput values. // You can construct a concrete instance of `ReplicationControllerConditionInput` via: // -// ReplicationControllerConditionArgs{...} -// +// ReplicationControllerConditionArgs{...} type ReplicationControllerConditionInput interface { pulumi.Input @@ -23564,8 +23305,7 @@ func (i ReplicationControllerConditionArgs) ToReplicationControllerConditionOutp // ReplicationControllerConditionArrayInput is an input type that accepts ReplicationControllerConditionArray and ReplicationControllerConditionArrayOutput values. // You can construct a concrete instance of `ReplicationControllerConditionArrayInput` via: // -// ReplicationControllerConditionArray{ ReplicationControllerConditionArgs{...} } -// +// ReplicationControllerConditionArray{ ReplicationControllerConditionArgs{...} } type ReplicationControllerConditionArrayInput interface { pulumi.Input @@ -23662,8 +23402,7 @@ type ReplicationControllerListType struct { // ReplicationControllerListTypeInput is an input type that accepts ReplicationControllerListTypeArgs and ReplicationControllerListTypeOutput values. // You can construct a concrete instance of `ReplicationControllerListTypeInput` via: // -// ReplicationControllerListTypeArgs{...} -// +// ReplicationControllerListTypeArgs{...} type ReplicationControllerListTypeInput interface { pulumi.Input @@ -23745,8 +23484,7 @@ type ReplicationControllerSpec struct { // ReplicationControllerSpecInput is an input type that accepts ReplicationControllerSpecArgs and ReplicationControllerSpecOutput values. // You can construct a concrete instance of `ReplicationControllerSpecInput` via: // -// ReplicationControllerSpecArgs{...} -// +// ReplicationControllerSpecArgs{...} type ReplicationControllerSpecInput interface { pulumi.Input @@ -23789,12 +23527,11 @@ func (i ReplicationControllerSpecArgs) ToReplicationControllerSpecPtrOutputWithC // ReplicationControllerSpecPtrInput is an input type that accepts ReplicationControllerSpecArgs, ReplicationControllerSpecPtr and ReplicationControllerSpecPtrOutput values. // You can construct a concrete instance of `ReplicationControllerSpecPtrInput` via: // -// ReplicationControllerSpecArgs{...} +// ReplicationControllerSpecArgs{...} // // or: // -// nil -// +// nil type ReplicationControllerSpecPtrInput interface { pulumi.Input @@ -23942,8 +23679,7 @@ type ReplicationControllerStatus struct { // ReplicationControllerStatusInput is an input type that accepts ReplicationControllerStatusArgs and ReplicationControllerStatusOutput values. // You can construct a concrete instance of `ReplicationControllerStatusInput` via: // -// ReplicationControllerStatusArgs{...} -// +// ReplicationControllerStatusArgs{...} type ReplicationControllerStatusInput interface { pulumi.Input @@ -23990,12 +23726,11 @@ func (i ReplicationControllerStatusArgs) ToReplicationControllerStatusPtrOutputW // ReplicationControllerStatusPtrInput is an input type that accepts ReplicationControllerStatusArgs, ReplicationControllerStatusPtr and ReplicationControllerStatusPtrOutput values. // You can construct a concrete instance of `ReplicationControllerStatusPtrInput` via: // -// ReplicationControllerStatusArgs{...} +// ReplicationControllerStatusArgs{...} // // or: // -// nil -// +// nil type ReplicationControllerStatusPtrInput interface { pulumi.Input @@ -24167,8 +23902,7 @@ type ResourceFieldSelector struct { // ResourceFieldSelectorInput is an input type that accepts ResourceFieldSelectorArgs and ResourceFieldSelectorOutput values. // You can construct a concrete instance of `ResourceFieldSelectorInput` via: // -// ResourceFieldSelectorArgs{...} -// +// ResourceFieldSelectorArgs{...} type ResourceFieldSelectorInput interface { pulumi.Input @@ -24209,12 +23943,11 @@ func (i ResourceFieldSelectorArgs) ToResourceFieldSelectorPtrOutputWithContext(c // ResourceFieldSelectorPtrInput is an input type that accepts ResourceFieldSelectorArgs, ResourceFieldSelectorPtr and ResourceFieldSelectorPtrOutput values. // You can construct a concrete instance of `ResourceFieldSelectorPtrInput` via: // -// ResourceFieldSelectorArgs{...} +// ResourceFieldSelectorArgs{...} // // or: // -// nil -// +// nil type ResourceFieldSelectorPtrInput interface { pulumi.Input @@ -24345,8 +24078,7 @@ type ResourceQuotaType struct { // ResourceQuotaTypeInput is an input type that accepts ResourceQuotaTypeArgs and ResourceQuotaTypeOutput values. // You can construct a concrete instance of `ResourceQuotaTypeInput` via: // -// ResourceQuotaTypeArgs{...} -// +// ResourceQuotaTypeArgs{...} type ResourceQuotaTypeInput interface { pulumi.Input @@ -24383,8 +24115,7 @@ func (i ResourceQuotaTypeArgs) ToResourceQuotaTypeOutputWithContext(ctx context. // ResourceQuotaTypeArrayInput is an input type that accepts ResourceQuotaTypeArray and ResourceQuotaTypeArrayOutput values. // You can construct a concrete instance of `ResourceQuotaTypeArrayInput` via: // -// ResourceQuotaTypeArray{ ResourceQuotaTypeArgs{...} } -// +// ResourceQuotaTypeArray{ ResourceQuotaTypeArgs{...} } type ResourceQuotaTypeArrayInput interface { pulumi.Input @@ -24481,8 +24212,7 @@ type ResourceQuotaListType struct { // ResourceQuotaListTypeInput is an input type that accepts ResourceQuotaListTypeArgs and ResourceQuotaListTypeOutput values. // You can construct a concrete instance of `ResourceQuotaListTypeInput` via: // -// ResourceQuotaListTypeArgs{...} -// +// ResourceQuotaListTypeArgs{...} type ResourceQuotaListTypeInput interface { pulumi.Input @@ -24562,8 +24292,7 @@ type ResourceQuotaSpec struct { // ResourceQuotaSpecInput is an input type that accepts ResourceQuotaSpecArgs and ResourceQuotaSpecOutput values. // You can construct a concrete instance of `ResourceQuotaSpecInput` via: // -// ResourceQuotaSpecArgs{...} -// +// ResourceQuotaSpecArgs{...} type ResourceQuotaSpecInput interface { pulumi.Input @@ -24604,12 +24333,11 @@ func (i ResourceQuotaSpecArgs) ToResourceQuotaSpecPtrOutputWithContext(ctx conte // ResourceQuotaSpecPtrInput is an input type that accepts ResourceQuotaSpecArgs, ResourceQuotaSpecPtr and ResourceQuotaSpecPtrOutput values. // You can construct a concrete instance of `ResourceQuotaSpecPtrInput` via: // -// ResourceQuotaSpecArgs{...} +// ResourceQuotaSpecArgs{...} // // or: // -// nil -// +// nil type ResourceQuotaSpecPtrInput interface { pulumi.Input @@ -24734,8 +24462,7 @@ type ResourceQuotaStatus struct { // ResourceQuotaStatusInput is an input type that accepts ResourceQuotaStatusArgs and ResourceQuotaStatusOutput values. // You can construct a concrete instance of `ResourceQuotaStatusInput` via: // -// ResourceQuotaStatusArgs{...} -// +// ResourceQuotaStatusArgs{...} type ResourceQuotaStatusInput interface { pulumi.Input @@ -24774,12 +24501,11 @@ func (i ResourceQuotaStatusArgs) ToResourceQuotaStatusPtrOutputWithContext(ctx c // ResourceQuotaStatusPtrInput is an input type that accepts ResourceQuotaStatusArgs, ResourceQuotaStatusPtr and ResourceQuotaStatusPtrOutput values. // You can construct a concrete instance of `ResourceQuotaStatusPtrInput` via: // -// ResourceQuotaStatusArgs{...} +// ResourceQuotaStatusArgs{...} // // or: // -// nil -// +// nil type ResourceQuotaStatusPtrInput interface { pulumi.Input @@ -24889,8 +24615,7 @@ type ResourceRequirements struct { // ResourceRequirementsInput is an input type that accepts ResourceRequirementsArgs and ResourceRequirementsOutput values. // You can construct a concrete instance of `ResourceRequirementsInput` via: // -// ResourceRequirementsArgs{...} -// +// ResourceRequirementsArgs{...} type ResourceRequirementsInput interface { pulumi.Input @@ -24929,12 +24654,11 @@ func (i ResourceRequirementsArgs) ToResourceRequirementsPtrOutputWithContext(ctx // ResourceRequirementsPtrInput is an input type that accepts ResourceRequirementsArgs, ResourceRequirementsPtr and ResourceRequirementsPtrOutput values. // You can construct a concrete instance of `ResourceRequirementsPtrInput` via: // -// ResourceRequirementsArgs{...} +// ResourceRequirementsArgs{...} // // or: // -// nil -// +// nil type ResourceRequirementsPtrInput interface { pulumi.Input @@ -25048,8 +24772,7 @@ type SELinuxOptions struct { // SELinuxOptionsInput is an input type that accepts SELinuxOptionsArgs and SELinuxOptionsOutput values. // You can construct a concrete instance of `SELinuxOptionsInput` via: // -// SELinuxOptionsArgs{...} -// +// SELinuxOptionsArgs{...} type SELinuxOptionsInput interface { pulumi.Input @@ -25092,12 +24815,11 @@ func (i SELinuxOptionsArgs) ToSELinuxOptionsPtrOutputWithContext(ctx context.Con // SELinuxOptionsPtrInput is an input type that accepts SELinuxOptionsArgs, SELinuxOptionsPtr and SELinuxOptionsPtrOutput values. // You can construct a concrete instance of `SELinuxOptionsPtrInput` via: // -// SELinuxOptionsArgs{...} +// SELinuxOptionsArgs{...} // // or: // -// nil -// +// nil type SELinuxOptionsPtrInput interface { pulumi.Input @@ -25253,8 +24975,7 @@ type ScaleIOPersistentVolumeSource struct { // ScaleIOPersistentVolumeSourceInput is an input type that accepts ScaleIOPersistentVolumeSourceArgs and ScaleIOPersistentVolumeSourceOutput values. // You can construct a concrete instance of `ScaleIOPersistentVolumeSourceInput` via: // -// ScaleIOPersistentVolumeSourceArgs{...} -// +// ScaleIOPersistentVolumeSourceArgs{...} type ScaleIOPersistentVolumeSourceInput interface { pulumi.Input @@ -25309,12 +25030,11 @@ func (i ScaleIOPersistentVolumeSourceArgs) ToScaleIOPersistentVolumeSourcePtrOut // ScaleIOPersistentVolumeSourcePtrInput is an input type that accepts ScaleIOPersistentVolumeSourceArgs, ScaleIOPersistentVolumeSourcePtr and ScaleIOPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `ScaleIOPersistentVolumeSourcePtrInput` via: // -// ScaleIOPersistentVolumeSourceArgs{...} +// ScaleIOPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type ScaleIOPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -25560,8 +25280,7 @@ type ScaleIOVolumeSource struct { // ScaleIOVolumeSourceInput is an input type that accepts ScaleIOVolumeSourceArgs and ScaleIOVolumeSourceOutput values. // You can construct a concrete instance of `ScaleIOVolumeSourceInput` via: // -// ScaleIOVolumeSourceArgs{...} -// +// ScaleIOVolumeSourceArgs{...} type ScaleIOVolumeSourceInput interface { pulumi.Input @@ -25616,12 +25335,11 @@ func (i ScaleIOVolumeSourceArgs) ToScaleIOVolumeSourcePtrOutputWithContext(ctx c // ScaleIOVolumeSourcePtrInput is an input type that accepts ScaleIOVolumeSourceArgs, ScaleIOVolumeSourcePtr and ScaleIOVolumeSourcePtrOutput values. // You can construct a concrete instance of `ScaleIOVolumeSourcePtrInput` via: // -// ScaleIOVolumeSourceArgs{...} +// ScaleIOVolumeSourceArgs{...} // // or: // -// nil -// +// nil type ScaleIOVolumeSourcePtrInput interface { pulumi.Input @@ -25849,8 +25567,7 @@ type ScopeSelector struct { // ScopeSelectorInput is an input type that accepts ScopeSelectorArgs and ScopeSelectorOutput values. // You can construct a concrete instance of `ScopeSelectorInput` via: // -// ScopeSelectorArgs{...} -// +// ScopeSelectorArgs{...} type ScopeSelectorInput interface { pulumi.Input @@ -25887,12 +25604,11 @@ func (i ScopeSelectorArgs) ToScopeSelectorPtrOutputWithContext(ctx context.Conte // ScopeSelectorPtrInput is an input type that accepts ScopeSelectorArgs, ScopeSelectorPtr and ScopeSelectorPtrOutput values. // You can construct a concrete instance of `ScopeSelectorPtrInput` via: // -// ScopeSelectorArgs{...} +// ScopeSelectorArgs{...} // // or: // -// nil -// +// nil type ScopeSelectorPtrInput interface { pulumi.Input @@ -25989,8 +25705,7 @@ type ScopedResourceSelectorRequirement struct { // ScopedResourceSelectorRequirementInput is an input type that accepts ScopedResourceSelectorRequirementArgs and ScopedResourceSelectorRequirementOutput values. // You can construct a concrete instance of `ScopedResourceSelectorRequirementInput` via: // -// ScopedResourceSelectorRequirementArgs{...} -// +// ScopedResourceSelectorRequirementArgs{...} type ScopedResourceSelectorRequirementInput interface { pulumi.Input @@ -26023,8 +25738,7 @@ func (i ScopedResourceSelectorRequirementArgs) ToScopedResourceSelectorRequireme // ScopedResourceSelectorRequirementArrayInput is an input type that accepts ScopedResourceSelectorRequirementArray and ScopedResourceSelectorRequirementArrayOutput values. // You can construct a concrete instance of `ScopedResourceSelectorRequirementArrayInput` via: // -// ScopedResourceSelectorRequirementArray{ ScopedResourceSelectorRequirementArgs{...} } -// +// ScopedResourceSelectorRequirementArray{ ScopedResourceSelectorRequirementArgs{...} } type ScopedResourceSelectorRequirementArrayInput interface { pulumi.Input @@ -26127,8 +25841,7 @@ type SecretType struct { // SecretTypeInput is an input type that accepts SecretTypeArgs and SecretTypeOutput values. // You can construct a concrete instance of `SecretTypeInput` via: // -// SecretTypeArgs{...} -// +// SecretTypeArgs{...} type SecretTypeInput interface { pulumi.Input @@ -26179,8 +25892,7 @@ func (i SecretTypeArgs) ToSecretTypeOutputWithContext(ctx context.Context) Secre // SecretTypeArrayInput is an input type that accepts SecretTypeArray and SecretTypeArrayOutput values. // You can construct a concrete instance of `SecretTypeArrayInput` via: // -// SecretTypeArray{ SecretTypeArgs{...} } -// +// SecretTypeArray{ SecretTypeArgs{...} } type SecretTypeArrayInput interface { pulumi.Input @@ -26295,8 +26007,7 @@ type SecretEnvSource struct { // SecretEnvSourceInput is an input type that accepts SecretEnvSourceArgs and SecretEnvSourceOutput values. // You can construct a concrete instance of `SecretEnvSourceInput` via: // -// SecretEnvSourceArgs{...} -// +// SecretEnvSourceArgs{...} type SecretEnvSourceInput interface { pulumi.Input @@ -26337,12 +26048,11 @@ func (i SecretEnvSourceArgs) ToSecretEnvSourcePtrOutputWithContext(ctx context.C // SecretEnvSourcePtrInput is an input type that accepts SecretEnvSourceArgs, SecretEnvSourcePtr and SecretEnvSourcePtrOutput values. // You can construct a concrete instance of `SecretEnvSourcePtrInput` via: // -// SecretEnvSourceArgs{...} +// SecretEnvSourceArgs{...} // // or: // -// nil -// +// nil type SecretEnvSourcePtrInput interface { pulumi.Input @@ -26456,8 +26166,7 @@ type SecretKeySelector struct { // SecretKeySelectorInput is an input type that accepts SecretKeySelectorArgs and SecretKeySelectorOutput values. // You can construct a concrete instance of `SecretKeySelectorInput` via: // -// SecretKeySelectorArgs{...} -// +// SecretKeySelectorArgs{...} type SecretKeySelectorInput interface { pulumi.Input @@ -26498,12 +26207,11 @@ func (i SecretKeySelectorArgs) ToSecretKeySelectorPtrOutputWithContext(ctx conte // SecretKeySelectorPtrInput is an input type that accepts SecretKeySelectorArgs, SecretKeySelectorPtr and SecretKeySelectorPtrOutput values. // You can construct a concrete instance of `SecretKeySelectorPtrInput` via: // -// SecretKeySelectorArgs{...} +// SecretKeySelectorArgs{...} // // or: // -// nil -// +// nil type SecretKeySelectorPtrInput interface { pulumi.Input @@ -26632,8 +26340,7 @@ type SecretListType struct { // SecretListTypeInput is an input type that accepts SecretListTypeArgs and SecretListTypeOutput values. // You can construct a concrete instance of `SecretListTypeInput` via: // -// SecretListTypeArgs{...} -// +// SecretListTypeArgs{...} type SecretListTypeInput interface { pulumi.Input @@ -26715,8 +26422,7 @@ type SecretProjection struct { // SecretProjectionInput is an input type that accepts SecretProjectionArgs and SecretProjectionOutput values. // You can construct a concrete instance of `SecretProjectionInput` via: // -// SecretProjectionArgs{...} -// +// SecretProjectionArgs{...} type SecretProjectionInput interface { pulumi.Input @@ -26759,12 +26465,11 @@ func (i SecretProjectionArgs) ToSecretProjectionPtrOutputWithContext(ctx context // SecretProjectionPtrInput is an input type that accepts SecretProjectionArgs, SecretProjectionPtr and SecretProjectionPtrOutput values. // You can construct a concrete instance of `SecretProjectionPtrInput` via: // -// SecretProjectionArgs{...} +// SecretProjectionArgs{...} // // or: // -// nil -// +// nil type SecretProjectionPtrInput interface { pulumi.Input @@ -26891,8 +26596,7 @@ type SecretReference struct { // SecretReferenceInput is an input type that accepts SecretReferenceArgs and SecretReferenceOutput values. // You can construct a concrete instance of `SecretReferenceInput` via: // -// SecretReferenceArgs{...} -// +// SecretReferenceArgs{...} type SecretReferenceInput interface { pulumi.Input @@ -26931,12 +26635,11 @@ func (i SecretReferenceArgs) ToSecretReferencePtrOutputWithContext(ctx context.C // SecretReferencePtrInput is an input type that accepts SecretReferenceArgs, SecretReferencePtr and SecretReferencePtrOutput values. // You can construct a concrete instance of `SecretReferencePtrInput` via: // -// SecretReferenceArgs{...} +// SecretReferenceArgs{...} // // or: // -// nil -// +// nil type SecretReferencePtrInput interface { pulumi.Input @@ -27052,8 +26755,7 @@ type SecretVolumeSource struct { // SecretVolumeSourceInput is an input type that accepts SecretVolumeSourceArgs and SecretVolumeSourceOutput values. // You can construct a concrete instance of `SecretVolumeSourceInput` via: // -// SecretVolumeSourceArgs{...} -// +// SecretVolumeSourceArgs{...} type SecretVolumeSourceInput interface { pulumi.Input @@ -27098,12 +26800,11 @@ func (i SecretVolumeSourceArgs) ToSecretVolumeSourcePtrOutputWithContext(ctx con // SecretVolumeSourcePtrInput is an input type that accepts SecretVolumeSourceArgs, SecretVolumeSourcePtr and SecretVolumeSourcePtrOutput values. // You can construct a concrete instance of `SecretVolumeSourcePtrInput` via: // -// SecretVolumeSourceArgs{...} +// SecretVolumeSourceArgs{...} // // or: // -// nil -// +// nil type SecretVolumeSourcePtrInput interface { pulumi.Input @@ -27261,8 +26962,7 @@ type SecurityContext struct { // SecurityContextInput is an input type that accepts SecurityContextArgs and SecurityContextOutput values. // You can construct a concrete instance of `SecurityContextInput` via: // -// SecurityContextArgs{...} -// +// SecurityContextArgs{...} type SecurityContextInput interface { pulumi.Input @@ -27317,12 +27017,11 @@ func (i SecurityContextArgs) ToSecurityContextPtrOutputWithContext(ctx context.C // SecurityContextPtrInput is an input type that accepts SecurityContextArgs, SecurityContextPtr and SecurityContextPtrOutput values. // You can construct a concrete instance of `SecurityContextPtrInput` via: // -// SecurityContextArgs{...} +// SecurityContextArgs{...} // // or: // -// nil -// +// nil type SecurityContextPtrInput interface { pulumi.Input @@ -27583,8 +27282,7 @@ type ServiceType struct { // ServiceTypeInput is an input type that accepts ServiceTypeArgs and ServiceTypeOutput values. // You can construct a concrete instance of `ServiceTypeInput` via: // -// ServiceTypeArgs{...} -// +// ServiceTypeArgs{...} type ServiceTypeInput interface { pulumi.Input @@ -27646,8 +27344,7 @@ func (i ServiceTypeArgs) ToServiceTypeOutputWithContext(ctx context.Context) Ser // ServiceTypeArrayInput is an input type that accepts ServiceTypeArray and ServiceTypeArrayOutput values. // You can construct a concrete instance of `ServiceTypeArrayInput` via: // -// ServiceTypeArray{ ServiceTypeArgs{...} } -// +// ServiceTypeArray{ ServiceTypeArgs{...} } type ServiceTypeArrayInput interface { pulumi.Input @@ -27773,8 +27470,7 @@ type ServiceAccountType struct { // ServiceAccountTypeInput is an input type that accepts ServiceAccountTypeArgs and ServiceAccountTypeOutput values. // You can construct a concrete instance of `ServiceAccountTypeInput` via: // -// ServiceAccountTypeArgs{...} -// +// ServiceAccountTypeArgs{...} type ServiceAccountTypeInput interface { pulumi.Input @@ -27813,8 +27509,7 @@ func (i ServiceAccountTypeArgs) ToServiceAccountTypeOutputWithContext(ctx contex // ServiceAccountTypeArrayInput is an input type that accepts ServiceAccountTypeArray and ServiceAccountTypeArrayOutput values. // You can construct a concrete instance of `ServiceAccountTypeArrayInput` via: // -// ServiceAccountTypeArray{ ServiceAccountTypeArgs{...} } -// +// ServiceAccountTypeArray{ ServiceAccountTypeArgs{...} } type ServiceAccountTypeArrayInput interface { pulumi.Input @@ -27916,8 +27611,7 @@ type ServiceAccountListType struct { // ServiceAccountListTypeInput is an input type that accepts ServiceAccountListTypeArgs and ServiceAccountListTypeOutput values. // You can construct a concrete instance of `ServiceAccountListTypeInput` via: // -// ServiceAccountListTypeArgs{...} -// +// ServiceAccountListTypeArgs{...} type ServiceAccountListTypeInput interface { pulumi.Input @@ -27997,8 +27691,7 @@ type ServiceAccountTokenProjection struct { // ServiceAccountTokenProjectionInput is an input type that accepts ServiceAccountTokenProjectionArgs and ServiceAccountTokenProjectionOutput values. // You can construct a concrete instance of `ServiceAccountTokenProjectionInput` via: // -// ServiceAccountTokenProjectionArgs{...} -// +// ServiceAccountTokenProjectionArgs{...} type ServiceAccountTokenProjectionInput interface { pulumi.Input @@ -28039,12 +27732,11 @@ func (i ServiceAccountTokenProjectionArgs) ToServiceAccountTokenProjectionPtrOut // ServiceAccountTokenProjectionPtrInput is an input type that accepts ServiceAccountTokenProjectionArgs, ServiceAccountTokenProjectionPtr and ServiceAccountTokenProjectionPtrOutput values. // You can construct a concrete instance of `ServiceAccountTokenProjectionPtrInput` via: // -// ServiceAccountTokenProjectionArgs{...} +// ServiceAccountTokenProjectionArgs{...} // // or: // -// nil -// +// nil type ServiceAccountTokenProjectionPtrInput interface { pulumi.Input @@ -28173,8 +27865,7 @@ type ServiceListType struct { // ServiceListTypeInput is an input type that accepts ServiceListTypeArgs and ServiceListTypeOutput values. // You can construct a concrete instance of `ServiceListTypeInput` via: // -// ServiceListTypeArgs{...} -// +// ServiceListTypeArgs{...} type ServiceListTypeInput interface { pulumi.Input @@ -28260,8 +27951,7 @@ type ServicePort struct { // ServicePortInput is an input type that accepts ServicePortArgs and ServicePortOutput values. // You can construct a concrete instance of `ServicePortInput` via: // -// ServicePortArgs{...} -// +// ServicePortArgs{...} type ServicePortInput interface { pulumi.Input @@ -28300,8 +27990,7 @@ func (i ServicePortArgs) ToServicePortOutputWithContext(ctx context.Context) Ser // ServicePortArrayInput is an input type that accepts ServicePortArray and ServicePortArrayOutput values. // You can construct a concrete instance of `ServicePortArrayInput` via: // -// ServicePortArray{ ServicePortArgs{...} } -// +// ServicePortArray{ ServicePortArgs{...} } type ServicePortArrayInput interface { pulumi.Input @@ -28425,8 +28114,7 @@ type ServiceSpec struct { // ServiceSpecInput is an input type that accepts ServiceSpecArgs and ServiceSpecOutput values. // You can construct a concrete instance of `ServiceSpecInput` via: // -// ServiceSpecArgs{...} -// +// ServiceSpecArgs{...} type ServiceSpecInput interface { pulumi.Input @@ -28491,12 +28179,11 @@ func (i ServiceSpecArgs) ToServiceSpecPtrOutputWithContext(ctx context.Context) // ServiceSpecPtrInput is an input type that accepts ServiceSpecArgs, ServiceSpecPtr and ServiceSpecPtrOutput values. // You can construct a concrete instance of `ServiceSpecPtrInput` via: // -// ServiceSpecArgs{...} +// ServiceSpecArgs{...} // // or: // -// nil -// +// nil type ServiceSpecPtrInput interface { pulumi.Input @@ -28799,8 +28486,7 @@ type ServiceStatus struct { // ServiceStatusInput is an input type that accepts ServiceStatusArgs and ServiceStatusOutput values. // You can construct a concrete instance of `ServiceStatusInput` via: // -// ServiceStatusArgs{...} -// +// ServiceStatusArgs{...} type ServiceStatusInput interface { pulumi.Input @@ -28837,12 +28523,11 @@ func (i ServiceStatusArgs) ToServiceStatusPtrOutputWithContext(ctx context.Conte // ServiceStatusPtrInput is an input type that accepts ServiceStatusArgs, ServiceStatusPtr and ServiceStatusPtrOutput values. // You can construct a concrete instance of `ServiceStatusPtrInput` via: // -// ServiceStatusArgs{...} +// ServiceStatusArgs{...} // // or: // -// nil -// +// nil type ServiceStatusPtrInput interface { pulumi.Input @@ -28935,8 +28620,7 @@ type SessionAffinityConfig struct { // SessionAffinityConfigInput is an input type that accepts SessionAffinityConfigArgs and SessionAffinityConfigOutput values. // You can construct a concrete instance of `SessionAffinityConfigInput` via: // -// SessionAffinityConfigArgs{...} -// +// SessionAffinityConfigArgs{...} type SessionAffinityConfigInput interface { pulumi.Input @@ -28973,12 +28657,11 @@ func (i SessionAffinityConfigArgs) ToSessionAffinityConfigPtrOutputWithContext(c // SessionAffinityConfigPtrInput is an input type that accepts SessionAffinityConfigArgs, SessionAffinityConfigPtr and SessionAffinityConfigPtrOutput values. // You can construct a concrete instance of `SessionAffinityConfigPtrInput` via: // -// SessionAffinityConfigArgs{...} +// SessionAffinityConfigArgs{...} // // or: // -// nil -// +// nil type SessionAffinityConfigPtrInput interface { pulumi.Input @@ -29079,8 +28762,7 @@ type StorageOSPersistentVolumeSource struct { // StorageOSPersistentVolumeSourceInput is an input type that accepts StorageOSPersistentVolumeSourceArgs and StorageOSPersistentVolumeSourceOutput values. // You can construct a concrete instance of `StorageOSPersistentVolumeSourceInput` via: // -// StorageOSPersistentVolumeSourceArgs{...} -// +// StorageOSPersistentVolumeSourceArgs{...} type StorageOSPersistentVolumeSourceInput interface { pulumi.Input @@ -29125,12 +28807,11 @@ func (i StorageOSPersistentVolumeSourceArgs) ToStorageOSPersistentVolumeSourcePt // StorageOSPersistentVolumeSourcePtrInput is an input type that accepts StorageOSPersistentVolumeSourceArgs, StorageOSPersistentVolumeSourcePtr and StorageOSPersistentVolumeSourcePtrOutput values. // You can construct a concrete instance of `StorageOSPersistentVolumeSourcePtrInput` via: // -// StorageOSPersistentVolumeSourceArgs{...} +// StorageOSPersistentVolumeSourceArgs{...} // // or: // -// nil -// +// nil type StorageOSPersistentVolumeSourcePtrInput interface { pulumi.Input @@ -29291,8 +28972,7 @@ type StorageOSVolumeSource struct { // StorageOSVolumeSourceInput is an input type that accepts StorageOSVolumeSourceArgs and StorageOSVolumeSourceOutput values. // You can construct a concrete instance of `StorageOSVolumeSourceInput` via: // -// StorageOSVolumeSourceArgs{...} -// +// StorageOSVolumeSourceArgs{...} type StorageOSVolumeSourceInput interface { pulumi.Input @@ -29337,12 +29017,11 @@ func (i StorageOSVolumeSourceArgs) ToStorageOSVolumeSourcePtrOutputWithContext(c // StorageOSVolumeSourcePtrInput is an input type that accepts StorageOSVolumeSourceArgs, StorageOSVolumeSourcePtr and StorageOSVolumeSourcePtrOutput values. // You can construct a concrete instance of `StorageOSVolumeSourcePtrInput` via: // -// StorageOSVolumeSourceArgs{...} +// StorageOSVolumeSourceArgs{...} // // or: // -// nil -// +// nil type StorageOSVolumeSourcePtrInput interface { pulumi.Input @@ -29497,8 +29176,7 @@ type Sysctl struct { // SysctlInput is an input type that accepts SysctlArgs and SysctlOutput values. // You can construct a concrete instance of `SysctlInput` via: // -// SysctlArgs{...} -// +// SysctlArgs{...} type SysctlInput interface { pulumi.Input @@ -29529,8 +29207,7 @@ func (i SysctlArgs) ToSysctlOutputWithContext(ctx context.Context) SysctlOutput // SysctlArrayInput is an input type that accepts SysctlArray and SysctlArrayOutput values. // You can construct a concrete instance of `SysctlArrayInput` via: // -// SysctlArray{ SysctlArgs{...} } -// +// SysctlArray{ SysctlArgs{...} } type SysctlArrayInput interface { pulumi.Input @@ -29608,8 +29285,7 @@ type TCPSocketAction struct { // TCPSocketActionInput is an input type that accepts TCPSocketActionArgs and TCPSocketActionOutput values. // You can construct a concrete instance of `TCPSocketActionInput` via: // -// TCPSocketActionArgs{...} -// +// TCPSocketActionArgs{...} type TCPSocketActionInput interface { pulumi.Input @@ -29648,12 +29324,11 @@ func (i TCPSocketActionArgs) ToTCPSocketActionPtrOutputWithContext(ctx context.C // TCPSocketActionPtrInput is an input type that accepts TCPSocketActionArgs, TCPSocketActionPtr and TCPSocketActionPtrOutput values. // You can construct a concrete instance of `TCPSocketActionPtrInput` via: // -// TCPSocketActionArgs{...} +// TCPSocketActionArgs{...} // // or: // -// nil -// +// nil type TCPSocketActionPtrInput interface { pulumi.Input @@ -29767,8 +29442,7 @@ type Taint struct { // TaintInput is an input type that accepts TaintArgs and TaintOutput values. // You can construct a concrete instance of `TaintInput` via: // -// TaintArgs{...} -// +// TaintArgs{...} type TaintInput interface { pulumi.Input @@ -29803,8 +29477,7 @@ func (i TaintArgs) ToTaintOutputWithContext(ctx context.Context) TaintOutput { // TaintArrayInput is an input type that accepts TaintArray and TaintArrayOutput values. // You can construct a concrete instance of `TaintArrayInput` via: // -// TaintArray{ TaintArgs{...} } -// +// TaintArray{ TaintArgs{...} } type TaintArrayInput interface { pulumi.Input @@ -29898,8 +29571,7 @@ type Toleration struct { // TolerationInput is an input type that accepts TolerationArgs and TolerationOutput values. // You can construct a concrete instance of `TolerationInput` via: // -// TolerationArgs{...} -// +// TolerationArgs{...} type TolerationInput interface { pulumi.Input @@ -29936,8 +29608,7 @@ func (i TolerationArgs) ToTolerationOutputWithContext(ctx context.Context) Toler // TolerationArrayInput is an input type that accepts TolerationArray and TolerationArrayOutput values. // You can construct a concrete instance of `TolerationArrayInput` via: // -// TolerationArray{ TolerationArgs{...} } -// +// TolerationArray{ TolerationArgs{...} } type TolerationArrayInput interface { pulumi.Input @@ -30030,8 +29701,7 @@ type TopologySelectorLabelRequirement struct { // TopologySelectorLabelRequirementInput is an input type that accepts TopologySelectorLabelRequirementArgs and TopologySelectorLabelRequirementOutput values. // You can construct a concrete instance of `TopologySelectorLabelRequirementInput` via: // -// TopologySelectorLabelRequirementArgs{...} -// +// TopologySelectorLabelRequirementArgs{...} type TopologySelectorLabelRequirementInput interface { pulumi.Input @@ -30062,8 +29732,7 @@ func (i TopologySelectorLabelRequirementArgs) ToTopologySelectorLabelRequirement // TopologySelectorLabelRequirementArrayInput is an input type that accepts TopologySelectorLabelRequirementArray and TopologySelectorLabelRequirementArrayOutput values. // You can construct a concrete instance of `TopologySelectorLabelRequirementArrayInput` via: // -// TopologySelectorLabelRequirementArray{ TopologySelectorLabelRequirementArgs{...} } -// +// TopologySelectorLabelRequirementArray{ TopologySelectorLabelRequirementArgs{...} } type TopologySelectorLabelRequirementArrayInput interface { pulumi.Input @@ -30139,8 +29808,7 @@ type TopologySelectorTerm struct { // TopologySelectorTermInput is an input type that accepts TopologySelectorTermArgs and TopologySelectorTermOutput values. // You can construct a concrete instance of `TopologySelectorTermInput` via: // -// TopologySelectorTermArgs{...} -// +// TopologySelectorTermArgs{...} type TopologySelectorTermInput interface { pulumi.Input @@ -30169,8 +29837,7 @@ func (i TopologySelectorTermArgs) ToTopologySelectorTermOutputWithContext(ctx co // TopologySelectorTermArrayInput is an input type that accepts TopologySelectorTermArray and TopologySelectorTermArrayOutput values. // You can construct a concrete instance of `TopologySelectorTermArrayInput` via: // -// TopologySelectorTermArray{ TopologySelectorTermArgs{...} } -// +// TopologySelectorTermArray{ TopologySelectorTermArgs{...} } type TopologySelectorTermArrayInput interface { pulumi.Input @@ -30247,8 +29914,7 @@ type TopologySpreadConstraint struct { // TopologySpreadConstraintInput is an input type that accepts TopologySpreadConstraintArgs and TopologySpreadConstraintOutput values. // You can construct a concrete instance of `TopologySpreadConstraintInput` via: // -// TopologySpreadConstraintArgs{...} -// +// TopologySpreadConstraintArgs{...} type TopologySpreadConstraintInput interface { pulumi.Input @@ -30283,8 +29949,7 @@ func (i TopologySpreadConstraintArgs) ToTopologySpreadConstraintOutputWithContex // TopologySpreadConstraintArrayInput is an input type that accepts TopologySpreadConstraintArray and TopologySpreadConstraintArrayOutput values. // You can construct a concrete instance of `TopologySpreadConstraintArrayInput` via: // -// TopologySpreadConstraintArray{ TopologySpreadConstraintArgs{...} } -// +// TopologySpreadConstraintArray{ TopologySpreadConstraintArgs{...} } type TopologySpreadConstraintArrayInput interface { pulumi.Input @@ -30374,8 +30039,7 @@ type TypedLocalObjectReference struct { // TypedLocalObjectReferenceInput is an input type that accepts TypedLocalObjectReferenceArgs and TypedLocalObjectReferenceOutput values. // You can construct a concrete instance of `TypedLocalObjectReferenceInput` via: // -// TypedLocalObjectReferenceArgs{...} -// +// TypedLocalObjectReferenceArgs{...} type TypedLocalObjectReferenceInput interface { pulumi.Input @@ -30416,12 +30080,11 @@ func (i TypedLocalObjectReferenceArgs) ToTypedLocalObjectReferencePtrOutputWithC // TypedLocalObjectReferencePtrInput is an input type that accepts TypedLocalObjectReferenceArgs, TypedLocalObjectReferencePtr and TypedLocalObjectReferencePtrOutput values. // You can construct a concrete instance of `TypedLocalObjectReferencePtrInput` via: // -// TypedLocalObjectReferenceArgs{...} +// TypedLocalObjectReferenceArgs{...} // // or: // -// nil -// +// nil type TypedLocalObjectReferencePtrInput interface { pulumi.Input @@ -30600,8 +30263,7 @@ type Volume struct { // VolumeInput is an input type that accepts VolumeArgs and VolumeOutput values. // You can construct a concrete instance of `VolumeInput` via: // -// VolumeArgs{...} -// +// VolumeArgs{...} type VolumeInput interface { pulumi.Input @@ -30686,8 +30348,7 @@ func (i VolumeArgs) ToVolumeOutputWithContext(ctx context.Context) VolumeOutput // VolumeArrayInput is an input type that accepts VolumeArray and VolumeArrayOutput values. // You can construct a concrete instance of `VolumeArrayInput` via: // -// VolumeArray{ VolumeArgs{...} } -// +// VolumeArray{ VolumeArgs{...} } type VolumeArrayInput interface { pulumi.Input @@ -30900,8 +30561,7 @@ type VolumeDevice struct { // VolumeDeviceInput is an input type that accepts VolumeDeviceArgs and VolumeDeviceOutput values. // You can construct a concrete instance of `VolumeDeviceInput` via: // -// VolumeDeviceArgs{...} -// +// VolumeDeviceArgs{...} type VolumeDeviceInput interface { pulumi.Input @@ -30932,8 +30592,7 @@ func (i VolumeDeviceArgs) ToVolumeDeviceOutputWithContext(ctx context.Context) V // VolumeDeviceArrayInput is an input type that accepts VolumeDeviceArray and VolumeDeviceArrayOutput values. // You can construct a concrete instance of `VolumeDeviceArrayInput` via: // -// VolumeDeviceArray{ VolumeDeviceArgs{...} } -// +// VolumeDeviceArray{ VolumeDeviceArgs{...} } type VolumeDeviceArrayInput interface { pulumi.Input @@ -31019,8 +30678,7 @@ type VolumeMount struct { // VolumeMountInput is an input type that accepts VolumeMountArgs and VolumeMountOutput values. // You can construct a concrete instance of `VolumeMountInput` via: // -// VolumeMountArgs{...} -// +// VolumeMountArgs{...} type VolumeMountInput interface { pulumi.Input @@ -31059,8 +30717,7 @@ func (i VolumeMountArgs) ToVolumeMountOutputWithContext(ctx context.Context) Vol // VolumeMountArrayInput is an input type that accepts VolumeMountArray and VolumeMountArrayOutput values. // You can construct a concrete instance of `VolumeMountArrayInput` via: // -// VolumeMountArray{ VolumeMountArgs{...} } -// +// VolumeMountArray{ VolumeMountArgs{...} } type VolumeMountArrayInput interface { pulumi.Input @@ -31156,8 +30813,7 @@ type VolumeNodeAffinity struct { // VolumeNodeAffinityInput is an input type that accepts VolumeNodeAffinityArgs and VolumeNodeAffinityOutput values. // You can construct a concrete instance of `VolumeNodeAffinityInput` via: // -// VolumeNodeAffinityArgs{...} -// +// VolumeNodeAffinityArgs{...} type VolumeNodeAffinityInput interface { pulumi.Input @@ -31194,12 +30850,11 @@ func (i VolumeNodeAffinityArgs) ToVolumeNodeAffinityPtrOutputWithContext(ctx con // VolumeNodeAffinityPtrInput is an input type that accepts VolumeNodeAffinityArgs, VolumeNodeAffinityPtr and VolumeNodeAffinityPtrOutput values. // You can construct a concrete instance of `VolumeNodeAffinityPtrInput` via: // -// VolumeNodeAffinityArgs{...} +// VolumeNodeAffinityArgs{...} // // or: // -// nil -// +// nil type VolumeNodeAffinityPtrInput interface { pulumi.Input @@ -31298,8 +30953,7 @@ type VolumeProjection struct { // VolumeProjectionInput is an input type that accepts VolumeProjectionArgs and VolumeProjectionOutput values. // You can construct a concrete instance of `VolumeProjectionInput` via: // -// VolumeProjectionArgs{...} -// +// VolumeProjectionArgs{...} type VolumeProjectionInput interface { pulumi.Input @@ -31334,8 +30988,7 @@ func (i VolumeProjectionArgs) ToVolumeProjectionOutputWithContext(ctx context.Co // VolumeProjectionArrayInput is an input type that accepts VolumeProjectionArray and VolumeProjectionArrayOutput values. // You can construct a concrete instance of `VolumeProjectionArrayInput` via: // -// VolumeProjectionArray{ VolumeProjectionArgs{...} } -// +// VolumeProjectionArray{ VolumeProjectionArgs{...} } type VolumeProjectionArrayInput interface { pulumi.Input @@ -31427,8 +31080,7 @@ type VsphereVirtualDiskVolumeSource struct { // VsphereVirtualDiskVolumeSourceInput is an input type that accepts VsphereVirtualDiskVolumeSourceArgs and VsphereVirtualDiskVolumeSourceOutput values. // You can construct a concrete instance of `VsphereVirtualDiskVolumeSourceInput` via: // -// VsphereVirtualDiskVolumeSourceArgs{...} -// +// VsphereVirtualDiskVolumeSourceArgs{...} type VsphereVirtualDiskVolumeSourceInput interface { pulumi.Input @@ -31471,12 +31123,11 @@ func (i VsphereVirtualDiskVolumeSourceArgs) ToVsphereVirtualDiskVolumeSourcePtrO // VsphereVirtualDiskVolumeSourcePtrInput is an input type that accepts VsphereVirtualDiskVolumeSourceArgs, VsphereVirtualDiskVolumeSourcePtr and VsphereVirtualDiskVolumeSourcePtrOutput values. // You can construct a concrete instance of `VsphereVirtualDiskVolumeSourcePtrInput` via: // -// VsphereVirtualDiskVolumeSourceArgs{...} +// VsphereVirtualDiskVolumeSourceArgs{...} // // or: // -// nil -// +// nil type VsphereVirtualDiskVolumeSourcePtrInput interface { pulumi.Input @@ -31616,8 +31267,7 @@ type WeightedPodAffinityTerm struct { // WeightedPodAffinityTermInput is an input type that accepts WeightedPodAffinityTermArgs and WeightedPodAffinityTermOutput values. // You can construct a concrete instance of `WeightedPodAffinityTermInput` via: // -// WeightedPodAffinityTermArgs{...} -// +// WeightedPodAffinityTermArgs{...} type WeightedPodAffinityTermInput interface { pulumi.Input @@ -31648,8 +31298,7 @@ func (i WeightedPodAffinityTermArgs) ToWeightedPodAffinityTermOutputWithContext( // WeightedPodAffinityTermArrayInput is an input type that accepts WeightedPodAffinityTermArray and WeightedPodAffinityTermArrayOutput values. // You can construct a concrete instance of `WeightedPodAffinityTermArrayInput` via: // -// WeightedPodAffinityTermArray{ WeightedPodAffinityTermArgs{...} } -// +// WeightedPodAffinityTermArray{ WeightedPodAffinityTermArgs{...} } type WeightedPodAffinityTermArrayInput interface { pulumi.Input @@ -31729,8 +31378,7 @@ type WindowsSecurityContextOptions struct { // WindowsSecurityContextOptionsInput is an input type that accepts WindowsSecurityContextOptionsArgs and WindowsSecurityContextOptionsOutput values. // You can construct a concrete instance of `WindowsSecurityContextOptionsInput` via: // -// WindowsSecurityContextOptionsArgs{...} -// +// WindowsSecurityContextOptionsArgs{...} type WindowsSecurityContextOptionsInput interface { pulumi.Input @@ -31771,12 +31419,11 @@ func (i WindowsSecurityContextOptionsArgs) ToWindowsSecurityContextOptionsPtrOut // WindowsSecurityContextOptionsPtrInput is an input type that accepts WindowsSecurityContextOptionsArgs, WindowsSecurityContextOptionsPtr and WindowsSecurityContextOptionsPtrOutput values. // You can construct a concrete instance of `WindowsSecurityContextOptionsPtrInput` via: // -// WindowsSecurityContextOptionsArgs{...} +// WindowsSecurityContextOptionsArgs{...} // // or: // -// nil -// +// nil type WindowsSecurityContextOptionsPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/discovery/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/discovery/v1beta1/pulumiTypes.go index 9783ee2457..a7b8f249a9 100644 --- a/sdk/go/kubernetes/discovery/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/discovery/v1beta1/pulumiTypes.go @@ -35,8 +35,7 @@ type Endpoint struct { // EndpointInput is an input type that accepts EndpointArgs and EndpointOutput values. // You can construct a concrete instance of `EndpointInput` via: // -// EndpointArgs{...} -// +// EndpointArgs{...} type EndpointInput interface { pulumi.Input @@ -79,8 +78,7 @@ func (i EndpointArgs) ToEndpointOutputWithContext(ctx context.Context) EndpointO // EndpointArrayInput is an input type that accepts EndpointArray and EndpointArrayOutput values. // You can construct a concrete instance of `EndpointArrayInput` via: // -// EndpointArray{ EndpointArgs{...} } -// +// EndpointArray{ EndpointArgs{...} } type EndpointArrayInput interface { pulumi.Input @@ -177,8 +175,7 @@ type EndpointConditions struct { // EndpointConditionsInput is an input type that accepts EndpointConditionsArgs and EndpointConditionsOutput values. // You can construct a concrete instance of `EndpointConditionsInput` via: // -// EndpointConditionsArgs{...} -// +// EndpointConditionsArgs{...} type EndpointConditionsInput interface { pulumi.Input @@ -215,12 +212,11 @@ func (i EndpointConditionsArgs) ToEndpointConditionsPtrOutputWithContext(ctx con // EndpointConditionsPtrInput is an input type that accepts EndpointConditionsArgs, EndpointConditionsPtr and EndpointConditionsPtrOutput values. // You can construct a concrete instance of `EndpointConditionsPtrInput` via: // -// EndpointConditionsArgs{...} +// EndpointConditionsArgs{...} // // or: // -// nil -// +// nil type EndpointConditionsPtrInput interface { pulumi.Input @@ -319,8 +315,7 @@ type EndpointPort struct { // EndpointPortInput is an input type that accepts EndpointPortArgs and EndpointPortOutput values. // You can construct a concrete instance of `EndpointPortInput` via: // -// EndpointPortArgs{...} -// +// EndpointPortArgs{...} type EndpointPortInput interface { pulumi.Input @@ -355,8 +350,7 @@ func (i EndpointPortArgs) ToEndpointPortOutputWithContext(ctx context.Context) E // EndpointPortArrayInput is an input type that accepts EndpointPortArray and EndpointPortArrayOutput values. // You can construct a concrete instance of `EndpointPortArrayInput` via: // -// EndpointPortArray{ EndpointPortArgs{...} } -// +// EndpointPortArray{ EndpointPortArgs{...} } type EndpointPortArrayInput interface { pulumi.Input @@ -452,8 +446,7 @@ type EndpointSliceType struct { // EndpointSliceTypeInput is an input type that accepts EndpointSliceTypeArgs and EndpointSliceTypeOutput values. // You can construct a concrete instance of `EndpointSliceTypeInput` via: // -// EndpointSliceTypeArgs{...} -// +// EndpointSliceTypeArgs{...} type EndpointSliceTypeInput interface { pulumi.Input @@ -492,8 +485,7 @@ func (i EndpointSliceTypeArgs) ToEndpointSliceTypeOutputWithContext(ctx context. // EndpointSliceTypeArrayInput is an input type that accepts EndpointSliceTypeArray and EndpointSliceTypeArrayOutput values. // You can construct a concrete instance of `EndpointSliceTypeArrayInput` via: // -// EndpointSliceTypeArray{ EndpointSliceTypeArgs{...} } -// +// EndpointSliceTypeArray{ EndpointSliceTypeArgs{...} } type EndpointSliceTypeArrayInput interface { pulumi.Input @@ -595,8 +587,7 @@ type EndpointSliceListType struct { // EndpointSliceListTypeInput is an input type that accepts EndpointSliceListTypeArgs and EndpointSliceListTypeOutput values. // You can construct a concrete instance of `EndpointSliceListTypeInput` via: // -// EndpointSliceListTypeArgs{...} -// +// EndpointSliceListTypeArgs{...} type EndpointSliceListTypeInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/events/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/events/v1beta1/pulumiTypes.go index 92a88bb1b5..271aacf0d2 100644 --- a/sdk/go/kubernetes/events/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/events/v1beta1/pulumiTypes.go @@ -52,8 +52,7 @@ type EventType struct { // EventTypeInput is an input type that accepts EventTypeArgs and EventTypeOutput values. // You can construct a concrete instance of `EventTypeInput` via: // -// EventTypeArgs{...} -// +// EventTypeArgs{...} type EventTypeInput interface { pulumi.Input @@ -113,8 +112,7 @@ func (i EventTypeArgs) ToEventTypeOutputWithContext(ctx context.Context) EventTy // EventTypeArrayInput is an input type that accepts EventTypeArray and EventTypeArrayOutput values. // You can construct a concrete instance of `EventTypeArrayInput` via: // -// EventTypeArray{ EventTypeArgs{...} } -// +// EventTypeArray{ EventTypeArgs{...} } type EventTypeArrayInput interface { pulumi.Input @@ -270,8 +268,7 @@ type EventListType struct { // EventListTypeInput is an input type that accepts EventListTypeArgs and EventListTypeOutput values. // You can construct a concrete instance of `EventListTypeInput` via: // -// EventListTypeArgs{...} -// +// EventListTypeArgs{...} type EventListTypeInput interface { pulumi.Input @@ -351,8 +348,7 @@ type EventSeries struct { // EventSeriesInput is an input type that accepts EventSeriesArgs and EventSeriesOutput values. // You can construct a concrete instance of `EventSeriesInput` via: // -// EventSeriesArgs{...} -// +// EventSeriesArgs{...} type EventSeriesInput interface { pulumi.Input @@ -393,12 +389,11 @@ func (i EventSeriesArgs) ToEventSeriesPtrOutputWithContext(ctx context.Context) // EventSeriesPtrInput is an input type that accepts EventSeriesArgs, EventSeriesPtr and EventSeriesPtrOutput values. // You can construct a concrete instance of `EventSeriesPtrInput` via: // -// EventSeriesArgs{...} +// EventSeriesArgs{...} // // or: // -// nil -// +// nil type EventSeriesPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/extensions/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/extensions/v1beta1/pulumiTypes.go index 6e12b59619..5cf7d76cdf 100644 --- a/sdk/go/kubernetes/extensions/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/extensions/v1beta1/pulumiTypes.go @@ -21,8 +21,7 @@ type AllowedCSIDriver struct { // AllowedCSIDriverInput is an input type that accepts AllowedCSIDriverArgs and AllowedCSIDriverOutput values. // You can construct a concrete instance of `AllowedCSIDriverInput` via: // -// AllowedCSIDriverArgs{...} -// +// AllowedCSIDriverArgs{...} type AllowedCSIDriverInput interface { pulumi.Input @@ -51,8 +50,7 @@ func (i AllowedCSIDriverArgs) ToAllowedCSIDriverOutputWithContext(ctx context.Co // AllowedCSIDriverArrayInput is an input type that accepts AllowedCSIDriverArray and AllowedCSIDriverArrayOutput values. // You can construct a concrete instance of `AllowedCSIDriverArrayInput` via: // -// AllowedCSIDriverArray{ AllowedCSIDriverArgs{...} } -// +// AllowedCSIDriverArray{ AllowedCSIDriverArgs{...} } type AllowedCSIDriverArrayInput interface { pulumi.Input @@ -123,8 +121,7 @@ type AllowedFlexVolume struct { // AllowedFlexVolumeInput is an input type that accepts AllowedFlexVolumeArgs and AllowedFlexVolumeOutput values. // You can construct a concrete instance of `AllowedFlexVolumeInput` via: // -// AllowedFlexVolumeArgs{...} -// +// AllowedFlexVolumeArgs{...} type AllowedFlexVolumeInput interface { pulumi.Input @@ -153,8 +150,7 @@ func (i AllowedFlexVolumeArgs) ToAllowedFlexVolumeOutputWithContext(ctx context. // AllowedFlexVolumeArrayInput is an input type that accepts AllowedFlexVolumeArray and AllowedFlexVolumeArrayOutput values. // You can construct a concrete instance of `AllowedFlexVolumeArrayInput` via: // -// AllowedFlexVolumeArray{ AllowedFlexVolumeArgs{...} } -// +// AllowedFlexVolumeArray{ AllowedFlexVolumeArgs{...} } type AllowedFlexVolumeArrayInput interface { pulumi.Input @@ -229,8 +225,7 @@ type AllowedHostPath struct { // AllowedHostPathInput is an input type that accepts AllowedHostPathArgs and AllowedHostPathOutput values. // You can construct a concrete instance of `AllowedHostPathInput` via: // -// AllowedHostPathArgs{...} -// +// AllowedHostPathArgs{...} type AllowedHostPathInput interface { pulumi.Input @@ -263,8 +258,7 @@ func (i AllowedHostPathArgs) ToAllowedHostPathOutputWithContext(ctx context.Cont // AllowedHostPathArrayInput is an input type that accepts AllowedHostPathArray and AllowedHostPathArrayOutput values. // You can construct a concrete instance of `AllowedHostPathArrayInput` via: // -// AllowedHostPathArray{ AllowedHostPathArgs{...} } -// +// AllowedHostPathArray{ AllowedHostPathArgs{...} } type AllowedHostPathArrayInput interface { pulumi.Input @@ -350,8 +344,7 @@ type DaemonSetType struct { // DaemonSetTypeInput is an input type that accepts DaemonSetTypeArgs and DaemonSetTypeOutput values. // You can construct a concrete instance of `DaemonSetTypeInput` via: // -// DaemonSetTypeArgs{...} -// +// DaemonSetTypeArgs{...} type DaemonSetTypeInput interface { pulumi.Input @@ -388,8 +381,7 @@ func (i DaemonSetTypeArgs) ToDaemonSetTypeOutputWithContext(ctx context.Context) // DaemonSetTypeArrayInput is an input type that accepts DaemonSetTypeArray and DaemonSetTypeArrayOutput values. // You can construct a concrete instance of `DaemonSetTypeArrayInput` via: // -// DaemonSetTypeArray{ DaemonSetTypeArgs{...} } -// +// DaemonSetTypeArray{ DaemonSetTypeArgs{...} } type DaemonSetTypeArrayInput interface { pulumi.Input @@ -488,8 +480,7 @@ type DaemonSetCondition struct { // DaemonSetConditionInput is an input type that accepts DaemonSetConditionArgs and DaemonSetConditionOutput values. // You can construct a concrete instance of `DaemonSetConditionInput` via: // -// DaemonSetConditionArgs{...} -// +// DaemonSetConditionArgs{...} type DaemonSetConditionInput interface { pulumi.Input @@ -526,8 +517,7 @@ func (i DaemonSetConditionArgs) ToDaemonSetConditionOutputWithContext(ctx contex // DaemonSetConditionArrayInput is an input type that accepts DaemonSetConditionArray and DaemonSetConditionArrayOutput values. // You can construct a concrete instance of `DaemonSetConditionArrayInput` via: // -// DaemonSetConditionArray{ DaemonSetConditionArgs{...} } -// +// DaemonSetConditionArray{ DaemonSetConditionArgs{...} } type DaemonSetConditionArrayInput interface { pulumi.Input @@ -624,8 +614,7 @@ type DaemonSetListType struct { // DaemonSetListTypeInput is an input type that accepts DaemonSetListTypeArgs and DaemonSetListTypeOutput values. // You can construct a concrete instance of `DaemonSetListTypeInput` via: // -// DaemonSetListTypeArgs{...} -// +// DaemonSetListTypeArgs{...} type DaemonSetListTypeInput interface { pulumi.Input @@ -711,8 +700,7 @@ type DaemonSetSpec struct { // DaemonSetSpecInput is an input type that accepts DaemonSetSpecArgs and DaemonSetSpecOutput values. // You can construct a concrete instance of `DaemonSetSpecInput` via: // -// DaemonSetSpecArgs{...} -// +// DaemonSetSpecArgs{...} type DaemonSetSpecInput interface { pulumi.Input @@ -759,12 +747,11 @@ func (i DaemonSetSpecArgs) ToDaemonSetSpecPtrOutputWithContext(ctx context.Conte // DaemonSetSpecPtrInput is an input type that accepts DaemonSetSpecArgs, DaemonSetSpecPtr and DaemonSetSpecPtrOutput values. // You can construct a concrete instance of `DaemonSetSpecPtrInput` via: // -// DaemonSetSpecArgs{...} +// DaemonSetSpecArgs{...} // // or: // -// nil -// +// nil type DaemonSetSpecPtrInput interface { pulumi.Input @@ -950,8 +937,7 @@ type DaemonSetStatus struct { // DaemonSetStatusInput is an input type that accepts DaemonSetStatusArgs and DaemonSetStatusOutput values. // You can construct a concrete instance of `DaemonSetStatusInput` via: // -// DaemonSetStatusArgs{...} -// +// DaemonSetStatusArgs{...} type DaemonSetStatusInput interface { pulumi.Input @@ -1006,12 +992,11 @@ func (i DaemonSetStatusArgs) ToDaemonSetStatusPtrOutputWithContext(ctx context.C // DaemonSetStatusPtrInput is an input type that accepts DaemonSetStatusArgs, DaemonSetStatusPtr and DaemonSetStatusPtrOutput values. // You can construct a concrete instance of `DaemonSetStatusPtrInput` via: // -// DaemonSetStatusArgs{...} +// DaemonSetStatusArgs{...} // // or: // -// nil -// +// nil type DaemonSetStatusPtrInput interface { pulumi.Input @@ -1240,8 +1225,7 @@ type DaemonSetUpdateStrategy struct { // DaemonSetUpdateStrategyInput is an input type that accepts DaemonSetUpdateStrategyArgs and DaemonSetUpdateStrategyOutput values. // You can construct a concrete instance of `DaemonSetUpdateStrategyInput` via: // -// DaemonSetUpdateStrategyArgs{...} -// +// DaemonSetUpdateStrategyArgs{...} type DaemonSetUpdateStrategyInput interface { pulumi.Input @@ -1279,12 +1263,11 @@ func (i DaemonSetUpdateStrategyArgs) ToDaemonSetUpdateStrategyPtrOutputWithConte // DaemonSetUpdateStrategyPtrInput is an input type that accepts DaemonSetUpdateStrategyArgs, DaemonSetUpdateStrategyPtr and DaemonSetUpdateStrategyPtrOutput values. // You can construct a concrete instance of `DaemonSetUpdateStrategyPtrInput` via: // -// DaemonSetUpdateStrategyArgs{...} +// DaemonSetUpdateStrategyArgs{...} // // or: // -// nil -// +// nil type DaemonSetUpdateStrategyPtrInput interface { pulumi.Input @@ -1421,8 +1404,7 @@ type DeploymentType struct { // DeploymentTypeInput is an input type that accepts DeploymentTypeArgs and DeploymentTypeOutput values. // You can construct a concrete instance of `DeploymentTypeInput` via: // -// DeploymentTypeArgs{...} -// +// DeploymentTypeArgs{...} type DeploymentTypeInput interface { pulumi.Input @@ -1481,8 +1463,7 @@ func (i DeploymentTypeArgs) ToDeploymentTypeOutputWithContext(ctx context.Contex // DeploymentTypeArrayInput is an input type that accepts DeploymentTypeArray and DeploymentTypeArrayOutput values. // You can construct a concrete instance of `DeploymentTypeArrayInput` via: // -// DeploymentTypeArray{ DeploymentTypeArgs{...} } -// +// DeploymentTypeArray{ DeploymentTypeArgs{...} } type DeploymentTypeArrayInput interface { pulumi.Input @@ -1605,8 +1586,7 @@ type DeploymentCondition struct { // DeploymentConditionInput is an input type that accepts DeploymentConditionArgs and DeploymentConditionOutput values. // You can construct a concrete instance of `DeploymentConditionInput` via: // -// DeploymentConditionArgs{...} -// +// DeploymentConditionArgs{...} type DeploymentConditionInput interface { pulumi.Input @@ -1645,8 +1625,7 @@ func (i DeploymentConditionArgs) ToDeploymentConditionOutputWithContext(ctx cont // DeploymentConditionArrayInput is an input type that accepts DeploymentConditionArray and DeploymentConditionArrayOutput values. // You can construct a concrete instance of `DeploymentConditionArrayInput` via: // -// DeploymentConditionArray{ DeploymentConditionArgs{...} } -// +// DeploymentConditionArray{ DeploymentConditionArgs{...} } type DeploymentConditionArrayInput interface { pulumi.Input @@ -1748,8 +1727,7 @@ type DeploymentListType struct { // DeploymentListTypeInput is an input type that accepts DeploymentListTypeArgs and DeploymentListTypeOutput values. // You can construct a concrete instance of `DeploymentListTypeInput` via: // -// DeploymentListTypeArgs{...} -// +// DeploymentListTypeArgs{...} type DeploymentListTypeInput interface { pulumi.Input @@ -1833,8 +1811,7 @@ type DeploymentRollback struct { // DeploymentRollbackInput is an input type that accepts DeploymentRollbackArgs and DeploymentRollbackOutput values. // You can construct a concrete instance of `DeploymentRollbackInput` via: // -// DeploymentRollbackArgs{...} -// +// DeploymentRollbackArgs{...} type DeploymentRollbackInput interface { pulumi.Input @@ -1933,8 +1910,7 @@ type DeploymentSpec struct { // DeploymentSpecInput is an input type that accepts DeploymentSpecArgs and DeploymentSpecOutput values. // You can construct a concrete instance of `DeploymentSpecInput` via: // -// DeploymentSpecArgs{...} -// +// DeploymentSpecArgs{...} type DeploymentSpecInput interface { pulumi.Input @@ -1987,12 +1963,11 @@ func (i DeploymentSpecArgs) ToDeploymentSpecPtrOutputWithContext(ctx context.Con // DeploymentSpecPtrInput is an input type that accepts DeploymentSpecArgs, DeploymentSpecPtr and DeploymentSpecPtrOutput values. // You can construct a concrete instance of `DeploymentSpecPtrInput` via: // -// DeploymentSpecArgs{...} +// DeploymentSpecArgs{...} // // or: // -// nil -// +// nil type DeploymentSpecPtrInput interface { pulumi.Input @@ -2219,8 +2194,7 @@ type DeploymentStatus struct { // DeploymentStatusInput is an input type that accepts DeploymentStatusArgs and DeploymentStatusOutput values. // You can construct a concrete instance of `DeploymentStatusInput` via: // -// DeploymentStatusArgs{...} -// +// DeploymentStatusArgs{...} type DeploymentStatusInput interface { pulumi.Input @@ -2271,12 +2245,11 @@ func (i DeploymentStatusArgs) ToDeploymentStatusPtrOutputWithContext(ctx context // DeploymentStatusPtrInput is an input type that accepts DeploymentStatusArgs, DeploymentStatusPtr and DeploymentStatusPtrOutput values. // You can construct a concrete instance of `DeploymentStatusPtrInput` via: // -// DeploymentStatusArgs{...} +// DeploymentStatusArgs{...} // // or: // -// nil -// +// nil type DeploymentStatusPtrInput interface { pulumi.Input @@ -2476,8 +2449,7 @@ type DeploymentStrategy struct { // DeploymentStrategyInput is an input type that accepts DeploymentStrategyArgs and DeploymentStrategyOutput values. // You can construct a concrete instance of `DeploymentStrategyInput` via: // -// DeploymentStrategyArgs{...} -// +// DeploymentStrategyArgs{...} type DeploymentStrategyInput interface { pulumi.Input @@ -2516,12 +2488,11 @@ func (i DeploymentStrategyArgs) ToDeploymentStrategyPtrOutputWithContext(ctx con // DeploymentStrategyPtrInput is an input type that accepts DeploymentStrategyArgs, DeploymentStrategyPtr and DeploymentStrategyPtrOutput values. // You can construct a concrete instance of `DeploymentStrategyPtrInput` via: // -// DeploymentStrategyArgs{...} +// DeploymentStrategyArgs{...} // // or: // -// nil -// +// nil type DeploymentStrategyPtrInput interface { pulumi.Input @@ -2631,8 +2602,7 @@ type FSGroupStrategyOptions struct { // FSGroupStrategyOptionsInput is an input type that accepts FSGroupStrategyOptionsArgs and FSGroupStrategyOptionsOutput values. // You can construct a concrete instance of `FSGroupStrategyOptionsInput` via: // -// FSGroupStrategyOptionsArgs{...} -// +// FSGroupStrategyOptionsArgs{...} type FSGroupStrategyOptionsInput interface { pulumi.Input @@ -2671,12 +2641,11 @@ func (i FSGroupStrategyOptionsArgs) ToFSGroupStrategyOptionsPtrOutputWithContext // FSGroupStrategyOptionsPtrInput is an input type that accepts FSGroupStrategyOptionsArgs, FSGroupStrategyOptionsPtr and FSGroupStrategyOptionsPtrOutput values. // You can construct a concrete instance of `FSGroupStrategyOptionsPtrInput` via: // -// FSGroupStrategyOptionsArgs{...} +// FSGroupStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type FSGroupStrategyOptionsPtrInput interface { pulumi.Input @@ -2791,15 +2760,14 @@ type HTTPIngressPath struct { // * ImplementationSpecific: Interpretation of the Path matching is up to // the IngressClass. Implementations can treat this as a separate PathType // or treat it identically to Prefix or Exact path types. - // Implementations are required to support all path types. Defaults to ImplementationSpecific. + // Implementations are required to support all path types. Defaults to ImplementationSpecific. PathType *string `pulumi:"pathType"` } // HTTPIngressPathInput is an input type that accepts HTTPIngressPathArgs and HTTPIngressPathOutput values. // You can construct a concrete instance of `HTTPIngressPathInput` via: // -// HTTPIngressPathArgs{...} -// +// HTTPIngressPathArgs{...} type HTTPIngressPathInput interface { pulumi.Input @@ -2823,7 +2791,7 @@ type HTTPIngressPathArgs struct { // * ImplementationSpecific: Interpretation of the Path matching is up to // the IngressClass. Implementations can treat this as a separate PathType // or treat it identically to Prefix or Exact path types. - // Implementations are required to support all path types. Defaults to ImplementationSpecific. + // Implementations are required to support all path types. Defaults to ImplementationSpecific. PathType pulumi.StringPtrInput `pulumi:"pathType"` } @@ -2842,8 +2810,7 @@ func (i HTTPIngressPathArgs) ToHTTPIngressPathOutputWithContext(ctx context.Cont // HTTPIngressPathArrayInput is an input type that accepts HTTPIngressPathArray and HTTPIngressPathArrayOutput values. // You can construct a concrete instance of `HTTPIngressPathArrayInput` via: // -// HTTPIngressPathArray{ HTTPIngressPathArgs{...} } -// +// HTTPIngressPathArray{ HTTPIngressPathArgs{...} } type HTTPIngressPathArrayInput interface { pulumi.Input @@ -2900,7 +2867,7 @@ func (o HTTPIngressPathOutput) Path() pulumi.StringPtrOutput { // * ImplementationSpecific: Interpretation of the Path matching is up to // the IngressClass. Implementations can treat this as a separate PathType // or treat it identically to Prefix or Exact path types. -// Implementations are required to support all path types. Defaults to ImplementationSpecific. +// Implementations are required to support all path types. Defaults to ImplementationSpecific. func (o HTTPIngressPathOutput) PathType() pulumi.StringPtrOutput { return o.ApplyT(func(v HTTPIngressPath) *string { return v.PathType }).(pulumi.StringPtrOutput) } @@ -2934,8 +2901,7 @@ type HTTPIngressRuleValue struct { // HTTPIngressRuleValueInput is an input type that accepts HTTPIngressRuleValueArgs and HTTPIngressRuleValueOutput values. // You can construct a concrete instance of `HTTPIngressRuleValueInput` via: // -// HTTPIngressRuleValueArgs{...} -// +// HTTPIngressRuleValueArgs{...} type HTTPIngressRuleValueInput interface { pulumi.Input @@ -2972,12 +2938,11 @@ func (i HTTPIngressRuleValueArgs) ToHTTPIngressRuleValuePtrOutputWithContext(ctx // HTTPIngressRuleValuePtrInput is an input type that accepts HTTPIngressRuleValueArgs, HTTPIngressRuleValuePtr and HTTPIngressRuleValuePtrOutput values. // You can construct a concrete instance of `HTTPIngressRuleValuePtrInput` via: // -// HTTPIngressRuleValueArgs{...} +// HTTPIngressRuleValueArgs{...} // // or: // -// nil -// +// nil type HTTPIngressRuleValuePtrInput interface { pulumi.Input @@ -3072,8 +3037,7 @@ type HostPortRange struct { // HostPortRangeInput is an input type that accepts HostPortRangeArgs and HostPortRangeOutput values. // You can construct a concrete instance of `HostPortRangeInput` via: // -// HostPortRangeArgs{...} -// +// HostPortRangeArgs{...} type HostPortRangeInput interface { pulumi.Input @@ -3104,8 +3068,7 @@ func (i HostPortRangeArgs) ToHostPortRangeOutputWithContext(ctx context.Context) // HostPortRangeArrayInput is an input type that accepts HostPortRangeArray and HostPortRangeArrayOutput values. // You can construct a concrete instance of `HostPortRangeArrayInput` via: // -// HostPortRangeArray{ HostPortRangeArgs{...} } -// +// HostPortRangeArray{ HostPortRangeArgs{...} } type HostPortRangeArrayInput interface { pulumi.Input @@ -3183,8 +3146,7 @@ type IDRange struct { // IDRangeInput is an input type that accepts IDRangeArgs and IDRangeOutput values. // You can construct a concrete instance of `IDRangeInput` via: // -// IDRangeArgs{...} -// +// IDRangeArgs{...} type IDRangeInput interface { pulumi.Input @@ -3215,8 +3177,7 @@ func (i IDRangeArgs) ToIDRangeOutputWithContext(ctx context.Context) IDRangeOutp // IDRangeArrayInput is an input type that accepts IDRangeArray and IDRangeArrayOutput values. // You can construct a concrete instance of `IDRangeArrayInput` via: // -// IDRangeArray{ IDRangeArgs{...} } -// +// IDRangeArray{ IDRangeArgs{...} } type IDRangeArrayInput interface { pulumi.Input @@ -3294,8 +3255,7 @@ type IPBlock struct { // IPBlockInput is an input type that accepts IPBlockArgs and IPBlockOutput values. // You can construct a concrete instance of `IPBlockInput` via: // -// IPBlockArgs{...} -// +// IPBlockArgs{...} type IPBlockInput interface { pulumi.Input @@ -3334,12 +3294,11 @@ func (i IPBlockArgs) ToIPBlockPtrOutputWithContext(ctx context.Context) IPBlockP // IPBlockPtrInput is an input type that accepts IPBlockArgs, IPBlockPtr and IPBlockPtrOutput values. // You can construct a concrete instance of `IPBlockPtrInput` via: // -// IPBlockArgs{...} +// IPBlockArgs{...} // // or: // -// nil -// +// nil type IPBlockPtrInput interface { pulumi.Input @@ -3469,8 +3428,7 @@ type IngressType struct { // IngressTypeInput is an input type that accepts IngressTypeArgs and IngressTypeOutput values. // You can construct a concrete instance of `IngressTypeInput` via: // -// IngressTypeArgs{...} -// +// IngressTypeArgs{...} type IngressTypeInput interface { pulumi.Input @@ -3521,8 +3479,7 @@ func (i IngressTypeArgs) ToIngressTypeOutputWithContext(ctx context.Context) Ing // IngressTypeArrayInput is an input type that accepts IngressTypeArray and IngressTypeArrayOutput values. // You can construct a concrete instance of `IngressTypeArrayInput` via: // -// IngressTypeArray{ IngressTypeArgs{...} } -// +// IngressTypeArray{ IngressTypeArgs{...} } type IngressTypeArrayInput interface { pulumi.Input @@ -3631,8 +3588,7 @@ type IngressBackend struct { // IngressBackendInput is an input type that accepts IngressBackendArgs and IngressBackendOutput values. // You can construct a concrete instance of `IngressBackendInput` via: // -// IngressBackendArgs{...} -// +// IngressBackendArgs{...} type IngressBackendInput interface { pulumi.Input @@ -3673,12 +3629,11 @@ func (i IngressBackendArgs) ToIngressBackendPtrOutputWithContext(ctx context.Con // IngressBackendPtrInput is an input type that accepts IngressBackendArgs, IngressBackendPtr and IngressBackendPtrOutput values. // You can construct a concrete instance of `IngressBackendPtrInput` via: // -// IngressBackendArgs{...} +// IngressBackendArgs{...} // // or: // -// nil -// +// nil type IngressBackendPtrInput interface { pulumi.Input @@ -3807,8 +3762,7 @@ type IngressListType struct { // IngressListTypeInput is an input type that accepts IngressListTypeArgs and IngressListTypeOutput values. // You can construct a concrete instance of `IngressListTypeInput` via: // -// IngressListTypeArgs{...} -// +// IngressListTypeArgs{...} type IngressListTypeInput interface { pulumi.Input @@ -3892,8 +3846,7 @@ type IngressRule struct { // IngressRuleInput is an input type that accepts IngressRuleArgs and IngressRuleOutput values. // You can construct a concrete instance of `IngressRuleInput` via: // -// IngressRuleArgs{...} -// +// IngressRuleArgs{...} type IngressRuleInput interface { pulumi.Input @@ -3930,8 +3883,7 @@ func (i IngressRuleArgs) ToIngressRuleOutputWithContext(ctx context.Context) Ing // IngressRuleArrayInput is an input type that accepts IngressRuleArray and IngressRuleArrayOutput values. // You can construct a concrete instance of `IngressRuleArrayInput` via: // -// IngressRuleArray{ IngressRuleArgs{...} } -// +// IngressRuleArray{ IngressRuleArgs{...} } type IngressRuleArrayInput interface { pulumi.Input @@ -4019,8 +3971,7 @@ type IngressSpec struct { // IngressSpecInput is an input type that accepts IngressSpecArgs and IngressSpecOutput values. // You can construct a concrete instance of `IngressSpecInput` via: // -// IngressSpecArgs{...} -// +// IngressSpecArgs{...} type IngressSpecInput interface { pulumi.Input @@ -4063,12 +4014,11 @@ func (i IngressSpecArgs) ToIngressSpecPtrOutputWithContext(ctx context.Context) // IngressSpecPtrInput is an input type that accepts IngressSpecArgs, IngressSpecPtr and IngressSpecPtrOutput values. // You can construct a concrete instance of `IngressSpecPtrInput` via: // -// IngressSpecArgs{...} +// IngressSpecArgs{...} // // or: // -// nil -// +// nil type IngressSpecPtrInput interface { pulumi.Input @@ -4206,8 +4156,7 @@ type IngressStatus struct { // IngressStatusInput is an input type that accepts IngressStatusArgs and IngressStatusOutput values. // You can construct a concrete instance of `IngressStatusInput` via: // -// IngressStatusArgs{...} -// +// IngressStatusArgs{...} type IngressStatusInput interface { pulumi.Input @@ -4244,12 +4193,11 @@ func (i IngressStatusArgs) ToIngressStatusPtrOutputWithContext(ctx context.Conte // IngressStatusPtrInput is an input type that accepts IngressStatusArgs, IngressStatusPtr and IngressStatusPtrOutput values. // You can construct a concrete instance of `IngressStatusPtrInput` via: // -// IngressStatusArgs{...} +// IngressStatusArgs{...} // // or: // -// nil -// +// nil type IngressStatusPtrInput interface { pulumi.Input @@ -4344,8 +4292,7 @@ type IngressTLS struct { // IngressTLSInput is an input type that accepts IngressTLSArgs and IngressTLSOutput values. // You can construct a concrete instance of `IngressTLSInput` via: // -// IngressTLSArgs{...} -// +// IngressTLSArgs{...} type IngressTLSInput interface { pulumi.Input @@ -4376,8 +4323,7 @@ func (i IngressTLSArgs) ToIngressTLSOutputWithContext(ctx context.Context) Ingre // IngressTLSArrayInput is an input type that accepts IngressTLSArray and IngressTLSArrayOutput values. // You can construct a concrete instance of `IngressTLSArrayInput` via: // -// IngressTLSArray{ IngressTLSArgs{...} } -// +// IngressTLSArray{ IngressTLSArgs{...} } type IngressTLSArrayInput interface { pulumi.Input @@ -4459,8 +4405,7 @@ type NetworkPolicyType struct { // NetworkPolicyTypeInput is an input type that accepts NetworkPolicyTypeArgs and NetworkPolicyTypeOutput values. // You can construct a concrete instance of `NetworkPolicyTypeInput` via: // -// NetworkPolicyTypeArgs{...} -// +// NetworkPolicyTypeArgs{...} type NetworkPolicyTypeInput interface { pulumi.Input @@ -4495,8 +4440,7 @@ func (i NetworkPolicyTypeArgs) ToNetworkPolicyTypeOutputWithContext(ctx context. // NetworkPolicyTypeArrayInput is an input type that accepts NetworkPolicyTypeArray and NetworkPolicyTypeArrayOutput values. // You can construct a concrete instance of `NetworkPolicyTypeArrayInput` via: // -// NetworkPolicyTypeArray{ NetworkPolicyTypeArgs{...} } -// +// NetworkPolicyTypeArray{ NetworkPolicyTypeArgs{...} } type NetworkPolicyTypeArrayInput interface { pulumi.Input @@ -4584,8 +4528,7 @@ type NetworkPolicyEgressRule struct { // NetworkPolicyEgressRuleInput is an input type that accepts NetworkPolicyEgressRuleArgs and NetworkPolicyEgressRuleOutput values. // You can construct a concrete instance of `NetworkPolicyEgressRuleInput` via: // -// NetworkPolicyEgressRuleArgs{...} -// +// NetworkPolicyEgressRuleArgs{...} type NetworkPolicyEgressRuleInput interface { pulumi.Input @@ -4616,8 +4559,7 @@ func (i NetworkPolicyEgressRuleArgs) ToNetworkPolicyEgressRuleOutputWithContext( // NetworkPolicyEgressRuleArrayInput is an input type that accepts NetworkPolicyEgressRuleArray and NetworkPolicyEgressRuleArrayOutput values. // You can construct a concrete instance of `NetworkPolicyEgressRuleArrayInput` via: // -// NetworkPolicyEgressRuleArray{ NetworkPolicyEgressRuleArgs{...} } -// +// NetworkPolicyEgressRuleArray{ NetworkPolicyEgressRuleArgs{...} } type NetworkPolicyEgressRuleArrayInput interface { pulumi.Input @@ -4695,8 +4637,7 @@ type NetworkPolicyIngressRule struct { // NetworkPolicyIngressRuleInput is an input type that accepts NetworkPolicyIngressRuleArgs and NetworkPolicyIngressRuleOutput values. // You can construct a concrete instance of `NetworkPolicyIngressRuleInput` via: // -// NetworkPolicyIngressRuleArgs{...} -// +// NetworkPolicyIngressRuleArgs{...} type NetworkPolicyIngressRuleInput interface { pulumi.Input @@ -4727,8 +4668,7 @@ func (i NetworkPolicyIngressRuleArgs) ToNetworkPolicyIngressRuleOutputWithContex // NetworkPolicyIngressRuleArrayInput is an input type that accepts NetworkPolicyIngressRuleArray and NetworkPolicyIngressRuleArrayOutput values. // You can construct a concrete instance of `NetworkPolicyIngressRuleArrayInput` via: // -// NetworkPolicyIngressRuleArray{ NetworkPolicyIngressRuleArgs{...} } -// +// NetworkPolicyIngressRuleArray{ NetworkPolicyIngressRuleArgs{...} } type NetworkPolicyIngressRuleArrayInput interface { pulumi.Input @@ -4810,8 +4750,7 @@ type NetworkPolicyListType struct { // NetworkPolicyListTypeInput is an input type that accepts NetworkPolicyListTypeArgs and NetworkPolicyListTypeOutput values. // You can construct a concrete instance of `NetworkPolicyListTypeInput` via: // -// NetworkPolicyListTypeArgs{...} -// +// NetworkPolicyListTypeArgs{...} type NetworkPolicyListTypeInput interface { pulumi.Input @@ -4895,8 +4834,7 @@ type NetworkPolicyPeer struct { // NetworkPolicyPeerInput is an input type that accepts NetworkPolicyPeerArgs and NetworkPolicyPeerOutput values. // You can construct a concrete instance of `NetworkPolicyPeerInput` via: // -// NetworkPolicyPeerArgs{...} -// +// NetworkPolicyPeerArgs{...} type NetworkPolicyPeerInput interface { pulumi.Input @@ -4933,8 +4871,7 @@ func (i NetworkPolicyPeerArgs) ToNetworkPolicyPeerOutputWithContext(ctx context. // NetworkPolicyPeerArrayInput is an input type that accepts NetworkPolicyPeerArray and NetworkPolicyPeerArrayOutput values. // You can construct a concrete instance of `NetworkPolicyPeerArrayInput` via: // -// NetworkPolicyPeerArray{ NetworkPolicyPeerArgs{...} } -// +// NetworkPolicyPeerArray{ NetworkPolicyPeerArgs{...} } type NetworkPolicyPeerArrayInput interface { pulumi.Input @@ -5021,8 +4958,7 @@ type NetworkPolicyPort struct { // NetworkPolicyPortInput is an input type that accepts NetworkPolicyPortArgs and NetworkPolicyPortOutput values. // You can construct a concrete instance of `NetworkPolicyPortInput` via: // -// NetworkPolicyPortArgs{...} -// +// NetworkPolicyPortArgs{...} type NetworkPolicyPortInput interface { pulumi.Input @@ -5053,8 +4989,7 @@ func (i NetworkPolicyPortArgs) ToNetworkPolicyPortOutputWithContext(ctx context. // NetworkPolicyPortArrayInput is an input type that accepts NetworkPolicyPortArray and NetworkPolicyPortArrayOutput values. // You can construct a concrete instance of `NetworkPolicyPortArrayInput` via: // -// NetworkPolicyPortArray{ NetworkPolicyPortArgs{...} } -// +// NetworkPolicyPortArray{ NetworkPolicyPortArgs{...} } type NetworkPolicyPortArrayInput interface { pulumi.Input @@ -5136,8 +5071,7 @@ type NetworkPolicySpec struct { // NetworkPolicySpecInput is an input type that accepts NetworkPolicySpecArgs and NetworkPolicySpecOutput values. // You can construct a concrete instance of `NetworkPolicySpecInput` via: // -// NetworkPolicySpecArgs{...} -// +// NetworkPolicySpecArgs{...} type NetworkPolicySpecInput interface { pulumi.Input @@ -5180,12 +5114,11 @@ func (i NetworkPolicySpecArgs) ToNetworkPolicySpecPtrOutputWithContext(ctx conte // NetworkPolicySpecPtrInput is an input type that accepts NetworkPolicySpecArgs, NetworkPolicySpecPtr and NetworkPolicySpecPtrOutput values. // You can construct a concrete instance of `NetworkPolicySpecPtrInput` via: // -// NetworkPolicySpecArgs{...} +// NetworkPolicySpecArgs{...} // // or: // -// nil -// +// nil type NetworkPolicySpecPtrInput interface { pulumi.Input @@ -5329,8 +5262,7 @@ type PodSecurityPolicyType struct { // PodSecurityPolicyTypeInput is an input type that accepts PodSecurityPolicyTypeArgs and PodSecurityPolicyTypeOutput values. // You can construct a concrete instance of `PodSecurityPolicyTypeInput` via: // -// PodSecurityPolicyTypeArgs{...} -// +// PodSecurityPolicyTypeArgs{...} type PodSecurityPolicyTypeInput interface { pulumi.Input @@ -5365,8 +5297,7 @@ func (i PodSecurityPolicyTypeArgs) ToPodSecurityPolicyTypeOutputWithContext(ctx // PodSecurityPolicyTypeArrayInput is an input type that accepts PodSecurityPolicyTypeArray and PodSecurityPolicyTypeArrayOutput values. // You can construct a concrete instance of `PodSecurityPolicyTypeArrayInput` via: // -// PodSecurityPolicyTypeArray{ PodSecurityPolicyTypeArgs{...} } -// +// PodSecurityPolicyTypeArray{ PodSecurityPolicyTypeArgs{...} } type PodSecurityPolicyTypeArrayInput interface { pulumi.Input @@ -5458,8 +5389,7 @@ type PodSecurityPolicyListType struct { // PodSecurityPolicyListTypeInput is an input type that accepts PodSecurityPolicyListTypeArgs and PodSecurityPolicyListTypeOutput values. // You can construct a concrete instance of `PodSecurityPolicyListTypeInput` via: // -// PodSecurityPolicyListTypeArgs{...} -// +// PodSecurityPolicyListTypeArgs{...} type PodSecurityPolicyListTypeInput interface { pulumi.Input @@ -5585,8 +5515,7 @@ type PodSecurityPolicySpec struct { // PodSecurityPolicySpecInput is an input type that accepts PodSecurityPolicySpecArgs and PodSecurityPolicySpecOutput values. // You can construct a concrete instance of `PodSecurityPolicySpecInput` via: // -// PodSecurityPolicySpecArgs{...} -// +// PodSecurityPolicySpecArgs{...} type PodSecurityPolicySpecInput interface { pulumi.Input @@ -5673,12 +5602,11 @@ func (i PodSecurityPolicySpecArgs) ToPodSecurityPolicySpecPtrOutputWithContext(c // PodSecurityPolicySpecPtrInput is an input type that accepts PodSecurityPolicySpecArgs, PodSecurityPolicySpecPtr and PodSecurityPolicySpecPtrOutput values. // You can construct a concrete instance of `PodSecurityPolicySpecPtrInput` via: // -// PodSecurityPolicySpecArgs{...} +// PodSecurityPolicySpecArgs{...} // // or: // -// nil -// +// nil type PodSecurityPolicySpecPtrInput interface { pulumi.Input @@ -6132,8 +6060,7 @@ type ReplicaSetType struct { // ReplicaSetTypeInput is an input type that accepts ReplicaSetTypeArgs and ReplicaSetTypeOutput values. // You can construct a concrete instance of `ReplicaSetTypeInput` via: // -// ReplicaSetTypeArgs{...} -// +// ReplicaSetTypeArgs{...} type ReplicaSetTypeInput interface { pulumi.Input @@ -6170,8 +6097,7 @@ func (i ReplicaSetTypeArgs) ToReplicaSetTypeOutputWithContext(ctx context.Contex // ReplicaSetTypeArrayInput is an input type that accepts ReplicaSetTypeArray and ReplicaSetTypeArrayOutput values. // You can construct a concrete instance of `ReplicaSetTypeArrayInput` via: // -// ReplicaSetTypeArray{ ReplicaSetTypeArgs{...} } -// +// ReplicaSetTypeArray{ ReplicaSetTypeArgs{...} } type ReplicaSetTypeArrayInput interface { pulumi.Input @@ -6270,8 +6196,7 @@ type ReplicaSetCondition struct { // ReplicaSetConditionInput is an input type that accepts ReplicaSetConditionArgs and ReplicaSetConditionOutput values. // You can construct a concrete instance of `ReplicaSetConditionInput` via: // -// ReplicaSetConditionArgs{...} -// +// ReplicaSetConditionArgs{...} type ReplicaSetConditionInput interface { pulumi.Input @@ -6308,8 +6233,7 @@ func (i ReplicaSetConditionArgs) ToReplicaSetConditionOutputWithContext(ctx cont // ReplicaSetConditionArrayInput is an input type that accepts ReplicaSetConditionArray and ReplicaSetConditionArrayOutput values. // You can construct a concrete instance of `ReplicaSetConditionArrayInput` via: // -// ReplicaSetConditionArray{ ReplicaSetConditionArgs{...} } -// +// ReplicaSetConditionArray{ ReplicaSetConditionArgs{...} } type ReplicaSetConditionArrayInput interface { pulumi.Input @@ -6406,8 +6330,7 @@ type ReplicaSetListType struct { // ReplicaSetListTypeInput is an input type that accepts ReplicaSetListTypeArgs and ReplicaSetListTypeOutput values. // You can construct a concrete instance of `ReplicaSetListTypeInput` via: // -// ReplicaSetListTypeArgs{...} -// +// ReplicaSetListTypeArgs{...} type ReplicaSetListTypeInput interface { pulumi.Input @@ -6489,8 +6412,7 @@ type ReplicaSetSpec struct { // ReplicaSetSpecInput is an input type that accepts ReplicaSetSpecArgs and ReplicaSetSpecOutput values. // You can construct a concrete instance of `ReplicaSetSpecInput` via: // -// ReplicaSetSpecArgs{...} -// +// ReplicaSetSpecArgs{...} type ReplicaSetSpecInput interface { pulumi.Input @@ -6533,12 +6455,11 @@ func (i ReplicaSetSpecArgs) ToReplicaSetSpecPtrOutputWithContext(ctx context.Con // ReplicaSetSpecPtrInput is an input type that accepts ReplicaSetSpecArgs, ReplicaSetSpecPtr and ReplicaSetSpecPtrOutput values. // You can construct a concrete instance of `ReplicaSetSpecPtrInput` via: // -// ReplicaSetSpecArgs{...} +// ReplicaSetSpecArgs{...} // // or: // -// nil -// +// nil type ReplicaSetSpecPtrInput interface { pulumi.Input @@ -6686,8 +6607,7 @@ type ReplicaSetStatus struct { // ReplicaSetStatusInput is an input type that accepts ReplicaSetStatusArgs and ReplicaSetStatusOutput values. // You can construct a concrete instance of `ReplicaSetStatusInput` via: // -// ReplicaSetStatusArgs{...} -// +// ReplicaSetStatusArgs{...} type ReplicaSetStatusInput interface { pulumi.Input @@ -6734,12 +6654,11 @@ func (i ReplicaSetStatusArgs) ToReplicaSetStatusPtrOutputWithContext(ctx context // ReplicaSetStatusPtrInput is an input type that accepts ReplicaSetStatusArgs, ReplicaSetStatusPtr and ReplicaSetStatusPtrOutput values. // You can construct a concrete instance of `ReplicaSetStatusPtrInput` via: // -// ReplicaSetStatusArgs{...} +// ReplicaSetStatusArgs{...} // // or: // -// nil -// +// nil type ReplicaSetStatusPtrInput interface { pulumi.Input @@ -6907,8 +6826,7 @@ type RollbackConfig struct { // RollbackConfigInput is an input type that accepts RollbackConfigArgs and RollbackConfigOutput values. // You can construct a concrete instance of `RollbackConfigInput` via: // -// RollbackConfigArgs{...} -// +// RollbackConfigArgs{...} type RollbackConfigInput interface { pulumi.Input @@ -6945,12 +6863,11 @@ func (i RollbackConfigArgs) ToRollbackConfigPtrOutputWithContext(ctx context.Con // RollbackConfigPtrInput is an input type that accepts RollbackConfigArgs, RollbackConfigPtr and RollbackConfigPtrOutput values. // You can construct a concrete instance of `RollbackConfigPtrInput` via: // -// RollbackConfigArgs{...} +// RollbackConfigArgs{...} // // or: // -// nil -// +// nil type RollbackConfigPtrInput interface { pulumi.Input @@ -7043,8 +6960,7 @@ type RollingUpdateDaemonSet struct { // RollingUpdateDaemonSetInput is an input type that accepts RollingUpdateDaemonSetArgs and RollingUpdateDaemonSetOutput values. // You can construct a concrete instance of `RollingUpdateDaemonSetInput` via: // -// RollingUpdateDaemonSetArgs{...} -// +// RollingUpdateDaemonSetArgs{...} type RollingUpdateDaemonSetInput interface { pulumi.Input @@ -7081,12 +6997,11 @@ func (i RollingUpdateDaemonSetArgs) ToRollingUpdateDaemonSetPtrOutputWithContext // RollingUpdateDaemonSetPtrInput is an input type that accepts RollingUpdateDaemonSetArgs, RollingUpdateDaemonSetPtr and RollingUpdateDaemonSetPtrOutput values. // You can construct a concrete instance of `RollingUpdateDaemonSetPtrInput` via: // -// RollingUpdateDaemonSetArgs{...} +// RollingUpdateDaemonSetArgs{...} // // or: // -// nil -// +// nil type RollingUpdateDaemonSetPtrInput interface { pulumi.Input @@ -7181,8 +7096,7 @@ type RollingUpdateDeployment struct { // RollingUpdateDeploymentInput is an input type that accepts RollingUpdateDeploymentArgs and RollingUpdateDeploymentOutput values. // You can construct a concrete instance of `RollingUpdateDeploymentInput` via: // -// RollingUpdateDeploymentArgs{...} -// +// RollingUpdateDeploymentArgs{...} type RollingUpdateDeploymentInput interface { pulumi.Input @@ -7221,12 +7135,11 @@ func (i RollingUpdateDeploymentArgs) ToRollingUpdateDeploymentPtrOutputWithConte // RollingUpdateDeploymentPtrInput is an input type that accepts RollingUpdateDeploymentArgs, RollingUpdateDeploymentPtr and RollingUpdateDeploymentPtrOutput values. // You can construct a concrete instance of `RollingUpdateDeploymentPtrInput` via: // -// RollingUpdateDeploymentArgs{...} +// RollingUpdateDeploymentArgs{...} // // or: // -// nil -// +// nil type RollingUpdateDeploymentPtrInput interface { pulumi.Input @@ -7336,8 +7249,7 @@ type RunAsGroupStrategyOptions struct { // RunAsGroupStrategyOptionsInput is an input type that accepts RunAsGroupStrategyOptionsArgs and RunAsGroupStrategyOptionsOutput values. // You can construct a concrete instance of `RunAsGroupStrategyOptionsInput` via: // -// RunAsGroupStrategyOptionsArgs{...} -// +// RunAsGroupStrategyOptionsArgs{...} type RunAsGroupStrategyOptionsInput interface { pulumi.Input @@ -7376,12 +7288,11 @@ func (i RunAsGroupStrategyOptionsArgs) ToRunAsGroupStrategyOptionsPtrOutputWithC // RunAsGroupStrategyOptionsPtrInput is an input type that accepts RunAsGroupStrategyOptionsArgs, RunAsGroupStrategyOptionsPtr and RunAsGroupStrategyOptionsPtrOutput values. // You can construct a concrete instance of `RunAsGroupStrategyOptionsPtrInput` via: // -// RunAsGroupStrategyOptionsArgs{...} +// RunAsGroupStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type RunAsGroupStrategyOptionsPtrInput interface { pulumi.Input @@ -7491,8 +7402,7 @@ type RunAsUserStrategyOptions struct { // RunAsUserStrategyOptionsInput is an input type that accepts RunAsUserStrategyOptionsArgs and RunAsUserStrategyOptionsOutput values. // You can construct a concrete instance of `RunAsUserStrategyOptionsInput` via: // -// RunAsUserStrategyOptionsArgs{...} -// +// RunAsUserStrategyOptionsArgs{...} type RunAsUserStrategyOptionsInput interface { pulumi.Input @@ -7531,12 +7441,11 @@ func (i RunAsUserStrategyOptionsArgs) ToRunAsUserStrategyOptionsPtrOutputWithCon // RunAsUserStrategyOptionsPtrInput is an input type that accepts RunAsUserStrategyOptionsArgs, RunAsUserStrategyOptionsPtr and RunAsUserStrategyOptionsPtrOutput values. // You can construct a concrete instance of `RunAsUserStrategyOptionsPtrInput` via: // -// RunAsUserStrategyOptionsArgs{...} +// RunAsUserStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type RunAsUserStrategyOptionsPtrInput interface { pulumi.Input @@ -7646,8 +7555,7 @@ type RuntimeClassStrategyOptions struct { // RuntimeClassStrategyOptionsInput is an input type that accepts RuntimeClassStrategyOptionsArgs and RuntimeClassStrategyOptionsOutput values. // You can construct a concrete instance of `RuntimeClassStrategyOptionsInput` via: // -// RuntimeClassStrategyOptionsArgs{...} -// +// RuntimeClassStrategyOptionsArgs{...} type RuntimeClassStrategyOptionsInput interface { pulumi.Input @@ -7686,12 +7594,11 @@ func (i RuntimeClassStrategyOptionsArgs) ToRuntimeClassStrategyOptionsPtrOutputW // RuntimeClassStrategyOptionsPtrInput is an input type that accepts RuntimeClassStrategyOptionsArgs, RuntimeClassStrategyOptionsPtr and RuntimeClassStrategyOptionsPtrOutput values. // You can construct a concrete instance of `RuntimeClassStrategyOptionsPtrInput` via: // -// RuntimeClassStrategyOptionsArgs{...} +// RuntimeClassStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type RuntimeClassStrategyOptionsPtrInput interface { pulumi.Input @@ -7801,8 +7708,7 @@ type SELinuxStrategyOptions struct { // SELinuxStrategyOptionsInput is an input type that accepts SELinuxStrategyOptionsArgs and SELinuxStrategyOptionsOutput values. // You can construct a concrete instance of `SELinuxStrategyOptionsInput` via: // -// SELinuxStrategyOptionsArgs{...} -// +// SELinuxStrategyOptionsArgs{...} type SELinuxStrategyOptionsInput interface { pulumi.Input @@ -7841,12 +7747,11 @@ func (i SELinuxStrategyOptionsArgs) ToSELinuxStrategyOptionsPtrOutputWithContext // SELinuxStrategyOptionsPtrInput is an input type that accepts SELinuxStrategyOptionsArgs, SELinuxStrategyOptionsPtr and SELinuxStrategyOptionsPtrOutput values. // You can construct a concrete instance of `SELinuxStrategyOptionsPtrInput` via: // -// SELinuxStrategyOptionsArgs{...} +// SELinuxStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type SELinuxStrategyOptionsPtrInput interface { pulumi.Input @@ -7962,8 +7867,7 @@ type Scale struct { // ScaleInput is an input type that accepts ScaleArgs and ScaleOutput values. // You can construct a concrete instance of `ScaleInput` via: // -// ScaleArgs{...} -// +// ScaleArgs{...} type ScaleInput interface { pulumi.Input @@ -8046,8 +7950,7 @@ type ScaleSpec struct { // ScaleSpecInput is an input type that accepts ScaleSpecArgs and ScaleSpecOutput values. // You can construct a concrete instance of `ScaleSpecInput` via: // -// ScaleSpecArgs{...} -// +// ScaleSpecArgs{...} type ScaleSpecInput interface { pulumi.Input @@ -8084,12 +7987,11 @@ func (i ScaleSpecArgs) ToScaleSpecPtrOutputWithContext(ctx context.Context) Scal // ScaleSpecPtrInput is an input type that accepts ScaleSpecArgs, ScaleSpecPtr and ScaleSpecPtrOutput values. // You can construct a concrete instance of `ScaleSpecPtrInput` via: // -// ScaleSpecArgs{...} +// ScaleSpecArgs{...} // // or: // -// nil -// +// nil type ScaleSpecPtrInput interface { pulumi.Input @@ -8186,8 +8088,7 @@ type ScaleStatus struct { // ScaleStatusInput is an input type that accepts ScaleStatusArgs and ScaleStatusOutput values. // You can construct a concrete instance of `ScaleStatusInput` via: // -// ScaleStatusArgs{...} -// +// ScaleStatusArgs{...} type ScaleStatusInput interface { pulumi.Input @@ -8228,12 +8129,11 @@ func (i ScaleStatusArgs) ToScaleStatusPtrOutputWithContext(ctx context.Context) // ScaleStatusPtrInput is an input type that accepts ScaleStatusArgs, ScaleStatusPtr and ScaleStatusPtrOutput values. // You can construct a concrete instance of `ScaleStatusPtrInput` via: // -// ScaleStatusArgs{...} +// ScaleStatusArgs{...} // // or: // -// nil -// +// nil type ScaleStatusPtrInput interface { pulumi.Input @@ -8358,8 +8258,7 @@ type SupplementalGroupsStrategyOptions struct { // SupplementalGroupsStrategyOptionsInput is an input type that accepts SupplementalGroupsStrategyOptionsArgs and SupplementalGroupsStrategyOptionsOutput values. // You can construct a concrete instance of `SupplementalGroupsStrategyOptionsInput` via: // -// SupplementalGroupsStrategyOptionsArgs{...} -// +// SupplementalGroupsStrategyOptionsArgs{...} type SupplementalGroupsStrategyOptionsInput interface { pulumi.Input @@ -8398,12 +8297,11 @@ func (i SupplementalGroupsStrategyOptionsArgs) ToSupplementalGroupsStrategyOptio // SupplementalGroupsStrategyOptionsPtrInput is an input type that accepts SupplementalGroupsStrategyOptionsArgs, SupplementalGroupsStrategyOptionsPtr and SupplementalGroupsStrategyOptionsPtrOutput values. // You can construct a concrete instance of `SupplementalGroupsStrategyOptionsPtrInput` via: // -// SupplementalGroupsStrategyOptionsArgs{...} +// SupplementalGroupsStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type SupplementalGroupsStrategyOptionsPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/flowcontrol/v1alpha1/pulumiTypes.go b/sdk/go/kubernetes/flowcontrol/v1alpha1/pulumiTypes.go index d2921f7319..85885ce745 100644 --- a/sdk/go/kubernetes/flowcontrol/v1alpha1/pulumiTypes.go +++ b/sdk/go/kubernetes/flowcontrol/v1alpha1/pulumiTypes.go @@ -20,8 +20,7 @@ type FlowDistinguisherMethod struct { // FlowDistinguisherMethodInput is an input type that accepts FlowDistinguisherMethodArgs and FlowDistinguisherMethodOutput values. // You can construct a concrete instance of `FlowDistinguisherMethodInput` via: // -// FlowDistinguisherMethodArgs{...} -// +// FlowDistinguisherMethodArgs{...} type FlowDistinguisherMethodInput interface { pulumi.Input @@ -58,12 +57,11 @@ func (i FlowDistinguisherMethodArgs) ToFlowDistinguisherMethodPtrOutputWithConte // FlowDistinguisherMethodPtrInput is an input type that accepts FlowDistinguisherMethodArgs, FlowDistinguisherMethodPtr and FlowDistinguisherMethodPtrOutput values. // You can construct a concrete instance of `FlowDistinguisherMethodPtrInput` via: // -// FlowDistinguisherMethodArgs{...} +// FlowDistinguisherMethodArgs{...} // // or: // -// nil -// +// nil type FlowDistinguisherMethodPtrInput interface { pulumi.Input @@ -164,8 +162,7 @@ type FlowSchemaType struct { // FlowSchemaTypeInput is an input type that accepts FlowSchemaTypeArgs and FlowSchemaTypeOutput values. // You can construct a concrete instance of `FlowSchemaTypeInput` via: // -// FlowSchemaTypeArgs{...} -// +// FlowSchemaTypeArgs{...} type FlowSchemaTypeInput interface { pulumi.Input @@ -202,8 +199,7 @@ func (i FlowSchemaTypeArgs) ToFlowSchemaTypeOutputWithContext(ctx context.Contex // FlowSchemaTypeArrayInput is an input type that accepts FlowSchemaTypeArray and FlowSchemaTypeArrayOutput values. // You can construct a concrete instance of `FlowSchemaTypeArrayInput` via: // -// FlowSchemaTypeArray{ FlowSchemaTypeArgs{...} } -// +// FlowSchemaTypeArray{ FlowSchemaTypeArgs{...} } type FlowSchemaTypeArrayInput interface { pulumi.Input @@ -302,8 +298,7 @@ type FlowSchemaCondition struct { // FlowSchemaConditionInput is an input type that accepts FlowSchemaConditionArgs and FlowSchemaConditionOutput values. // You can construct a concrete instance of `FlowSchemaConditionInput` via: // -// FlowSchemaConditionArgs{...} -// +// FlowSchemaConditionArgs{...} type FlowSchemaConditionInput interface { pulumi.Input @@ -340,8 +335,7 @@ func (i FlowSchemaConditionArgs) ToFlowSchemaConditionOutputWithContext(ctx cont // FlowSchemaConditionArrayInput is an input type that accepts FlowSchemaConditionArray and FlowSchemaConditionArrayOutput values. // You can construct a concrete instance of `FlowSchemaConditionArrayInput` via: // -// FlowSchemaConditionArray{ FlowSchemaConditionArgs{...} } -// +// FlowSchemaConditionArray{ FlowSchemaConditionArgs{...} } type FlowSchemaConditionArrayInput interface { pulumi.Input @@ -438,8 +432,7 @@ type FlowSchemaListType struct { // FlowSchemaListTypeInput is an input type that accepts FlowSchemaListTypeArgs and FlowSchemaListTypeOutput values. // You can construct a concrete instance of `FlowSchemaListTypeInput` via: // -// FlowSchemaListTypeArgs{...} -// +// FlowSchemaListTypeArgs{...} type FlowSchemaListTypeInput interface { pulumi.Input @@ -521,8 +514,7 @@ type FlowSchemaSpec struct { // FlowSchemaSpecInput is an input type that accepts FlowSchemaSpecArgs and FlowSchemaSpecOutput values. // You can construct a concrete instance of `FlowSchemaSpecInput` via: // -// FlowSchemaSpecArgs{...} -// +// FlowSchemaSpecArgs{...} type FlowSchemaSpecInput interface { pulumi.Input @@ -565,12 +557,11 @@ func (i FlowSchemaSpecArgs) ToFlowSchemaSpecPtrOutputWithContext(ctx context.Con // FlowSchemaSpecPtrInput is an input type that accepts FlowSchemaSpecArgs, FlowSchemaSpecPtr and FlowSchemaSpecPtrOutput values. // You can construct a concrete instance of `FlowSchemaSpecPtrInput` via: // -// FlowSchemaSpecArgs{...} +// FlowSchemaSpecArgs{...} // // or: // -// nil -// +// nil type FlowSchemaSpecPtrInput interface { pulumi.Input @@ -708,8 +699,7 @@ type FlowSchemaStatus struct { // FlowSchemaStatusInput is an input type that accepts FlowSchemaStatusArgs and FlowSchemaStatusOutput values. // You can construct a concrete instance of `FlowSchemaStatusInput` via: // -// FlowSchemaStatusArgs{...} -// +// FlowSchemaStatusArgs{...} type FlowSchemaStatusInput interface { pulumi.Input @@ -746,12 +736,11 @@ func (i FlowSchemaStatusArgs) ToFlowSchemaStatusPtrOutputWithContext(ctx context // FlowSchemaStatusPtrInput is an input type that accepts FlowSchemaStatusArgs, FlowSchemaStatusPtr and FlowSchemaStatusPtrOutput values. // You can construct a concrete instance of `FlowSchemaStatusPtrInput` via: // -// FlowSchemaStatusArgs{...} +// FlowSchemaStatusArgs{...} // // or: // -// nil -// +// nil type FlowSchemaStatusPtrInput interface { pulumi.Input @@ -844,8 +833,7 @@ type GroupSubject struct { // GroupSubjectInput is an input type that accepts GroupSubjectArgs and GroupSubjectOutput values. // You can construct a concrete instance of `GroupSubjectInput` via: // -// GroupSubjectArgs{...} -// +// GroupSubjectArgs{...} type GroupSubjectInput interface { pulumi.Input @@ -882,12 +870,11 @@ func (i GroupSubjectArgs) ToGroupSubjectPtrOutputWithContext(ctx context.Context // GroupSubjectPtrInput is an input type that accepts GroupSubjectArgs, GroupSubjectPtr and GroupSubjectPtrOutput values. // You can construct a concrete instance of `GroupSubjectPtrInput` via: // -// GroupSubjectArgs{...} +// GroupSubjectArgs{...} // // or: // -// nil -// +// nil type GroupSubjectPtrInput interface { pulumi.Input @@ -982,8 +969,7 @@ type LimitResponse struct { // LimitResponseInput is an input type that accepts LimitResponseArgs and LimitResponseOutput values. // You can construct a concrete instance of `LimitResponseInput` via: // -// LimitResponseArgs{...} -// +// LimitResponseArgs{...} type LimitResponseInput interface { pulumi.Input @@ -1022,12 +1008,11 @@ func (i LimitResponseArgs) ToLimitResponsePtrOutputWithContext(ctx context.Conte // LimitResponsePtrInput is an input type that accepts LimitResponseArgs, LimitResponsePtr and LimitResponsePtrOutput values. // You can construct a concrete instance of `LimitResponsePtrInput` via: // -// LimitResponseArgs{...} +// LimitResponseArgs{...} // // or: // -// nil -// +// nil type LimitResponsePtrInput interface { pulumi.Input @@ -1143,8 +1128,7 @@ type LimitedPriorityLevelConfiguration struct { // LimitedPriorityLevelConfigurationInput is an input type that accepts LimitedPriorityLevelConfigurationArgs and LimitedPriorityLevelConfigurationOutput values. // You can construct a concrete instance of `LimitedPriorityLevelConfigurationInput` via: // -// LimitedPriorityLevelConfigurationArgs{...} -// +// LimitedPriorityLevelConfigurationArgs{...} type LimitedPriorityLevelConfigurationInput interface { pulumi.Input @@ -1189,12 +1173,11 @@ func (i LimitedPriorityLevelConfigurationArgs) ToLimitedPriorityLevelConfigurati // LimitedPriorityLevelConfigurationPtrInput is an input type that accepts LimitedPriorityLevelConfigurationArgs, LimitedPriorityLevelConfigurationPtr and LimitedPriorityLevelConfigurationPtrOutput values. // You can construct a concrete instance of `LimitedPriorityLevelConfigurationPtrInput` via: // -// LimitedPriorityLevelConfigurationArgs{...} +// LimitedPriorityLevelConfigurationArgs{...} // // or: // -// nil -// +// nil type LimitedPriorityLevelConfigurationPtrInput interface { pulumi.Input @@ -1311,7 +1294,7 @@ type NonResourcePolicyRule struct { // - "/hea" is legal but matches nothing // - "/hea/*" also matches nothing // - "/healthz/*" matches all per-component health checks. - // "*" matches all non-resource urls. if it is present, it must be the only entry. Required. + // "*" matches all non-resource urls. if it is present, it must be the only entry. Required. NonResourceURLs []string `pulumi:"nonResourceURLs"` // `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required. Verbs []string `pulumi:"verbs"` @@ -1320,8 +1303,7 @@ type NonResourcePolicyRule struct { // NonResourcePolicyRuleInput is an input type that accepts NonResourcePolicyRuleArgs and NonResourcePolicyRuleOutput values. // You can construct a concrete instance of `NonResourcePolicyRuleInput` via: // -// NonResourcePolicyRuleArgs{...} -// +// NonResourcePolicyRuleArgs{...} type NonResourcePolicyRuleInput interface { pulumi.Input @@ -1337,7 +1319,7 @@ type NonResourcePolicyRuleArgs struct { // - "/hea" is legal but matches nothing // - "/hea/*" also matches nothing // - "/healthz/*" matches all per-component health checks. - // "*" matches all non-resource urls. if it is present, it must be the only entry. Required. + // "*" matches all non-resource urls. if it is present, it must be the only entry. Required. NonResourceURLs pulumi.StringArrayInput `pulumi:"nonResourceURLs"` // `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required. Verbs pulumi.StringArrayInput `pulumi:"verbs"` @@ -1358,8 +1340,7 @@ func (i NonResourcePolicyRuleArgs) ToNonResourcePolicyRuleOutputWithContext(ctx // NonResourcePolicyRuleArrayInput is an input type that accepts NonResourcePolicyRuleArray and NonResourcePolicyRuleArrayOutput values. // You can construct a concrete instance of `NonResourcePolicyRuleArrayInput` via: // -// NonResourcePolicyRuleArray{ NonResourcePolicyRuleArgs{...} } -// +// NonResourcePolicyRuleArray{ NonResourcePolicyRuleArgs{...} } type NonResourcePolicyRuleArrayInput interface { pulumi.Input @@ -1402,7 +1383,7 @@ func (o NonResourcePolicyRuleOutput) ToNonResourcePolicyRuleOutputWithContext(ct // - "/hea" is legal but matches nothing // - "/hea/*" also matches nothing // - "/healthz/*" matches all per-component health checks. -// "*" matches all non-resource urls. if it is present, it must be the only entry. Required. +// "*" matches all non-resource urls. if it is present, it must be the only entry. Required. func (o NonResourcePolicyRuleOutput) NonResourceURLs() pulumi.StringArrayOutput { return o.ApplyT(func(v NonResourcePolicyRule) []string { return v.NonResourceURLs }).(pulumi.StringArrayOutput) } @@ -1445,8 +1426,7 @@ type PolicyRulesWithSubjects struct { // PolicyRulesWithSubjectsInput is an input type that accepts PolicyRulesWithSubjectsArgs and PolicyRulesWithSubjectsOutput values. // You can construct a concrete instance of `PolicyRulesWithSubjectsInput` via: // -// PolicyRulesWithSubjectsArgs{...} -// +// PolicyRulesWithSubjectsArgs{...} type PolicyRulesWithSubjectsInput interface { pulumi.Input @@ -1479,8 +1459,7 @@ func (i PolicyRulesWithSubjectsArgs) ToPolicyRulesWithSubjectsOutputWithContext( // PolicyRulesWithSubjectsArrayInput is an input type that accepts PolicyRulesWithSubjectsArray and PolicyRulesWithSubjectsArrayOutput values. // You can construct a concrete instance of `PolicyRulesWithSubjectsArrayInput` via: // -// PolicyRulesWithSubjectsArray{ PolicyRulesWithSubjectsArgs{...} } -// +// PolicyRulesWithSubjectsArray{ PolicyRulesWithSubjectsArgs{...} } type PolicyRulesWithSubjectsArrayInput interface { pulumi.Input @@ -1569,8 +1548,7 @@ type PriorityLevelConfigurationType struct { // PriorityLevelConfigurationTypeInput is an input type that accepts PriorityLevelConfigurationTypeArgs and PriorityLevelConfigurationTypeOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationTypeInput` via: // -// PriorityLevelConfigurationTypeArgs{...} -// +// PriorityLevelConfigurationTypeArgs{...} type PriorityLevelConfigurationTypeInput interface { pulumi.Input @@ -1607,8 +1585,7 @@ func (i PriorityLevelConfigurationTypeArgs) ToPriorityLevelConfigurationTypeOutp // PriorityLevelConfigurationTypeArrayInput is an input type that accepts PriorityLevelConfigurationTypeArray and PriorityLevelConfigurationTypeArrayOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationTypeArrayInput` via: // -// PriorityLevelConfigurationTypeArray{ PriorityLevelConfigurationTypeArgs{...} } -// +// PriorityLevelConfigurationTypeArray{ PriorityLevelConfigurationTypeArgs{...} } type PriorityLevelConfigurationTypeArrayInput interface { pulumi.Input @@ -1707,8 +1684,7 @@ type PriorityLevelConfigurationCondition struct { // PriorityLevelConfigurationConditionInput is an input type that accepts PriorityLevelConfigurationConditionArgs and PriorityLevelConfigurationConditionOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationConditionInput` via: // -// PriorityLevelConfigurationConditionArgs{...} -// +// PriorityLevelConfigurationConditionArgs{...} type PriorityLevelConfigurationConditionInput interface { pulumi.Input @@ -1745,8 +1721,7 @@ func (i PriorityLevelConfigurationConditionArgs) ToPriorityLevelConfigurationCon // PriorityLevelConfigurationConditionArrayInput is an input type that accepts PriorityLevelConfigurationConditionArray and PriorityLevelConfigurationConditionArrayOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationConditionArrayInput` via: // -// PriorityLevelConfigurationConditionArray{ PriorityLevelConfigurationConditionArgs{...} } -// +// PriorityLevelConfigurationConditionArray{ PriorityLevelConfigurationConditionArgs{...} } type PriorityLevelConfigurationConditionArrayInput interface { pulumi.Input @@ -1843,8 +1818,7 @@ type PriorityLevelConfigurationListType struct { // PriorityLevelConfigurationListTypeInput is an input type that accepts PriorityLevelConfigurationListTypeArgs and PriorityLevelConfigurationListTypeOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationListTypeInput` via: // -// PriorityLevelConfigurationListTypeArgs{...} -// +// PriorityLevelConfigurationListTypeArgs{...} type PriorityLevelConfigurationListTypeInput interface { pulumi.Input @@ -1920,8 +1894,7 @@ type PriorityLevelConfigurationReference struct { // PriorityLevelConfigurationReferenceInput is an input type that accepts PriorityLevelConfigurationReferenceArgs and PriorityLevelConfigurationReferenceOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationReferenceInput` via: // -// PriorityLevelConfigurationReferenceArgs{...} -// +// PriorityLevelConfigurationReferenceArgs{...} type PriorityLevelConfigurationReferenceInput interface { pulumi.Input @@ -1958,12 +1931,11 @@ func (i PriorityLevelConfigurationReferenceArgs) ToPriorityLevelConfigurationRef // PriorityLevelConfigurationReferencePtrInput is an input type that accepts PriorityLevelConfigurationReferenceArgs, PriorityLevelConfigurationReferencePtr and PriorityLevelConfigurationReferencePtrOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationReferencePtrInput` via: // -// PriorityLevelConfigurationReferenceArgs{...} +// PriorityLevelConfigurationReferenceArgs{...} // // or: // -// nil -// +// nil type PriorityLevelConfigurationReferencePtrInput interface { pulumi.Input @@ -2058,8 +2030,7 @@ type PriorityLevelConfigurationSpec struct { // PriorityLevelConfigurationSpecInput is an input type that accepts PriorityLevelConfigurationSpecArgs and PriorityLevelConfigurationSpecOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationSpecInput` via: // -// PriorityLevelConfigurationSpecArgs{...} -// +// PriorityLevelConfigurationSpecArgs{...} type PriorityLevelConfigurationSpecInput interface { pulumi.Input @@ -2098,12 +2069,11 @@ func (i PriorityLevelConfigurationSpecArgs) ToPriorityLevelConfigurationSpecPtrO // PriorityLevelConfigurationSpecPtrInput is an input type that accepts PriorityLevelConfigurationSpecArgs, PriorityLevelConfigurationSpecPtr and PriorityLevelConfigurationSpecPtrOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationSpecPtrInput` via: // -// PriorityLevelConfigurationSpecArgs{...} +// PriorityLevelConfigurationSpecArgs{...} // // or: // -// nil -// +// nil type PriorityLevelConfigurationSpecPtrInput interface { pulumi.Input @@ -2211,8 +2181,7 @@ type PriorityLevelConfigurationStatus struct { // PriorityLevelConfigurationStatusInput is an input type that accepts PriorityLevelConfigurationStatusArgs and PriorityLevelConfigurationStatusOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationStatusInput` via: // -// PriorityLevelConfigurationStatusArgs{...} -// +// PriorityLevelConfigurationStatusArgs{...} type PriorityLevelConfigurationStatusInput interface { pulumi.Input @@ -2249,12 +2218,11 @@ func (i PriorityLevelConfigurationStatusArgs) ToPriorityLevelConfigurationStatus // PriorityLevelConfigurationStatusPtrInput is an input type that accepts PriorityLevelConfigurationStatusArgs, PriorityLevelConfigurationStatusPtr and PriorityLevelConfigurationStatusPtrOutput values. // You can construct a concrete instance of `PriorityLevelConfigurationStatusPtrInput` via: // -// PriorityLevelConfigurationStatusArgs{...} +// PriorityLevelConfigurationStatusArgs{...} // // or: // -// nil -// +// nil type PriorityLevelConfigurationStatusPtrInput interface { pulumi.Input @@ -2351,8 +2319,7 @@ type QueuingConfiguration struct { // QueuingConfigurationInput is an input type that accepts QueuingConfigurationArgs and QueuingConfigurationOutput values. // You can construct a concrete instance of `QueuingConfigurationInput` via: // -// QueuingConfigurationArgs{...} -// +// QueuingConfigurationArgs{...} type QueuingConfigurationInput interface { pulumi.Input @@ -2393,12 +2360,11 @@ func (i QueuingConfigurationArgs) ToQueuingConfigurationPtrOutputWithContext(ctx // QueuingConfigurationPtrInput is an input type that accepts QueuingConfigurationArgs, QueuingConfigurationPtr and QueuingConfigurationPtrOutput values. // You can construct a concrete instance of `QueuingConfigurationPtrInput` via: // -// QueuingConfigurationArgs{...} +// QueuingConfigurationArgs{...} // // or: // -// nil -// +// nil type QueuingConfigurationPtrInput interface { pulumi.Input @@ -2529,8 +2495,7 @@ type ResourcePolicyRule struct { // ResourcePolicyRuleInput is an input type that accepts ResourcePolicyRuleArgs and ResourcePolicyRuleOutput values. // You can construct a concrete instance of `ResourcePolicyRuleInput` via: // -// ResourcePolicyRuleArgs{...} -// +// ResourcePolicyRuleArgs{...} type ResourcePolicyRuleInput interface { pulumi.Input @@ -2567,8 +2532,7 @@ func (i ResourcePolicyRuleArgs) ToResourcePolicyRuleOutputWithContext(ctx contex // ResourcePolicyRuleArrayInput is an input type that accepts ResourcePolicyRuleArray and ResourcePolicyRuleArrayOutput values. // You can construct a concrete instance of `ResourcePolicyRuleArrayInput` via: // -// ResourcePolicyRuleArray{ ResourcePolicyRuleArgs{...} } -// +// ResourcePolicyRuleArray{ ResourcePolicyRuleArgs{...} } type ResourcePolicyRuleArrayInput interface { pulumi.Input @@ -2661,8 +2625,7 @@ type ServiceAccountSubject struct { // ServiceAccountSubjectInput is an input type that accepts ServiceAccountSubjectArgs and ServiceAccountSubjectOutput values. // You can construct a concrete instance of `ServiceAccountSubjectInput` via: // -// ServiceAccountSubjectArgs{...} -// +// ServiceAccountSubjectArgs{...} type ServiceAccountSubjectInput interface { pulumi.Input @@ -2701,12 +2664,11 @@ func (i ServiceAccountSubjectArgs) ToServiceAccountSubjectPtrOutputWithContext(c // ServiceAccountSubjectPtrInput is an input type that accepts ServiceAccountSubjectArgs, ServiceAccountSubjectPtr and ServiceAccountSubjectPtrOutput values. // You can construct a concrete instance of `ServiceAccountSubjectPtrInput` via: // -// ServiceAccountSubjectArgs{...} +// ServiceAccountSubjectArgs{...} // // or: // -// nil -// +// nil type ServiceAccountSubjectPtrInput interface { pulumi.Input @@ -2817,8 +2779,7 @@ type Subject struct { // SubjectInput is an input type that accepts SubjectArgs and SubjectOutput values. // You can construct a concrete instance of `SubjectInput` via: // -// SubjectArgs{...} -// +// SubjectArgs{...} type SubjectInput interface { pulumi.Input @@ -2850,8 +2811,7 @@ func (i SubjectArgs) ToSubjectOutputWithContext(ctx context.Context) SubjectOutp // SubjectArrayInput is an input type that accepts SubjectArray and SubjectArrayOutput values. // You can construct a concrete instance of `SubjectArrayInput` via: // -// SubjectArray{ SubjectArgs{...} } -// +// SubjectArray{ SubjectArgs{...} } type SubjectArrayInput interface { pulumi.Input @@ -2934,8 +2894,7 @@ type UserSubject struct { // UserSubjectInput is an input type that accepts UserSubjectArgs and UserSubjectOutput values. // You can construct a concrete instance of `UserSubjectInput` via: // -// UserSubjectArgs{...} -// +// UserSubjectArgs{...} type UserSubjectInput interface { pulumi.Input @@ -2972,12 +2931,11 @@ func (i UserSubjectArgs) ToUserSubjectPtrOutputWithContext(ctx context.Context) // UserSubjectPtrInput is an input type that accepts UserSubjectArgs, UserSubjectPtr and UserSubjectPtrOutput values. // You can construct a concrete instance of `UserSubjectPtrInput` via: // -// UserSubjectArgs{...} +// UserSubjectArgs{...} // // or: // -// nil -// +// nil type UserSubjectPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/meta/v1/pulumiTypes.go b/sdk/go/kubernetes/meta/v1/pulumiTypes.go index 3ebb53fb51..12edf0b72f 100644 --- a/sdk/go/kubernetes/meta/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/meta/v1/pulumiTypes.go @@ -29,8 +29,7 @@ type APIGroup struct { // APIGroupInput is an input type that accepts APIGroupArgs and APIGroupOutput values. // You can construct a concrete instance of `APIGroupInput` via: // -// APIGroupArgs{...} -// +// APIGroupArgs{...} type APIGroupInput interface { pulumi.Input @@ -69,8 +68,7 @@ func (i APIGroupArgs) ToAPIGroupOutputWithContext(ctx context.Context) APIGroupO // APIGroupArrayInput is an input type that accepts APIGroupArray and APIGroupArrayOutput values. // You can construct a concrete instance of `APIGroupArrayInput` via: // -// APIGroupArray{ APIGroupArgs{...} } -// +// APIGroupArray{ APIGroupArgs{...} } type APIGroupArrayInput interface { pulumi.Input @@ -170,8 +168,7 @@ type APIGroupList struct { // APIGroupListInput is an input type that accepts APIGroupListArgs and APIGroupListOutput values. // You can construct a concrete instance of `APIGroupListInput` via: // -// APIGroupListArgs{...} -// +// APIGroupListArgs{...} type APIGroupListInput interface { pulumi.Input @@ -258,8 +255,7 @@ type APIResource struct { // APIResourceInput is an input type that accepts APIResourceArgs and APIResourceOutput values. // You can construct a concrete instance of `APIResourceInput` via: // -// APIResourceArgs{...} -// +// APIResourceArgs{...} type APIResourceInput interface { pulumi.Input @@ -306,8 +302,7 @@ func (i APIResourceArgs) ToAPIResourceOutputWithContext(ctx context.Context) API // APIResourceArrayInput is an input type that accepts APIResourceArray and APIResourceArrayOutput values. // You can construct a concrete instance of `APIResourceArrayInput` via: // -// APIResourceArray{ APIResourceArgs{...} } -// +// APIResourceArray{ APIResourceArgs{...} } type APIResourceArrayInput interface { pulumi.Input @@ -429,8 +424,7 @@ type APIResourceList struct { // APIResourceListInput is an input type that accepts APIResourceListArgs and APIResourceListOutput values. // You can construct a concrete instance of `APIResourceListInput` via: // -// APIResourceListArgs{...} -// +// APIResourceListArgs{...} type APIResourceListInput interface { pulumi.Input @@ -512,8 +506,7 @@ type APIVersions struct { // APIVersionsInput is an input type that accepts APIVersionsArgs and APIVersionsOutput values. // You can construct a concrete instance of `APIVersionsInput` via: // -// APIVersionsArgs{...} -// +// APIVersionsArgs{...} type APIVersionsInput interface { pulumi.Input @@ -601,8 +594,7 @@ type DeleteOptions struct { // DeleteOptionsInput is an input type that accepts DeleteOptionsArgs and DeleteOptionsOutput values. // You can construct a concrete instance of `DeleteOptionsInput` via: // -// DeleteOptionsArgs{...} -// +// DeleteOptionsArgs{...} type DeleteOptionsInput interface { pulumi.Input @@ -651,12 +643,11 @@ func (i DeleteOptionsArgs) ToDeleteOptionsPtrOutputWithContext(ctx context.Conte // DeleteOptionsPtrInput is an input type that accepts DeleteOptionsArgs, DeleteOptionsPtr and DeleteOptionsPtrOutput values. // You can construct a concrete instance of `DeleteOptionsPtrInput` via: // -// DeleteOptionsArgs{...} +// DeleteOptionsArgs{...} // // or: // -// nil -// +// nil type DeleteOptionsPtrInput interface { pulumi.Input @@ -841,8 +832,7 @@ type GroupVersionForDiscovery struct { // GroupVersionForDiscoveryInput is an input type that accepts GroupVersionForDiscoveryArgs and GroupVersionForDiscoveryOutput values. // You can construct a concrete instance of `GroupVersionForDiscoveryInput` via: // -// GroupVersionForDiscoveryArgs{...} -// +// GroupVersionForDiscoveryArgs{...} type GroupVersionForDiscoveryInput interface { pulumi.Input @@ -881,12 +871,11 @@ func (i GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryPtrOutputWithCon // GroupVersionForDiscoveryPtrInput is an input type that accepts GroupVersionForDiscoveryArgs, GroupVersionForDiscoveryPtr and GroupVersionForDiscoveryPtrOutput values. // You can construct a concrete instance of `GroupVersionForDiscoveryPtrInput` via: // -// GroupVersionForDiscoveryArgs{...} +// GroupVersionForDiscoveryArgs{...} // // or: // -// nil -// +// nil type GroupVersionForDiscoveryPtrInput interface { pulumi.Input @@ -915,8 +904,7 @@ func (i *groupVersionForDiscoveryPtrType) ToGroupVersionForDiscoveryPtrOutputWit // GroupVersionForDiscoveryArrayInput is an input type that accepts GroupVersionForDiscoveryArray and GroupVersionForDiscoveryArrayOutput values. // You can construct a concrete instance of `GroupVersionForDiscoveryArrayInput` via: // -// GroupVersionForDiscoveryArray{ GroupVersionForDiscoveryArgs{...} } -// +// GroupVersionForDiscoveryArray{ GroupVersionForDiscoveryArgs{...} } type GroupVersionForDiscoveryArrayInput interface { pulumi.Input @@ -1042,8 +1030,7 @@ type LabelSelector struct { // LabelSelectorInput is an input type that accepts LabelSelectorArgs and LabelSelectorOutput values. // You can construct a concrete instance of `LabelSelectorInput` via: // -// LabelSelectorArgs{...} -// +// LabelSelectorArgs{...} type LabelSelectorInput interface { pulumi.Input @@ -1082,12 +1069,11 @@ func (i LabelSelectorArgs) ToLabelSelectorPtrOutputWithContext(ctx context.Conte // LabelSelectorPtrInput is an input type that accepts LabelSelectorArgs, LabelSelectorPtr and LabelSelectorPtrOutput values. // You can construct a concrete instance of `LabelSelectorPtrInput` via: // -// LabelSelectorArgs{...} +// LabelSelectorArgs{...} // // or: // -// nil -// +// nil type LabelSelectorPtrInput interface { pulumi.Input @@ -1116,8 +1102,7 @@ func (i *labelSelectorPtrType) ToLabelSelectorPtrOutputWithContext(ctx context.C // LabelSelectorArrayInput is an input type that accepts LabelSelectorArray and LabelSelectorArrayOutput values. // You can construct a concrete instance of `LabelSelectorArrayInput` via: // -// LabelSelectorArray{ LabelSelectorArgs{...} } -// +// LabelSelectorArray{ LabelSelectorArgs{...} } type LabelSelectorArrayInput interface { pulumi.Input @@ -1245,8 +1230,7 @@ type LabelSelectorRequirement struct { // LabelSelectorRequirementInput is an input type that accepts LabelSelectorRequirementArgs and LabelSelectorRequirementOutput values. // You can construct a concrete instance of `LabelSelectorRequirementInput` via: // -// LabelSelectorRequirementArgs{...} -// +// LabelSelectorRequirementArgs{...} type LabelSelectorRequirementInput interface { pulumi.Input @@ -1279,8 +1263,7 @@ func (i LabelSelectorRequirementArgs) ToLabelSelectorRequirementOutputWithContex // LabelSelectorRequirementArrayInput is an input type that accepts LabelSelectorRequirementArray and LabelSelectorRequirementArrayOutput values. // You can construct a concrete instance of `LabelSelectorRequirementArrayInput` via: // -// LabelSelectorRequirementArray{ LabelSelectorRequirementArgs{...} } -// +// LabelSelectorRequirementArray{ LabelSelectorRequirementArgs{...} } type LabelSelectorRequirementArrayInput interface { pulumi.Input @@ -1369,8 +1352,7 @@ type ListMeta struct { // ListMetaInput is an input type that accepts ListMetaArgs and ListMetaOutput values. // You can construct a concrete instance of `ListMetaInput` via: // -// ListMetaArgs{...} -// +// ListMetaArgs{...} type ListMetaInput interface { pulumi.Input @@ -1415,12 +1397,11 @@ func (i ListMetaArgs) ToListMetaPtrOutputWithContext(ctx context.Context) ListMe // ListMetaPtrInput is an input type that accepts ListMetaArgs, ListMetaPtr and ListMetaPtrOutput values. // You can construct a concrete instance of `ListMetaPtrInput` via: // -// ListMetaArgs{...} +// ListMetaArgs{...} // // or: // -// nil -// +// nil type ListMetaPtrInput interface { pulumi.Input @@ -1572,8 +1553,7 @@ type ManagedFieldsEntry struct { // ManagedFieldsEntryInput is an input type that accepts ManagedFieldsEntryArgs and ManagedFieldsEntryOutput values. // You can construct a concrete instance of `ManagedFieldsEntryInput` via: // -// ManagedFieldsEntryArgs{...} -// +// ManagedFieldsEntryArgs{...} type ManagedFieldsEntryInput interface { pulumi.Input @@ -1612,8 +1592,7 @@ func (i ManagedFieldsEntryArgs) ToManagedFieldsEntryOutputWithContext(ctx contex // ManagedFieldsEntryArrayInput is an input type that accepts ManagedFieldsEntryArray and ManagedFieldsEntryArrayOutput values. // You can construct a concrete instance of `ManagedFieldsEntryArrayInput` via: // -// ManagedFieldsEntryArray{ ManagedFieldsEntryArgs{...} } -// +// ManagedFieldsEntryArray{ ManagedFieldsEntryArgs{...} } type ManagedFieldsEntryArrayInput interface { pulumi.Input @@ -1755,8 +1734,7 @@ type ObjectMeta struct { // ObjectMetaInput is an input type that accepts ObjectMetaArgs and ObjectMetaOutput values. // You can construct a concrete instance of `ObjectMetaInput` via: // -// ObjectMetaArgs{...} -// +// ObjectMetaArgs{...} type ObjectMetaInput interface { pulumi.Input @@ -1839,12 +1817,11 @@ func (i ObjectMetaArgs) ToObjectMetaPtrOutputWithContext(ctx context.Context) Ob // ObjectMetaPtrInput is an input type that accepts ObjectMetaArgs, ObjectMetaPtr and ObjectMetaPtrOutput values. // You can construct a concrete instance of `ObjectMetaPtrInput` via: // -// ObjectMetaArgs{...} +// ObjectMetaArgs{...} // // or: // -// nil -// +// nil type ObjectMetaPtrInput interface { pulumi.Input @@ -2204,8 +2181,7 @@ type OwnerReference struct { // OwnerReferenceInput is an input type that accepts OwnerReferenceArgs and OwnerReferenceOutput values. // You can construct a concrete instance of `OwnerReferenceInput` via: // -// OwnerReferenceArgs{...} -// +// OwnerReferenceArgs{...} type OwnerReferenceInput interface { pulumi.Input @@ -2244,8 +2220,7 @@ func (i OwnerReferenceArgs) ToOwnerReferenceOutputWithContext(ctx context.Contex // OwnerReferenceArrayInput is an input type that accepts OwnerReferenceArray and OwnerReferenceArrayOutput values. // You can construct a concrete instance of `OwnerReferenceArrayInput` via: // -// OwnerReferenceArray{ OwnerReferenceArgs{...} } -// +// OwnerReferenceArray{ OwnerReferenceArgs{...} } type OwnerReferenceArrayInput interface { pulumi.Input @@ -2343,8 +2318,7 @@ type Preconditions struct { // PreconditionsInput is an input type that accepts PreconditionsArgs and PreconditionsOutput values. // You can construct a concrete instance of `PreconditionsInput` via: // -// PreconditionsArgs{...} -// +// PreconditionsArgs{...} type PreconditionsInput interface { pulumi.Input @@ -2383,12 +2357,11 @@ func (i PreconditionsArgs) ToPreconditionsPtrOutputWithContext(ctx context.Conte // PreconditionsPtrInput is an input type that accepts PreconditionsArgs, PreconditionsPtr and PreconditionsPtrOutput values. // You can construct a concrete instance of `PreconditionsPtrInput` via: // -// PreconditionsArgs{...} +// PreconditionsArgs{...} // // or: // -// nil -// +// nil type PreconditionsPtrInput interface { pulumi.Input @@ -2498,8 +2471,7 @@ type ServerAddressByClientCIDR struct { // ServerAddressByClientCIDRInput is an input type that accepts ServerAddressByClientCIDRArgs and ServerAddressByClientCIDROutput values. // You can construct a concrete instance of `ServerAddressByClientCIDRInput` via: // -// ServerAddressByClientCIDRArgs{...} -// +// ServerAddressByClientCIDRArgs{...} type ServerAddressByClientCIDRInput interface { pulumi.Input @@ -2530,8 +2502,7 @@ func (i ServerAddressByClientCIDRArgs) ToServerAddressByClientCIDROutputWithCont // ServerAddressByClientCIDRArrayInput is an input type that accepts ServerAddressByClientCIDRArray and ServerAddressByClientCIDRArrayOutput values. // You can construct a concrete instance of `ServerAddressByClientCIDRArrayInput` via: // -// ServerAddressByClientCIDRArray{ ServerAddressByClientCIDRArgs{...} } -// +// ServerAddressByClientCIDRArray{ ServerAddressByClientCIDRArgs{...} } type ServerAddressByClientCIDRArrayInput interface { pulumi.Input @@ -2621,8 +2592,7 @@ type StatusType struct { // StatusTypeInput is an input type that accepts StatusTypeArgs and StatusTypeOutput values. // You can construct a concrete instance of `StatusTypeInput` via: // -// StatusTypeArgs{...} -// +// StatusTypeArgs{...} type StatusTypeInput interface { pulumi.Input @@ -2734,8 +2704,7 @@ type StatusCause struct { // StatusCauseInput is an input type that accepts StatusCauseArgs and StatusCauseOutput values. // You can construct a concrete instance of `StatusCauseInput` via: // -// StatusCauseArgs{...} -// +// StatusCauseArgs{...} type StatusCauseInput interface { pulumi.Input @@ -2772,8 +2741,7 @@ func (i StatusCauseArgs) ToStatusCauseOutputWithContext(ctx context.Context) Sta // StatusCauseArrayInput is an input type that accepts StatusCauseArray and StatusCauseArrayOutput values. // You can construct a concrete instance of `StatusCauseArrayInput` via: // -// StatusCauseArray{ StatusCauseArgs{...} } -// +// StatusCauseArray{ StatusCauseArgs{...} } type StatusCauseArrayInput interface { pulumi.Input @@ -2868,8 +2836,7 @@ type StatusDetails struct { // StatusDetailsInput is an input type that accepts StatusDetailsArgs and StatusDetailsOutput values. // You can construct a concrete instance of `StatusDetailsInput` via: // -// StatusDetailsArgs{...} -// +// StatusDetailsArgs{...} type StatusDetailsInput interface { pulumi.Input @@ -2916,12 +2883,11 @@ func (i StatusDetailsArgs) ToStatusDetailsPtrOutputWithContext(ctx context.Conte // StatusDetailsPtrInput is an input type that accepts StatusDetailsArgs, StatusDetailsPtr and StatusDetailsPtrOutput values. // You can construct a concrete instance of `StatusDetailsPtrInput` via: // -// StatusDetailsArgs{...} +// StatusDetailsArgs{...} // // or: // -// nil -// +// nil type StatusDetailsPtrInput interface { pulumi.Input @@ -3094,8 +3060,7 @@ type WatchEvent struct { // WatchEventInput is an input type that accepts WatchEventArgs and WatchEventOutput values. // You can construct a concrete instance of `WatchEventInput` via: // -// WatchEventArgs{...} -// +// WatchEventArgs{...} type WatchEventInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/networking/v1/pulumiTypes.go b/sdk/go/kubernetes/networking/v1/pulumiTypes.go index f0465ebb15..4f1611e229 100644 --- a/sdk/go/kubernetes/networking/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/networking/v1/pulumiTypes.go @@ -22,8 +22,7 @@ type IPBlock struct { // IPBlockInput is an input type that accepts IPBlockArgs and IPBlockOutput values. // You can construct a concrete instance of `IPBlockInput` via: // -// IPBlockArgs{...} -// +// IPBlockArgs{...} type IPBlockInput interface { pulumi.Input @@ -62,12 +61,11 @@ func (i IPBlockArgs) ToIPBlockPtrOutputWithContext(ctx context.Context) IPBlockP // IPBlockPtrInput is an input type that accepts IPBlockArgs, IPBlockPtr and IPBlockPtrOutput values. // You can construct a concrete instance of `IPBlockPtrInput` via: // -// IPBlockArgs{...} +// IPBlockArgs{...} // // or: // -// nil -// +// nil type IPBlockPtrInput interface { pulumi.Input @@ -181,8 +179,7 @@ type NetworkPolicyType struct { // NetworkPolicyTypeInput is an input type that accepts NetworkPolicyTypeArgs and NetworkPolicyTypeOutput values. // You can construct a concrete instance of `NetworkPolicyTypeInput` via: // -// NetworkPolicyTypeArgs{...} -// +// NetworkPolicyTypeArgs{...} type NetworkPolicyTypeInput interface { pulumi.Input @@ -217,8 +214,7 @@ func (i NetworkPolicyTypeArgs) ToNetworkPolicyTypeOutputWithContext(ctx context. // NetworkPolicyTypeArrayInput is an input type that accepts NetworkPolicyTypeArray and NetworkPolicyTypeArrayOutput values. // You can construct a concrete instance of `NetworkPolicyTypeArrayInput` via: // -// NetworkPolicyTypeArray{ NetworkPolicyTypeArgs{...} } -// +// NetworkPolicyTypeArray{ NetworkPolicyTypeArgs{...} } type NetworkPolicyTypeArrayInput interface { pulumi.Input @@ -306,8 +302,7 @@ type NetworkPolicyEgressRule struct { // NetworkPolicyEgressRuleInput is an input type that accepts NetworkPolicyEgressRuleArgs and NetworkPolicyEgressRuleOutput values. // You can construct a concrete instance of `NetworkPolicyEgressRuleInput` via: // -// NetworkPolicyEgressRuleArgs{...} -// +// NetworkPolicyEgressRuleArgs{...} type NetworkPolicyEgressRuleInput interface { pulumi.Input @@ -338,8 +333,7 @@ func (i NetworkPolicyEgressRuleArgs) ToNetworkPolicyEgressRuleOutputWithContext( // NetworkPolicyEgressRuleArrayInput is an input type that accepts NetworkPolicyEgressRuleArray and NetworkPolicyEgressRuleArrayOutput values. // You can construct a concrete instance of `NetworkPolicyEgressRuleArrayInput` via: // -// NetworkPolicyEgressRuleArray{ NetworkPolicyEgressRuleArgs{...} } -// +// NetworkPolicyEgressRuleArray{ NetworkPolicyEgressRuleArgs{...} } type NetworkPolicyEgressRuleArrayInput interface { pulumi.Input @@ -417,8 +411,7 @@ type NetworkPolicyIngressRule struct { // NetworkPolicyIngressRuleInput is an input type that accepts NetworkPolicyIngressRuleArgs and NetworkPolicyIngressRuleOutput values. // You can construct a concrete instance of `NetworkPolicyIngressRuleInput` via: // -// NetworkPolicyIngressRuleArgs{...} -// +// NetworkPolicyIngressRuleArgs{...} type NetworkPolicyIngressRuleInput interface { pulumi.Input @@ -449,8 +442,7 @@ func (i NetworkPolicyIngressRuleArgs) ToNetworkPolicyIngressRuleOutputWithContex // NetworkPolicyIngressRuleArrayInput is an input type that accepts NetworkPolicyIngressRuleArray and NetworkPolicyIngressRuleArrayOutput values. // You can construct a concrete instance of `NetworkPolicyIngressRuleArrayInput` via: // -// NetworkPolicyIngressRuleArray{ NetworkPolicyIngressRuleArgs{...} } -// +// NetworkPolicyIngressRuleArray{ NetworkPolicyIngressRuleArgs{...} } type NetworkPolicyIngressRuleArrayInput interface { pulumi.Input @@ -532,8 +524,7 @@ type NetworkPolicyListType struct { // NetworkPolicyListTypeInput is an input type that accepts NetworkPolicyListTypeArgs and NetworkPolicyListTypeOutput values. // You can construct a concrete instance of `NetworkPolicyListTypeInput` via: // -// NetworkPolicyListTypeArgs{...} -// +// NetworkPolicyListTypeArgs{...} type NetworkPolicyListTypeInput interface { pulumi.Input @@ -617,8 +608,7 @@ type NetworkPolicyPeer struct { // NetworkPolicyPeerInput is an input type that accepts NetworkPolicyPeerArgs and NetworkPolicyPeerOutput values. // You can construct a concrete instance of `NetworkPolicyPeerInput` via: // -// NetworkPolicyPeerArgs{...} -// +// NetworkPolicyPeerArgs{...} type NetworkPolicyPeerInput interface { pulumi.Input @@ -655,8 +645,7 @@ func (i NetworkPolicyPeerArgs) ToNetworkPolicyPeerOutputWithContext(ctx context. // NetworkPolicyPeerArrayInput is an input type that accepts NetworkPolicyPeerArray and NetworkPolicyPeerArrayOutput values. // You can construct a concrete instance of `NetworkPolicyPeerArrayInput` via: // -// NetworkPolicyPeerArray{ NetworkPolicyPeerArgs{...} } -// +// NetworkPolicyPeerArray{ NetworkPolicyPeerArgs{...} } type NetworkPolicyPeerArrayInput interface { pulumi.Input @@ -743,8 +732,7 @@ type NetworkPolicyPort struct { // NetworkPolicyPortInput is an input type that accepts NetworkPolicyPortArgs and NetworkPolicyPortOutput values. // You can construct a concrete instance of `NetworkPolicyPortInput` via: // -// NetworkPolicyPortArgs{...} -// +// NetworkPolicyPortArgs{...} type NetworkPolicyPortInput interface { pulumi.Input @@ -775,8 +763,7 @@ func (i NetworkPolicyPortArgs) ToNetworkPolicyPortOutputWithContext(ctx context. // NetworkPolicyPortArrayInput is an input type that accepts NetworkPolicyPortArray and NetworkPolicyPortArrayOutput values. // You can construct a concrete instance of `NetworkPolicyPortArrayInput` via: // -// NetworkPolicyPortArray{ NetworkPolicyPortArgs{...} } -// +// NetworkPolicyPortArray{ NetworkPolicyPortArgs{...} } type NetworkPolicyPortArrayInput interface { pulumi.Input @@ -858,8 +845,7 @@ type NetworkPolicySpec struct { // NetworkPolicySpecInput is an input type that accepts NetworkPolicySpecArgs and NetworkPolicySpecOutput values. // You can construct a concrete instance of `NetworkPolicySpecInput` via: // -// NetworkPolicySpecArgs{...} -// +// NetworkPolicySpecArgs{...} type NetworkPolicySpecInput interface { pulumi.Input @@ -902,12 +888,11 @@ func (i NetworkPolicySpecArgs) ToNetworkPolicySpecPtrOutputWithContext(ctx conte // NetworkPolicySpecPtrInput is an input type that accepts NetworkPolicySpecArgs, NetworkPolicySpecPtr and NetworkPolicySpecPtrOutput values. // You can construct a concrete instance of `NetworkPolicySpecPtrInput` via: // -// NetworkPolicySpecArgs{...} +// NetworkPolicySpecArgs{...} // // or: // -// nil -// +// nil type NetworkPolicySpecPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/networking/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/networking/v1beta1/pulumiTypes.go index 79f838dc74..7e1029af2e 100644 --- a/sdk/go/kubernetes/networking/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/networking/v1beta1/pulumiTypes.go @@ -28,15 +28,14 @@ type HTTPIngressPath struct { // * ImplementationSpecific: Interpretation of the Path matching is up to // the IngressClass. Implementations can treat this as a separate PathType // or treat it identically to Prefix or Exact path types. - // Implementations are required to support all path types. Defaults to ImplementationSpecific. + // Implementations are required to support all path types. Defaults to ImplementationSpecific. PathType *string `pulumi:"pathType"` } // HTTPIngressPathInput is an input type that accepts HTTPIngressPathArgs and HTTPIngressPathOutput values. // You can construct a concrete instance of `HTTPIngressPathInput` via: // -// HTTPIngressPathArgs{...} -// +// HTTPIngressPathArgs{...} type HTTPIngressPathInput interface { pulumi.Input @@ -60,7 +59,7 @@ type HTTPIngressPathArgs struct { // * ImplementationSpecific: Interpretation of the Path matching is up to // the IngressClass. Implementations can treat this as a separate PathType // or treat it identically to Prefix or Exact path types. - // Implementations are required to support all path types. Defaults to ImplementationSpecific. + // Implementations are required to support all path types. Defaults to ImplementationSpecific. PathType pulumi.StringPtrInput `pulumi:"pathType"` } @@ -79,8 +78,7 @@ func (i HTTPIngressPathArgs) ToHTTPIngressPathOutputWithContext(ctx context.Cont // HTTPIngressPathArrayInput is an input type that accepts HTTPIngressPathArray and HTTPIngressPathArrayOutput values. // You can construct a concrete instance of `HTTPIngressPathArrayInput` via: // -// HTTPIngressPathArray{ HTTPIngressPathArgs{...} } -// +// HTTPIngressPathArray{ HTTPIngressPathArgs{...} } type HTTPIngressPathArrayInput interface { pulumi.Input @@ -137,7 +135,7 @@ func (o HTTPIngressPathOutput) Path() pulumi.StringPtrOutput { // * ImplementationSpecific: Interpretation of the Path matching is up to // the IngressClass. Implementations can treat this as a separate PathType // or treat it identically to Prefix or Exact path types. -// Implementations are required to support all path types. Defaults to ImplementationSpecific. +// Implementations are required to support all path types. Defaults to ImplementationSpecific. func (o HTTPIngressPathOutput) PathType() pulumi.StringPtrOutput { return o.ApplyT(func(v HTTPIngressPath) *string { return v.PathType }).(pulumi.StringPtrOutput) } @@ -171,8 +169,7 @@ type HTTPIngressRuleValue struct { // HTTPIngressRuleValueInput is an input type that accepts HTTPIngressRuleValueArgs and HTTPIngressRuleValueOutput values. // You can construct a concrete instance of `HTTPIngressRuleValueInput` via: // -// HTTPIngressRuleValueArgs{...} -// +// HTTPIngressRuleValueArgs{...} type HTTPIngressRuleValueInput interface { pulumi.Input @@ -209,12 +206,11 @@ func (i HTTPIngressRuleValueArgs) ToHTTPIngressRuleValuePtrOutputWithContext(ctx // HTTPIngressRuleValuePtrInput is an input type that accepts HTTPIngressRuleValueArgs, HTTPIngressRuleValuePtr and HTTPIngressRuleValuePtrOutput values. // You can construct a concrete instance of `HTTPIngressRuleValuePtrInput` via: // -// HTTPIngressRuleValueArgs{...} +// HTTPIngressRuleValueArgs{...} // // or: // -// nil -// +// nil type HTTPIngressRuleValuePtrInput interface { pulumi.Input @@ -329,8 +325,7 @@ type IngressType struct { // IngressTypeInput is an input type that accepts IngressTypeArgs and IngressTypeOutput values. // You can construct a concrete instance of `IngressTypeInput` via: // -// IngressTypeArgs{...} -// +// IngressTypeArgs{...} type IngressTypeInput interface { pulumi.Input @@ -381,8 +376,7 @@ func (i IngressTypeArgs) ToIngressTypeOutputWithContext(ctx context.Context) Ing // IngressTypeArrayInput is an input type that accepts IngressTypeArray and IngressTypeArrayOutput values. // You can construct a concrete instance of `IngressTypeArrayInput` via: // -// IngressTypeArray{ IngressTypeArgs{...} } -// +// IngressTypeArray{ IngressTypeArgs{...} } type IngressTypeArrayInput interface { pulumi.Input @@ -491,8 +485,7 @@ type IngressBackend struct { // IngressBackendInput is an input type that accepts IngressBackendArgs and IngressBackendOutput values. // You can construct a concrete instance of `IngressBackendInput` via: // -// IngressBackendArgs{...} -// +// IngressBackendArgs{...} type IngressBackendInput interface { pulumi.Input @@ -533,12 +526,11 @@ func (i IngressBackendArgs) ToIngressBackendPtrOutputWithContext(ctx context.Con // IngressBackendPtrInput is an input type that accepts IngressBackendArgs, IngressBackendPtr and IngressBackendPtrOutput values. // You can construct a concrete instance of `IngressBackendPtrInput` via: // -// IngressBackendArgs{...} +// IngressBackendArgs{...} // // or: // -// nil -// +// nil type IngressBackendPtrInput interface { pulumi.Input @@ -667,8 +659,7 @@ type IngressClassType struct { // IngressClassTypeInput is an input type that accepts IngressClassTypeArgs and IngressClassTypeOutput values. // You can construct a concrete instance of `IngressClassTypeInput` via: // -// IngressClassTypeArgs{...} -// +// IngressClassTypeArgs{...} type IngressClassTypeInput interface { pulumi.Input @@ -703,8 +694,7 @@ func (i IngressClassTypeArgs) ToIngressClassTypeOutputWithContext(ctx context.Co // IngressClassTypeArrayInput is an input type that accepts IngressClassTypeArray and IngressClassTypeArrayOutput values. // You can construct a concrete instance of `IngressClassTypeArrayInput` via: // -// IngressClassTypeArray{ IngressClassTypeArgs{...} } -// +// IngressClassTypeArray{ IngressClassTypeArgs{...} } type IngressClassTypeArrayInput interface { pulumi.Input @@ -796,8 +786,7 @@ type IngressClassListType struct { // IngressClassListTypeInput is an input type that accepts IngressClassListTypeArgs and IngressClassListTypeOutput values. // You can construct a concrete instance of `IngressClassListTypeInput` via: // -// IngressClassListTypeArgs{...} -// +// IngressClassListTypeArgs{...} type IngressClassListTypeInput interface { pulumi.Input @@ -875,8 +864,7 @@ type IngressClassSpec struct { // IngressClassSpecInput is an input type that accepts IngressClassSpecArgs and IngressClassSpecOutput values. // You can construct a concrete instance of `IngressClassSpecInput` via: // -// IngressClassSpecArgs{...} -// +// IngressClassSpecArgs{...} type IngressClassSpecInput interface { pulumi.Input @@ -915,12 +903,11 @@ func (i IngressClassSpecArgs) ToIngressClassSpecPtrOutputWithContext(ctx context // IngressClassSpecPtrInput is an input type that accepts IngressClassSpecArgs, IngressClassSpecPtr and IngressClassSpecPtrOutput values. // You can construct a concrete instance of `IngressClassSpecPtrInput` via: // -// IngressClassSpecArgs{...} +// IngressClassSpecArgs{...} // // or: // -// nil -// +// nil type IngressClassSpecPtrInput interface { pulumi.Input @@ -1034,8 +1021,7 @@ type IngressListType struct { // IngressListTypeInput is an input type that accepts IngressListTypeArgs and IngressListTypeOutput values. // You can construct a concrete instance of `IngressListTypeInput` via: // -// IngressListTypeArgs{...} -// +// IngressListTypeArgs{...} type IngressListTypeInput interface { pulumi.Input @@ -1119,8 +1105,7 @@ type IngressRule struct { // IngressRuleInput is an input type that accepts IngressRuleArgs and IngressRuleOutput values. // You can construct a concrete instance of `IngressRuleInput` via: // -// IngressRuleArgs{...} -// +// IngressRuleArgs{...} type IngressRuleInput interface { pulumi.Input @@ -1157,8 +1142,7 @@ func (i IngressRuleArgs) ToIngressRuleOutputWithContext(ctx context.Context) Ing // IngressRuleArrayInput is an input type that accepts IngressRuleArray and IngressRuleArrayOutput values. // You can construct a concrete instance of `IngressRuleArrayInput` via: // -// IngressRuleArray{ IngressRuleArgs{...} } -// +// IngressRuleArray{ IngressRuleArgs{...} } type IngressRuleArrayInput interface { pulumi.Input @@ -1246,8 +1230,7 @@ type IngressSpec struct { // IngressSpecInput is an input type that accepts IngressSpecArgs and IngressSpecOutput values. // You can construct a concrete instance of `IngressSpecInput` via: // -// IngressSpecArgs{...} -// +// IngressSpecArgs{...} type IngressSpecInput interface { pulumi.Input @@ -1290,12 +1273,11 @@ func (i IngressSpecArgs) ToIngressSpecPtrOutputWithContext(ctx context.Context) // IngressSpecPtrInput is an input type that accepts IngressSpecArgs, IngressSpecPtr and IngressSpecPtrOutput values. // You can construct a concrete instance of `IngressSpecPtrInput` via: // -// IngressSpecArgs{...} +// IngressSpecArgs{...} // // or: // -// nil -// +// nil type IngressSpecPtrInput interface { pulumi.Input @@ -1433,8 +1415,7 @@ type IngressStatus struct { // IngressStatusInput is an input type that accepts IngressStatusArgs and IngressStatusOutput values. // You can construct a concrete instance of `IngressStatusInput` via: // -// IngressStatusArgs{...} -// +// IngressStatusArgs{...} type IngressStatusInput interface { pulumi.Input @@ -1471,12 +1452,11 @@ func (i IngressStatusArgs) ToIngressStatusPtrOutputWithContext(ctx context.Conte // IngressStatusPtrInput is an input type that accepts IngressStatusArgs, IngressStatusPtr and IngressStatusPtrOutput values. // You can construct a concrete instance of `IngressStatusPtrInput` via: // -// IngressStatusArgs{...} +// IngressStatusArgs{...} // // or: // -// nil -// +// nil type IngressStatusPtrInput interface { pulumi.Input @@ -1571,8 +1551,7 @@ type IngressTLS struct { // IngressTLSInput is an input type that accepts IngressTLSArgs and IngressTLSOutput values. // You can construct a concrete instance of `IngressTLSInput` via: // -// IngressTLSArgs{...} -// +// IngressTLSArgs{...} type IngressTLSInput interface { pulumi.Input @@ -1603,8 +1582,7 @@ func (i IngressTLSArgs) ToIngressTLSOutputWithContext(ctx context.Context) Ingre // IngressTLSArrayInput is an input type that accepts IngressTLSArray and IngressTLSArrayOutput values. // You can construct a concrete instance of `IngressTLSArrayInput` via: // -// IngressTLSArray{ IngressTLSArgs{...} } -// +// IngressTLSArray{ IngressTLSArgs{...} } type IngressTLSArrayInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/node/v1alpha1/pulumiTypes.go b/sdk/go/kubernetes/node/v1alpha1/pulumiTypes.go index a4ff9e587e..71cac73e72 100644 --- a/sdk/go/kubernetes/node/v1alpha1/pulumiTypes.go +++ b/sdk/go/kubernetes/node/v1alpha1/pulumiTypes.go @@ -21,8 +21,7 @@ type Overhead struct { // OverheadInput is an input type that accepts OverheadArgs and OverheadOutput values. // You can construct a concrete instance of `OverheadInput` via: // -// OverheadArgs{...} -// +// OverheadArgs{...} type OverheadInput interface { pulumi.Input @@ -59,12 +58,11 @@ func (i OverheadArgs) ToOverheadPtrOutputWithContext(ctx context.Context) Overhe // OverheadPtrInput is an input type that accepts OverheadArgs, OverheadPtr and OverheadPtrOutput values. // You can construct a concrete instance of `OverheadPtrInput` via: // -// OverheadArgs{...} +// OverheadArgs{...} // // or: // -// nil -// +// nil type OverheadPtrInput interface { pulumi.Input @@ -163,8 +161,7 @@ type RuntimeClassType struct { // RuntimeClassTypeInput is an input type that accepts RuntimeClassTypeArgs and RuntimeClassTypeOutput values. // You can construct a concrete instance of `RuntimeClassTypeInput` via: // -// RuntimeClassTypeArgs{...} -// +// RuntimeClassTypeArgs{...} type RuntimeClassTypeInput interface { pulumi.Input @@ -199,8 +196,7 @@ func (i RuntimeClassTypeArgs) ToRuntimeClassTypeOutputWithContext(ctx context.Co // RuntimeClassTypeArrayInput is an input type that accepts RuntimeClassTypeArray and RuntimeClassTypeArrayOutput values. // You can construct a concrete instance of `RuntimeClassTypeArrayInput` via: // -// RuntimeClassTypeArray{ RuntimeClassTypeArgs{...} } -// +// RuntimeClassTypeArray{ RuntimeClassTypeArgs{...} } type RuntimeClassTypeArrayInput interface { pulumi.Input @@ -292,8 +288,7 @@ type RuntimeClassListType struct { // RuntimeClassListTypeInput is an input type that accepts RuntimeClassListTypeArgs and RuntimeClassListTypeOutput values. // You can construct a concrete instance of `RuntimeClassListTypeInput` via: // -// RuntimeClassListTypeArgs{...} -// +// RuntimeClassListTypeArgs{...} type RuntimeClassListTypeInput interface { pulumi.Input @@ -373,8 +368,7 @@ type RuntimeClassSpec struct { // RuntimeClassSpecInput is an input type that accepts RuntimeClassSpecArgs and RuntimeClassSpecOutput values. // You can construct a concrete instance of `RuntimeClassSpecInput` via: // -// RuntimeClassSpecArgs{...} -// +// RuntimeClassSpecArgs{...} type RuntimeClassSpecInput interface { pulumi.Input @@ -415,12 +409,11 @@ func (i RuntimeClassSpecArgs) ToRuntimeClassSpecPtrOutputWithContext(ctx context // RuntimeClassSpecPtrInput is an input type that accepts RuntimeClassSpecArgs, RuntimeClassSpecPtr and RuntimeClassSpecPtrOutput values. // You can construct a concrete instance of `RuntimeClassSpecPtrInput` via: // -// RuntimeClassSpecArgs{...} +// RuntimeClassSpecArgs{...} // // or: // -// nil -// +// nil type RuntimeClassSpecPtrInput interface { pulumi.Input @@ -545,8 +538,7 @@ type Scheduling struct { // SchedulingInput is an input type that accepts SchedulingArgs and SchedulingOutput values. // You can construct a concrete instance of `SchedulingInput` via: // -// SchedulingArgs{...} -// +// SchedulingArgs{...} type SchedulingInput interface { pulumi.Input @@ -585,12 +577,11 @@ func (i SchedulingArgs) ToSchedulingPtrOutputWithContext(ctx context.Context) Sc // SchedulingPtrInput is an input type that accepts SchedulingArgs, SchedulingPtr and SchedulingPtrOutput values. // You can construct a concrete instance of `SchedulingPtrInput` via: // -// SchedulingArgs{...} +// SchedulingArgs{...} // // or: // -// nil -// +// nil type SchedulingPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/node/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/node/v1beta1/pulumiTypes.go index fc7b0c7bec..23ca0c8b2e 100644 --- a/sdk/go/kubernetes/node/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/node/v1beta1/pulumiTypes.go @@ -21,8 +21,7 @@ type Overhead struct { // OverheadInput is an input type that accepts OverheadArgs and OverheadOutput values. // You can construct a concrete instance of `OverheadInput` via: // -// OverheadArgs{...} -// +// OverheadArgs{...} type OverheadInput interface { pulumi.Input @@ -59,12 +58,11 @@ func (i OverheadArgs) ToOverheadPtrOutputWithContext(ctx context.Context) Overhe // OverheadPtrInput is an input type that accepts OverheadArgs, OverheadPtr and OverheadPtrOutput values. // You can construct a concrete instance of `OverheadPtrInput` via: // -// OverheadArgs{...} +// OverheadArgs{...} // // or: // -// nil -// +// nil type OverheadPtrInput interface { pulumi.Input @@ -167,8 +165,7 @@ type RuntimeClassType struct { // RuntimeClassTypeInput is an input type that accepts RuntimeClassTypeArgs and RuntimeClassTypeOutput values. // You can construct a concrete instance of `RuntimeClassTypeInput` via: // -// RuntimeClassTypeArgs{...} -// +// RuntimeClassTypeArgs{...} type RuntimeClassTypeInput interface { pulumi.Input @@ -207,8 +204,7 @@ func (i RuntimeClassTypeArgs) ToRuntimeClassTypeOutputWithContext(ctx context.Co // RuntimeClassTypeArrayInput is an input type that accepts RuntimeClassTypeArray and RuntimeClassTypeArrayOutput values. // You can construct a concrete instance of `RuntimeClassTypeArrayInput` via: // -// RuntimeClassTypeArray{ RuntimeClassTypeArgs{...} } -// +// RuntimeClassTypeArray{ RuntimeClassTypeArgs{...} } type RuntimeClassTypeArrayInput interface { pulumi.Input @@ -310,8 +306,7 @@ type RuntimeClassListType struct { // RuntimeClassListTypeInput is an input type that accepts RuntimeClassListTypeArgs and RuntimeClassListTypeOutput values. // You can construct a concrete instance of `RuntimeClassListTypeInput` via: // -// RuntimeClassListTypeArgs{...} -// +// RuntimeClassListTypeArgs{...} type RuntimeClassListTypeInput interface { pulumi.Input @@ -389,8 +384,7 @@ type Scheduling struct { // SchedulingInput is an input type that accepts SchedulingArgs and SchedulingOutput values. // You can construct a concrete instance of `SchedulingInput` via: // -// SchedulingArgs{...} -// +// SchedulingArgs{...} type SchedulingInput interface { pulumi.Input @@ -429,12 +423,11 @@ func (i SchedulingArgs) ToSchedulingPtrOutputWithContext(ctx context.Context) Sc // SchedulingPtrInput is an input type that accepts SchedulingArgs, SchedulingPtr and SchedulingPtrOutput values. // You can construct a concrete instance of `SchedulingPtrInput` via: // -// SchedulingArgs{...} +// SchedulingArgs{...} // // or: // -// nil -// +// nil type SchedulingPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/pkg/version/pulumiTypes.go b/sdk/go/kubernetes/pkg/version/pulumiTypes.go index 8ca4c36dc5..9db991fbf1 100644 --- a/sdk/go/kubernetes/pkg/version/pulumiTypes.go +++ b/sdk/go/kubernetes/pkg/version/pulumiTypes.go @@ -26,8 +26,7 @@ type Info struct { // InfoInput is an input type that accepts InfoArgs and InfoOutput values. // You can construct a concrete instance of `InfoInput` via: // -// InfoArgs{...} -// +// InfoArgs{...} type InfoInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/policy/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/policy/v1beta1/pulumiTypes.go index abdd0a036a..f2e7d7a3b3 100644 --- a/sdk/go/kubernetes/policy/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/policy/v1beta1/pulumiTypes.go @@ -21,8 +21,7 @@ type AllowedCSIDriver struct { // AllowedCSIDriverInput is an input type that accepts AllowedCSIDriverArgs and AllowedCSIDriverOutput values. // You can construct a concrete instance of `AllowedCSIDriverInput` via: // -// AllowedCSIDriverArgs{...} -// +// AllowedCSIDriverArgs{...} type AllowedCSIDriverInput interface { pulumi.Input @@ -51,8 +50,7 @@ func (i AllowedCSIDriverArgs) ToAllowedCSIDriverOutputWithContext(ctx context.Co // AllowedCSIDriverArrayInput is an input type that accepts AllowedCSIDriverArray and AllowedCSIDriverArrayOutput values. // You can construct a concrete instance of `AllowedCSIDriverArrayInput` via: // -// AllowedCSIDriverArray{ AllowedCSIDriverArgs{...} } -// +// AllowedCSIDriverArray{ AllowedCSIDriverArgs{...} } type AllowedCSIDriverArrayInput interface { pulumi.Input @@ -123,8 +121,7 @@ type AllowedFlexVolume struct { // AllowedFlexVolumeInput is an input type that accepts AllowedFlexVolumeArgs and AllowedFlexVolumeOutput values. // You can construct a concrete instance of `AllowedFlexVolumeInput` via: // -// AllowedFlexVolumeArgs{...} -// +// AllowedFlexVolumeArgs{...} type AllowedFlexVolumeInput interface { pulumi.Input @@ -153,8 +150,7 @@ func (i AllowedFlexVolumeArgs) ToAllowedFlexVolumeOutputWithContext(ctx context. // AllowedFlexVolumeArrayInput is an input type that accepts AllowedFlexVolumeArray and AllowedFlexVolumeArrayOutput values. // You can construct a concrete instance of `AllowedFlexVolumeArrayInput` via: // -// AllowedFlexVolumeArray{ AllowedFlexVolumeArgs{...} } -// +// AllowedFlexVolumeArray{ AllowedFlexVolumeArgs{...} } type AllowedFlexVolumeArrayInput interface { pulumi.Input @@ -229,8 +225,7 @@ type AllowedHostPath struct { // AllowedHostPathInput is an input type that accepts AllowedHostPathArgs and AllowedHostPathOutput values. // You can construct a concrete instance of `AllowedHostPathInput` via: // -// AllowedHostPathArgs{...} -// +// AllowedHostPathArgs{...} type AllowedHostPathInput interface { pulumi.Input @@ -263,8 +258,7 @@ func (i AllowedHostPathArgs) ToAllowedHostPathOutputWithContext(ctx context.Cont // AllowedHostPathArrayInput is an input type that accepts AllowedHostPathArray and AllowedHostPathArrayOutput values. // You can construct a concrete instance of `AllowedHostPathArrayInput` via: // -// AllowedHostPathArray{ AllowedHostPathArgs{...} } -// +// AllowedHostPathArray{ AllowedHostPathArgs{...} } type AllowedHostPathArrayInput interface { pulumi.Input @@ -348,8 +342,7 @@ type Eviction struct { // EvictionInput is an input type that accepts EvictionArgs and EvictionOutput values. // You can construct a concrete instance of `EvictionInput` via: // -// EvictionArgs{...} -// +// EvictionArgs{...} type EvictionInput interface { pulumi.Input @@ -427,8 +420,7 @@ type FSGroupStrategyOptions struct { // FSGroupStrategyOptionsInput is an input type that accepts FSGroupStrategyOptionsArgs and FSGroupStrategyOptionsOutput values. // You can construct a concrete instance of `FSGroupStrategyOptionsInput` via: // -// FSGroupStrategyOptionsArgs{...} -// +// FSGroupStrategyOptionsArgs{...} type FSGroupStrategyOptionsInput interface { pulumi.Input @@ -467,12 +459,11 @@ func (i FSGroupStrategyOptionsArgs) ToFSGroupStrategyOptionsPtrOutputWithContext // FSGroupStrategyOptionsPtrInput is an input type that accepts FSGroupStrategyOptionsArgs, FSGroupStrategyOptionsPtr and FSGroupStrategyOptionsPtrOutput values. // You can construct a concrete instance of `FSGroupStrategyOptionsPtrInput` via: // -// FSGroupStrategyOptionsArgs{...} +// FSGroupStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type FSGroupStrategyOptionsPtrInput interface { pulumi.Input @@ -582,8 +573,7 @@ type HostPortRange struct { // HostPortRangeInput is an input type that accepts HostPortRangeArgs and HostPortRangeOutput values. // You can construct a concrete instance of `HostPortRangeInput` via: // -// HostPortRangeArgs{...} -// +// HostPortRangeArgs{...} type HostPortRangeInput interface { pulumi.Input @@ -614,8 +604,7 @@ func (i HostPortRangeArgs) ToHostPortRangeOutputWithContext(ctx context.Context) // HostPortRangeArrayInput is an input type that accepts HostPortRangeArray and HostPortRangeArrayOutput values. // You can construct a concrete instance of `HostPortRangeArrayInput` via: // -// HostPortRangeArray{ HostPortRangeArgs{...} } -// +// HostPortRangeArray{ HostPortRangeArgs{...} } type HostPortRangeArrayInput interface { pulumi.Input @@ -693,8 +682,7 @@ type IDRange struct { // IDRangeInput is an input type that accepts IDRangeArgs and IDRangeOutput values. // You can construct a concrete instance of `IDRangeInput` via: // -// IDRangeArgs{...} -// +// IDRangeArgs{...} type IDRangeInput interface { pulumi.Input @@ -725,8 +713,7 @@ func (i IDRangeArgs) ToIDRangeOutputWithContext(ctx context.Context) IDRangeOutp // IDRangeArrayInput is an input type that accepts IDRangeArray and IDRangeArrayOutput values. // You can construct a concrete instance of `IDRangeArrayInput` via: // -// IDRangeArray{ IDRangeArgs{...} } -// +// IDRangeArray{ IDRangeArgs{...} } type IDRangeArrayInput interface { pulumi.Input @@ -809,8 +796,7 @@ type PodDisruptionBudgetType struct { // PodDisruptionBudgetTypeInput is an input type that accepts PodDisruptionBudgetTypeArgs and PodDisruptionBudgetTypeOutput values. // You can construct a concrete instance of `PodDisruptionBudgetTypeInput` via: // -// PodDisruptionBudgetTypeArgs{...} -// +// PodDisruptionBudgetTypeArgs{...} type PodDisruptionBudgetTypeInput interface { pulumi.Input @@ -846,8 +832,7 @@ func (i PodDisruptionBudgetTypeArgs) ToPodDisruptionBudgetTypeOutputWithContext( // PodDisruptionBudgetTypeArrayInput is an input type that accepts PodDisruptionBudgetTypeArray and PodDisruptionBudgetTypeArrayOutput values. // You can construct a concrete instance of `PodDisruptionBudgetTypeArrayInput` via: // -// PodDisruptionBudgetTypeArray{ PodDisruptionBudgetTypeArgs{...} } -// +// PodDisruptionBudgetTypeArray{ PodDisruptionBudgetTypeArgs{...} } type PodDisruptionBudgetTypeArrayInput interface { pulumi.Input @@ -941,8 +926,7 @@ type PodDisruptionBudgetListType struct { // PodDisruptionBudgetListTypeInput is an input type that accepts PodDisruptionBudgetListTypeArgs and PodDisruptionBudgetListTypeOutput values. // You can construct a concrete instance of `PodDisruptionBudgetListTypeInput` via: // -// PodDisruptionBudgetListTypeArgs{...} -// +// PodDisruptionBudgetListTypeArgs{...} type PodDisruptionBudgetListTypeInput interface { pulumi.Input @@ -1018,8 +1002,7 @@ type PodDisruptionBudgetSpec struct { // PodDisruptionBudgetSpecInput is an input type that accepts PodDisruptionBudgetSpecArgs and PodDisruptionBudgetSpecOutput values. // You can construct a concrete instance of `PodDisruptionBudgetSpecInput` via: // -// PodDisruptionBudgetSpecArgs{...} -// +// PodDisruptionBudgetSpecArgs{...} type PodDisruptionBudgetSpecInput interface { pulumi.Input @@ -1060,12 +1043,11 @@ func (i PodDisruptionBudgetSpecArgs) ToPodDisruptionBudgetSpecPtrOutputWithConte // PodDisruptionBudgetSpecPtrInput is an input type that accepts PodDisruptionBudgetSpecArgs, PodDisruptionBudgetSpecPtr and PodDisruptionBudgetSpecPtrOutput values. // You can construct a concrete instance of `PodDisruptionBudgetSpecPtrInput` via: // -// PodDisruptionBudgetSpecArgs{...} +// PodDisruptionBudgetSpecArgs{...} // // or: // -// nil -// +// nil type PodDisruptionBudgetSpecPtrInput interface { pulumi.Input @@ -1198,8 +1180,7 @@ type PodDisruptionBudgetStatus struct { // PodDisruptionBudgetStatusInput is an input type that accepts PodDisruptionBudgetStatusArgs and PodDisruptionBudgetStatusOutput values. // You can construct a concrete instance of `PodDisruptionBudgetStatusInput` via: // -// PodDisruptionBudgetStatusArgs{...} -// +// PodDisruptionBudgetStatusArgs{...} type PodDisruptionBudgetStatusInput interface { pulumi.Input @@ -1246,12 +1227,11 @@ func (i PodDisruptionBudgetStatusArgs) ToPodDisruptionBudgetStatusPtrOutputWithC // PodDisruptionBudgetStatusPtrInput is an input type that accepts PodDisruptionBudgetStatusArgs, PodDisruptionBudgetStatusPtr and PodDisruptionBudgetStatusPtrOutput values. // You can construct a concrete instance of `PodDisruptionBudgetStatusPtrInput` via: // -// PodDisruptionBudgetStatusArgs{...} +// PodDisruptionBudgetStatusArgs{...} // // or: // -// nil -// +// nil type PodDisruptionBudgetStatusPtrInput interface { pulumi.Input @@ -1425,8 +1405,7 @@ type PodSecurityPolicyType struct { // PodSecurityPolicyTypeInput is an input type that accepts PodSecurityPolicyTypeArgs and PodSecurityPolicyTypeOutput values. // You can construct a concrete instance of `PodSecurityPolicyTypeInput` via: // -// PodSecurityPolicyTypeArgs{...} -// +// PodSecurityPolicyTypeArgs{...} type PodSecurityPolicyTypeInput interface { pulumi.Input @@ -1461,8 +1440,7 @@ func (i PodSecurityPolicyTypeArgs) ToPodSecurityPolicyTypeOutputWithContext(ctx // PodSecurityPolicyTypeArrayInput is an input type that accepts PodSecurityPolicyTypeArray and PodSecurityPolicyTypeArrayOutput values. // You can construct a concrete instance of `PodSecurityPolicyTypeArrayInput` via: // -// PodSecurityPolicyTypeArray{ PodSecurityPolicyTypeArgs{...} } -// +// PodSecurityPolicyTypeArray{ PodSecurityPolicyTypeArgs{...} } type PodSecurityPolicyTypeArrayInput interface { pulumi.Input @@ -1554,8 +1532,7 @@ type PodSecurityPolicyListType struct { // PodSecurityPolicyListTypeInput is an input type that accepts PodSecurityPolicyListTypeArgs and PodSecurityPolicyListTypeOutput values. // You can construct a concrete instance of `PodSecurityPolicyListTypeInput` via: // -// PodSecurityPolicyListTypeArgs{...} -// +// PodSecurityPolicyListTypeArgs{...} type PodSecurityPolicyListTypeInput interface { pulumi.Input @@ -1681,8 +1658,7 @@ type PodSecurityPolicySpec struct { // PodSecurityPolicySpecInput is an input type that accepts PodSecurityPolicySpecArgs and PodSecurityPolicySpecOutput values. // You can construct a concrete instance of `PodSecurityPolicySpecInput` via: // -// PodSecurityPolicySpecArgs{...} -// +// PodSecurityPolicySpecArgs{...} type PodSecurityPolicySpecInput interface { pulumi.Input @@ -1769,12 +1745,11 @@ func (i PodSecurityPolicySpecArgs) ToPodSecurityPolicySpecPtrOutputWithContext(c // PodSecurityPolicySpecPtrInput is an input type that accepts PodSecurityPolicySpecArgs, PodSecurityPolicySpecPtr and PodSecurityPolicySpecPtrOutput values. // You can construct a concrete instance of `PodSecurityPolicySpecPtrInput` via: // -// PodSecurityPolicySpecArgs{...} +// PodSecurityPolicySpecArgs{...} // // or: // -// nil -// +// nil type PodSecurityPolicySpecPtrInput interface { pulumi.Input @@ -2222,8 +2197,7 @@ type RunAsGroupStrategyOptions struct { // RunAsGroupStrategyOptionsInput is an input type that accepts RunAsGroupStrategyOptionsArgs and RunAsGroupStrategyOptionsOutput values. // You can construct a concrete instance of `RunAsGroupStrategyOptionsInput` via: // -// RunAsGroupStrategyOptionsArgs{...} -// +// RunAsGroupStrategyOptionsArgs{...} type RunAsGroupStrategyOptionsInput interface { pulumi.Input @@ -2262,12 +2236,11 @@ func (i RunAsGroupStrategyOptionsArgs) ToRunAsGroupStrategyOptionsPtrOutputWithC // RunAsGroupStrategyOptionsPtrInput is an input type that accepts RunAsGroupStrategyOptionsArgs, RunAsGroupStrategyOptionsPtr and RunAsGroupStrategyOptionsPtrOutput values. // You can construct a concrete instance of `RunAsGroupStrategyOptionsPtrInput` via: // -// RunAsGroupStrategyOptionsArgs{...} +// RunAsGroupStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type RunAsGroupStrategyOptionsPtrInput interface { pulumi.Input @@ -2377,8 +2350,7 @@ type RunAsUserStrategyOptions struct { // RunAsUserStrategyOptionsInput is an input type that accepts RunAsUserStrategyOptionsArgs and RunAsUserStrategyOptionsOutput values. // You can construct a concrete instance of `RunAsUserStrategyOptionsInput` via: // -// RunAsUserStrategyOptionsArgs{...} -// +// RunAsUserStrategyOptionsArgs{...} type RunAsUserStrategyOptionsInput interface { pulumi.Input @@ -2417,12 +2389,11 @@ func (i RunAsUserStrategyOptionsArgs) ToRunAsUserStrategyOptionsPtrOutputWithCon // RunAsUserStrategyOptionsPtrInput is an input type that accepts RunAsUserStrategyOptionsArgs, RunAsUserStrategyOptionsPtr and RunAsUserStrategyOptionsPtrOutput values. // You can construct a concrete instance of `RunAsUserStrategyOptionsPtrInput` via: // -// RunAsUserStrategyOptionsArgs{...} +// RunAsUserStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type RunAsUserStrategyOptionsPtrInput interface { pulumi.Input @@ -2532,8 +2503,7 @@ type RuntimeClassStrategyOptions struct { // RuntimeClassStrategyOptionsInput is an input type that accepts RuntimeClassStrategyOptionsArgs and RuntimeClassStrategyOptionsOutput values. // You can construct a concrete instance of `RuntimeClassStrategyOptionsInput` via: // -// RuntimeClassStrategyOptionsArgs{...} -// +// RuntimeClassStrategyOptionsArgs{...} type RuntimeClassStrategyOptionsInput interface { pulumi.Input @@ -2572,12 +2542,11 @@ func (i RuntimeClassStrategyOptionsArgs) ToRuntimeClassStrategyOptionsPtrOutputW // RuntimeClassStrategyOptionsPtrInput is an input type that accepts RuntimeClassStrategyOptionsArgs, RuntimeClassStrategyOptionsPtr and RuntimeClassStrategyOptionsPtrOutput values. // You can construct a concrete instance of `RuntimeClassStrategyOptionsPtrInput` via: // -// RuntimeClassStrategyOptionsArgs{...} +// RuntimeClassStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type RuntimeClassStrategyOptionsPtrInput interface { pulumi.Input @@ -2687,8 +2656,7 @@ type SELinuxStrategyOptions struct { // SELinuxStrategyOptionsInput is an input type that accepts SELinuxStrategyOptionsArgs and SELinuxStrategyOptionsOutput values. // You can construct a concrete instance of `SELinuxStrategyOptionsInput` via: // -// SELinuxStrategyOptionsArgs{...} -// +// SELinuxStrategyOptionsArgs{...} type SELinuxStrategyOptionsInput interface { pulumi.Input @@ -2727,12 +2695,11 @@ func (i SELinuxStrategyOptionsArgs) ToSELinuxStrategyOptionsPtrOutputWithContext // SELinuxStrategyOptionsPtrInput is an input type that accepts SELinuxStrategyOptionsArgs, SELinuxStrategyOptionsPtr and SELinuxStrategyOptionsPtrOutput values. // You can construct a concrete instance of `SELinuxStrategyOptionsPtrInput` via: // -// SELinuxStrategyOptionsArgs{...} +// SELinuxStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type SELinuxStrategyOptionsPtrInput interface { pulumi.Input @@ -2842,8 +2809,7 @@ type SupplementalGroupsStrategyOptions struct { // SupplementalGroupsStrategyOptionsInput is an input type that accepts SupplementalGroupsStrategyOptionsArgs and SupplementalGroupsStrategyOptionsOutput values. // You can construct a concrete instance of `SupplementalGroupsStrategyOptionsInput` via: // -// SupplementalGroupsStrategyOptionsArgs{...} -// +// SupplementalGroupsStrategyOptionsArgs{...} type SupplementalGroupsStrategyOptionsInput interface { pulumi.Input @@ -2882,12 +2848,11 @@ func (i SupplementalGroupsStrategyOptionsArgs) ToSupplementalGroupsStrategyOptio // SupplementalGroupsStrategyOptionsPtrInput is an input type that accepts SupplementalGroupsStrategyOptionsArgs, SupplementalGroupsStrategyOptionsPtr and SupplementalGroupsStrategyOptionsPtrOutput values. // You can construct a concrete instance of `SupplementalGroupsStrategyOptionsPtrInput` via: // -// SupplementalGroupsStrategyOptionsArgs{...} +// SupplementalGroupsStrategyOptionsArgs{...} // // or: // -// nil -// +// nil type SupplementalGroupsStrategyOptionsPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/provider.go b/sdk/go/kubernetes/provider.go index 1c14aea456..f18d14edae 100644 --- a/sdk/go/kubernetes/provider.go +++ b/sdk/go/kubernetes/provider.go @@ -20,6 +20,15 @@ func NewProvider(ctx *pulumi.Context, if args == nil { args = &ProviderArgs{} } + if args.EnableDryRun == nil { + args.EnableDryRun = pulumi.BoolPtr(getEnvOrDefault(false, parseEnvBool, "PULUMI_K8S_ENABLE_DRY_RUN").(bool)) + } + if args.Kubeconfig == nil { + args.Kubeconfig = pulumi.StringPtr(getEnvOrDefault("", nil, "KUBECONFIG").(string)) + } + if args.SuppressDeprecationWarnings == nil { + args.SuppressDeprecationWarnings = pulumi.BoolPtr(getEnvOrDefault(false, parseEnvBool, "PULUMI_K8S_SUPPRESS_DEPRECATION_WARNINGS").(bool)) + } var resource Provider err := ctx.RegisterResource("pulumi:providers:kubernetes", name, args, &resource, opts...) if err != nil { diff --git a/sdk/go/kubernetes/pulumiUtilities.go b/sdk/go/kubernetes/pulumiUtilities.go new file mode 100644 index 0000000000..3979350e55 --- /dev/null +++ b/sdk/go/kubernetes/pulumiUtilities.go @@ -0,0 +1,47 @@ +// *** WARNING: this file was generated by pulumigen. *** +// *** Do not edit by hand unless you're certain you know what you are doing! *** + +package kubernetes + +import ( + "os" + "strconv" +) + +type envParser func(v string) interface{} + +func parseEnvBool(v string) interface{} { + b, err := strconv.ParseBool(v) + if err != nil { + return nil + } + return b +} + +func parseEnvInt(v string) interface{} { + i, err := strconv.ParseInt(v, 0, 0) + if err != nil { + return nil + } + return int(i) +} + +func parseEnvFloat(v string) interface{} { + f, err := strconv.ParseFloat(v, 64) + if err != nil { + return nil + } + return f +} + +func getEnvOrDefault(def interface{}, parser envParser, vars ...string) interface{} { + for _, v := range vars { + if value := os.Getenv(v); value != "" { + if parser != nil { + return parser(value) + } + return value + } + } + return def +} diff --git a/sdk/go/kubernetes/rbac/v1/pulumiTypes.go b/sdk/go/kubernetes/rbac/v1/pulumiTypes.go index bc1e3d2acc..785cbebefb 100644 --- a/sdk/go/kubernetes/rbac/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/rbac/v1/pulumiTypes.go @@ -20,8 +20,7 @@ type AggregationRule struct { // AggregationRuleInput is an input type that accepts AggregationRuleArgs and AggregationRuleOutput values. // You can construct a concrete instance of `AggregationRuleInput` via: // -// AggregationRuleArgs{...} -// +// AggregationRuleArgs{...} type AggregationRuleInput interface { pulumi.Input @@ -58,12 +57,11 @@ func (i AggregationRuleArgs) ToAggregationRulePtrOutputWithContext(ctx context.C // AggregationRulePtrInput is an input type that accepts AggregationRuleArgs, AggregationRulePtr and AggregationRulePtrOutput values. // You can construct a concrete instance of `AggregationRulePtrInput` via: // -// AggregationRuleArgs{...} +// AggregationRuleArgs{...} // // or: // -// nil -// +// nil type AggregationRulePtrInput interface { pulumi.Input @@ -164,8 +162,7 @@ type ClusterRoleType struct { // ClusterRoleTypeInput is an input type that accepts ClusterRoleTypeArgs and ClusterRoleTypeOutput values. // You can construct a concrete instance of `ClusterRoleTypeInput` via: // -// ClusterRoleTypeArgs{...} -// +// ClusterRoleTypeArgs{...} type ClusterRoleTypeInput interface { pulumi.Input @@ -202,8 +199,7 @@ func (i ClusterRoleTypeArgs) ToClusterRoleTypeOutputWithContext(ctx context.Cont // ClusterRoleTypeArrayInput is an input type that accepts ClusterRoleTypeArray and ClusterRoleTypeArrayOutput values. // You can construct a concrete instance of `ClusterRoleTypeArrayInput` via: // -// ClusterRoleTypeArray{ ClusterRoleTypeArgs{...} } -// +// ClusterRoleTypeArray{ ClusterRoleTypeArgs{...} } type ClusterRoleTypeArrayInput interface { pulumi.Input @@ -302,8 +298,7 @@ type ClusterRoleBindingType struct { // ClusterRoleBindingTypeInput is an input type that accepts ClusterRoleBindingTypeArgs and ClusterRoleBindingTypeOutput values. // You can construct a concrete instance of `ClusterRoleBindingTypeInput` via: // -// ClusterRoleBindingTypeArgs{...} -// +// ClusterRoleBindingTypeArgs{...} type ClusterRoleBindingTypeInput interface { pulumi.Input @@ -340,8 +335,7 @@ func (i ClusterRoleBindingTypeArgs) ToClusterRoleBindingTypeOutputWithContext(ct // ClusterRoleBindingTypeArrayInput is an input type that accepts ClusterRoleBindingTypeArray and ClusterRoleBindingTypeArrayOutput values. // You can construct a concrete instance of `ClusterRoleBindingTypeArrayInput` via: // -// ClusterRoleBindingTypeArray{ ClusterRoleBindingTypeArgs{...} } -// +// ClusterRoleBindingTypeArray{ ClusterRoleBindingTypeArgs{...} } type ClusterRoleBindingTypeArrayInput interface { pulumi.Input @@ -438,8 +432,7 @@ type ClusterRoleBindingListType struct { // ClusterRoleBindingListTypeInput is an input type that accepts ClusterRoleBindingListTypeArgs and ClusterRoleBindingListTypeOutput values. // You can construct a concrete instance of `ClusterRoleBindingListTypeInput` via: // -// ClusterRoleBindingListTypeArgs{...} -// +// ClusterRoleBindingListTypeArgs{...} type ClusterRoleBindingListTypeInput interface { pulumi.Input @@ -521,8 +514,7 @@ type ClusterRoleListType struct { // ClusterRoleListTypeInput is an input type that accepts ClusterRoleListTypeArgs and ClusterRoleListTypeOutput values. // You can construct a concrete instance of `ClusterRoleListTypeInput` via: // -// ClusterRoleListTypeArgs{...} -// +// ClusterRoleListTypeArgs{...} type ClusterRoleListTypeInput interface { pulumi.Input @@ -606,8 +598,7 @@ type PolicyRule struct { // PolicyRuleInput is an input type that accepts PolicyRuleArgs and PolicyRuleOutput values. // You can construct a concrete instance of `PolicyRuleInput` via: // -// PolicyRuleArgs{...} -// +// PolicyRuleArgs{...} type PolicyRuleInput interface { pulumi.Input @@ -644,8 +635,7 @@ func (i PolicyRuleArgs) ToPolicyRuleOutputWithContext(ctx context.Context) Polic // PolicyRuleArrayInput is an input type that accepts PolicyRuleArray and PolicyRuleArrayOutput values. // You can construct a concrete instance of `PolicyRuleArrayInput` via: // -// PolicyRuleArray{ PolicyRuleArgs{...} } -// +// PolicyRuleArray{ PolicyRuleArgs{...} } type PolicyRuleArrayInput interface { pulumi.Input @@ -742,8 +732,7 @@ type RoleType struct { // RoleTypeInput is an input type that accepts RoleTypeArgs and RoleTypeOutput values. // You can construct a concrete instance of `RoleTypeInput` via: // -// RoleTypeArgs{...} -// +// RoleTypeArgs{...} type RoleTypeInput interface { pulumi.Input @@ -778,8 +767,7 @@ func (i RoleTypeArgs) ToRoleTypeOutputWithContext(ctx context.Context) RoleTypeO // RoleTypeArrayInput is an input type that accepts RoleTypeArray and RoleTypeArrayOutput values. // You can construct a concrete instance of `RoleTypeArrayInput` via: // -// RoleTypeArray{ RoleTypeArgs{...} } -// +// RoleTypeArray{ RoleTypeArgs{...} } type RoleTypeArrayInput interface { pulumi.Input @@ -873,8 +861,7 @@ type RoleBindingType struct { // RoleBindingTypeInput is an input type that accepts RoleBindingTypeArgs and RoleBindingTypeOutput values. // You can construct a concrete instance of `RoleBindingTypeInput` via: // -// RoleBindingTypeArgs{...} -// +// RoleBindingTypeArgs{...} type RoleBindingTypeInput interface { pulumi.Input @@ -911,8 +898,7 @@ func (i RoleBindingTypeArgs) ToRoleBindingTypeOutputWithContext(ctx context.Cont // RoleBindingTypeArrayInput is an input type that accepts RoleBindingTypeArray and RoleBindingTypeArrayOutput values. // You can construct a concrete instance of `RoleBindingTypeArrayInput` via: // -// RoleBindingTypeArray{ RoleBindingTypeArgs{...} } -// +// RoleBindingTypeArray{ RoleBindingTypeArgs{...} } type RoleBindingTypeArrayInput interface { pulumi.Input @@ -1009,8 +995,7 @@ type RoleBindingListType struct { // RoleBindingListTypeInput is an input type that accepts RoleBindingListTypeArgs and RoleBindingListTypeOutput values. // You can construct a concrete instance of `RoleBindingListTypeInput` via: // -// RoleBindingListTypeArgs{...} -// +// RoleBindingListTypeArgs{...} type RoleBindingListTypeInput interface { pulumi.Input @@ -1092,8 +1077,7 @@ type RoleListType struct { // RoleListTypeInput is an input type that accepts RoleListTypeArgs and RoleListTypeOutput values. // You can construct a concrete instance of `RoleListTypeInput` via: // -// RoleListTypeArgs{...} -// +// RoleListTypeArgs{...} type RoleListTypeInput interface { pulumi.Input @@ -1173,8 +1157,7 @@ type RoleRef struct { // RoleRefInput is an input type that accepts RoleRefArgs and RoleRefOutput values. // You can construct a concrete instance of `RoleRefInput` via: // -// RoleRefArgs{...} -// +// RoleRefArgs{...} type RoleRefInput interface { pulumi.Input @@ -1215,12 +1198,11 @@ func (i RoleRefArgs) ToRoleRefPtrOutputWithContext(ctx context.Context) RoleRefP // RoleRefPtrInput is an input type that accepts RoleRefArgs, RoleRefPtr and RoleRefPtrOutput values. // You can construct a concrete instance of `RoleRefPtrInput` via: // -// RoleRefArgs{...} +// RoleRefArgs{...} // // or: // -// nil -// +// nil type RoleRefPtrInput interface { pulumi.Input @@ -1349,8 +1331,7 @@ type Subject struct { // SubjectInput is an input type that accepts SubjectArgs and SubjectOutput values. // You can construct a concrete instance of `SubjectInput` via: // -// SubjectArgs{...} -// +// SubjectArgs{...} type SubjectInput interface { pulumi.Input @@ -1385,8 +1366,7 @@ func (i SubjectArgs) ToSubjectOutputWithContext(ctx context.Context) SubjectOutp // SubjectArrayInput is an input type that accepts SubjectArray and SubjectArrayOutput values. // You can construct a concrete instance of `SubjectArrayInput` via: // -// SubjectArray{ SubjectArgs{...} } -// +// SubjectArray{ SubjectArgs{...} } type SubjectArrayInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/rbac/v1alpha1/pulumiTypes.go b/sdk/go/kubernetes/rbac/v1alpha1/pulumiTypes.go index 32608b986f..a94de3c2c2 100644 --- a/sdk/go/kubernetes/rbac/v1alpha1/pulumiTypes.go +++ b/sdk/go/kubernetes/rbac/v1alpha1/pulumiTypes.go @@ -20,8 +20,7 @@ type AggregationRule struct { // AggregationRuleInput is an input type that accepts AggregationRuleArgs and AggregationRuleOutput values. // You can construct a concrete instance of `AggregationRuleInput` via: // -// AggregationRuleArgs{...} -// +// AggregationRuleArgs{...} type AggregationRuleInput interface { pulumi.Input @@ -58,12 +57,11 @@ func (i AggregationRuleArgs) ToAggregationRulePtrOutputWithContext(ctx context.C // AggregationRulePtrInput is an input type that accepts AggregationRuleArgs, AggregationRulePtr and AggregationRulePtrOutput values. // You can construct a concrete instance of `AggregationRulePtrInput` via: // -// AggregationRuleArgs{...} +// AggregationRuleArgs{...} // // or: // -// nil -// +// nil type AggregationRulePtrInput interface { pulumi.Input @@ -164,8 +162,7 @@ type ClusterRoleType struct { // ClusterRoleTypeInput is an input type that accepts ClusterRoleTypeArgs and ClusterRoleTypeOutput values. // You can construct a concrete instance of `ClusterRoleTypeInput` via: // -// ClusterRoleTypeArgs{...} -// +// ClusterRoleTypeArgs{...} type ClusterRoleTypeInput interface { pulumi.Input @@ -202,8 +199,7 @@ func (i ClusterRoleTypeArgs) ToClusterRoleTypeOutputWithContext(ctx context.Cont // ClusterRoleTypeArrayInput is an input type that accepts ClusterRoleTypeArray and ClusterRoleTypeArrayOutput values. // You can construct a concrete instance of `ClusterRoleTypeArrayInput` via: // -// ClusterRoleTypeArray{ ClusterRoleTypeArgs{...} } -// +// ClusterRoleTypeArray{ ClusterRoleTypeArgs{...} } type ClusterRoleTypeArrayInput interface { pulumi.Input @@ -302,8 +298,7 @@ type ClusterRoleBindingType struct { // ClusterRoleBindingTypeInput is an input type that accepts ClusterRoleBindingTypeArgs and ClusterRoleBindingTypeOutput values. // You can construct a concrete instance of `ClusterRoleBindingTypeInput` via: // -// ClusterRoleBindingTypeArgs{...} -// +// ClusterRoleBindingTypeArgs{...} type ClusterRoleBindingTypeInput interface { pulumi.Input @@ -340,8 +335,7 @@ func (i ClusterRoleBindingTypeArgs) ToClusterRoleBindingTypeOutputWithContext(ct // ClusterRoleBindingTypeArrayInput is an input type that accepts ClusterRoleBindingTypeArray and ClusterRoleBindingTypeArrayOutput values. // You can construct a concrete instance of `ClusterRoleBindingTypeArrayInput` via: // -// ClusterRoleBindingTypeArray{ ClusterRoleBindingTypeArgs{...} } -// +// ClusterRoleBindingTypeArray{ ClusterRoleBindingTypeArgs{...} } type ClusterRoleBindingTypeArrayInput interface { pulumi.Input @@ -438,8 +432,7 @@ type ClusterRoleBindingListType struct { // ClusterRoleBindingListTypeInput is an input type that accepts ClusterRoleBindingListTypeArgs and ClusterRoleBindingListTypeOutput values. // You can construct a concrete instance of `ClusterRoleBindingListTypeInput` via: // -// ClusterRoleBindingListTypeArgs{...} -// +// ClusterRoleBindingListTypeArgs{...} type ClusterRoleBindingListTypeInput interface { pulumi.Input @@ -521,8 +514,7 @@ type ClusterRoleListType struct { // ClusterRoleListTypeInput is an input type that accepts ClusterRoleListTypeArgs and ClusterRoleListTypeOutput values. // You can construct a concrete instance of `ClusterRoleListTypeInput` via: // -// ClusterRoleListTypeArgs{...} -// +// ClusterRoleListTypeArgs{...} type ClusterRoleListTypeInput interface { pulumi.Input @@ -606,8 +598,7 @@ type PolicyRule struct { // PolicyRuleInput is an input type that accepts PolicyRuleArgs and PolicyRuleOutput values. // You can construct a concrete instance of `PolicyRuleInput` via: // -// PolicyRuleArgs{...} -// +// PolicyRuleArgs{...} type PolicyRuleInput interface { pulumi.Input @@ -644,8 +635,7 @@ func (i PolicyRuleArgs) ToPolicyRuleOutputWithContext(ctx context.Context) Polic // PolicyRuleArrayInput is an input type that accepts PolicyRuleArray and PolicyRuleArrayOutput values. // You can construct a concrete instance of `PolicyRuleArrayInput` via: // -// PolicyRuleArray{ PolicyRuleArgs{...} } -// +// PolicyRuleArray{ PolicyRuleArgs{...} } type PolicyRuleArrayInput interface { pulumi.Input @@ -742,8 +732,7 @@ type RoleType struct { // RoleTypeInput is an input type that accepts RoleTypeArgs and RoleTypeOutput values. // You can construct a concrete instance of `RoleTypeInput` via: // -// RoleTypeArgs{...} -// +// RoleTypeArgs{...} type RoleTypeInput interface { pulumi.Input @@ -778,8 +767,7 @@ func (i RoleTypeArgs) ToRoleTypeOutputWithContext(ctx context.Context) RoleTypeO // RoleTypeArrayInput is an input type that accepts RoleTypeArray and RoleTypeArrayOutput values. // You can construct a concrete instance of `RoleTypeArrayInput` via: // -// RoleTypeArray{ RoleTypeArgs{...} } -// +// RoleTypeArray{ RoleTypeArgs{...} } type RoleTypeArrayInput interface { pulumi.Input @@ -873,8 +861,7 @@ type RoleBindingType struct { // RoleBindingTypeInput is an input type that accepts RoleBindingTypeArgs and RoleBindingTypeOutput values. // You can construct a concrete instance of `RoleBindingTypeInput` via: // -// RoleBindingTypeArgs{...} -// +// RoleBindingTypeArgs{...} type RoleBindingTypeInput interface { pulumi.Input @@ -911,8 +898,7 @@ func (i RoleBindingTypeArgs) ToRoleBindingTypeOutputWithContext(ctx context.Cont // RoleBindingTypeArrayInput is an input type that accepts RoleBindingTypeArray and RoleBindingTypeArrayOutput values. // You can construct a concrete instance of `RoleBindingTypeArrayInput` via: // -// RoleBindingTypeArray{ RoleBindingTypeArgs{...} } -// +// RoleBindingTypeArray{ RoleBindingTypeArgs{...} } type RoleBindingTypeArrayInput interface { pulumi.Input @@ -1009,8 +995,7 @@ type RoleBindingListType struct { // RoleBindingListTypeInput is an input type that accepts RoleBindingListTypeArgs and RoleBindingListTypeOutput values. // You can construct a concrete instance of `RoleBindingListTypeInput` via: // -// RoleBindingListTypeArgs{...} -// +// RoleBindingListTypeArgs{...} type RoleBindingListTypeInput interface { pulumi.Input @@ -1092,8 +1077,7 @@ type RoleListType struct { // RoleListTypeInput is an input type that accepts RoleListTypeArgs and RoleListTypeOutput values. // You can construct a concrete instance of `RoleListTypeInput` via: // -// RoleListTypeArgs{...} -// +// RoleListTypeArgs{...} type RoleListTypeInput interface { pulumi.Input @@ -1173,8 +1157,7 @@ type RoleRef struct { // RoleRefInput is an input type that accepts RoleRefArgs and RoleRefOutput values. // You can construct a concrete instance of `RoleRefInput` via: // -// RoleRefArgs{...} -// +// RoleRefArgs{...} type RoleRefInput interface { pulumi.Input @@ -1215,12 +1198,11 @@ func (i RoleRefArgs) ToRoleRefPtrOutputWithContext(ctx context.Context) RoleRefP // RoleRefPtrInput is an input type that accepts RoleRefArgs, RoleRefPtr and RoleRefPtrOutput values. // You can construct a concrete instance of `RoleRefPtrInput` via: // -// RoleRefArgs{...} +// RoleRefArgs{...} // // or: // -// nil -// +// nil type RoleRefPtrInput interface { pulumi.Input @@ -1349,8 +1331,7 @@ type Subject struct { // SubjectInput is an input type that accepts SubjectArgs and SubjectOutput values. // You can construct a concrete instance of `SubjectInput` via: // -// SubjectArgs{...} -// +// SubjectArgs{...} type SubjectInput interface { pulumi.Input @@ -1385,8 +1366,7 @@ func (i SubjectArgs) ToSubjectOutputWithContext(ctx context.Context) SubjectOutp // SubjectArrayInput is an input type that accepts SubjectArray and SubjectArrayOutput values. // You can construct a concrete instance of `SubjectArrayInput` via: // -// SubjectArray{ SubjectArgs{...} } -// +// SubjectArray{ SubjectArgs{...} } type SubjectArrayInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/rbac/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/rbac/v1beta1/pulumiTypes.go index 1c17cdddaa..1ed7378f9c 100644 --- a/sdk/go/kubernetes/rbac/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/rbac/v1beta1/pulumiTypes.go @@ -20,8 +20,7 @@ type AggregationRule struct { // AggregationRuleInput is an input type that accepts AggregationRuleArgs and AggregationRuleOutput values. // You can construct a concrete instance of `AggregationRuleInput` via: // -// AggregationRuleArgs{...} -// +// AggregationRuleArgs{...} type AggregationRuleInput interface { pulumi.Input @@ -58,12 +57,11 @@ func (i AggregationRuleArgs) ToAggregationRulePtrOutputWithContext(ctx context.C // AggregationRulePtrInput is an input type that accepts AggregationRuleArgs, AggregationRulePtr and AggregationRulePtrOutput values. // You can construct a concrete instance of `AggregationRulePtrInput` via: // -// AggregationRuleArgs{...} +// AggregationRuleArgs{...} // // or: // -// nil -// +// nil type AggregationRulePtrInput interface { pulumi.Input @@ -164,8 +162,7 @@ type ClusterRoleType struct { // ClusterRoleTypeInput is an input type that accepts ClusterRoleTypeArgs and ClusterRoleTypeOutput values. // You can construct a concrete instance of `ClusterRoleTypeInput` via: // -// ClusterRoleTypeArgs{...} -// +// ClusterRoleTypeArgs{...} type ClusterRoleTypeInput interface { pulumi.Input @@ -202,8 +199,7 @@ func (i ClusterRoleTypeArgs) ToClusterRoleTypeOutputWithContext(ctx context.Cont // ClusterRoleTypeArrayInput is an input type that accepts ClusterRoleTypeArray and ClusterRoleTypeArrayOutput values. // You can construct a concrete instance of `ClusterRoleTypeArrayInput` via: // -// ClusterRoleTypeArray{ ClusterRoleTypeArgs{...} } -// +// ClusterRoleTypeArray{ ClusterRoleTypeArgs{...} } type ClusterRoleTypeArrayInput interface { pulumi.Input @@ -302,8 +298,7 @@ type ClusterRoleBindingType struct { // ClusterRoleBindingTypeInput is an input type that accepts ClusterRoleBindingTypeArgs and ClusterRoleBindingTypeOutput values. // You can construct a concrete instance of `ClusterRoleBindingTypeInput` via: // -// ClusterRoleBindingTypeArgs{...} -// +// ClusterRoleBindingTypeArgs{...} type ClusterRoleBindingTypeInput interface { pulumi.Input @@ -340,8 +335,7 @@ func (i ClusterRoleBindingTypeArgs) ToClusterRoleBindingTypeOutputWithContext(ct // ClusterRoleBindingTypeArrayInput is an input type that accepts ClusterRoleBindingTypeArray and ClusterRoleBindingTypeArrayOutput values. // You can construct a concrete instance of `ClusterRoleBindingTypeArrayInput` via: // -// ClusterRoleBindingTypeArray{ ClusterRoleBindingTypeArgs{...} } -// +// ClusterRoleBindingTypeArray{ ClusterRoleBindingTypeArgs{...} } type ClusterRoleBindingTypeArrayInput interface { pulumi.Input @@ -438,8 +432,7 @@ type ClusterRoleBindingListType struct { // ClusterRoleBindingListTypeInput is an input type that accepts ClusterRoleBindingListTypeArgs and ClusterRoleBindingListTypeOutput values. // You can construct a concrete instance of `ClusterRoleBindingListTypeInput` via: // -// ClusterRoleBindingListTypeArgs{...} -// +// ClusterRoleBindingListTypeArgs{...} type ClusterRoleBindingListTypeInput interface { pulumi.Input @@ -521,8 +514,7 @@ type ClusterRoleListType struct { // ClusterRoleListTypeInput is an input type that accepts ClusterRoleListTypeArgs and ClusterRoleListTypeOutput values. // You can construct a concrete instance of `ClusterRoleListTypeInput` via: // -// ClusterRoleListTypeArgs{...} -// +// ClusterRoleListTypeArgs{...} type ClusterRoleListTypeInput interface { pulumi.Input @@ -606,8 +598,7 @@ type PolicyRule struct { // PolicyRuleInput is an input type that accepts PolicyRuleArgs and PolicyRuleOutput values. // You can construct a concrete instance of `PolicyRuleInput` via: // -// PolicyRuleArgs{...} -// +// PolicyRuleArgs{...} type PolicyRuleInput interface { pulumi.Input @@ -644,8 +635,7 @@ func (i PolicyRuleArgs) ToPolicyRuleOutputWithContext(ctx context.Context) Polic // PolicyRuleArrayInput is an input type that accepts PolicyRuleArray and PolicyRuleArrayOutput values. // You can construct a concrete instance of `PolicyRuleArrayInput` via: // -// PolicyRuleArray{ PolicyRuleArgs{...} } -// +// PolicyRuleArray{ PolicyRuleArgs{...} } type PolicyRuleArrayInput interface { pulumi.Input @@ -742,8 +732,7 @@ type RoleType struct { // RoleTypeInput is an input type that accepts RoleTypeArgs and RoleTypeOutput values. // You can construct a concrete instance of `RoleTypeInput` via: // -// RoleTypeArgs{...} -// +// RoleTypeArgs{...} type RoleTypeInput interface { pulumi.Input @@ -778,8 +767,7 @@ func (i RoleTypeArgs) ToRoleTypeOutputWithContext(ctx context.Context) RoleTypeO // RoleTypeArrayInput is an input type that accepts RoleTypeArray and RoleTypeArrayOutput values. // You can construct a concrete instance of `RoleTypeArrayInput` via: // -// RoleTypeArray{ RoleTypeArgs{...} } -// +// RoleTypeArray{ RoleTypeArgs{...} } type RoleTypeArrayInput interface { pulumi.Input @@ -873,8 +861,7 @@ type RoleBindingType struct { // RoleBindingTypeInput is an input type that accepts RoleBindingTypeArgs and RoleBindingTypeOutput values. // You can construct a concrete instance of `RoleBindingTypeInput` via: // -// RoleBindingTypeArgs{...} -// +// RoleBindingTypeArgs{...} type RoleBindingTypeInput interface { pulumi.Input @@ -911,8 +898,7 @@ func (i RoleBindingTypeArgs) ToRoleBindingTypeOutputWithContext(ctx context.Cont // RoleBindingTypeArrayInput is an input type that accepts RoleBindingTypeArray and RoleBindingTypeArrayOutput values. // You can construct a concrete instance of `RoleBindingTypeArrayInput` via: // -// RoleBindingTypeArray{ RoleBindingTypeArgs{...} } -// +// RoleBindingTypeArray{ RoleBindingTypeArgs{...} } type RoleBindingTypeArrayInput interface { pulumi.Input @@ -1009,8 +995,7 @@ type RoleBindingListType struct { // RoleBindingListTypeInput is an input type that accepts RoleBindingListTypeArgs and RoleBindingListTypeOutput values. // You can construct a concrete instance of `RoleBindingListTypeInput` via: // -// RoleBindingListTypeArgs{...} -// +// RoleBindingListTypeArgs{...} type RoleBindingListTypeInput interface { pulumi.Input @@ -1092,8 +1077,7 @@ type RoleListType struct { // RoleListTypeInput is an input type that accepts RoleListTypeArgs and RoleListTypeOutput values. // You can construct a concrete instance of `RoleListTypeInput` via: // -// RoleListTypeArgs{...} -// +// RoleListTypeArgs{...} type RoleListTypeInput interface { pulumi.Input @@ -1173,8 +1157,7 @@ type RoleRef struct { // RoleRefInput is an input type that accepts RoleRefArgs and RoleRefOutput values. // You can construct a concrete instance of `RoleRefInput` via: // -// RoleRefArgs{...} -// +// RoleRefArgs{...} type RoleRefInput interface { pulumi.Input @@ -1215,12 +1198,11 @@ func (i RoleRefArgs) ToRoleRefPtrOutputWithContext(ctx context.Context) RoleRefP // RoleRefPtrInput is an input type that accepts RoleRefArgs, RoleRefPtr and RoleRefPtrOutput values. // You can construct a concrete instance of `RoleRefPtrInput` via: // -// RoleRefArgs{...} +// RoleRefArgs{...} // // or: // -// nil -// +// nil type RoleRefPtrInput interface { pulumi.Input @@ -1349,8 +1331,7 @@ type Subject struct { // SubjectInput is an input type that accepts SubjectArgs and SubjectOutput values. // You can construct a concrete instance of `SubjectInput` via: // -// SubjectArgs{...} -// +// SubjectArgs{...} type SubjectInput interface { pulumi.Input @@ -1385,8 +1366,7 @@ func (i SubjectArgs) ToSubjectOutputWithContext(ctx context.Context) SubjectOutp // SubjectArrayInput is an input type that accepts SubjectArray and SubjectArrayOutput values. // You can construct a concrete instance of `SubjectArrayInput` via: // -// SubjectArray{ SubjectArgs{...} } -// +// SubjectArray{ SubjectArgs{...} } type SubjectArrayInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/scheduling/v1/pulumiTypes.go b/sdk/go/kubernetes/scheduling/v1/pulumiTypes.go index da0809697a..32a13f7287 100644 --- a/sdk/go/kubernetes/scheduling/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/scheduling/v1/pulumiTypes.go @@ -32,8 +32,7 @@ type PriorityClassType struct { // PriorityClassTypeInput is an input type that accepts PriorityClassTypeArgs and PriorityClassTypeOutput values. // You can construct a concrete instance of `PriorityClassTypeInput` via: // -// PriorityClassTypeArgs{...} -// +// PriorityClassTypeArgs{...} type PriorityClassTypeInput interface { pulumi.Input @@ -74,8 +73,7 @@ func (i PriorityClassTypeArgs) ToPriorityClassTypeOutputWithContext(ctx context. // PriorityClassTypeArrayInput is an input type that accepts PriorityClassTypeArray and PriorityClassTypeArrayOutput values. // You can construct a concrete instance of `PriorityClassTypeArrayInput` via: // -// PriorityClassTypeArray{ PriorityClassTypeArgs{...} } -// +// PriorityClassTypeArray{ PriorityClassTypeArgs{...} } type PriorityClassTypeArrayInput interface { pulumi.Input @@ -182,8 +180,7 @@ type PriorityClassListType struct { // PriorityClassListTypeInput is an input type that accepts PriorityClassListTypeArgs and PriorityClassListTypeOutput values. // You can construct a concrete instance of `PriorityClassListTypeInput` via: // -// PriorityClassListTypeArgs{...} -// +// PriorityClassListTypeArgs{...} type PriorityClassListTypeInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/scheduling/v1alpha1/pulumiTypes.go b/sdk/go/kubernetes/scheduling/v1alpha1/pulumiTypes.go index 4a4d326f3a..b94fbefaa5 100644 --- a/sdk/go/kubernetes/scheduling/v1alpha1/pulumiTypes.go +++ b/sdk/go/kubernetes/scheduling/v1alpha1/pulumiTypes.go @@ -32,8 +32,7 @@ type PriorityClassType struct { // PriorityClassTypeInput is an input type that accepts PriorityClassTypeArgs and PriorityClassTypeOutput values. // You can construct a concrete instance of `PriorityClassTypeInput` via: // -// PriorityClassTypeArgs{...} -// +// PriorityClassTypeArgs{...} type PriorityClassTypeInput interface { pulumi.Input @@ -74,8 +73,7 @@ func (i PriorityClassTypeArgs) ToPriorityClassTypeOutputWithContext(ctx context. // PriorityClassTypeArrayInput is an input type that accepts PriorityClassTypeArray and PriorityClassTypeArrayOutput values. // You can construct a concrete instance of `PriorityClassTypeArrayInput` via: // -// PriorityClassTypeArray{ PriorityClassTypeArgs{...} } -// +// PriorityClassTypeArray{ PriorityClassTypeArgs{...} } type PriorityClassTypeArrayInput interface { pulumi.Input @@ -182,8 +180,7 @@ type PriorityClassListType struct { // PriorityClassListTypeInput is an input type that accepts PriorityClassListTypeArgs and PriorityClassListTypeOutput values. // You can construct a concrete instance of `PriorityClassListTypeInput` via: // -// PriorityClassListTypeArgs{...} -// +// PriorityClassListTypeArgs{...} type PriorityClassListTypeInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/scheduling/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/scheduling/v1beta1/pulumiTypes.go index d5cd15ec85..6aafc42db6 100644 --- a/sdk/go/kubernetes/scheduling/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/scheduling/v1beta1/pulumiTypes.go @@ -32,8 +32,7 @@ type PriorityClassType struct { // PriorityClassTypeInput is an input type that accepts PriorityClassTypeArgs and PriorityClassTypeOutput values. // You can construct a concrete instance of `PriorityClassTypeInput` via: // -// PriorityClassTypeArgs{...} -// +// PriorityClassTypeArgs{...} type PriorityClassTypeInput interface { pulumi.Input @@ -74,8 +73,7 @@ func (i PriorityClassTypeArgs) ToPriorityClassTypeOutputWithContext(ctx context. // PriorityClassTypeArrayInput is an input type that accepts PriorityClassTypeArray and PriorityClassTypeArrayOutput values. // You can construct a concrete instance of `PriorityClassTypeArrayInput` via: // -// PriorityClassTypeArray{ PriorityClassTypeArgs{...} } -// +// PriorityClassTypeArray{ PriorityClassTypeArgs{...} } type PriorityClassTypeArrayInput interface { pulumi.Input @@ -182,8 +180,7 @@ type PriorityClassListType struct { // PriorityClassListTypeInput is an input type that accepts PriorityClassListTypeArgs and PriorityClassListTypeOutput values. // You can construct a concrete instance of `PriorityClassListTypeInput` via: // -// PriorityClassListTypeArgs{...} -// +// PriorityClassListTypeArgs{...} type PriorityClassListTypeInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/settings/v1alpha1/pulumiTypes.go b/sdk/go/kubernetes/settings/v1alpha1/pulumiTypes.go index edb83a106f..b2d9683083 100644 --- a/sdk/go/kubernetes/settings/v1alpha1/pulumiTypes.go +++ b/sdk/go/kubernetes/settings/v1alpha1/pulumiTypes.go @@ -25,8 +25,7 @@ type PodPresetType struct { // PodPresetTypeInput is an input type that accepts PodPresetTypeArgs and PodPresetTypeOutput values. // You can construct a concrete instance of `PodPresetTypeInput` via: // -// PodPresetTypeArgs{...} -// +// PodPresetTypeArgs{...} type PodPresetTypeInput interface { pulumi.Input @@ -59,8 +58,7 @@ func (i PodPresetTypeArgs) ToPodPresetTypeOutputWithContext(ctx context.Context) // PodPresetTypeArrayInput is an input type that accepts PodPresetTypeArray and PodPresetTypeArrayOutput values. // You can construct a concrete instance of `PodPresetTypeArrayInput` via: // -// PodPresetTypeArray{ PodPresetTypeArgs{...} } -// +// PodPresetTypeArray{ PodPresetTypeArgs{...} } type PodPresetTypeArrayInput interface { pulumi.Input @@ -150,8 +148,7 @@ type PodPresetListType struct { // PodPresetListTypeInput is an input type that accepts PodPresetListTypeArgs and PodPresetListTypeOutput values. // You can construct a concrete instance of `PodPresetListTypeInput` via: // -// PodPresetListTypeArgs{...} -// +// PodPresetListTypeArgs{...} type PodPresetListTypeInput interface { pulumi.Input @@ -235,8 +232,7 @@ type PodPresetSpec struct { // PodPresetSpecInput is an input type that accepts PodPresetSpecArgs and PodPresetSpecOutput values. // You can construct a concrete instance of `PodPresetSpecInput` via: // -// PodPresetSpecArgs{...} -// +// PodPresetSpecArgs{...} type PodPresetSpecInput interface { pulumi.Input @@ -281,12 +277,11 @@ func (i PodPresetSpecArgs) ToPodPresetSpecPtrOutputWithContext(ctx context.Conte // PodPresetSpecPtrInput is an input type that accepts PodPresetSpecArgs, PodPresetSpecPtr and PodPresetSpecPtrOutput values. // You can construct a concrete instance of `PodPresetSpecPtrInput` via: // -// PodPresetSpecArgs{...} +// PodPresetSpecArgs{...} // // or: // -// nil -// +// nil type PodPresetSpecPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/storage/v1/pulumiTypes.go b/sdk/go/kubernetes/storage/v1/pulumiTypes.go index d6bbcee346..683303ae9f 100644 --- a/sdk/go/kubernetes/storage/v1/pulumiTypes.go +++ b/sdk/go/kubernetes/storage/v1/pulumiTypes.go @@ -27,8 +27,7 @@ type CSIDriverType struct { // CSIDriverTypeInput is an input type that accepts CSIDriverTypeArgs and CSIDriverTypeOutput values. // You can construct a concrete instance of `CSIDriverTypeInput` via: // -// CSIDriverTypeArgs{...} -// +// CSIDriverTypeArgs{...} type CSIDriverTypeInput interface { pulumi.Input @@ -63,8 +62,7 @@ func (i CSIDriverTypeArgs) ToCSIDriverTypeOutputWithContext(ctx context.Context) // CSIDriverTypeArrayInput is an input type that accepts CSIDriverTypeArray and CSIDriverTypeArrayOutput values. // You can construct a concrete instance of `CSIDriverTypeArrayInput` via: // -// CSIDriverTypeArray{ CSIDriverTypeArgs{...} } -// +// CSIDriverTypeArray{ CSIDriverTypeArgs{...} } type CSIDriverTypeArrayInput interface { pulumi.Input @@ -156,8 +154,7 @@ type CSIDriverListType struct { // CSIDriverListTypeInput is an input type that accepts CSIDriverListTypeArgs and CSIDriverListTypeOutput values. // You can construct a concrete instance of `CSIDriverListTypeInput` via: // -// CSIDriverListTypeArgs{...} -// +// CSIDriverListTypeArgs{...} type CSIDriverListTypeInput interface { pulumi.Input @@ -240,8 +237,7 @@ type CSIDriverSpec struct { // CSIDriverSpecInput is an input type that accepts CSIDriverSpecArgs and CSIDriverSpecOutput values. // You can construct a concrete instance of `CSIDriverSpecInput` via: // -// CSIDriverSpecArgs{...} -// +// CSIDriverSpecArgs{...} type CSIDriverSpecInput interface { pulumi.Input @@ -285,12 +281,11 @@ func (i CSIDriverSpecArgs) ToCSIDriverSpecPtrOutputWithContext(ctx context.Conte // CSIDriverSpecPtrInput is an input type that accepts CSIDriverSpecArgs, CSIDriverSpecPtr and CSIDriverSpecPtrOutput values. // You can construct a concrete instance of `CSIDriverSpecPtrInput` via: // -// CSIDriverSpecArgs{...} +// CSIDriverSpecArgs{...} // // or: // -// nil -// +// nil type CSIDriverSpecPtrInput interface { pulumi.Input @@ -425,8 +420,7 @@ type CSINodeType struct { // CSINodeTypeInput is an input type that accepts CSINodeTypeArgs and CSINodeTypeOutput values. // You can construct a concrete instance of `CSINodeTypeInput` via: // -// CSINodeTypeArgs{...} -// +// CSINodeTypeArgs{...} type CSINodeTypeInput interface { pulumi.Input @@ -461,8 +455,7 @@ func (i CSINodeTypeArgs) ToCSINodeTypeOutputWithContext(ctx context.Context) CSI // CSINodeTypeArrayInput is an input type that accepts CSINodeTypeArray and CSINodeTypeArrayOutput values. // You can construct a concrete instance of `CSINodeTypeArrayInput` via: // -// CSINodeTypeArray{ CSINodeTypeArgs{...} } -// +// CSINodeTypeArray{ CSINodeTypeArgs{...} } type CSINodeTypeArrayInput interface { pulumi.Input @@ -554,8 +547,7 @@ type CSINodeDriver struct { // CSINodeDriverInput is an input type that accepts CSINodeDriverArgs and CSINodeDriverOutput values. // You can construct a concrete instance of `CSINodeDriverInput` via: // -// CSINodeDriverArgs{...} -// +// CSINodeDriverArgs{...} type CSINodeDriverInput interface { pulumi.Input @@ -590,8 +582,7 @@ func (i CSINodeDriverArgs) ToCSINodeDriverOutputWithContext(ctx context.Context) // CSINodeDriverArrayInput is an input type that accepts CSINodeDriverArray and CSINodeDriverArrayOutput values. // You can construct a concrete instance of `CSINodeDriverArrayInput` via: // -// CSINodeDriverArray{ CSINodeDriverArgs{...} } -// +// CSINodeDriverArray{ CSINodeDriverArgs{...} } type CSINodeDriverArrayInput interface { pulumi.Input @@ -683,8 +674,7 @@ type CSINodeListType struct { // CSINodeListTypeInput is an input type that accepts CSINodeListTypeArgs and CSINodeListTypeOutput values. // You can construct a concrete instance of `CSINodeListTypeInput` via: // -// CSINodeListTypeArgs{...} -// +// CSINodeListTypeArgs{...} type CSINodeListTypeInput interface { pulumi.Input @@ -760,8 +750,7 @@ type CSINodeSpec struct { // CSINodeSpecInput is an input type that accepts CSINodeSpecArgs and CSINodeSpecOutput values. // You can construct a concrete instance of `CSINodeSpecInput` via: // -// CSINodeSpecArgs{...} -// +// CSINodeSpecArgs{...} type CSINodeSpecInput interface { pulumi.Input @@ -798,12 +787,11 @@ func (i CSINodeSpecArgs) ToCSINodeSpecPtrOutputWithContext(ctx context.Context) // CSINodeSpecPtrInput is an input type that accepts CSINodeSpecArgs, CSINodeSpecPtr and CSINodeSpecPtrOutput values. // You can construct a concrete instance of `CSINodeSpecPtrInput` via: // -// CSINodeSpecArgs{...} +// CSINodeSpecArgs{...} // // or: // -// nil -// +// nil type CSINodeSpecPtrInput interface { pulumi.Input @@ -916,8 +904,7 @@ type StorageClassType struct { // StorageClassTypeInput is an input type that accepts StorageClassTypeArgs and StorageClassTypeOutput values. // You can construct a concrete instance of `StorageClassTypeInput` via: // -// StorageClassTypeArgs{...} -// +// StorageClassTypeArgs{...} type StorageClassTypeInput interface { pulumi.Input @@ -966,8 +953,7 @@ func (i StorageClassTypeArgs) ToStorageClassTypeOutputWithContext(ctx context.Co // StorageClassTypeArrayInput is an input type that accepts StorageClassTypeArray and StorageClassTypeArrayOutput values. // You can construct a concrete instance of `StorageClassTypeArrayInput` via: // -// StorageClassTypeArray{ StorageClassTypeArgs{...} } -// +// StorageClassTypeArray{ StorageClassTypeArgs{...} } type StorageClassTypeArrayInput interface { pulumi.Input @@ -1091,8 +1077,7 @@ type StorageClassListType struct { // StorageClassListTypeInput is an input type that accepts StorageClassListTypeArgs and StorageClassListTypeOutput values. // You can construct a concrete instance of `StorageClassListTypeInput` via: // -// StorageClassListTypeArgs{...} -// +// StorageClassListTypeArgs{...} type StorageClassListTypeInput interface { pulumi.Input @@ -1178,8 +1163,7 @@ type VolumeAttachmentType struct { // VolumeAttachmentTypeInput is an input type that accepts VolumeAttachmentTypeArgs and VolumeAttachmentTypeOutput values. // You can construct a concrete instance of `VolumeAttachmentTypeInput` via: // -// VolumeAttachmentTypeArgs{...} -// +// VolumeAttachmentTypeArgs{...} type VolumeAttachmentTypeInput interface { pulumi.Input @@ -1218,8 +1202,7 @@ func (i VolumeAttachmentTypeArgs) ToVolumeAttachmentTypeOutputWithContext(ctx co // VolumeAttachmentTypeArrayInput is an input type that accepts VolumeAttachmentTypeArray and VolumeAttachmentTypeArrayOutput values. // You can construct a concrete instance of `VolumeAttachmentTypeArrayInput` via: // -// VolumeAttachmentTypeArray{ VolumeAttachmentTypeArgs{...} } -// +// VolumeAttachmentTypeArray{ VolumeAttachmentTypeArgs{...} } type VolumeAttachmentTypeArrayInput interface { pulumi.Input @@ -1318,8 +1301,7 @@ type VolumeAttachmentListType struct { // VolumeAttachmentListTypeInput is an input type that accepts VolumeAttachmentListTypeArgs and VolumeAttachmentListTypeOutput values. // You can construct a concrete instance of `VolumeAttachmentListTypeInput` via: // -// VolumeAttachmentListTypeArgs{...} -// +// VolumeAttachmentListTypeArgs{...} type VolumeAttachmentListTypeInput interface { pulumi.Input @@ -1397,8 +1379,7 @@ type VolumeAttachmentSource struct { // VolumeAttachmentSourceInput is an input type that accepts VolumeAttachmentSourceArgs and VolumeAttachmentSourceOutput values. // You can construct a concrete instance of `VolumeAttachmentSourceInput` via: // -// VolumeAttachmentSourceArgs{...} -// +// VolumeAttachmentSourceArgs{...} type VolumeAttachmentSourceInput interface { pulumi.Input @@ -1437,12 +1418,11 @@ func (i VolumeAttachmentSourceArgs) ToVolumeAttachmentSourcePtrOutputWithContext // VolumeAttachmentSourcePtrInput is an input type that accepts VolumeAttachmentSourceArgs, VolumeAttachmentSourcePtr and VolumeAttachmentSourcePtrOutput values. // You can construct a concrete instance of `VolumeAttachmentSourcePtrInput` via: // -// VolumeAttachmentSourceArgs{...} +// VolumeAttachmentSourceArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentSourcePtrInput interface { pulumi.Input @@ -1554,8 +1534,7 @@ type VolumeAttachmentSpec struct { // VolumeAttachmentSpecInput is an input type that accepts VolumeAttachmentSpecArgs and VolumeAttachmentSpecOutput values. // You can construct a concrete instance of `VolumeAttachmentSpecInput` via: // -// VolumeAttachmentSpecArgs{...} -// +// VolumeAttachmentSpecArgs{...} type VolumeAttachmentSpecInput interface { pulumi.Input @@ -1596,12 +1575,11 @@ func (i VolumeAttachmentSpecArgs) ToVolumeAttachmentSpecPtrOutputWithContext(ctx // VolumeAttachmentSpecPtrInput is an input type that accepts VolumeAttachmentSpecArgs, VolumeAttachmentSpecPtr and VolumeAttachmentSpecPtrOutput values. // You can construct a concrete instance of `VolumeAttachmentSpecPtrInput` via: // -// VolumeAttachmentSpecArgs{...} +// VolumeAttachmentSpecArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentSpecPtrInput interface { pulumi.Input @@ -1730,8 +1708,7 @@ type VolumeAttachmentStatus struct { // VolumeAttachmentStatusInput is an input type that accepts VolumeAttachmentStatusArgs and VolumeAttachmentStatusOutput values. // You can construct a concrete instance of `VolumeAttachmentStatusInput` via: // -// VolumeAttachmentStatusArgs{...} -// +// VolumeAttachmentStatusArgs{...} type VolumeAttachmentStatusInput interface { pulumi.Input @@ -1774,12 +1751,11 @@ func (i VolumeAttachmentStatusArgs) ToVolumeAttachmentStatusPtrOutputWithContext // VolumeAttachmentStatusPtrInput is an input type that accepts VolumeAttachmentStatusArgs, VolumeAttachmentStatusPtr and VolumeAttachmentStatusPtrOutput values. // You can construct a concrete instance of `VolumeAttachmentStatusPtrInput` via: // -// VolumeAttachmentStatusArgs{...} +// VolumeAttachmentStatusArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentStatusPtrInput interface { pulumi.Input @@ -1919,8 +1895,7 @@ type VolumeError struct { // VolumeErrorInput is an input type that accepts VolumeErrorArgs and VolumeErrorOutput values. // You can construct a concrete instance of `VolumeErrorInput` via: // -// VolumeErrorArgs{...} -// +// VolumeErrorArgs{...} type VolumeErrorInput interface { pulumi.Input @@ -1959,12 +1934,11 @@ func (i VolumeErrorArgs) ToVolumeErrorPtrOutputWithContext(ctx context.Context) // VolumeErrorPtrInput is an input type that accepts VolumeErrorArgs, VolumeErrorPtr and VolumeErrorPtrOutput values. // You can construct a concrete instance of `VolumeErrorPtrInput` via: // -// VolumeErrorArgs{...} +// VolumeErrorArgs{...} // // or: // -// nil -// +// nil type VolumeErrorPtrInput interface { pulumi.Input @@ -2072,8 +2046,7 @@ type VolumeNodeResources struct { // VolumeNodeResourcesInput is an input type that accepts VolumeNodeResourcesArgs and VolumeNodeResourcesOutput values. // You can construct a concrete instance of `VolumeNodeResourcesInput` via: // -// VolumeNodeResourcesArgs{...} -// +// VolumeNodeResourcesArgs{...} type VolumeNodeResourcesInput interface { pulumi.Input @@ -2110,12 +2083,11 @@ func (i VolumeNodeResourcesArgs) ToVolumeNodeResourcesPtrOutputWithContext(ctx c // VolumeNodeResourcesPtrInput is an input type that accepts VolumeNodeResourcesArgs, VolumeNodeResourcesPtr and VolumeNodeResourcesPtrOutput values. // You can construct a concrete instance of `VolumeNodeResourcesPtrInput` via: // -// VolumeNodeResourcesArgs{...} +// VolumeNodeResourcesArgs{...} // // or: // -// nil -// +// nil type VolumeNodeResourcesPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/storage/v1alpha1/pulumiTypes.go b/sdk/go/kubernetes/storage/v1alpha1/pulumiTypes.go index 9409678845..19079f0526 100644 --- a/sdk/go/kubernetes/storage/v1alpha1/pulumiTypes.go +++ b/sdk/go/kubernetes/storage/v1alpha1/pulumiTypes.go @@ -31,8 +31,7 @@ type VolumeAttachmentType struct { // VolumeAttachmentTypeInput is an input type that accepts VolumeAttachmentTypeArgs and VolumeAttachmentTypeOutput values. // You can construct a concrete instance of `VolumeAttachmentTypeInput` via: // -// VolumeAttachmentTypeArgs{...} -// +// VolumeAttachmentTypeArgs{...} type VolumeAttachmentTypeInput interface { pulumi.Input @@ -71,8 +70,7 @@ func (i VolumeAttachmentTypeArgs) ToVolumeAttachmentTypeOutputWithContext(ctx co // VolumeAttachmentTypeArrayInput is an input type that accepts VolumeAttachmentTypeArray and VolumeAttachmentTypeArrayOutput values. // You can construct a concrete instance of `VolumeAttachmentTypeArrayInput` via: // -// VolumeAttachmentTypeArray{ VolumeAttachmentTypeArgs{...} } -// +// VolumeAttachmentTypeArray{ VolumeAttachmentTypeArgs{...} } type VolumeAttachmentTypeArrayInput interface { pulumi.Input @@ -171,8 +169,7 @@ type VolumeAttachmentListType struct { // VolumeAttachmentListTypeInput is an input type that accepts VolumeAttachmentListTypeArgs and VolumeAttachmentListTypeOutput values. // You can construct a concrete instance of `VolumeAttachmentListTypeInput` via: // -// VolumeAttachmentListTypeArgs{...} -// +// VolumeAttachmentListTypeArgs{...} type VolumeAttachmentListTypeInput interface { pulumi.Input @@ -250,8 +247,7 @@ type VolumeAttachmentSource struct { // VolumeAttachmentSourceInput is an input type that accepts VolumeAttachmentSourceArgs and VolumeAttachmentSourceOutput values. // You can construct a concrete instance of `VolumeAttachmentSourceInput` via: // -// VolumeAttachmentSourceArgs{...} -// +// VolumeAttachmentSourceArgs{...} type VolumeAttachmentSourceInput interface { pulumi.Input @@ -290,12 +286,11 @@ func (i VolumeAttachmentSourceArgs) ToVolumeAttachmentSourcePtrOutputWithContext // VolumeAttachmentSourcePtrInput is an input type that accepts VolumeAttachmentSourceArgs, VolumeAttachmentSourcePtr and VolumeAttachmentSourcePtrOutput values. // You can construct a concrete instance of `VolumeAttachmentSourcePtrInput` via: // -// VolumeAttachmentSourceArgs{...} +// VolumeAttachmentSourceArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentSourcePtrInput interface { pulumi.Input @@ -407,8 +402,7 @@ type VolumeAttachmentSpec struct { // VolumeAttachmentSpecInput is an input type that accepts VolumeAttachmentSpecArgs and VolumeAttachmentSpecOutput values. // You can construct a concrete instance of `VolumeAttachmentSpecInput` via: // -// VolumeAttachmentSpecArgs{...} -// +// VolumeAttachmentSpecArgs{...} type VolumeAttachmentSpecInput interface { pulumi.Input @@ -449,12 +443,11 @@ func (i VolumeAttachmentSpecArgs) ToVolumeAttachmentSpecPtrOutputWithContext(ctx // VolumeAttachmentSpecPtrInput is an input type that accepts VolumeAttachmentSpecArgs, VolumeAttachmentSpecPtr and VolumeAttachmentSpecPtrOutput values. // You can construct a concrete instance of `VolumeAttachmentSpecPtrInput` via: // -// VolumeAttachmentSpecArgs{...} +// VolumeAttachmentSpecArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentSpecPtrInput interface { pulumi.Input @@ -583,8 +576,7 @@ type VolumeAttachmentStatus struct { // VolumeAttachmentStatusInput is an input type that accepts VolumeAttachmentStatusArgs and VolumeAttachmentStatusOutput values. // You can construct a concrete instance of `VolumeAttachmentStatusInput` via: // -// VolumeAttachmentStatusArgs{...} -// +// VolumeAttachmentStatusArgs{...} type VolumeAttachmentStatusInput interface { pulumi.Input @@ -627,12 +619,11 @@ func (i VolumeAttachmentStatusArgs) ToVolumeAttachmentStatusPtrOutputWithContext // VolumeAttachmentStatusPtrInput is an input type that accepts VolumeAttachmentStatusArgs, VolumeAttachmentStatusPtr and VolumeAttachmentStatusPtrOutput values. // You can construct a concrete instance of `VolumeAttachmentStatusPtrInput` via: // -// VolumeAttachmentStatusArgs{...} +// VolumeAttachmentStatusArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentStatusPtrInput interface { pulumi.Input @@ -772,8 +763,7 @@ type VolumeError struct { // VolumeErrorInput is an input type that accepts VolumeErrorArgs and VolumeErrorOutput values. // You can construct a concrete instance of `VolumeErrorInput` via: // -// VolumeErrorArgs{...} -// +// VolumeErrorArgs{...} type VolumeErrorInput interface { pulumi.Input @@ -812,12 +802,11 @@ func (i VolumeErrorArgs) ToVolumeErrorPtrOutputWithContext(ctx context.Context) // VolumeErrorPtrInput is an input type that accepts VolumeErrorArgs, VolumeErrorPtr and VolumeErrorPtrOutput values. // You can construct a concrete instance of `VolumeErrorPtrInput` via: // -// VolumeErrorArgs{...} +// VolumeErrorArgs{...} // // or: // -// nil -// +// nil type VolumeErrorPtrInput interface { pulumi.Input diff --git a/sdk/go/kubernetes/storage/v1beta1/pulumiTypes.go b/sdk/go/kubernetes/storage/v1beta1/pulumiTypes.go index d8d0e76b68..f989b00b7d 100644 --- a/sdk/go/kubernetes/storage/v1beta1/pulumiTypes.go +++ b/sdk/go/kubernetes/storage/v1beta1/pulumiTypes.go @@ -27,8 +27,7 @@ type CSIDriverType struct { // CSIDriverTypeInput is an input type that accepts CSIDriverTypeArgs and CSIDriverTypeOutput values. // You can construct a concrete instance of `CSIDriverTypeInput` via: // -// CSIDriverTypeArgs{...} -// +// CSIDriverTypeArgs{...} type CSIDriverTypeInput interface { pulumi.Input @@ -63,8 +62,7 @@ func (i CSIDriverTypeArgs) ToCSIDriverTypeOutputWithContext(ctx context.Context) // CSIDriverTypeArrayInput is an input type that accepts CSIDriverTypeArray and CSIDriverTypeArrayOutput values. // You can construct a concrete instance of `CSIDriverTypeArrayInput` via: // -// CSIDriverTypeArray{ CSIDriverTypeArgs{...} } -// +// CSIDriverTypeArray{ CSIDriverTypeArgs{...} } type CSIDriverTypeArrayInput interface { pulumi.Input @@ -156,8 +154,7 @@ type CSIDriverListType struct { // CSIDriverListTypeInput is an input type that accepts CSIDriverListTypeArgs and CSIDriverListTypeOutput values. // You can construct a concrete instance of `CSIDriverListTypeInput` via: // -// CSIDriverListTypeArgs{...} -// +// CSIDriverListTypeArgs{...} type CSIDriverListTypeInput interface { pulumi.Input @@ -240,8 +237,7 @@ type CSIDriverSpec struct { // CSIDriverSpecInput is an input type that accepts CSIDriverSpecArgs and CSIDriverSpecOutput values. // You can construct a concrete instance of `CSIDriverSpecInput` via: // -// CSIDriverSpecArgs{...} -// +// CSIDriverSpecArgs{...} type CSIDriverSpecInput interface { pulumi.Input @@ -285,12 +281,11 @@ func (i CSIDriverSpecArgs) ToCSIDriverSpecPtrOutputWithContext(ctx context.Conte // CSIDriverSpecPtrInput is an input type that accepts CSIDriverSpecArgs, CSIDriverSpecPtr and CSIDriverSpecPtrOutput values. // You can construct a concrete instance of `CSIDriverSpecPtrInput` via: // -// CSIDriverSpecArgs{...} +// CSIDriverSpecArgs{...} // // or: // -// nil -// +// nil type CSIDriverSpecPtrInput interface { pulumi.Input @@ -425,8 +420,7 @@ type CSINodeType struct { // CSINodeTypeInput is an input type that accepts CSINodeTypeArgs and CSINodeTypeOutput values. // You can construct a concrete instance of `CSINodeTypeInput` via: // -// CSINodeTypeArgs{...} -// +// CSINodeTypeArgs{...} type CSINodeTypeInput interface { pulumi.Input @@ -461,8 +455,7 @@ func (i CSINodeTypeArgs) ToCSINodeTypeOutputWithContext(ctx context.Context) CSI // CSINodeTypeArrayInput is an input type that accepts CSINodeTypeArray and CSINodeTypeArrayOutput values. // You can construct a concrete instance of `CSINodeTypeArrayInput` via: // -// CSINodeTypeArray{ CSINodeTypeArgs{...} } -// +// CSINodeTypeArray{ CSINodeTypeArgs{...} } type CSINodeTypeArrayInput interface { pulumi.Input @@ -554,8 +547,7 @@ type CSINodeDriver struct { // CSINodeDriverInput is an input type that accepts CSINodeDriverArgs and CSINodeDriverOutput values. // You can construct a concrete instance of `CSINodeDriverInput` via: // -// CSINodeDriverArgs{...} -// +// CSINodeDriverArgs{...} type CSINodeDriverInput interface { pulumi.Input @@ -590,8 +582,7 @@ func (i CSINodeDriverArgs) ToCSINodeDriverOutputWithContext(ctx context.Context) // CSINodeDriverArrayInput is an input type that accepts CSINodeDriverArray and CSINodeDriverArrayOutput values. // You can construct a concrete instance of `CSINodeDriverArrayInput` via: // -// CSINodeDriverArray{ CSINodeDriverArgs{...} } -// +// CSINodeDriverArray{ CSINodeDriverArgs{...} } type CSINodeDriverArrayInput interface { pulumi.Input @@ -683,8 +674,7 @@ type CSINodeListType struct { // CSINodeListTypeInput is an input type that accepts CSINodeListTypeArgs and CSINodeListTypeOutput values. // You can construct a concrete instance of `CSINodeListTypeInput` via: // -// CSINodeListTypeArgs{...} -// +// CSINodeListTypeArgs{...} type CSINodeListTypeInput interface { pulumi.Input @@ -760,8 +750,7 @@ type CSINodeSpec struct { // CSINodeSpecInput is an input type that accepts CSINodeSpecArgs and CSINodeSpecOutput values. // You can construct a concrete instance of `CSINodeSpecInput` via: // -// CSINodeSpecArgs{...} -// +// CSINodeSpecArgs{...} type CSINodeSpecInput interface { pulumi.Input @@ -798,12 +787,11 @@ func (i CSINodeSpecArgs) ToCSINodeSpecPtrOutputWithContext(ctx context.Context) // CSINodeSpecPtrInput is an input type that accepts CSINodeSpecArgs, CSINodeSpecPtr and CSINodeSpecPtrOutput values. // You can construct a concrete instance of `CSINodeSpecPtrInput` via: // -// CSINodeSpecArgs{...} +// CSINodeSpecArgs{...} // // or: // -// nil -// +// nil type CSINodeSpecPtrInput interface { pulumi.Input @@ -916,8 +904,7 @@ type StorageClassType struct { // StorageClassTypeInput is an input type that accepts StorageClassTypeArgs and StorageClassTypeOutput values. // You can construct a concrete instance of `StorageClassTypeInput` via: // -// StorageClassTypeArgs{...} -// +// StorageClassTypeArgs{...} type StorageClassTypeInput interface { pulumi.Input @@ -966,8 +953,7 @@ func (i StorageClassTypeArgs) ToStorageClassTypeOutputWithContext(ctx context.Co // StorageClassTypeArrayInput is an input type that accepts StorageClassTypeArray and StorageClassTypeArrayOutput values. // You can construct a concrete instance of `StorageClassTypeArrayInput` via: // -// StorageClassTypeArray{ StorageClassTypeArgs{...} } -// +// StorageClassTypeArray{ StorageClassTypeArgs{...} } type StorageClassTypeArrayInput interface { pulumi.Input @@ -1091,8 +1077,7 @@ type StorageClassListType struct { // StorageClassListTypeInput is an input type that accepts StorageClassListTypeArgs and StorageClassListTypeOutput values. // You can construct a concrete instance of `StorageClassListTypeInput` via: // -// StorageClassListTypeArgs{...} -// +// StorageClassListTypeArgs{...} type StorageClassListTypeInput interface { pulumi.Input @@ -1178,8 +1163,7 @@ type VolumeAttachmentType struct { // VolumeAttachmentTypeInput is an input type that accepts VolumeAttachmentTypeArgs and VolumeAttachmentTypeOutput values. // You can construct a concrete instance of `VolumeAttachmentTypeInput` via: // -// VolumeAttachmentTypeArgs{...} -// +// VolumeAttachmentTypeArgs{...} type VolumeAttachmentTypeInput interface { pulumi.Input @@ -1218,8 +1202,7 @@ func (i VolumeAttachmentTypeArgs) ToVolumeAttachmentTypeOutputWithContext(ctx co // VolumeAttachmentTypeArrayInput is an input type that accepts VolumeAttachmentTypeArray and VolumeAttachmentTypeArrayOutput values. // You can construct a concrete instance of `VolumeAttachmentTypeArrayInput` via: // -// VolumeAttachmentTypeArray{ VolumeAttachmentTypeArgs{...} } -// +// VolumeAttachmentTypeArray{ VolumeAttachmentTypeArgs{...} } type VolumeAttachmentTypeArrayInput interface { pulumi.Input @@ -1318,8 +1301,7 @@ type VolumeAttachmentListType struct { // VolumeAttachmentListTypeInput is an input type that accepts VolumeAttachmentListTypeArgs and VolumeAttachmentListTypeOutput values. // You can construct a concrete instance of `VolumeAttachmentListTypeInput` via: // -// VolumeAttachmentListTypeArgs{...} -// +// VolumeAttachmentListTypeArgs{...} type VolumeAttachmentListTypeInput interface { pulumi.Input @@ -1397,8 +1379,7 @@ type VolumeAttachmentSource struct { // VolumeAttachmentSourceInput is an input type that accepts VolumeAttachmentSourceArgs and VolumeAttachmentSourceOutput values. // You can construct a concrete instance of `VolumeAttachmentSourceInput` via: // -// VolumeAttachmentSourceArgs{...} -// +// VolumeAttachmentSourceArgs{...} type VolumeAttachmentSourceInput interface { pulumi.Input @@ -1437,12 +1418,11 @@ func (i VolumeAttachmentSourceArgs) ToVolumeAttachmentSourcePtrOutputWithContext // VolumeAttachmentSourcePtrInput is an input type that accepts VolumeAttachmentSourceArgs, VolumeAttachmentSourcePtr and VolumeAttachmentSourcePtrOutput values. // You can construct a concrete instance of `VolumeAttachmentSourcePtrInput` via: // -// VolumeAttachmentSourceArgs{...} +// VolumeAttachmentSourceArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentSourcePtrInput interface { pulumi.Input @@ -1554,8 +1534,7 @@ type VolumeAttachmentSpec struct { // VolumeAttachmentSpecInput is an input type that accepts VolumeAttachmentSpecArgs and VolumeAttachmentSpecOutput values. // You can construct a concrete instance of `VolumeAttachmentSpecInput` via: // -// VolumeAttachmentSpecArgs{...} -// +// VolumeAttachmentSpecArgs{...} type VolumeAttachmentSpecInput interface { pulumi.Input @@ -1596,12 +1575,11 @@ func (i VolumeAttachmentSpecArgs) ToVolumeAttachmentSpecPtrOutputWithContext(ctx // VolumeAttachmentSpecPtrInput is an input type that accepts VolumeAttachmentSpecArgs, VolumeAttachmentSpecPtr and VolumeAttachmentSpecPtrOutput values. // You can construct a concrete instance of `VolumeAttachmentSpecPtrInput` via: // -// VolumeAttachmentSpecArgs{...} +// VolumeAttachmentSpecArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentSpecPtrInput interface { pulumi.Input @@ -1730,8 +1708,7 @@ type VolumeAttachmentStatus struct { // VolumeAttachmentStatusInput is an input type that accepts VolumeAttachmentStatusArgs and VolumeAttachmentStatusOutput values. // You can construct a concrete instance of `VolumeAttachmentStatusInput` via: // -// VolumeAttachmentStatusArgs{...} -// +// VolumeAttachmentStatusArgs{...} type VolumeAttachmentStatusInput interface { pulumi.Input @@ -1774,12 +1751,11 @@ func (i VolumeAttachmentStatusArgs) ToVolumeAttachmentStatusPtrOutputWithContext // VolumeAttachmentStatusPtrInput is an input type that accepts VolumeAttachmentStatusArgs, VolumeAttachmentStatusPtr and VolumeAttachmentStatusPtrOutput values. // You can construct a concrete instance of `VolumeAttachmentStatusPtrInput` via: // -// VolumeAttachmentStatusArgs{...} +// VolumeAttachmentStatusArgs{...} // // or: // -// nil -// +// nil type VolumeAttachmentStatusPtrInput interface { pulumi.Input @@ -1919,8 +1895,7 @@ type VolumeError struct { // VolumeErrorInput is an input type that accepts VolumeErrorArgs and VolumeErrorOutput values. // You can construct a concrete instance of `VolumeErrorInput` via: // -// VolumeErrorArgs{...} -// +// VolumeErrorArgs{...} type VolumeErrorInput interface { pulumi.Input @@ -1959,12 +1934,11 @@ func (i VolumeErrorArgs) ToVolumeErrorPtrOutputWithContext(ctx context.Context) // VolumeErrorPtrInput is an input type that accepts VolumeErrorArgs, VolumeErrorPtr and VolumeErrorPtrOutput values. // You can construct a concrete instance of `VolumeErrorPtrInput` via: // -// VolumeErrorArgs{...} +// VolumeErrorArgs{...} // // or: // -// nil -// +// nil type VolumeErrorPtrInput interface { pulumi.Input @@ -2072,8 +2046,7 @@ type VolumeNodeResources struct { // VolumeNodeResourcesInput is an input type that accepts VolumeNodeResourcesArgs and VolumeNodeResourcesOutput values. // You can construct a concrete instance of `VolumeNodeResourcesInput` via: // -// VolumeNodeResourcesArgs{...} -// +// VolumeNodeResourcesArgs{...} type VolumeNodeResourcesInput interface { pulumi.Input @@ -2110,12 +2083,11 @@ func (i VolumeNodeResourcesArgs) ToVolumeNodeResourcesPtrOutputWithContext(ctx c // VolumeNodeResourcesPtrInput is an input type that accepts VolumeNodeResourcesArgs, VolumeNodeResourcesPtr and VolumeNodeResourcesPtrOutput values. // You can construct a concrete instance of `VolumeNodeResourcesPtrInput` via: // -// VolumeNodeResourcesArgs{...} +// VolumeNodeResourcesArgs{...} // // or: // -// nil -// +// nil type VolumeNodeResourcesPtrInput interface { pulumi.Input diff --git a/sdk/nodejs/apps/v1/StatefulSet.ts b/sdk/nodejs/apps/v1/StatefulSet.ts index 9f5bf4a7ef..1fb8c39c3b 100644 --- a/sdk/nodejs/apps/v1/StatefulSet.ts +++ b/sdk/nodejs/apps/v1/StatefulSet.ts @@ -10,7 +10,7 @@ import * as utilities from "../../utilities"; * StatefulSet represents a set of pods with consistent identities. Identities are defined as: * - Network: A single stable DNS and hostname. * - Storage: As many VolumeClaims as requested. - * The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * The StatefulSet guarantees that a given network identity will always map to the same storage identity. * * This resource waits until its status is ready before registering success * for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/nodejs/apps/v1beta1/StatefulSet.ts b/sdk/nodejs/apps/v1beta1/StatefulSet.ts index 4a99c51132..58fa55eebf 100644 --- a/sdk/nodejs/apps/v1beta1/StatefulSet.ts +++ b/sdk/nodejs/apps/v1beta1/StatefulSet.ts @@ -10,7 +10,7 @@ import * as utilities from "../../utilities"; * StatefulSet represents a set of pods with consistent identities. Identities are defined as: * - Network: A single stable DNS and hostname. * - Storage: As many VolumeClaims as requested. - * The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * The StatefulSet guarantees that a given network identity will always map to the same storage identity. * * This resource waits until its status is ready before registering success * for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/nodejs/apps/v1beta2/StatefulSet.ts b/sdk/nodejs/apps/v1beta2/StatefulSet.ts index c4ad60b2ed..9e7ca4d4ce 100644 --- a/sdk/nodejs/apps/v1beta2/StatefulSet.ts +++ b/sdk/nodejs/apps/v1beta2/StatefulSet.ts @@ -10,7 +10,7 @@ import * as utilities from "../../utilities"; * StatefulSet represents a set of pods with consistent identities. Identities are defined as: * - Network: A single stable DNS and hostname. * - Storage: As many VolumeClaims as requested. - * The StatefulSet guarantees that a given network identity will always map to the same storage identity. + * The StatefulSet guarantees that a given network identity will always map to the same storage identity. * * This resource waits until its status is ready before registering success * for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/nodejs/batch/v1/Job.ts b/sdk/nodejs/batch/v1/Job.ts index 1b41f24f82..21bec288df 100644 --- a/sdk/nodejs/batch/v1/Job.ts +++ b/sdk/nodejs/batch/v1/Job.ts @@ -18,7 +18,7 @@ import * as utilities from "../../utilities"; * 2. The Job's '.status.conditions' has a status of type 'Complete', and a 'status' set * to 'True'. * 3. The Job's '.status.conditions' do not have a status of type 'Failed', with a - * 'status' set to 'True'. If this condition is set, we should fail the Job immediately. + * 'status' set to 'True'. If this condition is set, we should fail the Job immediately. * * If the Job has not reached a Ready state after 10 minutes, it will * time out and mark the resource update as Failed. You can override the default timeout value diff --git a/sdk/nodejs/core/v1/Pod.ts b/sdk/nodejs/core/v1/Pod.ts index add8b618e2..db983fe4ce 100644 --- a/sdk/nodejs/core/v1/Pod.ts +++ b/sdk/nodejs/core/v1/Pod.ts @@ -18,7 +18,7 @@ import * as utilities from "../../utilities"; * 2. The Pod is initialized ("Initialized" '.status.condition' is true). * 3. The Pod is ready ("Ready" '.status.condition' is true) and the '.status.phase' is * set to "Running". - * Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). + * Or (for Jobs): The Pod succeeded ('.status.phase' set to "Succeeded"). * * If the Pod has not reached a Ready state after 10 minutes, it will * time out and mark the resource update as Failed. You can override the default timeout value diff --git a/sdk/nodejs/core/v1/Secret.ts b/sdk/nodejs/core/v1/Secret.ts index e92b49e9cb..c8f70dc7ff 100644 --- a/sdk/nodejs/core/v1/Secret.ts +++ b/sdk/nodejs/core/v1/Secret.ts @@ -10,7 +10,7 @@ import * as utilities from "../../utilities"; * Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes. * * Note: While Pulumi automatically encrypts the 'data' and 'stringData' - * fields, this encryption only applies to Pulumi's context, including the state file, + * fields, this encryption only applies to Pulumi's context, including the state file, * the Service, the CLI, etc. Kubernetes does not encrypt Secret resources by default, * and the contents are visible to users with access to the Secret in Kubernetes using * tools like 'kubectl'. diff --git a/sdk/nodejs/core/v1/Service.ts b/sdk/nodejs/core/v1/Service.ts index 75f2cbeb5a..7570245791 100644 --- a/sdk/nodejs/core/v1/Service.ts +++ b/sdk/nodejs/core/v1/Service.ts @@ -21,7 +21,7 @@ import * as utilities from "../../utilities"; * an "empty headless" Service [1] or a Service with '.spec.type: ExternalName'). * 4. External IP address is allocated (if Service has '.spec.type: LoadBalancer'). * - * Known limitations: + * Known limitations: * Services targeting ReplicaSets (and, by extension, Deployments, * StatefulSets, etc.) with '.spec.replicas' set to 0 are not handled, and will time * out. To work around this limitation, set 'pulumi.com/skipAwait: "true"' on diff --git a/sdk/nodejs/extensions/v1beta1/Ingress.ts b/sdk/nodejs/extensions/v1beta1/Ingress.ts index 8484112d7d..50ab736926 100644 --- a/sdk/nodejs/extensions/v1beta1/Ingress.ts +++ b/sdk/nodejs/extensions/v1beta1/Ingress.ts @@ -7,7 +7,7 @@ import * as outputs from "../../types/output"; import * as utilities from "../../utilities"; /** - * Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. + * Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. * * This resource waits until its status is ready before registering success * for create/update, and populating output properties from the current state of the resource. diff --git a/sdk/nodejs/provider.ts b/sdk/nodejs/provider.ts index 5c09cc2f97..ea003184d6 100644 --- a/sdk/nodejs/provider.ts +++ b/sdk/nodejs/provider.ts @@ -34,11 +34,11 @@ export class Provider extends pulumi.ProviderResource { let inputs: pulumi.Inputs = {}; inputs["cluster"] = args ? args.cluster : undefined; inputs["context"] = args ? args.context : undefined; - inputs["enableDryRun"] = pulumi.output(args ? args.enableDryRun : undefined).apply(JSON.stringify); - inputs["kubeconfig"] = args ? args.kubeconfig : undefined; + inputs["enableDryRun"] = pulumi.output(((args ? args.enableDryRun : undefined) || utilities.getEnvBoolean("PULUMI_K8S_ENABLE_DRY_RUN")) ?? utilities.getEnvBoolean("PULUMI_K8S_ENABLE_DRY_RUN")).apply(JSON.stringify); + inputs["kubeconfig"] = ((args ? args.kubeconfig : undefined) || utilities.getEnv("KUBECONFIG")) ?? utilities.getEnv("KUBECONFIG"); inputs["namespace"] = args ? args.namespace : undefined; inputs["renderYamlToDirectory"] = args ? args.renderYamlToDirectory : undefined; - inputs["suppressDeprecationWarnings"] = pulumi.output(args ? args.suppressDeprecationWarnings : undefined).apply(JSON.stringify); + inputs["suppressDeprecationWarnings"] = pulumi.output(((args ? args.suppressDeprecationWarnings : undefined) || utilities.getEnvBoolean("PULUMI_K8S_SUPPRESS_DEPRECATION_WARNINGS")) ?? utilities.getEnvBoolean("PULUMI_K8S_SUPPRESS_DEPRECATION_WARNINGS")).apply(JSON.stringify); if (!opts) { opts = {} } diff --git a/tests/go.mod b/tests/go.mod index 6d2e386d6f..7ec1757ab1 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -11,7 +11,7 @@ replace ( require ( github.com/pulumi/pulumi-kubernetes/provider/v2 v2.0.0-00010101000000-000000000000 github.com/pulumi/pulumi-kubernetes/sdk/v2 v2.0.0 - github.com/pulumi/pulumi/pkg/v2 v2.3.1-0.20200607162109-9754465b04db + github.com/pulumi/pulumi/pkg/v2 v2.4.1-0.20200622153820-282c95ee402d github.com/pulumi/pulumi/sdk/v2 v2.3.0 - github.com/stretchr/testify v1.5.1 + github.com/stretchr/testify v1.6.1 ) diff --git a/tests/go.sum b/tests/go.sum index 7798e48f3e..a2cddb10e5 100644 --- a/tests/go.sum +++ b/tests/go.sum @@ -474,6 +474,7 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/pelletier/go-buffruneio v0.2.0/go.mod h1:JkE26KsDizTr40EUHkXVtNPvgGtbSNq5BcowyYOWdKo= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= +github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386/go.mod h1:MRxHTJrf9FhdfNQ8Hdeh9gmHevC9RJE/fu8M3JIGjoE= github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -497,8 +498,8 @@ github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= -github.com/pulumi/pulumi/pkg/v2 v2.3.1-0.20200607162109-9754465b04db h1:5HrO1GNA53QEp+yN1UCX7BUsJD2I5/k1u2KLO4hOxOA= -github.com/pulumi/pulumi/pkg/v2 v2.3.1-0.20200607162109-9754465b04db/go.mod h1:aqo0wBboEEdy+T5EYKUB6YnzbL80VPjgJPwjttuHqT0= +github.com/pulumi/pulumi/pkg/v2 v2.4.1-0.20200622153820-282c95ee402d h1:a7+mvsLerdMp/tz1MKYYsAKTtjWPGz9sNzD+UscQRuU= +github.com/pulumi/pulumi/pkg/v2 v2.4.1-0.20200622153820-282c95ee402d/go.mod h1:zfUm4/GH2dVRlHZ3Yeb9bRweCQM7icVBdplu6MUDRrQ= github.com/pulumi/pulumi/sdk/v2 v2.0.0 h1:3VMXbEo3bqeaU+YDt8ufVBLD0WhLYE3tG3t/nIZ3Iac= github.com/pulumi/pulumi/sdk/v2 v2.0.0/go.mod h1:W7k1UDYerc5o97mHnlHHp5iQZKEby+oQrQefWt+2RF4= github.com/pulumi/pulumi/sdk/v2 v2.2.2-0.20200514204320-e677c7d6dca3 h1:uCVadlcmLexcm6WHJv1EFB3E9PKqWQt/+zVuNC+WpjM= @@ -563,6 +564,8 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/texttheater/golang-levenshtein v0.0.0-20191208221605-eb6844b05fc6 h1:9VTskZOIRf2vKF3UL8TuWElry5pgUpV1tFSe/e/0m/E= github.com/texttheater/golang-levenshtein v0.0.0-20191208221605-eb6844b05fc6/go.mod h1:XDKHRm5ThF8YJjx001LtgelzsoaEcvnA7lVWz9EeX3g= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= @@ -854,8 +857,8 @@ google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8 google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.28.0 h1:bO/TA4OxCOummhSf10siHuG7vJOiwh7SpRpFZDkOgl4= google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -gopkg.in/AlecAivazis/survey.v1 v1.8.8 h1:5UtTowJZTz1j7NxVzDGKTz6Lm9IWm8DDF6b7a2wq9VY= -gopkg.in/AlecAivazis/survey.v1 v1.8.8/go.mod h1:CaHjv79TCgAvXMSFJSVgonHXYWxnhzI3eoHtnX5UgUo= +gopkg.in/AlecAivazis/survey.v1 v1.8.9-0.20200217094205-6773bdf39b7f h1:AQkMzsSzHWrgZWqGRpuRaRPDmyNibcXlpGcnQJ7HxZw= +gopkg.in/AlecAivazis/survey.v1 v1.8.9-0.20200217094205-6773bdf39b7f/go.mod h1:CaHjv79TCgAvXMSFJSVgonHXYWxnhzI3eoHtnX5UgUo= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d/go.mod h1:cuepJuh7vyXfUyUwEgHQXw849cJrilpS5NeIjOWESAw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -888,6 +891,8 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=