pulumi-gcp 8.42.0a1756709266__py3-none-any.whl → 8.42.0a1756968228__py3-none-any.whl
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.
- pulumi_gcp/bigquery/app_profile.py +14 -49
- pulumi_gcp/bigquery/dataset_access.py +4 -8
- pulumi_gcp/bigquery/table.py +7 -21
- pulumi_gcp/bigtable/app_profile.py +14 -49
- pulumi_gcp/bigtable/table.py +42 -42
- pulumi_gcp/cloudbuild/worker_pool.py +28 -21
- pulumi_gcp/cloudfunctions/function.py +4 -8
- pulumi_gcp/composer/environment.py +28 -49
- pulumi_gcp/compute/instance_from_machine_image.py +75 -110
- pulumi_gcp/compute/instance_from_template.py +75 -110
- pulumi_gcp/compute/instance_group_manager.py +7 -14
- pulumi_gcp/compute/instance_template.py +7 -14
- pulumi_gcp/compute/interconnect.py +4 -8
- pulumi_gcp/compute/region_instance_group_manager.py +7 -14
- pulumi_gcp/container/aws_cluster.py +28 -42
- pulumi_gcp/container/aws_node_pool.py +28 -42
- pulumi_gcp/container/azure_cluster.py +35 -70
- pulumi_gcp/container/azure_node_pool.py +28 -42
- pulumi_gcp/dataplex/asset.py +28 -21
- pulumi_gcp/dataplex/zone.py +28 -21
- pulumi_gcp/dataproc/cluster.py +21 -14
- pulumi_gcp/dataproc/workflow_template.py +42 -105
- pulumi_gcp/logging/billing_account_bucket_config.py +7 -21
- pulumi_gcp/logging/folder_bucket_config.py +7 -21
- pulumi_gcp/logging/organization_bucket_config.py +7 -21
- pulumi_gcp/monitoring/dashboard.py +7 -14
- pulumi_gcp/organizations/project.py +7 -21
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/database_instance.py +7 -14
- pulumi_gcp/storage/bucket.py +7 -14
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/RECORD +34 -34
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1756709266.dist-info → pulumi_gcp-8.42.0a1756968228.dist-info}/top_level.txt +0 -0
@@ -42,12 +42,10 @@ class AzureNodePoolArgs:
|
|
42
42
|
:param pulumi.Input['AzureNodePoolMaxPodsConstraintArgs'] max_pods_constraint: The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool.
|
43
43
|
:param pulumi.Input[_builtins.str] subnet_id: The ARM ID of the subnet where the node pool VMs run. Make sure it's a subnet under the virtual network in the cluster configuration.
|
44
44
|
:param pulumi.Input[_builtins.str] version: The Kubernetes version (e.g. `1.19.10-gke.1000`) running on this node pool.
|
45
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] annotations: Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
50
|
-
`effective_annotations` for all of the annotations present on the resource.
|
45
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] annotations: Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Keys can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
46
|
+
|
47
|
+
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
48
|
+
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
51
49
|
:param pulumi.Input[_builtins.str] azure_availability_zone: Optional. The Azure availability zone of the nodes in this nodepool. When unspecified, it defaults to `1`.
|
52
50
|
:param pulumi.Input['AzureNodePoolManagementArgs'] management: The Management configuration for this node pool.
|
53
51
|
:param pulumi.Input[_builtins.str] name: The name of this resource.
|
@@ -159,12 +157,10 @@ class AzureNodePoolArgs:
|
|
159
157
|
@pulumi.getter
|
160
158
|
def annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
161
159
|
"""
|
162
|
-
Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
167
|
-
`effective_annotations` for all of the annotations present on the resource.
|
160
|
+
Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Keys can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
161
|
+
|
162
|
+
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
163
|
+
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
168
164
|
"""
|
169
165
|
return pulumi.get(self, "annotations")
|
170
166
|
|
@@ -245,12 +241,10 @@ class _AzureNodePoolState:
|
|
245
241
|
version: Optional[pulumi.Input[_builtins.str]] = None):
|
246
242
|
"""
|
247
243
|
Input properties used for looking up and filtering AzureNodePool resources.
|
248
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] annotations: Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
253
|
-
`effective_annotations` for all of the annotations present on the resource.
|
244
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] annotations: Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Keys can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
245
|
+
|
246
|
+
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
247
|
+
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
254
248
|
:param pulumi.Input['AzureNodePoolAutoscalingArgs'] autoscaling: Autoscaler configuration for this node pool.
|
255
249
|
:param pulumi.Input[_builtins.str] azure_availability_zone: Optional. The Azure availability zone of the nodes in this nodepool. When unspecified, it defaults to `1`.
|
256
250
|
:param pulumi.Input[_builtins.str] cluster: The azureCluster for the resource
|
@@ -312,12 +306,10 @@ class _AzureNodePoolState:
|
|
312
306
|
@pulumi.getter
|
313
307
|
def annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
314
308
|
"""
|
315
|
-
Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
320
|
-
`effective_annotations` for all of the annotations present on the resource.
|
309
|
+
Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Keys can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
310
|
+
|
311
|
+
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
312
|
+
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
321
313
|
"""
|
322
314
|
return pulumi.get(self, "annotations")
|
323
315
|
|
@@ -673,12 +665,10 @@ class AzureNodePool(pulumi.CustomResource):
|
|
673
665
|
|
674
666
|
:param str resource_name: The name of the resource.
|
675
667
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
676
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] annotations: Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
681
|
-
`effective_annotations` for all of the annotations present on the resource.
|
668
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] annotations: Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Keys can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
669
|
+
|
670
|
+
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
671
|
+
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
682
672
|
:param pulumi.Input[Union['AzureNodePoolAutoscalingArgs', 'AzureNodePoolAutoscalingArgsDict']] autoscaling: Autoscaler configuration for this node pool.
|
683
673
|
:param pulumi.Input[_builtins.str] azure_availability_zone: Optional. The Azure availability zone of the nodes in this nodepool. When unspecified, it defaults to `1`.
|
684
674
|
:param pulumi.Input[_builtins.str] cluster: The azureCluster for the resource
|
@@ -915,12 +905,10 @@ class AzureNodePool(pulumi.CustomResource):
|
|
915
905
|
:param str resource_name: The unique name of the resulting resource.
|
916
906
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
917
907
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
918
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] annotations: Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
923
|
-
`effective_annotations` for all of the annotations present on the resource.
|
908
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] annotations: Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Keys can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
909
|
+
|
910
|
+
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
911
|
+
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
924
912
|
:param pulumi.Input[Union['AzureNodePoolAutoscalingArgs', 'AzureNodePoolAutoscalingArgsDict']] autoscaling: Autoscaler configuration for this node pool.
|
925
913
|
:param pulumi.Input[_builtins.str] azure_availability_zone: Optional. The Azure availability zone of the nodes in this nodepool. When unspecified, it defaults to `1`.
|
926
914
|
:param pulumi.Input[_builtins.str] cluster: The azureCluster for the resource
|
@@ -968,12 +956,10 @@ class AzureNodePool(pulumi.CustomResource):
|
|
968
956
|
@pulumi.getter
|
969
957
|
def annotations(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
970
958
|
"""
|
971
|
-
Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field
|
976
|
-
`effective_annotations` for all of the annotations present on the resource.
|
959
|
+
Optional. Annotations on the node pool. This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Keys can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
960
|
+
|
961
|
+
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
962
|
+
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
977
963
|
"""
|
978
964
|
return pulumi.get(self, "annotations")
|
979
965
|
|
pulumi_gcp/dataplex/asset.py
CHANGED
@@ -40,9 +40,10 @@ class AssetArgs:
|
|
40
40
|
:param pulumi.Input['AssetResourceSpecArgs'] resource_spec: Required. Immutable. Specification of the resource that is referenced by this asset.
|
41
41
|
:param pulumi.Input[_builtins.str] description: Optional. Description of the asset.
|
42
42
|
:param pulumi.Input[_builtins.str] display_name: Optional. User friendly display name.
|
43
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the asset.
|
44
|
-
|
45
|
-
|
43
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the asset.
|
44
|
+
|
45
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
46
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
46
47
|
:param pulumi.Input[_builtins.str] name: The name of the asset.
|
47
48
|
:param pulumi.Input[_builtins.str] project: The project for the resource
|
48
49
|
"""
|
@@ -150,9 +151,10 @@ class AssetArgs:
|
|
150
151
|
@pulumi.getter
|
151
152
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
152
153
|
"""
|
153
|
-
Optional. User defined labels for the asset.
|
154
|
-
|
155
|
-
|
154
|
+
Optional. User defined labels for the asset.
|
155
|
+
|
156
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
157
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
156
158
|
"""
|
157
159
|
return pulumi.get(self, "labels")
|
158
160
|
|
@@ -216,9 +218,10 @@ class _AssetState:
|
|
216
218
|
:param pulumi.Input[Sequence[pulumi.Input['AssetDiscoveryStatusArgs']]] discovery_statuses: Output only. Status of the discovery feature applied to data referenced by this asset.
|
217
219
|
:param pulumi.Input[_builtins.str] display_name: Optional. User friendly display name.
|
218
220
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
219
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the asset.
|
220
|
-
|
221
|
-
|
221
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the asset.
|
222
|
+
|
223
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
224
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
222
225
|
:param pulumi.Input[_builtins.str] lake: The lake for the resource
|
223
226
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
224
227
|
:param pulumi.Input[_builtins.str] name: The name of the asset.
|
@@ -358,9 +361,10 @@ class _AssetState:
|
|
358
361
|
@pulumi.getter
|
359
362
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
360
363
|
"""
|
361
|
-
Optional. User defined labels for the asset.
|
362
|
-
|
363
|
-
|
364
|
+
Optional. User defined labels for the asset.
|
365
|
+
|
366
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
367
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
364
368
|
"""
|
365
369
|
return pulumi.get(self, "labels")
|
366
370
|
|
@@ -599,9 +603,10 @@ class Asset(pulumi.CustomResource):
|
|
599
603
|
:param pulumi.Input[_builtins.str] description: Optional. Description of the asset.
|
600
604
|
:param pulumi.Input[Union['AssetDiscoverySpecArgs', 'AssetDiscoverySpecArgsDict']] discovery_spec: Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.
|
601
605
|
:param pulumi.Input[_builtins.str] display_name: Optional. User friendly display name.
|
602
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the asset.
|
603
|
-
|
604
|
-
|
606
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the asset.
|
607
|
+
|
608
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
609
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
605
610
|
:param pulumi.Input[_builtins.str] lake: The lake for the resource
|
606
611
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
607
612
|
:param pulumi.Input[_builtins.str] name: The name of the asset.
|
@@ -797,9 +802,10 @@ class Asset(pulumi.CustomResource):
|
|
797
802
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AssetDiscoveryStatusArgs', 'AssetDiscoveryStatusArgsDict']]]] discovery_statuses: Output only. Status of the discovery feature applied to data referenced by this asset.
|
798
803
|
:param pulumi.Input[_builtins.str] display_name: Optional. User friendly display name.
|
799
804
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
800
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the asset.
|
801
|
-
|
802
|
-
|
805
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the asset.
|
806
|
+
|
807
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
808
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
803
809
|
:param pulumi.Input[_builtins.str] lake: The lake for the resource
|
804
810
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
805
811
|
:param pulumi.Input[_builtins.str] name: The name of the asset.
|
@@ -897,9 +903,10 @@ class Asset(pulumi.CustomResource):
|
|
897
903
|
@pulumi.getter
|
898
904
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
899
905
|
"""
|
900
|
-
Optional. User defined labels for the asset.
|
901
|
-
|
902
|
-
|
906
|
+
Optional. User defined labels for the asset.
|
907
|
+
|
908
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
909
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
903
910
|
"""
|
904
911
|
return pulumi.get(self, "labels")
|
905
912
|
|
pulumi_gcp/dataplex/zone.py
CHANGED
@@ -40,9 +40,10 @@ class ZoneArgs:
|
|
40
40
|
:param pulumi.Input[_builtins.str] type: Required. Immutable. The type of the zone. Possible values: TYPE_UNSPECIFIED, RAW, CURATED
|
41
41
|
:param pulumi.Input[_builtins.str] description: Optional. Description of the zone.
|
42
42
|
:param pulumi.Input[_builtins.str] display_name: Optional. User friendly display name.
|
43
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the zone.
|
44
|
-
|
45
|
-
|
43
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the zone.
|
44
|
+
|
45
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
46
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
46
47
|
:param pulumi.Input[_builtins.str] name: The name of the zone.
|
47
48
|
:param pulumi.Input[_builtins.str] project: The project for the resource
|
48
49
|
"""
|
@@ -150,9 +151,10 @@ class ZoneArgs:
|
|
150
151
|
@pulumi.getter
|
151
152
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
152
153
|
"""
|
153
|
-
Optional. User defined labels for the zone.
|
154
|
-
|
155
|
-
|
154
|
+
Optional. User defined labels for the zone.
|
155
|
+
|
156
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
157
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
156
158
|
"""
|
157
159
|
return pulumi.get(self, "labels")
|
158
160
|
|
@@ -213,9 +215,10 @@ class _ZoneState:
|
|
213
215
|
:param pulumi.Input['ZoneDiscoverySpecArgs'] discovery_spec: Required. Specification of the discovery feature applied to data in this zone.
|
214
216
|
:param pulumi.Input[_builtins.str] display_name: Optional. User friendly display name.
|
215
217
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
216
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the zone.
|
217
|
-
|
218
|
-
|
218
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the zone.
|
219
|
+
|
220
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
221
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
219
222
|
:param pulumi.Input[_builtins.str] lake: The lake for the resource
|
220
223
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
221
224
|
:param pulumi.Input[_builtins.str] name: The name of the zone.
|
@@ -338,9 +341,10 @@ class _ZoneState:
|
|
338
341
|
@pulumi.getter
|
339
342
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
340
343
|
"""
|
341
|
-
Optional. User defined labels for the zone.
|
342
|
-
|
343
|
-
|
344
|
+
Optional. User defined labels for the zone.
|
345
|
+
|
346
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
347
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
344
348
|
"""
|
345
349
|
return pulumi.get(self, "labels")
|
346
350
|
|
@@ -552,9 +556,10 @@ class Zone(pulumi.CustomResource):
|
|
552
556
|
:param pulumi.Input[_builtins.str] description: Optional. Description of the zone.
|
553
557
|
:param pulumi.Input[Union['ZoneDiscoverySpecArgs', 'ZoneDiscoverySpecArgsDict']] discovery_spec: Required. Specification of the discovery feature applied to data in this zone.
|
554
558
|
:param pulumi.Input[_builtins.str] display_name: Optional. User friendly display name.
|
555
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the zone.
|
556
|
-
|
557
|
-
|
559
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the zone.
|
560
|
+
|
561
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
562
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
558
563
|
:param pulumi.Input[_builtins.str] lake: The lake for the resource
|
559
564
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
560
565
|
:param pulumi.Input[_builtins.str] name: The name of the zone.
|
@@ -732,9 +737,10 @@ class Zone(pulumi.CustomResource):
|
|
732
737
|
:param pulumi.Input[Union['ZoneDiscoverySpecArgs', 'ZoneDiscoverySpecArgsDict']] discovery_spec: Required. Specification of the discovery feature applied to data in this zone.
|
733
738
|
:param pulumi.Input[_builtins.str] display_name: Optional. User friendly display name.
|
734
739
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
735
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the zone.
|
736
|
-
|
737
|
-
|
740
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Optional. User defined labels for the zone.
|
741
|
+
|
742
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
743
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
738
744
|
:param pulumi.Input[_builtins.str] lake: The lake for the resource
|
739
745
|
:param pulumi.Input[_builtins.str] location: The location for the resource
|
740
746
|
:param pulumi.Input[_builtins.str] name: The name of the zone.
|
@@ -821,9 +827,10 @@ class Zone(pulumi.CustomResource):
|
|
821
827
|
@pulumi.getter
|
822
828
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
823
829
|
"""
|
824
|
-
Optional. User defined labels for the zone.
|
825
|
-
|
826
|
-
|
830
|
+
Optional. User defined labels for the zone.
|
831
|
+
|
832
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
833
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
827
834
|
"""
|
828
835
|
return pulumi.get(self, "labels")
|
829
836
|
|
pulumi_gcp/dataproc/cluster.py
CHANGED
@@ -33,8 +33,9 @@ class ClusterArgs:
|
|
33
33
|
:param pulumi.Input['ClusterClusterConfigArgs'] cluster_config: Allows you to configure various aspects of the cluster.
|
34
34
|
Structure defined below.
|
35
35
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: The list of the labels (key/value pairs) configured on the resource and to be applied to instances in the cluster.
|
36
|
-
|
37
|
-
|
36
|
+
|
37
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
38
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
38
39
|
:param pulumi.Input[_builtins.str] name: The name of the cluster, unique within the project and
|
39
40
|
zone.
|
40
41
|
|
@@ -88,8 +89,9 @@ class ClusterArgs:
|
|
88
89
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
89
90
|
"""
|
90
91
|
The list of the labels (key/value pairs) configured on the resource and to be applied to instances in the cluster.
|
91
|
-
|
92
|
-
|
92
|
+
|
93
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
94
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
93
95
|
"""
|
94
96
|
return pulumi.get(self, "labels")
|
95
97
|
|
@@ -172,8 +174,9 @@ class _ClusterState:
|
|
172
174
|
instances in the cluster. GCP generates some itself including `goog-dataproc-cluster-name`
|
173
175
|
which is the name of the cluster.
|
174
176
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: The list of the labels (key/value pairs) configured on the resource and to be applied to instances in the cluster.
|
175
|
-
|
176
|
-
|
177
|
+
|
178
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
179
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
177
180
|
:param pulumi.Input[_builtins.str] name: The name of the cluster, unique within the project and
|
178
181
|
zone.
|
179
182
|
|
@@ -246,8 +249,9 @@ class _ClusterState:
|
|
246
249
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
247
250
|
"""
|
248
251
|
The list of the labels (key/value pairs) configured on the resource and to be applied to instances in the cluster.
|
249
|
-
|
250
|
-
|
252
|
+
|
253
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
254
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
251
255
|
"""
|
252
256
|
return pulumi.get(self, "labels")
|
253
257
|
|
@@ -451,8 +455,9 @@ class Cluster(pulumi.CustomResource):
|
|
451
455
|
:param pulumi.Input[Union['ClusterClusterConfigArgs', 'ClusterClusterConfigArgsDict']] cluster_config: Allows you to configure various aspects of the cluster.
|
452
456
|
Structure defined below.
|
453
457
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: The list of the labels (key/value pairs) configured on the resource and to be applied to instances in the cluster.
|
454
|
-
|
455
|
-
|
458
|
+
|
459
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
460
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
456
461
|
:param pulumi.Input[_builtins.str] name: The name of the cluster, unique within the project and
|
457
462
|
zone.
|
458
463
|
|
@@ -654,8 +659,9 @@ class Cluster(pulumi.CustomResource):
|
|
654
659
|
instances in the cluster. GCP generates some itself including `goog-dataproc-cluster-name`
|
655
660
|
which is the name of the cluster.
|
656
661
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: The list of the labels (key/value pairs) configured on the resource and to be applied to instances in the cluster.
|
657
|
-
|
658
|
-
|
662
|
+
|
663
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
664
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
659
665
|
:param pulumi.Input[_builtins.str] name: The name of the cluster, unique within the project and
|
660
666
|
zone.
|
661
667
|
|
@@ -712,8 +718,9 @@ class Cluster(pulumi.CustomResource):
|
|
712
718
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
713
719
|
"""
|
714
720
|
The list of the labels (key/value pairs) configured on the resource and to be applied to instances in the cluster.
|
715
|
-
|
716
|
-
|
721
|
+
|
722
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
723
|
+
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
717
724
|
"""
|
718
725
|
return pulumi.get(self, "labels")
|
719
726
|
|