pulumi-gcp 7.12.0a1709365001__py3-none-any.whl → 7.13.0a1709814369__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +72 -0
- pulumi_gcp/appengine/application_url_dispatch_rules.py +2 -2
- pulumi_gcp/appengine/engine_split_traffic.py +4 -4
- pulumi_gcp/appengine/service_network_settings.py +2 -2
- pulumi_gcp/appengine/standard_app_version.py +4 -4
- pulumi_gcp/bigquery/_inputs.py +88 -0
- pulumi_gcp/bigquery/dataset_iam_binding.py +35 -28
- pulumi_gcp/bigquery/dataset_iam_member.py +35 -28
- pulumi_gcp/bigquery/dataset_iam_policy.py +35 -28
- pulumi_gcp/bigquery/outputs.py +91 -0
- pulumi_gcp/bigquery/routine.py +118 -12
- pulumi_gcp/certificatemanager/dns_authorization.py +63 -14
- pulumi_gcp/clouddeploy/__init__.py +4 -0
- pulumi_gcp/clouddeploy/_inputs.py +80 -0
- pulumi_gcp/clouddeploy/automation.py +16 -0
- pulumi_gcp/clouddeploy/get_target_iam_policy.py +162 -0
- pulumi_gcp/clouddeploy/outputs.py +56 -0
- pulumi_gcp/clouddeploy/target_iam_binding.py +324 -0
- pulumi_gcp/clouddeploy/target_iam_member.py +324 -0
- pulumi_gcp/clouddeploy/target_iam_policy.py +253 -0
- pulumi_gcp/cloudfunctionsv2/function.py +0 -2
- pulumi_gcp/cloudrunv2/_inputs.py +4 -2
- pulumi_gcp/cloudrunv2/outputs.py +8 -4
- pulumi_gcp/composer/_inputs.py +18 -2
- pulumi_gcp/composer/outputs.py +29 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/get_forwarding_rules.py +142 -0
- pulumi_gcp/compute/instance_group_membership.py +4 -4
- pulumi_gcp/compute/outputs.py +816 -0
- pulumi_gcp/compute/region_network_endpoint.py +2 -2
- pulumi_gcp/compute/region_target_https_proxy.py +162 -37
- pulumi_gcp/compute/router_nat.py +8 -8
- pulumi_gcp/container/_inputs.py +80 -0
- pulumi_gcp/container/cluster.py +20 -16
- pulumi_gcp/container/outputs.py +115 -1
- pulumi_gcp/firebase/__init__.py +4 -0
- pulumi_gcp/firebase/app_check_app_attest_config.py +461 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +465 -0
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +474 -0
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +511 -0
- pulumi_gcp/gkehub/scope.py +85 -0
- pulumi_gcp/integrationconnectors/connection.py +4 -4
- pulumi_gcp/looker/_inputs.py +42 -0
- pulumi_gcp/looker/instance.py +90 -0
- pulumi_gcp/looker/outputs.py +34 -0
- pulumi_gcp/migrationcenter/__init__.py +3 -0
- pulumi_gcp/migrationcenter/_inputs.py +500 -0
- pulumi_gcp/migrationcenter/outputs.py +562 -0
- pulumi_gcp/migrationcenter/preference_set.py +687 -0
- pulumi_gcp/monitoring/custom_service.py +4 -2
- pulumi_gcp/monitoring/generic_service.py +4 -2
- pulumi_gcp/monitoring/get_app_engine_service.py +2 -2
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/_inputs.py +275 -0
- pulumi_gcp/netapp/outputs.py +290 -0
- pulumi_gcp/netapp/volume.py +140 -2
- pulumi_gcp/netapp/volume_replication.py +1292 -0
- pulumi_gcp/notebooks/instance.py +1 -1
- pulumi_gcp/securityposture/_inputs.py +22 -19
- pulumi_gcp/securityposture/outputs.py +18 -15
- pulumi_gcp/securityposture/posture.py +28 -48
- pulumi_gcp/spanner/_inputs.py +20 -0
- pulumi_gcp/spanner/database_iam_binding.py +134 -0
- pulumi_gcp/spanner/database_iam_member.py +134 -0
- pulumi_gcp/spanner/database_iam_policy.py +114 -0
- pulumi_gcp/spanner/outputs.py +20 -0
- pulumi_gcp/workbench/_inputs.py +157 -2
- pulumi_gcp/workbench/instance.py +52 -0
- pulumi_gcp/workbench/outputs.py +154 -2
- {pulumi_gcp-7.12.0a1709365001.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.12.0a1709365001.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/RECORD +73 -60
- {pulumi_gcp-7.12.0a1709365001.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.12.0a1709365001.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/_inputs.py
CHANGED
@@ -4639,15 +4639,23 @@ class ClusterEnableK8sBetaApisArgs:
|
|
4639
4639
|
class ClusterFleetArgs:
|
4640
4640
|
def __init__(__self__, *,
|
4641
4641
|
membership: Optional[pulumi.Input[str]] = None,
|
4642
|
+
membership_id: Optional[pulumi.Input[str]] = None,
|
4643
|
+
membership_location: Optional[pulumi.Input[str]] = None,
|
4642
4644
|
pre_registered: Optional[pulumi.Input[bool]] = None,
|
4643
4645
|
project: Optional[pulumi.Input[str]] = None):
|
4644
4646
|
"""
|
4645
4647
|
:param pulumi.Input[str] membership: Full resource name of the registered fleet membership of the cluster.
|
4648
|
+
:param pulumi.Input[str] membership_id: Short name of the fleet membership, for example "member-1".
|
4649
|
+
:param pulumi.Input[str] membership_location: Location of the fleet membership, for example "us-central1".
|
4646
4650
|
:param pulumi.Input[bool] pre_registered: Whether the cluster has been registered via the fleet API.
|
4647
4651
|
:param pulumi.Input[str] project: The name of the Fleet host project where this cluster will be registered.
|
4648
4652
|
"""
|
4649
4653
|
if membership is not None:
|
4650
4654
|
pulumi.set(__self__, "membership", membership)
|
4655
|
+
if membership_id is not None:
|
4656
|
+
pulumi.set(__self__, "membership_id", membership_id)
|
4657
|
+
if membership_location is not None:
|
4658
|
+
pulumi.set(__self__, "membership_location", membership_location)
|
4651
4659
|
if pre_registered is not None:
|
4652
4660
|
pulumi.set(__self__, "pre_registered", pre_registered)
|
4653
4661
|
if project is not None:
|
@@ -4665,6 +4673,30 @@ class ClusterFleetArgs:
|
|
4665
4673
|
def membership(self, value: Optional[pulumi.Input[str]]):
|
4666
4674
|
pulumi.set(self, "membership", value)
|
4667
4675
|
|
4676
|
+
@property
|
4677
|
+
@pulumi.getter(name="membershipId")
|
4678
|
+
def membership_id(self) -> Optional[pulumi.Input[str]]:
|
4679
|
+
"""
|
4680
|
+
Short name of the fleet membership, for example "member-1".
|
4681
|
+
"""
|
4682
|
+
return pulumi.get(self, "membership_id")
|
4683
|
+
|
4684
|
+
@membership_id.setter
|
4685
|
+
def membership_id(self, value: Optional[pulumi.Input[str]]):
|
4686
|
+
pulumi.set(self, "membership_id", value)
|
4687
|
+
|
4688
|
+
@property
|
4689
|
+
@pulumi.getter(name="membershipLocation")
|
4690
|
+
def membership_location(self) -> Optional[pulumi.Input[str]]:
|
4691
|
+
"""
|
4692
|
+
Location of the fleet membership, for example "us-central1".
|
4693
|
+
"""
|
4694
|
+
return pulumi.get(self, "membership_location")
|
4695
|
+
|
4696
|
+
@membership_location.setter
|
4697
|
+
def membership_location(self, value: Optional[pulumi.Input[str]]):
|
4698
|
+
pulumi.set(self, "membership_location", value)
|
4699
|
+
|
4668
4700
|
@property
|
4669
4701
|
@pulumi.getter(name="preRegistered")
|
4670
4702
|
def pre_registered(self) -> Optional[pulumi.Input[bool]]:
|
@@ -5605,6 +5637,7 @@ class ClusterNodeConfigArgs:
|
|
5605
5637
|
preemptible: Optional[pulumi.Input[bool]] = None,
|
5606
5638
|
reservation_affinity: Optional[pulumi.Input['ClusterNodeConfigReservationAffinityArgs']] = None,
|
5607
5639
|
resource_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
5640
|
+
resource_manager_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
5608
5641
|
sandbox_config: Optional[pulumi.Input['ClusterNodeConfigSandboxConfigArgs']] = None,
|
5609
5642
|
service_account: Optional[pulumi.Input[str]] = None,
|
5610
5643
|
shielded_instance_config: Optional[pulumi.Input['ClusterNodeConfigShieldedInstanceConfigArgs']] = None,
|
@@ -5680,6 +5713,7 @@ class ClusterNodeConfigArgs:
|
|
5680
5713
|
:param pulumi.Input['ClusterNodeConfigReservationAffinityArgs'] reservation_affinity: The configuration of the desired reservation which instances could take capacity from. Structure is documented below.
|
5681
5714
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_labels: The GCP labels (key/value pairs) to be applied to each node. Refer [here](https://cloud.google.com/kubernetes-engine/docs/how-to/creating-managing-labels)
|
5682
5715
|
for how these labels are applied to clusters, node pools and nodes.
|
5716
|
+
:param pulumi.Input[Mapping[str, Any]] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
5683
5717
|
:param pulumi.Input['ClusterNodeConfigSandboxConfigArgs'] sandbox_config: Sandbox configuration for this node.
|
5684
5718
|
:param pulumi.Input[str] service_account: The service account to be used by the Node VMs.
|
5685
5719
|
If not specified, the "default" service account is used.
|
@@ -5759,6 +5793,8 @@ class ClusterNodeConfigArgs:
|
|
5759
5793
|
pulumi.set(__self__, "reservation_affinity", reservation_affinity)
|
5760
5794
|
if resource_labels is not None:
|
5761
5795
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
5796
|
+
if resource_manager_tags is not None:
|
5797
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
5762
5798
|
if sandbox_config is not None:
|
5763
5799
|
pulumi.set(__self__, "sandbox_config", sandbox_config)
|
5764
5800
|
if service_account is not None:
|
@@ -6161,6 +6197,18 @@ class ClusterNodeConfigArgs:
|
|
6161
6197
|
def resource_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
6162
6198
|
pulumi.set(self, "resource_labels", value)
|
6163
6199
|
|
6200
|
+
@property
|
6201
|
+
@pulumi.getter(name="resourceManagerTags")
|
6202
|
+
def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
6203
|
+
"""
|
6204
|
+
A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
6205
|
+
"""
|
6206
|
+
return pulumi.get(self, "resource_manager_tags")
|
6207
|
+
|
6208
|
+
@resource_manager_tags.setter
|
6209
|
+
def resource_manager_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
6210
|
+
pulumi.set(self, "resource_manager_tags", value)
|
6211
|
+
|
6164
6212
|
@property
|
6165
6213
|
@pulumi.getter(name="sandboxConfig")
|
6166
6214
|
def sandbox_config(self) -> Optional[pulumi.Input['ClusterNodeConfigSandboxConfigArgs']]:
|
@@ -8009,6 +8057,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
8009
8057
|
preemptible: Optional[pulumi.Input[bool]] = None,
|
8010
8058
|
reservation_affinity: Optional[pulumi.Input['ClusterNodePoolNodeConfigReservationAffinityArgs']] = None,
|
8011
8059
|
resource_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
8060
|
+
resource_manager_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
8012
8061
|
sandbox_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigSandboxConfigArgs']] = None,
|
8013
8062
|
service_account: Optional[pulumi.Input[str]] = None,
|
8014
8063
|
shielded_instance_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigShieldedInstanceConfigArgs']] = None,
|
@@ -8084,6 +8133,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
8084
8133
|
:param pulumi.Input['ClusterNodePoolNodeConfigReservationAffinityArgs'] reservation_affinity: The configuration of the desired reservation which instances could take capacity from. Structure is documented below.
|
8085
8134
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_labels: The GCP labels (key/value pairs) to be applied to each node. Refer [here](https://cloud.google.com/kubernetes-engine/docs/how-to/creating-managing-labels)
|
8086
8135
|
for how these labels are applied to clusters, node pools and nodes.
|
8136
|
+
:param pulumi.Input[Mapping[str, Any]] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
8087
8137
|
:param pulumi.Input['ClusterNodePoolNodeConfigSandboxConfigArgs'] sandbox_config: Sandbox configuration for this node.
|
8088
8138
|
:param pulumi.Input[str] service_account: The service account to be used by the Node VMs.
|
8089
8139
|
If not specified, the "default" service account is used.
|
@@ -8163,6 +8213,8 @@ class ClusterNodePoolNodeConfigArgs:
|
|
8163
8213
|
pulumi.set(__self__, "reservation_affinity", reservation_affinity)
|
8164
8214
|
if resource_labels is not None:
|
8165
8215
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
8216
|
+
if resource_manager_tags is not None:
|
8217
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
8166
8218
|
if sandbox_config is not None:
|
8167
8219
|
pulumi.set(__self__, "sandbox_config", sandbox_config)
|
8168
8220
|
if service_account is not None:
|
@@ -8565,6 +8617,18 @@ class ClusterNodePoolNodeConfigArgs:
|
|
8565
8617
|
def resource_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
8566
8618
|
pulumi.set(self, "resource_labels", value)
|
8567
8619
|
|
8620
|
+
@property
|
8621
|
+
@pulumi.getter(name="resourceManagerTags")
|
8622
|
+
def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
8623
|
+
"""
|
8624
|
+
A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
8625
|
+
"""
|
8626
|
+
return pulumi.get(self, "resource_manager_tags")
|
8627
|
+
|
8628
|
+
@resource_manager_tags.setter
|
8629
|
+
def resource_manager_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
8630
|
+
pulumi.set(self, "resource_manager_tags", value)
|
8631
|
+
|
8568
8632
|
@property
|
8569
8633
|
@pulumi.getter(name="sandboxConfig")
|
8570
8634
|
def sandbox_config(self) -> Optional[pulumi.Input['ClusterNodePoolNodeConfigSandboxConfigArgs']]:
|
@@ -10898,6 +10962,7 @@ class NodePoolNodeConfigArgs:
|
|
10898
10962
|
preemptible: Optional[pulumi.Input[bool]] = None,
|
10899
10963
|
reservation_affinity: Optional[pulumi.Input['NodePoolNodeConfigReservationAffinityArgs']] = None,
|
10900
10964
|
resource_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
10965
|
+
resource_manager_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
10901
10966
|
sandbox_config: Optional[pulumi.Input['NodePoolNodeConfigSandboxConfigArgs']] = None,
|
10902
10967
|
service_account: Optional[pulumi.Input[str]] = None,
|
10903
10968
|
shielded_instance_config: Optional[pulumi.Input['NodePoolNodeConfigShieldedInstanceConfigArgs']] = None,
|
@@ -10936,6 +11001,7 @@ class NodePoolNodeConfigArgs:
|
|
10936
11001
|
:param pulumi.Input[bool] preemptible: Whether the nodes are created as preemptible VM instances.
|
10937
11002
|
:param pulumi.Input['NodePoolNodeConfigReservationAffinityArgs'] reservation_affinity: The reservation affinity configuration for the node pool.
|
10938
11003
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_labels: The GCE resource labels (a map of key/value pairs) to be applied to the node pool.
|
11004
|
+
:param pulumi.Input[Mapping[str, Any]] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
10939
11005
|
:param pulumi.Input['NodePoolNodeConfigSandboxConfigArgs'] sandbox_config: Sandbox configuration for this node.
|
10940
11006
|
:param pulumi.Input[str] service_account: The Google Cloud Platform Service Account to be used by the node VMs.
|
10941
11007
|
:param pulumi.Input['NodePoolNodeConfigShieldedInstanceConfigArgs'] shielded_instance_config: Shielded Instance options.
|
@@ -11003,6 +11069,8 @@ class NodePoolNodeConfigArgs:
|
|
11003
11069
|
pulumi.set(__self__, "reservation_affinity", reservation_affinity)
|
11004
11070
|
if resource_labels is not None:
|
11005
11071
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
11072
|
+
if resource_manager_tags is not None:
|
11073
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
11006
11074
|
if sandbox_config is not None:
|
11007
11075
|
pulumi.set(__self__, "sandbox_config", sandbox_config)
|
11008
11076
|
if service_account is not None:
|
@@ -11368,6 +11436,18 @@ class NodePoolNodeConfigArgs:
|
|
11368
11436
|
def resource_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
11369
11437
|
pulumi.set(self, "resource_labels", value)
|
11370
11438
|
|
11439
|
+
@property
|
11440
|
+
@pulumi.getter(name="resourceManagerTags")
|
11441
|
+
def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
11442
|
+
"""
|
11443
|
+
A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
11444
|
+
"""
|
11445
|
+
return pulumi.get(self, "resource_manager_tags")
|
11446
|
+
|
11447
|
+
@resource_manager_tags.setter
|
11448
|
+
def resource_manager_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
11449
|
+
pulumi.set(self, "resource_manager_tags", value)
|
11450
|
+
|
11371
11451
|
@property
|
11372
11452
|
@pulumi.getter(name="sandboxConfig")
|
11373
11453
|
def sandbox_config(self) -> Optional[pulumi.Input['NodePoolNodeConfigSandboxConfigArgs']]:
|
pulumi_gcp/container/cluster.py
CHANGED
@@ -2938,16 +2938,18 @@ class Cluster(pulumi.CustomResource):
|
|
2938
2938
|
workload_identity_config: Optional[pulumi.Input[pulumi.InputType['ClusterWorkloadIdentityConfigArgs']]] = None,
|
2939
2939
|
__props__=None):
|
2940
2940
|
"""
|
2941
|
-
Manages a Google Kubernetes Engine (GKE) cluster.
|
2942
|
-
[the official documentation](https://cloud.google.com/container-engine/docs/clusters)
|
2943
|
-
and [the API reference](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters).
|
2941
|
+
Manages a Google Kubernetes Engine (GKE) cluster.
|
2944
2942
|
|
2945
|
-
|
2946
|
-
|
2947
|
-
|
2943
|
+
To get more information about GKE clusters, see:
|
2944
|
+
* [The API reference](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters)
|
2945
|
+
* How-to guides
|
2946
|
+
* [GKE overview](https://cloud.google.com/kubernetes-engine/docs/concepts/kubernetes-engine-overview)
|
2947
|
+
* [About cluster configuration choices](https://cloud.google.com/kubernetes-engine/docs/concepts/types-of-clusters)
|
2948
2948
|
|
2949
|
-
>
|
2950
|
-
|
2949
|
+
> On version 5.0.0+ of the provider, you must explicitly set `deletion_protection = false`
|
2950
|
+
and run `pulumi up` to write the field to state in order to destroy a cluster.
|
2951
|
+
|
2952
|
+
> All arguments and attributes (including certificate outputs) will be stored in the raw state as
|
2951
2953
|
plaintext. [Read more about secrets in state](https://www.pulumi.com/docs/intro/concepts/programming-model/#secrets).
|
2952
2954
|
|
2953
2955
|
## Example Usage
|
@@ -3265,16 +3267,18 @@ class Cluster(pulumi.CustomResource):
|
|
3265
3267
|
args: Optional[ClusterArgs] = None,
|
3266
3268
|
opts: Optional[pulumi.ResourceOptions] = None):
|
3267
3269
|
"""
|
3268
|
-
Manages a Google Kubernetes Engine (GKE) cluster.
|
3269
|
-
|
3270
|
-
|
3270
|
+
Manages a Google Kubernetes Engine (GKE) cluster.
|
3271
|
+
|
3272
|
+
To get more information about GKE clusters, see:
|
3273
|
+
* [The API reference](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters)
|
3274
|
+
* How-to guides
|
3275
|
+
* [GKE overview](https://cloud.google.com/kubernetes-engine/docs/concepts/kubernetes-engine-overview)
|
3276
|
+
* [About cluster configuration choices](https://cloud.google.com/kubernetes-engine/docs/concepts/types-of-clusters)
|
3271
3277
|
|
3272
|
-
>
|
3273
|
-
|
3274
|
-
It is recommended to not set this field (or set it to true) until you're ready to destroy.
|
3278
|
+
> On version 5.0.0+ of the provider, you must explicitly set `deletion_protection = false`
|
3279
|
+
and run `pulumi up` to write the field to state in order to destroy a cluster.
|
3275
3280
|
|
3276
|
-
>
|
3277
|
-
passwords as well as certificate outputs will be stored in the raw state as
|
3281
|
+
> All arguments and attributes (including certificate outputs) will be stored in the raw state as
|
3278
3282
|
plaintext. [Read more about secrets in state](https://www.pulumi.com/docs/intro/concepts/programming-model/#secrets).
|
3279
3283
|
|
3280
3284
|
## Example Usage
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -5234,7 +5234,11 @@ class ClusterFleet(dict):
|
|
5234
5234
|
@staticmethod
|
5235
5235
|
def __key_warning(key: str):
|
5236
5236
|
suggest = None
|
5237
|
-
if key == "
|
5237
|
+
if key == "membershipId":
|
5238
|
+
suggest = "membership_id"
|
5239
|
+
elif key == "membershipLocation":
|
5240
|
+
suggest = "membership_location"
|
5241
|
+
elif key == "preRegistered":
|
5238
5242
|
suggest = "pre_registered"
|
5239
5243
|
|
5240
5244
|
if suggest:
|
@@ -5250,15 +5254,23 @@ class ClusterFleet(dict):
|
|
5250
5254
|
|
5251
5255
|
def __init__(__self__, *,
|
5252
5256
|
membership: Optional[str] = None,
|
5257
|
+
membership_id: Optional[str] = None,
|
5258
|
+
membership_location: Optional[str] = None,
|
5253
5259
|
pre_registered: Optional[bool] = None,
|
5254
5260
|
project: Optional[str] = None):
|
5255
5261
|
"""
|
5256
5262
|
:param str membership: Full resource name of the registered fleet membership of the cluster.
|
5263
|
+
:param str membership_id: Short name of the fleet membership, for example "member-1".
|
5264
|
+
:param str membership_location: Location of the fleet membership, for example "us-central1".
|
5257
5265
|
:param bool pre_registered: Whether the cluster has been registered via the fleet API.
|
5258
5266
|
:param str project: The name of the Fleet host project where this cluster will be registered.
|
5259
5267
|
"""
|
5260
5268
|
if membership is not None:
|
5261
5269
|
pulumi.set(__self__, "membership", membership)
|
5270
|
+
if membership_id is not None:
|
5271
|
+
pulumi.set(__self__, "membership_id", membership_id)
|
5272
|
+
if membership_location is not None:
|
5273
|
+
pulumi.set(__self__, "membership_location", membership_location)
|
5262
5274
|
if pre_registered is not None:
|
5263
5275
|
pulumi.set(__self__, "pre_registered", pre_registered)
|
5264
5276
|
if project is not None:
|
@@ -5272,6 +5284,22 @@ class ClusterFleet(dict):
|
|
5272
5284
|
"""
|
5273
5285
|
return pulumi.get(self, "membership")
|
5274
5286
|
|
5287
|
+
@property
|
5288
|
+
@pulumi.getter(name="membershipId")
|
5289
|
+
def membership_id(self) -> Optional[str]:
|
5290
|
+
"""
|
5291
|
+
Short name of the fleet membership, for example "member-1".
|
5292
|
+
"""
|
5293
|
+
return pulumi.get(self, "membership_id")
|
5294
|
+
|
5295
|
+
@property
|
5296
|
+
@pulumi.getter(name="membershipLocation")
|
5297
|
+
def membership_location(self) -> Optional[str]:
|
5298
|
+
"""
|
5299
|
+
Location of the fleet membership, for example "us-central1".
|
5300
|
+
"""
|
5301
|
+
return pulumi.get(self, "membership_location")
|
5302
|
+
|
5275
5303
|
@property
|
5276
5304
|
@pulumi.getter(name="preRegistered")
|
5277
5305
|
def pre_registered(self) -> Optional[bool]:
|
@@ -6328,6 +6356,8 @@ class ClusterNodeConfig(dict):
|
|
6328
6356
|
suggest = "reservation_affinity"
|
6329
6357
|
elif key == "resourceLabels":
|
6330
6358
|
suggest = "resource_labels"
|
6359
|
+
elif key == "resourceManagerTags":
|
6360
|
+
suggest = "resource_manager_tags"
|
6331
6361
|
elif key == "sandboxConfig":
|
6332
6362
|
suggest = "sandbox_config"
|
6333
6363
|
elif key == "serviceAccount":
|
@@ -6380,6 +6410,7 @@ class ClusterNodeConfig(dict):
|
|
6380
6410
|
preemptible: Optional[bool] = None,
|
6381
6411
|
reservation_affinity: Optional['outputs.ClusterNodeConfigReservationAffinity'] = None,
|
6382
6412
|
resource_labels: Optional[Mapping[str, str]] = None,
|
6413
|
+
resource_manager_tags: Optional[Mapping[str, Any]] = None,
|
6383
6414
|
sandbox_config: Optional['outputs.ClusterNodeConfigSandboxConfig'] = None,
|
6384
6415
|
service_account: Optional[str] = None,
|
6385
6416
|
shielded_instance_config: Optional['outputs.ClusterNodeConfigShieldedInstanceConfig'] = None,
|
@@ -6455,6 +6486,7 @@ class ClusterNodeConfig(dict):
|
|
6455
6486
|
:param 'ClusterNodeConfigReservationAffinityArgs' reservation_affinity: The configuration of the desired reservation which instances could take capacity from. Structure is documented below.
|
6456
6487
|
:param Mapping[str, str] resource_labels: The GCP labels (key/value pairs) to be applied to each node. Refer [here](https://cloud.google.com/kubernetes-engine/docs/how-to/creating-managing-labels)
|
6457
6488
|
for how these labels are applied to clusters, node pools and nodes.
|
6489
|
+
:param Mapping[str, Any] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
6458
6490
|
:param 'ClusterNodeConfigSandboxConfigArgs' sandbox_config: Sandbox configuration for this node.
|
6459
6491
|
:param str service_account: The service account to be used by the Node VMs.
|
6460
6492
|
If not specified, the "default" service account is used.
|
@@ -6534,6 +6566,8 @@ class ClusterNodeConfig(dict):
|
|
6534
6566
|
pulumi.set(__self__, "reservation_affinity", reservation_affinity)
|
6535
6567
|
if resource_labels is not None:
|
6536
6568
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
6569
|
+
if resource_manager_tags is not None:
|
6570
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
6537
6571
|
if sandbox_config is not None:
|
6538
6572
|
pulumi.set(__self__, "sandbox_config", sandbox_config)
|
6539
6573
|
if service_account is not None:
|
@@ -6820,6 +6854,14 @@ class ClusterNodeConfig(dict):
|
|
6820
6854
|
"""
|
6821
6855
|
return pulumi.get(self, "resource_labels")
|
6822
6856
|
|
6857
|
+
@property
|
6858
|
+
@pulumi.getter(name="resourceManagerTags")
|
6859
|
+
def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
|
6860
|
+
"""
|
6861
|
+
A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
6862
|
+
"""
|
6863
|
+
return pulumi.get(self, "resource_manager_tags")
|
6864
|
+
|
6823
6865
|
@property
|
6824
6866
|
@pulumi.getter(name="sandboxConfig")
|
6825
6867
|
def sandbox_config(self) -> Optional['outputs.ClusterNodeConfigSandboxConfig']:
|
@@ -8778,6 +8820,8 @@ class ClusterNodePoolNodeConfig(dict):
|
|
8778
8820
|
suggest = "reservation_affinity"
|
8779
8821
|
elif key == "resourceLabels":
|
8780
8822
|
suggest = "resource_labels"
|
8823
|
+
elif key == "resourceManagerTags":
|
8824
|
+
suggest = "resource_manager_tags"
|
8781
8825
|
elif key == "sandboxConfig":
|
8782
8826
|
suggest = "sandbox_config"
|
8783
8827
|
elif key == "serviceAccount":
|
@@ -8830,6 +8874,7 @@ class ClusterNodePoolNodeConfig(dict):
|
|
8830
8874
|
preemptible: Optional[bool] = None,
|
8831
8875
|
reservation_affinity: Optional['outputs.ClusterNodePoolNodeConfigReservationAffinity'] = None,
|
8832
8876
|
resource_labels: Optional[Mapping[str, str]] = None,
|
8877
|
+
resource_manager_tags: Optional[Mapping[str, Any]] = None,
|
8833
8878
|
sandbox_config: Optional['outputs.ClusterNodePoolNodeConfigSandboxConfig'] = None,
|
8834
8879
|
service_account: Optional[str] = None,
|
8835
8880
|
shielded_instance_config: Optional['outputs.ClusterNodePoolNodeConfigShieldedInstanceConfig'] = None,
|
@@ -8905,6 +8950,7 @@ class ClusterNodePoolNodeConfig(dict):
|
|
8905
8950
|
:param 'ClusterNodePoolNodeConfigReservationAffinityArgs' reservation_affinity: The configuration of the desired reservation which instances could take capacity from. Structure is documented below.
|
8906
8951
|
:param Mapping[str, str] resource_labels: The GCP labels (key/value pairs) to be applied to each node. Refer [here](https://cloud.google.com/kubernetes-engine/docs/how-to/creating-managing-labels)
|
8907
8952
|
for how these labels are applied to clusters, node pools and nodes.
|
8953
|
+
:param Mapping[str, Any] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
8908
8954
|
:param 'ClusterNodePoolNodeConfigSandboxConfigArgs' sandbox_config: Sandbox configuration for this node.
|
8909
8955
|
:param str service_account: The service account to be used by the Node VMs.
|
8910
8956
|
If not specified, the "default" service account is used.
|
@@ -8984,6 +9030,8 @@ class ClusterNodePoolNodeConfig(dict):
|
|
8984
9030
|
pulumi.set(__self__, "reservation_affinity", reservation_affinity)
|
8985
9031
|
if resource_labels is not None:
|
8986
9032
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
9033
|
+
if resource_manager_tags is not None:
|
9034
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
8987
9035
|
if sandbox_config is not None:
|
8988
9036
|
pulumi.set(__self__, "sandbox_config", sandbox_config)
|
8989
9037
|
if service_account is not None:
|
@@ -9270,6 +9318,14 @@ class ClusterNodePoolNodeConfig(dict):
|
|
9270
9318
|
"""
|
9271
9319
|
return pulumi.get(self, "resource_labels")
|
9272
9320
|
|
9321
|
+
@property
|
9322
|
+
@pulumi.getter(name="resourceManagerTags")
|
9323
|
+
def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
|
9324
|
+
"""
|
9325
|
+
A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
9326
|
+
"""
|
9327
|
+
return pulumi.get(self, "resource_manager_tags")
|
9328
|
+
|
9273
9329
|
@property
|
9274
9330
|
@pulumi.getter(name="sandboxConfig")
|
9275
9331
|
def sandbox_config(self) -> Optional['outputs.ClusterNodePoolNodeConfigSandboxConfig']:
|
@@ -11801,6 +11857,8 @@ class NodePoolNodeConfig(dict):
|
|
11801
11857
|
suggest = "reservation_affinity"
|
11802
11858
|
elif key == "resourceLabels":
|
11803
11859
|
suggest = "resource_labels"
|
11860
|
+
elif key == "resourceManagerTags":
|
11861
|
+
suggest = "resource_manager_tags"
|
11804
11862
|
elif key == "sandboxConfig":
|
11805
11863
|
suggest = "sandbox_config"
|
11806
11864
|
elif key == "serviceAccount":
|
@@ -11853,6 +11911,7 @@ class NodePoolNodeConfig(dict):
|
|
11853
11911
|
preemptible: Optional[bool] = None,
|
11854
11912
|
reservation_affinity: Optional['outputs.NodePoolNodeConfigReservationAffinity'] = None,
|
11855
11913
|
resource_labels: Optional[Mapping[str, str]] = None,
|
11914
|
+
resource_manager_tags: Optional[Mapping[str, Any]] = None,
|
11856
11915
|
sandbox_config: Optional['outputs.NodePoolNodeConfigSandboxConfig'] = None,
|
11857
11916
|
service_account: Optional[str] = None,
|
11858
11917
|
shielded_instance_config: Optional['outputs.NodePoolNodeConfigShieldedInstanceConfig'] = None,
|
@@ -11891,6 +11950,7 @@ class NodePoolNodeConfig(dict):
|
|
11891
11950
|
:param bool preemptible: Whether the nodes are created as preemptible VM instances.
|
11892
11951
|
:param 'NodePoolNodeConfigReservationAffinityArgs' reservation_affinity: The reservation affinity configuration for the node pool.
|
11893
11952
|
:param Mapping[str, str] resource_labels: The GCE resource labels (a map of key/value pairs) to be applied to the node pool.
|
11953
|
+
:param Mapping[str, Any] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
11894
11954
|
:param 'NodePoolNodeConfigSandboxConfigArgs' sandbox_config: Sandbox configuration for this node.
|
11895
11955
|
:param str service_account: The Google Cloud Platform Service Account to be used by the node VMs.
|
11896
11956
|
:param 'NodePoolNodeConfigShieldedInstanceConfigArgs' shielded_instance_config: Shielded Instance options.
|
@@ -11958,6 +12018,8 @@ class NodePoolNodeConfig(dict):
|
|
11958
12018
|
pulumi.set(__self__, "reservation_affinity", reservation_affinity)
|
11959
12019
|
if resource_labels is not None:
|
11960
12020
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
12021
|
+
if resource_manager_tags is not None:
|
12022
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
11961
12023
|
if sandbox_config is not None:
|
11962
12024
|
pulumi.set(__self__, "sandbox_config", sandbox_config)
|
11963
12025
|
if service_account is not None:
|
@@ -12207,6 +12269,14 @@ class NodePoolNodeConfig(dict):
|
|
12207
12269
|
"""
|
12208
12270
|
return pulumi.get(self, "resource_labels")
|
12209
12271
|
|
12272
|
+
@property
|
12273
|
+
@pulumi.getter(name="resourceManagerTags")
|
12274
|
+
def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
|
12275
|
+
"""
|
12276
|
+
A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
12277
|
+
"""
|
12278
|
+
return pulumi.get(self, "resource_manager_tags")
|
12279
|
+
|
12210
12280
|
@property
|
12211
12281
|
@pulumi.getter(name="sandboxConfig")
|
12212
12282
|
def sandbox_config(self) -> Optional['outputs.NodePoolNodeConfigSandboxConfig']:
|
@@ -14388,15 +14458,21 @@ class GetClusterEnableK8sBetaApiResult(dict):
|
|
14388
14458
|
class GetClusterFleetResult(dict):
|
14389
14459
|
def __init__(__self__, *,
|
14390
14460
|
membership: str,
|
14461
|
+
membership_id: str,
|
14462
|
+
membership_location: str,
|
14391
14463
|
pre_registered: bool,
|
14392
14464
|
project: str):
|
14393
14465
|
"""
|
14394
14466
|
:param str membership: Full resource name of the registered fleet membership of the cluster.
|
14467
|
+
:param str membership_id: Short name of the fleet membership, for example "member-1".
|
14468
|
+
:param str membership_location: Location of the fleet membership, for example "us-central1".
|
14395
14469
|
:param bool pre_registered: Whether the cluster has been registered via the fleet API.
|
14396
14470
|
:param str project: The project in which the resource belongs. If it
|
14397
14471
|
is not provided, the provider project is used.
|
14398
14472
|
"""
|
14399
14473
|
pulumi.set(__self__, "membership", membership)
|
14474
|
+
pulumi.set(__self__, "membership_id", membership_id)
|
14475
|
+
pulumi.set(__self__, "membership_location", membership_location)
|
14400
14476
|
pulumi.set(__self__, "pre_registered", pre_registered)
|
14401
14477
|
pulumi.set(__self__, "project", project)
|
14402
14478
|
|
@@ -14408,6 +14484,22 @@ class GetClusterFleetResult(dict):
|
|
14408
14484
|
"""
|
14409
14485
|
return pulumi.get(self, "membership")
|
14410
14486
|
|
14487
|
+
@property
|
14488
|
+
@pulumi.getter(name="membershipId")
|
14489
|
+
def membership_id(self) -> str:
|
14490
|
+
"""
|
14491
|
+
Short name of the fleet membership, for example "member-1".
|
14492
|
+
"""
|
14493
|
+
return pulumi.get(self, "membership_id")
|
14494
|
+
|
14495
|
+
@property
|
14496
|
+
@pulumi.getter(name="membershipLocation")
|
14497
|
+
def membership_location(self) -> str:
|
14498
|
+
"""
|
14499
|
+
Location of the fleet membership, for example "us-central1".
|
14500
|
+
"""
|
14501
|
+
return pulumi.get(self, "membership_location")
|
14502
|
+
|
14411
14503
|
@property
|
14412
14504
|
@pulumi.getter(name="preRegistered")
|
14413
14505
|
def pre_registered(self) -> bool:
|
@@ -15040,6 +15132,7 @@ class GetClusterNodeConfigResult(dict):
|
|
15040
15132
|
preemptible: bool,
|
15041
15133
|
reservation_affinities: Sequence['outputs.GetClusterNodeConfigReservationAffinityResult'],
|
15042
15134
|
resource_labels: Mapping[str, str],
|
15135
|
+
resource_manager_tags: Mapping[str, Any],
|
15043
15136
|
sandbox_configs: Sequence['outputs.GetClusterNodeConfigSandboxConfigResult'],
|
15044
15137
|
service_account: str,
|
15045
15138
|
shielded_instance_configs: Sequence['outputs.GetClusterNodeConfigShieldedInstanceConfigResult'],
|
@@ -15078,6 +15171,7 @@ class GetClusterNodeConfigResult(dict):
|
|
15078
15171
|
:param bool preemptible: Whether the nodes are created as preemptible VM instances.
|
15079
15172
|
:param Sequence['GetClusterNodeConfigReservationAffinityArgs'] reservation_affinities: The reservation affinity configuration for the node pool.
|
15080
15173
|
:param Mapping[str, str] resource_labels: The GCE resource labels (a map of key/value pairs) to be applied to the node pool.
|
15174
|
+
:param Mapping[str, Any] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
15081
15175
|
:param Sequence['GetClusterNodeConfigSandboxConfigArgs'] sandbox_configs: Sandbox configuration for this node.
|
15082
15176
|
:param str service_account: The Google Cloud Platform Service Account to be used by the node VMs.
|
15083
15177
|
:param Sequence['GetClusterNodeConfigShieldedInstanceConfigArgs'] shielded_instance_configs: Shielded Instance options.
|
@@ -15116,6 +15210,7 @@ class GetClusterNodeConfigResult(dict):
|
|
15116
15210
|
pulumi.set(__self__, "preemptible", preemptible)
|
15117
15211
|
pulumi.set(__self__, "reservation_affinities", reservation_affinities)
|
15118
15212
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
15213
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
15119
15214
|
pulumi.set(__self__, "sandbox_configs", sandbox_configs)
|
15120
15215
|
pulumi.set(__self__, "service_account", service_account)
|
15121
15216
|
pulumi.set(__self__, "shielded_instance_configs", shielded_instance_configs)
|
@@ -15357,6 +15452,14 @@ class GetClusterNodeConfigResult(dict):
|
|
15357
15452
|
"""
|
15358
15453
|
return pulumi.get(self, "resource_labels")
|
15359
15454
|
|
15455
|
+
@property
|
15456
|
+
@pulumi.getter(name="resourceManagerTags")
|
15457
|
+
def resource_manager_tags(self) -> Mapping[str, Any]:
|
15458
|
+
"""
|
15459
|
+
A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
15460
|
+
"""
|
15461
|
+
return pulumi.get(self, "resource_manager_tags")
|
15462
|
+
|
15360
15463
|
@property
|
15361
15464
|
@pulumi.getter(name="sandboxConfigs")
|
15362
15465
|
def sandbox_configs(self) -> Sequence['outputs.GetClusterNodeConfigSandboxConfigResult']:
|
@@ -16613,6 +16716,7 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
16613
16716
|
preemptible: bool,
|
16614
16717
|
reservation_affinities: Sequence['outputs.GetClusterNodePoolNodeConfigReservationAffinityResult'],
|
16615
16718
|
resource_labels: Mapping[str, str],
|
16719
|
+
resource_manager_tags: Mapping[str, Any],
|
16616
16720
|
sandbox_configs: Sequence['outputs.GetClusterNodePoolNodeConfigSandboxConfigResult'],
|
16617
16721
|
service_account: str,
|
16618
16722
|
shielded_instance_configs: Sequence['outputs.GetClusterNodePoolNodeConfigShieldedInstanceConfigResult'],
|
@@ -16651,6 +16755,7 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
16651
16755
|
:param bool preemptible: Whether the nodes are created as preemptible VM instances.
|
16652
16756
|
:param Sequence['GetClusterNodePoolNodeConfigReservationAffinityArgs'] reservation_affinities: The reservation affinity configuration for the node pool.
|
16653
16757
|
:param Mapping[str, str] resource_labels: The GCE resource labels (a map of key/value pairs) to be applied to the node pool.
|
16758
|
+
:param Mapping[str, Any] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
16654
16759
|
:param Sequence['GetClusterNodePoolNodeConfigSandboxConfigArgs'] sandbox_configs: Sandbox configuration for this node.
|
16655
16760
|
:param str service_account: The Google Cloud Platform Service Account to be used by the node VMs.
|
16656
16761
|
:param Sequence['GetClusterNodePoolNodeConfigShieldedInstanceConfigArgs'] shielded_instance_configs: Shielded Instance options.
|
@@ -16689,6 +16794,7 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
16689
16794
|
pulumi.set(__self__, "preemptible", preemptible)
|
16690
16795
|
pulumi.set(__self__, "reservation_affinities", reservation_affinities)
|
16691
16796
|
pulumi.set(__self__, "resource_labels", resource_labels)
|
16797
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
16692
16798
|
pulumi.set(__self__, "sandbox_configs", sandbox_configs)
|
16693
16799
|
pulumi.set(__self__, "service_account", service_account)
|
16694
16800
|
pulumi.set(__self__, "shielded_instance_configs", shielded_instance_configs)
|
@@ -16930,6 +17036,14 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
16930
17036
|
"""
|
16931
17037
|
return pulumi.get(self, "resource_labels")
|
16932
17038
|
|
17039
|
+
@property
|
17040
|
+
@pulumi.getter(name="resourceManagerTags")
|
17041
|
+
def resource_manager_tags(self) -> Mapping[str, Any]:
|
17042
|
+
"""
|
17043
|
+
A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
17044
|
+
"""
|
17045
|
+
return pulumi.get(self, "resource_manager_tags")
|
17046
|
+
|
16933
17047
|
@property
|
16934
17048
|
@pulumi.getter(name="sandboxConfigs")
|
16935
17049
|
def sandbox_configs(self) -> Sequence['outputs.GetClusterNodePoolNodeConfigSandboxConfigResult']:
|
pulumi_gcp/firebase/__init__.py
CHANGED
@@ -6,7 +6,11 @@ from .. import _utilities
|
|
6
6
|
import typing
|
7
7
|
# Export this package's modules as members:
|
8
8
|
from .android_app import *
|
9
|
+
from .app_check_app_attest_config import *
|
9
10
|
from .app_check_debug_token import *
|
11
|
+
from .app_check_play_integrity_config import *
|
12
|
+
from .app_check_recaptcha_enterprise_config import *
|
13
|
+
from .app_check_recaptcha_v3_config import *
|
10
14
|
from .app_check_service_config import *
|
11
15
|
from .apple_app import *
|
12
16
|
from .database_instance import *
|