Skip to content

Commit

Permalink
Upgrade terraform-provider-fastly to v4.3.3 (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
aq17 authored May 15, 2023
1 parent 38587be commit 41e6433
Show file tree
Hide file tree
Showing 33 changed files with 292 additions and 135 deletions.
1 change: 0 additions & 1 deletion examples/service/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "service",
"version": "0.0.1",
"main": "bin/index.js",
"typings": "bin/index.d.ts",
"scripts": {
"build": "tsc"
Expand Down
18 changes: 8 additions & 10 deletions provider/cmd/pulumi-resource-fastly/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -683,8 +683,7 @@
"type": "object",
"required": [
"bucketName",
"name",
"projectId"
"name"
]
},
"fastly:index/ServiceComputeLoggingGooglepubsub:ServiceComputeLoggingGooglepubsub": {
Expand Down Expand Up @@ -2478,8 +2477,7 @@
"type": "object",
"required": [
"bucketName",
"name",
"projectId"
"name"
]
},
"fastly:index/ServiceVclLoggingGooglepubsub:ServiceVclLoggingGooglepubsub": {
Expand Down Expand Up @@ -6973,7 +6971,7 @@
},
"forceDestroy": {
"type": "boolean",
"description": "Always delete subscription, even when active domains are present. Defaults to false.\n"
"description": "Always delete subscription, even when active domains are present. Defaults to false.\n\n!\u003e **Warning:** by default, the Fastly API protects you from disabling production traffic by preventing updating or deleting subscriptions with active domains. The use of `force_update` and `force_destroy` will override these protections. Take extra care using these options if you are handling production traffic.\n"
},
"forceUpdate": {
"type": "boolean",
Expand Down Expand Up @@ -7046,7 +7044,7 @@
},
"forceDestroy": {
"type": "boolean",
"description": "Always delete subscription, even when active domains are present. Defaults to false.\n"
"description": "Always delete subscription, even when active domains are present. Defaults to false.\n\n!\u003e **Warning:** by default, the Fastly API protects you from disabling production traffic by preventing updating or deleting subscriptions with active domains. The use of `force_update` and `force_destroy` will override these protections. Take extra care using these options if you are handling production traffic.\n"
},
"forceUpdate": {
"type": "boolean",
Expand Down Expand Up @@ -7090,7 +7088,7 @@
},
"forceDestroy": {
"type": "boolean",
"description": "Always delete subscription, even when active domains are present. Defaults to false.\n"
"description": "Always delete subscription, even when active domains are present. Defaults to false.\n\n!\u003e **Warning:** by default, the Fastly API protects you from disabling production traffic by preventing updating or deleting subscriptions with active domains. The use of `force_update` and `force_destroy` will override these protections. Take extra care using these options if you are handling production traffic.\n"
},
"forceUpdate": {
"type": "boolean",
Expand Down Expand Up @@ -7422,7 +7420,7 @@
}
},
"fastly:index/getTlsActivationIds:getTlsActivationIds": {
"description": "Use this data source to get the list of TLS Activation identifiers in Fastly.\n",
"description": "Use this data source to get the list of TLS Activation identifiers in Fastly.\n\n{{% examples %}}\n## Example Usage\n{{% example %}}\n\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as fastly from \"@pulumi/fastly\";\n\nconst exampleTlsActivationIds = fastly.getTlsActivationIds({\n certificateId: fastly_tls_certificate.example.id,\n});\nconst exampleTlsActivation = exampleTlsActivationIds.then(exampleTlsActivationIds =\u003e .map(([, ]) =\u003e (fastly.getTlsActivation({\n id: __value,\n}))));\nexport const activationDomains = exampleTlsActivation.map(a =\u003e (a.domain));\n```\n```python\nimport pulumi\nimport pulumi_fastly as fastly\n\nexample_tls_activation_ids = fastly.get_tls_activation_ids(certificate_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))\nexample_tls_activation = [fastly.get_tls_activation(id=__value) for __key, __value in example_tls_activation_ids.ids]\npulumi.export(\"activationDomains\", [a.domain for a in example_tls_activation])\n```\n{{% /example %}}\n{{% /examples %}}",
"inputs": {
"description": "A collection of arguments for invoking getTlsActivationIds.\n",
"properties": {
Expand Down Expand Up @@ -7931,7 +7929,7 @@
}
},
"fastly:index/getTlsPrivateKeyIds:getTlsPrivateKeyIds": {
"description": "Use this data source to get the list of TLS private key identifiers in Fastly.\n\n{{% examples %}}\n## Example Usage\n{{% example %}}\n\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as fastly from \"@pulumi/fastly\";\n\nconst demo = fastly.getTlsPrivateKeyIds({});\nconst example = fastly.getTlsPrivateKey({\n id: fastly_tls_private_key_ids.demo.ids[0],\n});\n```\n```python\nimport pulumi\nimport pulumi_fastly as fastly\n\ndemo = fastly.get_tls_private_key_ids()\nexample = fastly.get_tls_private_key(id=fastly_tls_private_key_ids[\"demo\"][\"ids\"])\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Fastly = Pulumi.Fastly;\n\nreturn await Deployment.RunAsync(() =\u003e \n{\n var demo = Fastly.GetTlsPrivateKeyIds.Invoke();\n\n var example = Fastly.GetTlsPrivateKey.Invoke(new()\n {\n Id = fastly_tls_private_key_ids.Demo.Ids[0],\n });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-fastly/sdk/v7/go/fastly\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t_, err := fastly.GetTlsPrivateKeyIds(ctx, nil, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t_, err = fastly.LookupTlsPrivateKey(ctx, \u0026fastly.LookupTlsPrivateKeyArgs{\n\t\t\tId: pulumi.StringRef(fastly_tls_private_key_ids.Demo.Ids[0]),\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.fastly.FastlyFunctions;\nimport com.pulumi.fastly.inputs.GetTlsPrivateKeyArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n public static void main(String[] args) {\n Pulumi.run(App::stack);\n }\n\n public static void stack(Context ctx) {\n final var demo = FastlyFunctions.getTlsPrivateKeyIds();\n\n final var example = FastlyFunctions.getTlsPrivateKey(GetTlsPrivateKeyArgs.builder()\n .id(fastly_tls_private_key_ids.demo().ids()[0])\n .build());\n\n }\n}\n```\n```yaml\nvariables:\n demo:\n fn::invoke:\n Function: fastly:getTlsPrivateKeyIds\n Arguments: {}\n example:\n fn::invoke:\n Function: fastly:getTlsPrivateKey\n Arguments:\n id: ${fastly_tls_private_key_ids.demo.ids[0]}\n```\n{{% /example %}}\n{{% /examples %}}",
"description": "Use this data source to get the list of TLS private key identifiers in Fastly.\n\n{{% examples %}}\n## Example Usage\n{{% example %}}\n\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as fastly from \"@pulumi/fastly\";\n\nconst demo = fastly.getTlsPrivateKeyIds({});\nconst example = fastly.getTlsPrivateKey({\n id: fastly_tls_private_key_ids.demo.ids[0],\n});\n```\n```python\nimport pulumi\nimport pulumi_fastly as fastly\n\ndemo = fastly.get_tls_private_key_ids()\nexample = fastly.get_tls_private_key(id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))\n```\n```csharp\nusing System.Collections.Generic;\nusing System.Linq;\nusing Pulumi;\nusing Fastly = Pulumi.Fastly;\n\nreturn await Deployment.RunAsync(() =\u003e \n{\n var demo = Fastly.GetTlsPrivateKeyIds.Invoke();\n\n var example = Fastly.GetTlsPrivateKey.Invoke(new()\n {\n Id = fastly_tls_private_key_ids.Demo.Ids[0],\n });\n\n});\n```\n```go\npackage main\n\nimport (\n\t\"github.com/pulumi/pulumi-fastly/sdk/v7/go/fastly\"\n\t\"github.com/pulumi/pulumi/sdk/v3/go/pulumi\"\n)\n\nfunc main() {\n\tpulumi.Run(func(ctx *pulumi.Context) error {\n\t\t_, err := fastly.GetTlsPrivateKeyIds(ctx, nil, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t_, err = fastly.LookupTlsPrivateKey(ctx, \u0026fastly.LookupTlsPrivateKeyArgs{\n\t\t\tId: pulumi.StringRef(fastly_tls_private_key_ids.Demo.Ids[0]),\n\t\t}, nil)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n}\n```\n```java\npackage generated_program;\n\nimport com.pulumi.Context;\nimport com.pulumi.Pulumi;\nimport com.pulumi.core.Output;\nimport com.pulumi.fastly.FastlyFunctions;\nimport com.pulumi.fastly.inputs.GetTlsPrivateKeyArgs;\nimport java.util.List;\nimport java.util.ArrayList;\nimport java.util.Map;\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\n\npublic class App {\n public static void main(String[] args) {\n Pulumi.run(App::stack);\n }\n\n public static void stack(Context ctx) {\n final var demo = FastlyFunctions.getTlsPrivateKeyIds();\n\n final var example = FastlyFunctions.getTlsPrivateKey(GetTlsPrivateKeyArgs.builder()\n .id(fastly_tls_private_key_ids.demo().ids()[0])\n .build());\n\n }\n}\n```\n```yaml\nvariables:\n demo:\n fn::invoke:\n Function: fastly:getTlsPrivateKeyIds\n Arguments: {}\n example:\n fn::invoke:\n Function: fastly:getTlsPrivateKey\n Arguments:\n id: ${fastly_tls_private_key_ids.demo.ids[0]}\n```\n{{% /example %}}\n{{% /examples %}}",
"outputs": {
"description": "A collection of values returned by getTlsPrivateKeyIds.\n",
"properties": {
Expand Down Expand Up @@ -8034,7 +8032,7 @@
}
},
"fastly:index/getTlsSubscriptionIds:getTlsSubscriptionIds": {
"description": "Use this data source to get the list of IDs of TLS Subscriptions in Fastly.\n",
"description": "Use this data source to get the list of IDs of TLS Subscriptions in Fastly.\n\n{{% examples %}}\n## Example Usage\n{{% example %}}\n\n```typescript\nimport * as pulumi from \"@pulumi/pulumi\";\nimport * as fastly from \"@pulumi/fastly\";\n\nconst exampleTlsSubscriptionIds = fastly.getTlsSubscriptionIds({});\nconst exampleTlsSubscription = exampleTlsSubscriptionIds.then(exampleTlsSubscriptionIds =\u003e .map(([, ]) =\u003e (fastly.getTlsSubscription({\n id: __value,\n}))));\nexport const subscriptionDomains = exampleTlsSubscription.map(a =\u003e (a.certificateAuthority));\n```\n```python\nimport pulumi\nimport pulumi_fastly as fastly\n\nexample_tls_subscription_ids = fastly.get_tls_subscription_ids()\nexample_tls_subscription = [fastly.get_tls_subscription(id=__value) for __key, __value in example_tls_subscription_ids.ids]\npulumi.export(\"subscriptionDomains\", [a.certificate_authority for a in example_tls_subscription])\n```\n{{% /example %}}\n{{% /examples %}}",
"outputs": {
"description": "A collection of values returned by getTlsSubscriptionIds.\n",
"properties": {
Expand Down
12 changes: 6 additions & 6 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ go 1.19

require (
github.com/fastly/terraform-provider-fastly v0.0.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.46.0
github.com/pulumi/pulumi/sdk/v3 v3.64.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.47.2
github.com/pulumi/pulumi/sdk/v3 v3.67.0
)

require (
Expand Down Expand Up @@ -177,7 +177,7 @@ require (
github.com/pulumi/pulumi-java/pkg v0.9.2 // indirect
github.com/pulumi/pulumi-terraform-bridge/x/muxer v0.0.3 // indirect
github.com/pulumi/pulumi-yaml v1.1.1 // indirect
github.com/pulumi/pulumi/pkg/v3 v3.64.0 // indirect
github.com/pulumi/pulumi/pkg/v3 v3.67.0 // indirect
github.com/pulumi/schema-tools v0.1.2 // indirect
github.com/pulumi/terraform-diff-reader v0.0.0-20201211191010-ad4715e9285e // indirect
github.com/rivo/uniseg v0.2.0 // indirect
Expand Down Expand Up @@ -216,11 +216,11 @@ require (
gocloud.dev/secrets/hashivault v0.27.0 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/oauth2 v0.4.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/term v0.7.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
Expand Down
24 changes: 12 additions & 12 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1670,16 +1670,16 @@ github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40T
github.com/pulumi/pulumi-java/pkg v0.9.2 h1:fpBwf1NHf3j5YuigOWsXPvJCAFivEp1D6aOlYIrSbr0=
github.com/pulumi/pulumi-java/pkg v0.9.2/go.mod h1:+5V4jggi3063hksi28zYvLm42UWVg3VqpR6qGZraIdM=
github.com/pulumi/pulumi-terraform-bridge/testing v0.0.1 h1:SCg1gjfY9N4yn8U8peIUYATifjoDABkyR7H9lmefsfc=
github.com/pulumi/pulumi-terraform-bridge/v3 v3.46.0 h1:tRZan7g+nDH+V8QrlRYCzKJsDsNLnoOcQGuCZzllWDw=
github.com/pulumi/pulumi-terraform-bridge/v3 v3.46.0/go.mod h1:wh/eLoqGimL30Dueh51O2wOYKIt6ejzO5GDdDA0KVds=
github.com/pulumi/pulumi-terraform-bridge/v3 v3.47.2 h1:uNrHr+VQJ5e8GzLt8c3iBG32KHjG3Z2YBvtTncsy39U=
github.com/pulumi/pulumi-terraform-bridge/v3 v3.47.2/go.mod h1:bXuzPzwY73LZH5+EgdSlHTV8ed09p51ztpca2G13fLI=
github.com/pulumi/pulumi-terraform-bridge/x/muxer v0.0.3 h1:1SmRVwRnrplcdBVVgoKYL8xqW8dCeiQPSwpGkx4ga6U=
github.com/pulumi/pulumi-terraform-bridge/x/muxer v0.0.3/go.mod h1:n0TS1WsPjOfto6hyDZbXfNZQuLli2X9iDWt2nzmQJsg=
github.com/pulumi/pulumi-yaml v1.1.1 h1:8pyBNIU8+ym0wYpjhsCqN+cutygfK1XbhY2YEeNfyXY=
github.com/pulumi/pulumi-yaml v1.1.1/go.mod h1:GhpdS6rFpwqvUtKdA+fQy8P28iNvncng39IXh5q68vE=
github.com/pulumi/pulumi/pkg/v3 v3.64.0 h1:QHnxdp4Xf0jm2giOZGx5oyCEp2MNfABE1Sm1CmYilv0=
github.com/pulumi/pulumi/pkg/v3 v3.64.0/go.mod h1:FR1XZl2uEBDqYGg53AIfACXZYKS5COgoWMleb0YfD7k=
github.com/pulumi/pulumi/sdk/v3 v3.64.0 h1:38y/6FLYZihLf2dnjw2L9g46h/6p+jOKKlmEYjL81+c=
github.com/pulumi/pulumi/sdk/v3 v3.64.0/go.mod h1:Pb5H3OaRZg0n4TRIfY0pagR/NBIEvjp3lZe2Spr6Umc=
github.com/pulumi/pulumi/pkg/v3 v3.67.0 h1:lazKzFT+aHd6I32TnBr66TKnMlVRgcc5YaY55MVcoR8=
github.com/pulumi/pulumi/pkg/v3 v3.67.0/go.mod h1:vyXT0rEsMTla3MSR4JIdXEoff9KOqwtuwsrU7faDa7k=
github.com/pulumi/pulumi/sdk/v3 v3.67.0 h1:ED5eeIlLIaZdn5+wMoNS30ihVJJeA/c9hgTsOREVtpE=
github.com/pulumi/pulumi/sdk/v3 v3.67.0/go.mod h1:RbSUT1ZWIbOtMk6vjNwBbRGIS9mlcI78sY56KDZyAd8=
github.com/pulumi/schema-tools v0.1.2 h1:Fd9xvUjgck4NA+7/jSk7InqCUT4Kj940+EcnbQKpfZo=
github.com/pulumi/schema-tools v0.1.2/go.mod h1:62lgj52Tzq11eqWTIaKd+EVyYAu5dEcDJxMhTjvMO/k=
github.com/pulumi/terraform-diff-reader v0.0.0-20201211191010-ad4715e9285e h1:Dik4Qe/+xguB8JagPyXNlbOnRiXGmq/PSPQTGunYnTk=
Expand Down Expand Up @@ -2187,8 +2187,8 @@ golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY=
golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws=
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM=
golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns=
golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M=
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
Expand Down Expand Up @@ -2393,8 +2393,8 @@ golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU=
golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
Expand All @@ -2406,8 +2406,8 @@ golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc=
golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ=
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U=
golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ=
golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY=
golang.org/x/term v0.8.0 h1:n5xxQn2i3PC0yLAbjTpNT85q/Kgzcr2gIoX9OrJUols=
golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo=
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/ServiceComputeLoggingGcArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ public sealed class ServiceComputeLoggingGcArgs : global::Pulumi.ResourceArgs
/// <summary>
/// The ID of your Google Cloud Platform project
/// </summary>
[Input("projectId", required: true)]
public Input<string> ProjectId { get; set; } = null!;
[Input("projectId")]
public Input<string>? ProjectId { get; set; }

[Input("secretKey")]
private Input<string>? _secretKey;
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/ServiceComputeLoggingGcGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ public sealed class ServiceComputeLoggingGcGetArgs : global::Pulumi.ResourceArgs
/// <summary>
/// The ID of your Google Cloud Platform project
/// </summary>
[Input("projectId", required: true)]
public Input<string> ProjectId { get; set; } = null!;
[Input("projectId")]
public Input<string>? ProjectId { get; set; }

[Input("secretKey")]
private Input<string>? _secretKey;
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/ServiceVclLoggingGcArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ public sealed class ServiceVclLoggingGcArgs : global::Pulumi.ResourceArgs
/// <summary>
/// The ID of your Google Cloud Platform project
/// </summary>
[Input("projectId", required: true)]
public Input<string> ProjectId { get; set; } = null!;
[Input("projectId")]
public Input<string>? ProjectId { get; set; }

/// <summary>
/// Name of a condition to apply this logging.
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/ServiceVclLoggingGcGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ public sealed class ServiceVclLoggingGcGetArgs : global::Pulumi.ResourceArgs
/// <summary>
/// The ID of your Google Cloud Platform project
/// </summary>
[Input("projectId", required: true)]
public Input<string> ProjectId { get; set; } = null!;
[Input("projectId")]
public Input<string>? ProjectId { get; set; }

/// <summary>
/// Name of a condition to apply this logging.
Expand Down
Loading

0 comments on commit 41e6433

Please sign in to comment.