@pulumi/gcp 5.24.0 → 5.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/cloudbuild/workerPool.d.ts +6 -6
  2. package/composer/environment.d.ts +0 -16
  3. package/composer/environment.js +0 -16
  4. package/composer/environment.js.map +1 -1
  5. package/compute/address.d.ts +9 -0
  6. package/compute/address.js.map +1 -1
  7. package/compute/backendService.d.ts +15 -9
  8. package/compute/backendService.js.map +1 -1
  9. package/compute/firewallPolicyRule.d.ts +3 -3
  10. package/compute/getInstance.d.ts +1 -1
  11. package/compute/getInstanceTemplate.d.ts +1 -1
  12. package/compute/globalForwardingRule.d.ts +120 -0
  13. package/compute/globalForwardingRule.js +120 -0
  14. package/compute/globalForwardingRule.js.map +1 -1
  15. package/compute/instance.d.ts +6 -6
  16. package/compute/instanceGroup.d.ts +3 -3
  17. package/compute/instanceGroupManager.d.ts +3 -3
  18. package/compute/instanceTemplate.d.ts +12 -12
  19. package/compute/regionBackendService.d.ts +30 -0
  20. package/compute/regionBackendService.js +30 -0
  21. package/compute/regionBackendService.js.map +1 -1
  22. package/compute/router.d.ts +9 -6
  23. package/compute/router.js.map +1 -1
  24. package/compute/securityPolicy.d.ts +5 -21
  25. package/compute/securityPolicy.js +0 -16
  26. package/compute/securityPolicy.js.map +1 -1
  27. package/container/cluster.d.ts +48 -68
  28. package/container/cluster.js +0 -18
  29. package/container/cluster.js.map +1 -1
  30. package/container/nodePool.d.ts +11 -11
  31. package/container/nodePool.js +2 -2
  32. package/dataflow/job.d.ts +1 -1
  33. package/dataflow/job.js +1 -1
  34. package/gkehub/featureMembership.d.ts +3 -3
  35. package/gkehub/membership.d.ts +1 -1
  36. package/gkehub/membership.js +1 -1
  37. package/healthcare/dicomStore.d.ts +9 -9
  38. package/kms/cryptoKeyIAMBinding.d.ts +3 -3
  39. package/kms/cryptoKeyIAMMember.d.ts +3 -3
  40. package/kms/keyRingIAMBinding.d.ts +3 -3
  41. package/kms/keyRingIAMMember.d.ts +3 -3
  42. package/notebooks/instance.d.ts +9 -3
  43. package/notebooks/instance.js.map +1 -1
  44. package/organizations/policy.d.ts +6 -3
  45. package/organizations/policy.js.map +1 -1
  46. package/package.json +2 -2
  47. package/package.json.dev +1 -1
  48. package/pubsub/schema.d.ts +23 -0
  49. package/pubsub/schema.js +23 -0
  50. package/pubsub/schema.js.map +1 -1
  51. package/sql/user.d.ts +1 -1
  52. package/sql/user.js +1 -1
  53. package/storage/bucket.d.ts +9 -9
  54. package/storage/bucketObject.d.ts +3 -3
  55. package/types/input.d.ts +86 -39
  56. package/types/output.d.ts +93 -42
  57. package/vpcaccess/connector.d.ts +9 -3
  58. package/vpcaccess/connector.js.map +1 -1
@@ -89,24 +89,6 @@ import { input as inputs, output as outputs } from "../types";
89
89
  * update: "40m",
90
90
  * } });
91
91
  * ```
92
- *
93
- * ## Import
94
- *
95
- * GKE clusters can be imported using the `project` , `location`, and `name`. If the project is omitted, the default provider value will be used. Examples
96
- *
97
- * ```sh
98
- * $ pulumi import gcp:container/cluster:Cluster mycluster projects/my-gcp-project/locations/us-east1-a/clusters/my-cluster
99
- * ```
100
- *
101
- * ```sh
102
- * $ pulumi import gcp:container/cluster:Cluster mycluster my-gcp-project/us-east1-a/my-cluster
103
- * ```
104
- *
105
- * ```sh
106
- * $ pulumi import gcp:container/cluster:Cluster mycluster us-east1-a/my-cluster
107
- * ```
108
- *
109
- * For example, the following fields will show diffs if set in config- `min_master_version` - `remove_default_node_pool`
110
92
  */
111
93
  export declare class Cluster extends pulumi.CustomResource {
112
94
  /**
@@ -177,7 +159,7 @@ export declare class Cluster extends pulumi.CustomResource {
177
159
  */
178
160
  readonly defaultMaxPodsPerNode: pulumi.Output<number>;
179
161
  /**
180
- * [GKE SNAT](https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent#how_ipmasq_works) DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster, [API doc](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#networkconfig).
162
+ * [GKE SNAT](https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent#how_ipmasq_works) DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster, [API doc](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#networkconfig). Structure is documented below
181
163
  */
182
164
  readonly defaultSnatStatus: pulumi.Output<outputs.container.ClusterDefaultSnatStatus>;
183
165
  /**
@@ -185,7 +167,6 @@ export declare class Cluster extends pulumi.CustomResource {
185
167
  */
186
168
  readonly description: pulumi.Output<string | undefined>;
187
169
  /**
188
- * )
189
170
  * Configuration for [Using Cloud DNS for GKE](https://cloud.google.com/kubernetes-engine/docs/how-to/cloud-dns). Structure is documented below.
190
171
  */
191
172
  readonly dnsConfig: pulumi.Output<outputs.container.ClusterDnsConfig | undefined>;
@@ -212,7 +193,6 @@ export declare class Cluster extends pulumi.CustomResource {
212
193
  */
213
194
  readonly enableKubernetesAlpha: pulumi.Output<boolean | undefined>;
214
195
  /**
215
- * )
216
196
  * Whether L4ILB Subsetting is enabled for this cluster.
217
197
  */
218
198
  readonly enableL4IlbSubsetting: pulumi.Output<boolean | undefined>;
@@ -246,8 +226,9 @@ export declare class Cluster extends pulumi.CustomResource {
246
226
  */
247
227
  readonly initialNodeCount: pulumi.Output<number | undefined>;
248
228
  /**
249
- * List of instance group URLs which have been assigned
250
- * to the cluster.
229
+ * List of instance group URLs which have been assigned to the cluster.
230
+ *
231
+ * @deprecated Please use node_pool.instance_group_urls instead.
251
232
  */
252
233
  readonly instanceGroupUrls: pulumi.Output<string[]>;
253
234
  /**
@@ -293,18 +274,21 @@ export declare class Cluster extends pulumi.CustomResource {
293
274
  * you see an unexpected diff removing a username/password or unsetting your client
294
275
  * cert, ensure you have the `container.clusters.getCredentials` permission.
295
276
  * Structure is documented below. This has been deprecated as of GKE 1.19.
277
+ *
278
+ * @deprecated Basic authentication was removed for GKE cluster versions >= 1.19.
296
279
  */
297
280
  readonly masterAuth: pulumi.Output<outputs.container.ClusterMasterAuth>;
298
281
  /**
299
- * The desired configuration options
300
- * for master authorized networks. Omit the nested `cidrBlocks` attribute to disallow
301
- * external access (except the cluster node IPs, which GKE automatically whitelists).
282
+ * The desired
283
+ * configuration options for master authorized networks. Omit the
284
+ * nested `cidrBlocks` attribute to disallow external access (except
285
+ * the cluster node IPs, which GKE automatically whitelists).
286
+ * Structure is documented below.
302
287
  */
303
288
  readonly masterAuthorizedNetworksConfig: pulumi.Output<outputs.container.ClusterMasterAuthorizedNetworksConfig | undefined>;
304
289
  /**
305
- * The current version of the master in the cluster. This may
306
- * be different than the `minMasterVersion` set in the config if the master
307
- * has been updated by GKE.
290
+ * The current version of the master in the cluster. This may be different than the min_master_version set in the config if
291
+ * the master has been updated by GKE.
308
292
  */
309
293
  readonly masterVersion: pulumi.Output<string>;
310
294
  /**
@@ -421,11 +405,11 @@ export declare class Cluster extends pulumi.CustomResource {
421
405
  * Configuration options for the [Release channel](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels)
422
406
  * feature, which provide more control over automatic upgrades of your GKE clusters.
423
407
  * When updating this field, GKE imposes specific version requirements. See
424
- * [Migrating between release channels](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels#migrating_between_release_channels)
408
+ * [Selecting a new release channel](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels#selecting_a_new_release_channel)
425
409
  * for more details; the `gcp.container.getEngineVersions` datasource can provide
426
410
  * the default version for a channel. Note that removing the `releaseChannel`
427
411
  * field from your config will cause the provider to stop managing your cluster's
428
- * release channel, but will not un-enroll it. Instead, use the `"UNSPECIFIED"`
412
+ * release channel, but will not unenroll it. Instead, use the `"UNSPECIFIED"`
429
413
  * channel. Structure is documented below.
430
414
  */
431
415
  readonly releaseChannel: pulumi.Output<outputs.container.ClusterReleaseChannel>;
@@ -449,14 +433,12 @@ export declare class Cluster extends pulumi.CustomResource {
449
433
  */
450
434
  readonly resourceUsageExportConfig: pulumi.Output<outputs.container.ClusterResourceUsageExportConfig | undefined>;
451
435
  /**
452
- * The server-defined URL for the resource.
436
+ * Server-defined URL for the resource.
453
437
  */
454
438
  readonly selfLink: pulumi.Output<string>;
455
439
  /**
456
- * The IP address range of the Kubernetes services in this
457
- * cluster, in [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
458
- * notation (e.g. `1.2.3.4/29`). Service addresses are typically put in the last
459
- * `/16` from the container CIDR.
440
+ * The IP address range of the Kubernetes services in this cluster, in CIDR notation (e.g. 1.2.3.4/29). Service addresses
441
+ * are typically put in the last /16 from the container CIDR.
460
442
  */
461
443
  readonly servicesIpv4Cidr: pulumi.Output<string>;
462
444
  /**
@@ -465,9 +447,7 @@ export declare class Cluster extends pulumi.CustomResource {
465
447
  */
466
448
  readonly subnetwork: pulumi.Output<string>;
467
449
  /**
468
- * The IP address range of the Cloud TPUs in this cluster, in
469
- * [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
470
- * notation (e.g. `1.2.3.4/29`).
450
+ * The IP address range of the Cloud TPUs in this cluster, in CIDR notation (e.g. 1.2.3.4/29).
471
451
  */
472
452
  readonly tpuIpv4CidrBlock: pulumi.Output<string>;
473
453
  /**
@@ -547,7 +527,7 @@ export interface ClusterState {
547
527
  */
548
528
  defaultMaxPodsPerNode?: pulumi.Input<number>;
549
529
  /**
550
- * [GKE SNAT](https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent#how_ipmasq_works) DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster, [API doc](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#networkconfig).
530
+ * [GKE SNAT](https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent#how_ipmasq_works) DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster, [API doc](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#networkconfig). Structure is documented below
551
531
  */
552
532
  defaultSnatStatus?: pulumi.Input<inputs.container.ClusterDefaultSnatStatus>;
553
533
  /**
@@ -555,7 +535,6 @@ export interface ClusterState {
555
535
  */
556
536
  description?: pulumi.Input<string>;
557
537
  /**
558
- * )
559
538
  * Configuration for [Using Cloud DNS for GKE](https://cloud.google.com/kubernetes-engine/docs/how-to/cloud-dns). Structure is documented below.
560
539
  */
561
540
  dnsConfig?: pulumi.Input<inputs.container.ClusterDnsConfig>;
@@ -582,7 +561,6 @@ export interface ClusterState {
582
561
  */
583
562
  enableKubernetesAlpha?: pulumi.Input<boolean>;
584
563
  /**
585
- * )
586
564
  * Whether L4ILB Subsetting is enabled for this cluster.
587
565
  */
588
566
  enableL4IlbSubsetting?: pulumi.Input<boolean>;
@@ -616,8 +594,9 @@ export interface ClusterState {
616
594
  */
617
595
  initialNodeCount?: pulumi.Input<number>;
618
596
  /**
619
- * List of instance group URLs which have been assigned
620
- * to the cluster.
597
+ * List of instance group URLs which have been assigned to the cluster.
598
+ *
599
+ * @deprecated Please use node_pool.instance_group_urls instead.
621
600
  */
622
601
  instanceGroupUrls?: pulumi.Input<pulumi.Input<string>[]>;
623
602
  /**
@@ -663,18 +642,21 @@ export interface ClusterState {
663
642
  * you see an unexpected diff removing a username/password or unsetting your client
664
643
  * cert, ensure you have the `container.clusters.getCredentials` permission.
665
644
  * Structure is documented below. This has been deprecated as of GKE 1.19.
645
+ *
646
+ * @deprecated Basic authentication was removed for GKE cluster versions >= 1.19.
666
647
  */
667
648
  masterAuth?: pulumi.Input<inputs.container.ClusterMasterAuth>;
668
649
  /**
669
- * The desired configuration options
670
- * for master authorized networks. Omit the nested `cidrBlocks` attribute to disallow
671
- * external access (except the cluster node IPs, which GKE automatically whitelists).
650
+ * The desired
651
+ * configuration options for master authorized networks. Omit the
652
+ * nested `cidrBlocks` attribute to disallow external access (except
653
+ * the cluster node IPs, which GKE automatically whitelists).
654
+ * Structure is documented below.
672
655
  */
673
656
  masterAuthorizedNetworksConfig?: pulumi.Input<inputs.container.ClusterMasterAuthorizedNetworksConfig>;
674
657
  /**
675
- * The current version of the master in the cluster. This may
676
- * be different than the `minMasterVersion` set in the config if the master
677
- * has been updated by GKE.
658
+ * The current version of the master in the cluster. This may be different than the min_master_version set in the config if
659
+ * the master has been updated by GKE.
678
660
  */
679
661
  masterVersion?: pulumi.Input<string>;
680
662
  /**
@@ -791,11 +773,11 @@ export interface ClusterState {
791
773
  * Configuration options for the [Release channel](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels)
792
774
  * feature, which provide more control over automatic upgrades of your GKE clusters.
793
775
  * When updating this field, GKE imposes specific version requirements. See
794
- * [Migrating between release channels](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels#migrating_between_release_channels)
776
+ * [Selecting a new release channel](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels#selecting_a_new_release_channel)
795
777
  * for more details; the `gcp.container.getEngineVersions` datasource can provide
796
778
  * the default version for a channel. Note that removing the `releaseChannel`
797
779
  * field from your config will cause the provider to stop managing your cluster's
798
- * release channel, but will not un-enroll it. Instead, use the `"UNSPECIFIED"`
780
+ * release channel, but will not unenroll it. Instead, use the `"UNSPECIFIED"`
799
781
  * channel. Structure is documented below.
800
782
  */
801
783
  releaseChannel?: pulumi.Input<inputs.container.ClusterReleaseChannel>;
@@ -819,14 +801,12 @@ export interface ClusterState {
819
801
  */
820
802
  resourceUsageExportConfig?: pulumi.Input<inputs.container.ClusterResourceUsageExportConfig>;
821
803
  /**
822
- * The server-defined URL for the resource.
804
+ * Server-defined URL for the resource.
823
805
  */
824
806
  selfLink?: pulumi.Input<string>;
825
807
  /**
826
- * The IP address range of the Kubernetes services in this
827
- * cluster, in [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
828
- * notation (e.g. `1.2.3.4/29`). Service addresses are typically put in the last
829
- * `/16` from the container CIDR.
808
+ * The IP address range of the Kubernetes services in this cluster, in CIDR notation (e.g. 1.2.3.4/29). Service addresses
809
+ * are typically put in the last /16 from the container CIDR.
830
810
  */
831
811
  servicesIpv4Cidr?: pulumi.Input<string>;
832
812
  /**
@@ -835,9 +815,7 @@ export interface ClusterState {
835
815
  */
836
816
  subnetwork?: pulumi.Input<string>;
837
817
  /**
838
- * The IP address range of the Cloud TPUs in this cluster, in
839
- * [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
840
- * notation (e.g. `1.2.3.4/29`).
818
+ * The IP address range of the Cloud TPUs in this cluster, in CIDR notation (e.g. 1.2.3.4/29).
841
819
  */
842
820
  tpuIpv4CidrBlock?: pulumi.Input<string>;
843
821
  /**
@@ -909,7 +887,7 @@ export interface ClusterArgs {
909
887
  */
910
888
  defaultMaxPodsPerNode?: pulumi.Input<number>;
911
889
  /**
912
- * [GKE SNAT](https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent#how_ipmasq_works) DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster, [API doc](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#networkconfig).
890
+ * [GKE SNAT](https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent#how_ipmasq_works) DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster, [API doc](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#networkconfig). Structure is documented below
913
891
  */
914
892
  defaultSnatStatus?: pulumi.Input<inputs.container.ClusterDefaultSnatStatus>;
915
893
  /**
@@ -917,7 +895,6 @@ export interface ClusterArgs {
917
895
  */
918
896
  description?: pulumi.Input<string>;
919
897
  /**
920
- * )
921
898
  * Configuration for [Using Cloud DNS for GKE](https://cloud.google.com/kubernetes-engine/docs/how-to/cloud-dns). Structure is documented below.
922
899
  */
923
900
  dnsConfig?: pulumi.Input<inputs.container.ClusterDnsConfig>;
@@ -944,7 +921,6 @@ export interface ClusterArgs {
944
921
  */
945
922
  enableKubernetesAlpha?: pulumi.Input<boolean>;
946
923
  /**
947
- * )
948
924
  * Whether L4ILB Subsetting is enabled for this cluster.
949
925
  */
950
926
  enableL4IlbSubsetting?: pulumi.Input<boolean>;
@@ -1012,12 +988,16 @@ export interface ClusterArgs {
1012
988
  * you see an unexpected diff removing a username/password or unsetting your client
1013
989
  * cert, ensure you have the `container.clusters.getCredentials` permission.
1014
990
  * Structure is documented below. This has been deprecated as of GKE 1.19.
991
+ *
992
+ * @deprecated Basic authentication was removed for GKE cluster versions >= 1.19.
1015
993
  */
1016
994
  masterAuth?: pulumi.Input<inputs.container.ClusterMasterAuth>;
1017
995
  /**
1018
- * The desired configuration options
1019
- * for master authorized networks. Omit the nested `cidrBlocks` attribute to disallow
1020
- * external access (except the cluster node IPs, which GKE automatically whitelists).
996
+ * The desired
997
+ * configuration options for master authorized networks. Omit the
998
+ * nested `cidrBlocks` attribute to disallow external access (except
999
+ * the cluster node IPs, which GKE automatically whitelists).
1000
+ * Structure is documented below.
1021
1001
  */
1022
1002
  masterAuthorizedNetworksConfig?: pulumi.Input<inputs.container.ClusterMasterAuthorizedNetworksConfig>;
1023
1003
  /**
@@ -1133,11 +1113,11 @@ export interface ClusterArgs {
1133
1113
  * Configuration options for the [Release channel](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels)
1134
1114
  * feature, which provide more control over automatic upgrades of your GKE clusters.
1135
1115
  * When updating this field, GKE imposes specific version requirements. See
1136
- * [Migrating between release channels](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels#migrating_between_release_channels)
1116
+ * [Selecting a new release channel](https://cloud.google.com/kubernetes-engine/docs/concepts/release-channels#selecting_a_new_release_channel)
1137
1117
  * for more details; the `gcp.container.getEngineVersions` datasource can provide
1138
1118
  * the default version for a channel. Note that removing the `releaseChannel`
1139
1119
  * field from your config will cause the provider to stop managing your cluster's
1140
- * release channel, but will not un-enroll it. Instead, use the `"UNSPECIFIED"`
1120
+ * release channel, but will not unenroll it. Instead, use the `"UNSPECIFIED"`
1141
1121
  * channel. Structure is documented below.
1142
1122
  */
1143
1123
  releaseChannel?: pulumi.Input<inputs.container.ClusterReleaseChannel>;
@@ -94,24 +94,6 @@ const utilities = require("../utilities");
94
94
  * update: "40m",
95
95
  * } });
96
96
  * ```
97
- *
98
- * ## Import
99
- *
100
- * GKE clusters can be imported using the `project` , `location`, and `name`. If the project is omitted, the default provider value will be used. Examples
101
- *
102
- * ```sh
103
- * $ pulumi import gcp:container/cluster:Cluster mycluster projects/my-gcp-project/locations/us-east1-a/clusters/my-cluster
104
- * ```
105
- *
106
- * ```sh
107
- * $ pulumi import gcp:container/cluster:Cluster mycluster my-gcp-project/us-east1-a/my-cluster
108
- * ```
109
- *
110
- * ```sh
111
- * $ pulumi import gcp:container/cluster:Cluster mycluster us-east1-a/my-cluster
112
- * ```
113
- *
114
- * For example, the following fields will show diffs if set in config- `min_master_version` - `remove_default_node_pool`
115
97
  */
116
98
  class Cluster extends pulumi.CustomResource {
117
99
  constructor(name, argsOrState, opts) {
@@ -1 +1 @@
1
- {"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../container/cluster.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../container/cluster.ts"],"names":[],"mappings":"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"}
@@ -71,14 +71,14 @@ import { input as inputs, output as outputs } from "../types";
71
71
  *
72
72
  * ## Import
73
73
  *
74
- * Node pools can be imported using the `project`, `zone`, `cluster` and `name`. If the project is omitted, the default provider value will be used. Examples
74
+ * Node pools can be imported using the `project`, `location`, `cluster` and `name`. If the project is omitted, the project value in the provider configuration will be used. Examples
75
75
  *
76
76
  * ```sh
77
77
  * $ pulumi import gcp:container/nodePool:NodePool mainpool my-gcp-project/us-east1-a/my-cluster/main-pool
78
78
  * ```
79
79
  *
80
80
  * ```sh
81
- * $ pulumi import gcp:container/nodePool:NodePool mainpool us-east1-a/my-cluster/main-pool
81
+ * $ pulumi import gcp:container/nodePool:NodePool mainpool us-east1/my-cluster/main-pool
82
82
  * ```
83
83
  */
84
84
  export declare class NodePool extends pulumi.CustomResource {
@@ -103,7 +103,7 @@ export declare class NodePool extends pulumi.CustomResource {
103
103
  */
104
104
  readonly autoscaling: pulumi.Output<outputs.container.NodePoolAutoscaling | undefined>;
105
105
  /**
106
- * The cluster to create the node pool for. Cluster must be present in `location` provided for zonal clusters. May be specified in the format `projects/{{project}}/locations/{{location}}/clusters/{{cluster}}` or as just the name of the cluster.
106
+ * The cluster to create the node pool for. Cluster must be present in `location` provided for clusters. May be specified in the format `projects/{{project}}/locations/{{location}}/clusters/{{cluster}}` or as just the name of the cluster.
107
107
  */
108
108
  readonly cluster: pulumi.Output<string>;
109
109
  /**
@@ -153,7 +153,7 @@ export declare class NodePool extends pulumi.CustomResource {
153
153
  */
154
154
  readonly networkConfig: pulumi.Output<outputs.container.NodePoolNetworkConfig>;
155
155
  /**
156
- * Parameters used in creating the default node pool. See
156
+ * Parameters used in creating the node pool. See
157
157
  * gcp.container.Cluster for schema.
158
158
  */
159
159
  readonly nodeConfig: pulumi.Output<outputs.container.NodePoolNodeConfig>;
@@ -178,7 +178,7 @@ export declare class NodePool extends pulumi.CustomResource {
178
178
  /**
179
179
  * Specify node upgrade settings to change how many nodes GKE attempts to
180
180
  * upgrade at once. The number of nodes upgraded simultaneously is the sum of `maxSurge` and `maxUnavailable`.
181
- * The maximum number of nodes upgraded simultaneously is limited to 20.
181
+ * The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
182
182
  */
183
183
  readonly upgradeSettings: pulumi.Output<outputs.container.NodePoolUpgradeSettings>;
184
184
  /**
@@ -209,7 +209,7 @@ export interface NodePoolState {
209
209
  */
210
210
  autoscaling?: pulumi.Input<inputs.container.NodePoolAutoscaling>;
211
211
  /**
212
- * The cluster to create the node pool for. Cluster must be present in `location` provided for zonal clusters. May be specified in the format `projects/{{project}}/locations/{{location}}/clusters/{{cluster}}` or as just the name of the cluster.
212
+ * The cluster to create the node pool for. Cluster must be present in `location` provided for clusters. May be specified in the format `projects/{{project}}/locations/{{location}}/clusters/{{cluster}}` or as just the name of the cluster.
213
213
  */
214
214
  cluster?: pulumi.Input<string>;
215
215
  /**
@@ -259,7 +259,7 @@ export interface NodePoolState {
259
259
  */
260
260
  networkConfig?: pulumi.Input<inputs.container.NodePoolNetworkConfig>;
261
261
  /**
262
- * Parameters used in creating the default node pool. See
262
+ * Parameters used in creating the node pool. See
263
263
  * gcp.container.Cluster for schema.
264
264
  */
265
265
  nodeConfig?: pulumi.Input<inputs.container.NodePoolNodeConfig>;
@@ -284,7 +284,7 @@ export interface NodePoolState {
284
284
  /**
285
285
  * Specify node upgrade settings to change how many nodes GKE attempts to
286
286
  * upgrade at once. The number of nodes upgraded simultaneously is the sum of `maxSurge` and `maxUnavailable`.
287
- * The maximum number of nodes upgraded simultaneously is limited to 20.
287
+ * The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
288
288
  */
289
289
  upgradeSettings?: pulumi.Input<inputs.container.NodePoolUpgradeSettings>;
290
290
  /**
@@ -307,7 +307,7 @@ export interface NodePoolArgs {
307
307
  */
308
308
  autoscaling?: pulumi.Input<inputs.container.NodePoolAutoscaling>;
309
309
  /**
310
- * The cluster to create the node pool for. Cluster must be present in `location` provided for zonal clusters. May be specified in the format `projects/{{project}}/locations/{{location}}/clusters/{{cluster}}` or as just the name of the cluster.
310
+ * The cluster to create the node pool for. Cluster must be present in `location` provided for clusters. May be specified in the format `projects/{{project}}/locations/{{location}}/clusters/{{cluster}}` or as just the name of the cluster.
311
311
  */
312
312
  cluster: pulumi.Input<string>;
313
313
  /**
@@ -353,7 +353,7 @@ export interface NodePoolArgs {
353
353
  */
354
354
  networkConfig?: pulumi.Input<inputs.container.NodePoolNetworkConfig>;
355
355
  /**
356
- * Parameters used in creating the default node pool. See
356
+ * Parameters used in creating the node pool. See
357
357
  * gcp.container.Cluster for schema.
358
358
  */
359
359
  nodeConfig?: pulumi.Input<inputs.container.NodePoolNodeConfig>;
@@ -377,7 +377,7 @@ export interface NodePoolArgs {
377
377
  /**
378
378
  * Specify node upgrade settings to change how many nodes GKE attempts to
379
379
  * upgrade at once. The number of nodes upgraded simultaneously is the sum of `maxSurge` and `maxUnavailable`.
380
- * The maximum number of nodes upgraded simultaneously is limited to 20.
380
+ * The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
381
381
  */
382
382
  upgradeSettings?: pulumi.Input<inputs.container.NodePoolUpgradeSettings>;
383
383
  /**
@@ -76,14 +76,14 @@ const utilities = require("../utilities");
76
76
  *
77
77
  * ## Import
78
78
  *
79
- * Node pools can be imported using the `project`, `zone`, `cluster` and `name`. If the project is omitted, the default provider value will be used. Examples
79
+ * Node pools can be imported using the `project`, `location`, `cluster` and `name`. If the project is omitted, the project value in the provider configuration will be used. Examples
80
80
  *
81
81
  * ```sh
82
82
  * $ pulumi import gcp:container/nodePool:NodePool mainpool my-gcp-project/us-east1-a/my-cluster/main-pool
83
83
  * ```
84
84
  *
85
85
  * ```sh
86
- * $ pulumi import gcp:container/nodePool:NodePool mainpool us-east1-a/my-cluster/main-pool
86
+ * $ pulumi import gcp:container/nodePool:NodePool mainpool us-east1/my-cluster/main-pool
87
87
  * ```
88
88
  */
89
89
  class NodePool extends pulumi.CustomResource {
package/dataflow/job.d.ts CHANGED
@@ -48,7 +48,7 @@ import * as pulumi from "@pulumi/pulumi";
48
48
  *
49
49
  * The Dataflow resource is considered 'existing' while it is in a nonterminal state. If it reaches a terminal state (e.g. 'FAILED', 'COMPLETE', 'CANCELLED'), it will be recreated on the next 'apply'. This is as expected for jobs which run continuously, but may surprise users who use this resource for other kinds of Dataflow jobs.
50
50
  *
51
- * A Dataflow job which is 'destroyed' may be "cancelled" or "drained". If "cancelled", the job terminates - any data written remains where it is, but no new data will be processed. If "drained", no new data will enter the pipeline, but any data currently in the pipeline will finish being processed. The default is "cancelled", but if a user sets `onDelete` to `"drain"` in the configuration, you may experience a long wait for your `pulumi destroy` to complete.
51
+ * A Dataflow job which is 'destroyed' may be "cancelled" or "drained". If "cancelled", the job terminates - any data written remains where it is, but no new data will be processed. If "drained", no new data will enter the pipeline, but any data currently in the pipeline will finish being processed. The default is "drain". When `onDelete` is set to `"drain"` in the configuration, you may experience a long wait for your `pulumi destroy` to complete.
52
52
  *
53
53
  * ## Import
54
54
  *
package/dataflow/job.js CHANGED
@@ -54,7 +54,7 @@ const utilities = require("../utilities");
54
54
  *
55
55
  * The Dataflow resource is considered 'existing' while it is in a nonterminal state. If it reaches a terminal state (e.g. 'FAILED', 'COMPLETE', 'CANCELLED'), it will be recreated on the next 'apply'. This is as expected for jobs which run continuously, but may surprise users who use this resource for other kinds of Dataflow jobs.
56
56
  *
57
- * A Dataflow job which is 'destroyed' may be "cancelled" or "drained". If "cancelled", the job terminates - any data written remains where it is, but no new data will be processed. If "drained", no new data will enter the pipeline, but any data currently in the pipeline will finish being processed. The default is "cancelled", but if a user sets `onDelete` to `"drain"` in the configuration, you may experience a long wait for your `pulumi destroy` to complete.
57
+ * A Dataflow job which is 'destroyed' may be "cancelled" or "drained". If "cancelled", the job terminates - any data written remains where it is, but no new data will be processed. If "drained", no new data will enter the pipeline, but any data currently in the pipeline will finish being processed. The default is "drain". When `onDelete` is set to `"drain"` in the configuration, you may experience a long wait for your `pulumi destroy` to complete.
58
58
  *
59
59
  * ## Import
60
60
  *
@@ -34,7 +34,7 @@ export declare class FeatureMembership extends pulumi.CustomResource {
34
34
  */
35
35
  static isInstance(obj: any): obj is FeatureMembership;
36
36
  /**
37
- * Config Management-specific spec.
37
+ * Config Management-specific spec. Structure is documented below.
38
38
  */
39
39
  readonly configmanagement: pulumi.Output<outputs.gkehub.FeatureMembershipConfigmanagement>;
40
40
  /**
@@ -67,7 +67,7 @@ export declare class FeatureMembership extends pulumi.CustomResource {
67
67
  */
68
68
  export interface FeatureMembershipState {
69
69
  /**
70
- * Config Management-specific spec.
70
+ * Config Management-specific spec. Structure is documented below.
71
71
  */
72
72
  configmanagement?: pulumi.Input<inputs.gkehub.FeatureMembershipConfigmanagement>;
73
73
  /**
@@ -92,7 +92,7 @@ export interface FeatureMembershipState {
92
92
  */
93
93
  export interface FeatureMembershipArgs {
94
94
  /**
95
- * Config Management-specific spec.
95
+ * Config Management-specific spec. Structure is documented below.
96
96
  */
97
97
  configmanagement: pulumi.Input<inputs.gkehub.FeatureMembershipConfigmanagement>;
98
98
  /**
@@ -39,7 +39,7 @@ import { input as inputs, output as outputs } from "../types";
39
39
  * location: "us-central1-a",
40
40
  * initialNodeCount: 1,
41
41
  * workloadIdentityConfig: {
42
- * identityNamespace: "my-project-name.svc.id.goog",
42
+ * workloadPool: "my-project-name.svc.id.goog",
43
43
  * },
44
44
  * });
45
45
  * const membership = new gcp.gkehub.Membership("membership", {
@@ -44,7 +44,7 @@ const utilities = require("../utilities");
44
44
  * location: "us-central1-a",
45
45
  * initialNodeCount: 1,
46
46
  * workloadIdentityConfig: {
47
- * identityNamespace: "my-project-name.svc.id.goog",
47
+ * workloadPool: "my-project-name.svc.id.goog",
48
48
  * },
49
49
  * });
50
50
  * const membership = new gcp.gkehub.Membership("membership", {
@@ -136,9 +136,9 @@ export declare class DicomStore extends pulumi.CustomResource {
136
136
  */
137
137
  readonly selfLink: pulumi.Output<string>;
138
138
  /**
139
- * To enable streaming to BigQuery, configure the streamConfigs object in your DICOM store. streamConfigs is an array, so
140
- * you can specify multiple BigQuery destinations. You can stream metadata from a single DICOM store to up to five BigQuery
141
- * tables in a BigQuery dataset.
139
+ * To enable streaming to BigQuery, configure the streamConfigs object in your DICOM store.
140
+ * streamConfigs is an array, so you can specify multiple BigQuery destinations. You can stream metadata from a single DICOM store to up to five BigQuery tables in a BigQuery dataset.
141
+ * Structure is documented below.
142
142
  */
143
143
  readonly streamConfigs: pulumi.Output<outputs.healthcare.DicomStoreStreamConfig[] | undefined>;
144
144
  /**
@@ -187,9 +187,9 @@ export interface DicomStoreState {
187
187
  */
188
188
  selfLink?: pulumi.Input<string>;
189
189
  /**
190
- * To enable streaming to BigQuery, configure the streamConfigs object in your DICOM store. streamConfigs is an array, so
191
- * you can specify multiple BigQuery destinations. You can stream metadata from a single DICOM store to up to five BigQuery
192
- * tables in a BigQuery dataset.
190
+ * To enable streaming to BigQuery, configure the streamConfigs object in your DICOM store.
191
+ * streamConfigs is an array, so you can specify multiple BigQuery destinations. You can stream metadata from a single DICOM store to up to five BigQuery tables in a BigQuery dataset.
192
+ * Structure is documented below.
193
193
  */
194
194
  streamConfigs?: pulumi.Input<pulumi.Input<inputs.healthcare.DicomStoreStreamConfig>[]>;
195
195
  }
@@ -226,9 +226,9 @@ export interface DicomStoreArgs {
226
226
  */
227
227
  notificationConfig?: pulumi.Input<inputs.healthcare.DicomStoreNotificationConfig>;
228
228
  /**
229
- * To enable streaming to BigQuery, configure the streamConfigs object in your DICOM store. streamConfigs is an array, so
230
- * you can specify multiple BigQuery destinations. You can stream metadata from a single DICOM store to up to five BigQuery
231
- * tables in a BigQuery dataset.
229
+ * To enable streaming to BigQuery, configure the streamConfigs object in your DICOM store.
230
+ * streamConfigs is an array, so you can specify multiple BigQuery destinations. You can stream metadata from a single DICOM store to up to five BigQuery tables in a BigQuery dataset.
231
+ * Structure is documented below.
232
232
  */
233
233
  streamConfigs?: pulumi.Input<pulumi.Input<inputs.healthcare.DicomStoreStreamConfig>[]>;
234
234
  }
@@ -152,7 +152,7 @@ export declare class CryptoKeyIAMBinding extends pulumi.CustomResource {
152
152
  */
153
153
  static isInstance(obj: any): obj is CryptoKeyIAMBinding;
154
154
  /**
155
- * An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
155
+ * ) An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
156
156
  * Structure is documented below.
157
157
  */
158
158
  readonly condition: pulumi.Output<outputs.kms.CryptoKeyIAMBindingCondition | undefined>;
@@ -187,7 +187,7 @@ export declare class CryptoKeyIAMBinding extends pulumi.CustomResource {
187
187
  */
188
188
  export interface CryptoKeyIAMBindingState {
189
189
  /**
190
- * An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
190
+ * ) An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
191
191
  * Structure is documented below.
192
192
  */
193
193
  condition?: pulumi.Input<inputs.kms.CryptoKeyIAMBindingCondition>;
@@ -214,7 +214,7 @@ export interface CryptoKeyIAMBindingState {
214
214
  */
215
215
  export interface CryptoKeyIAMBindingArgs {
216
216
  /**
217
- * An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
217
+ * ) An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
218
218
  * Structure is documented below.
219
219
  */
220
220
  condition?: pulumi.Input<inputs.kms.CryptoKeyIAMBindingCondition>;