pulumi-gcp 8.25.0a1743575622__py3-none-any.whl → 8.25.0a1743706148__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/__init__.py +104 -0
- pulumi_gcp/_inputs.py +48 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
- pulumi_gcp/accesscontextmanager/outputs.py +204 -12
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/_inputs.py +58 -0
- pulumi_gcp/apigee/dns_zone.py +491 -0
- pulumi_gcp/apigee/outputs.py +53 -0
- pulumi_gcp/bigquery/reservation_assignment.py +7 -7
- pulumi_gcp/bigtable/table.py +8 -8
- pulumi_gcp/chronicle/data_access_label.py +2 -2
- pulumi_gcp/chronicle/data_access_scope.py +16 -0
- pulumi_gcp/chronicle/reference_list.py +16 -0
- pulumi_gcp/chronicle/retrohunt.py +16 -0
- pulumi_gcp/chronicle/rule.py +16 -0
- pulumi_gcp/chronicle/rule_deployment.py +16 -0
- pulumi_gcp/chronicle/watchlist.py +16 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2011 -43
- pulumi_gcp/compute/backend_service.py +121 -3
- pulumi_gcp/compute/get_backend_service.py +15 -4
- pulumi_gcp/compute/get_instance.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +482 -0
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/get_subnetwork.py +43 -1
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +94 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/outputs.py +3578 -139
- pulumi_gcp/compute/public_delegated_prefix.py +69 -15
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/subnetwork.py +35 -5
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/outputs.py +27 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +12 -12
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/get_registry_image.py +4 -0
- pulumi_gcp/container/get_registry_repository.py +4 -0
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/container/registry.py +4 -0
- pulumi_gcp/datafusion/instance.py +68 -0
- pulumi_gcp/dataproc/__init__.py +8 -0
- pulumi_gcp/dataproc/_inputs.py +196 -0
- pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
- pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
- pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
- pulumi_gcp/dataproc/metastore_federation.py +38 -2
- pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
- pulumi_gcp/dataproc/outputs.py +112 -0
- pulumi_gcp/datastream/_inputs.py +311 -94
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/datastream/outputs.py +244 -51
- pulumi_gcp/datastream/stream.py +216 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/sitemap.py +504 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/enrollment.py +980 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +484 -0
- pulumi_gcp/firebase/app_hosting_build.py +1232 -0
- pulumi_gcp/firebase/outputs.py +333 -0
- pulumi_gcp/identityplatform/_inputs.py +91 -0
- pulumi_gcp/identityplatform/outputs.py +73 -0
- pulumi_gcp/identityplatform/tenant.py +56 -0
- pulumi_gcp/managedkafka/cluster.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/_inputs.py +826 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +344 -23
- pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
- pulumi_gcp/memorystore/outputs.py +889 -8
- pulumi_gcp/networksecurity/_inputs.py +473 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +291 -1
- pulumi_gcp/networksecurity/security_profile.py +8 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
- pulumi_gcp/organizations/outputs.py +96 -0
- pulumi_gcp/parametermanager/get_parameter.py +16 -1
- pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
- pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
- pulumi_gcp/parametermanager/get_parameters.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
- pulumi_gcp/parametermanager/outputs.py +11 -0
- pulumi_gcp/parametermanager/parameter.py +88 -0
- pulumi_gcp/parametermanager/parameter_version.py +74 -0
- pulumi_gcp/parametermanager/regional_parameter.py +12 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
- pulumi_gcp/provider.py +15 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +136 -0
- pulumi_gcp/redis/cluster.py +54 -0
- pulumi_gcp/redis/outputs.py +114 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
- pulumi_gcp/storage/__init__.py +4 -0
- pulumi_gcp/storage/_inputs.py +596 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
- pulumi_gcp/storage/get_bucket_object_content.py +16 -1
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
- pulumi_gcp/storage/outputs.py +2132 -1312
- pulumi_gcp/workbench/instance.py +14 -2
- {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/RECORD +126 -107
- {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/cluster.py
CHANGED
@@ -37,6 +37,7 @@ class ClusterArgs:
|
|
37
37
|
default_snat_status: Optional[pulumi.Input['ClusterDefaultSnatStatusArgs']] = None,
|
38
38
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
39
39
|
description: Optional[pulumi.Input[str]] = None,
|
40
|
+
disable_l4_lb_firewall_reconciliation: Optional[pulumi.Input[bool]] = None,
|
40
41
|
dns_config: Optional[pulumi.Input['ClusterDnsConfigArgs']] = None,
|
41
42
|
enable_autopilot: Optional[pulumi.Input[bool]] = None,
|
42
43
|
enable_cilium_clusterwide_network_policy: Optional[pulumi.Input[bool]] = None,
|
@@ -133,6 +134,7 @@ class ClusterArgs:
|
|
133
134
|
for more information.
|
134
135
|
:param pulumi.Input['ClusterDefaultSnatStatusArgs'] default_snat_status: [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
|
135
136
|
:param pulumi.Input[str] description: Description of the cluster.
|
137
|
+
:param pulumi.Input[bool] disable_l4_lb_firewall_reconciliation: Disable L4 load balancer VPC firewalls to enable firewall policies.
|
136
138
|
:param pulumi.Input['ClusterDnsConfigArgs'] dns_config: Configuration for [Using Cloud DNS for GKE](https://cloud.google.com/kubernetes-engine/docs/how-to/cloud-dns). Structure is documented below.
|
137
139
|
:param pulumi.Input[bool] enable_autopilot: Enable Autopilot for this cluster. Defaults to `false`.
|
138
140
|
Note that when this option is enabled, certain features of Standard GKE are not available.
|
@@ -344,6 +346,8 @@ class ClusterArgs:
|
|
344
346
|
pulumi.set(__self__, "deletion_protection", deletion_protection)
|
345
347
|
if description is not None:
|
346
348
|
pulumi.set(__self__, "description", description)
|
349
|
+
if disable_l4_lb_firewall_reconciliation is not None:
|
350
|
+
pulumi.set(__self__, "disable_l4_lb_firewall_reconciliation", disable_l4_lb_firewall_reconciliation)
|
347
351
|
if dns_config is not None:
|
348
352
|
pulumi.set(__self__, "dns_config", dns_config)
|
349
353
|
if enable_autopilot is not None:
|
@@ -671,6 +675,18 @@ class ClusterArgs:
|
|
671
675
|
def description(self, value: Optional[pulumi.Input[str]]):
|
672
676
|
pulumi.set(self, "description", value)
|
673
677
|
|
678
|
+
@property
|
679
|
+
@pulumi.getter(name="disableL4LbFirewallReconciliation")
|
680
|
+
def disable_l4_lb_firewall_reconciliation(self) -> Optional[pulumi.Input[bool]]:
|
681
|
+
"""
|
682
|
+
Disable L4 load balancer VPC firewalls to enable firewall policies.
|
683
|
+
"""
|
684
|
+
return pulumi.get(self, "disable_l4_lb_firewall_reconciliation")
|
685
|
+
|
686
|
+
@disable_l4_lb_firewall_reconciliation.setter
|
687
|
+
def disable_l4_lb_firewall_reconciliation(self, value: Optional[pulumi.Input[bool]]):
|
688
|
+
pulumi.set(self, "disable_l4_lb_firewall_reconciliation", value)
|
689
|
+
|
674
690
|
@property
|
675
691
|
@pulumi.getter(name="dnsConfig")
|
676
692
|
def dns_config(self) -> Optional[pulumi.Input['ClusterDnsConfigArgs']]:
|
@@ -1507,6 +1523,7 @@ class _ClusterState:
|
|
1507
1523
|
default_snat_status: Optional[pulumi.Input['ClusterDefaultSnatStatusArgs']] = None,
|
1508
1524
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
1509
1525
|
description: Optional[pulumi.Input[str]] = None,
|
1526
|
+
disable_l4_lb_firewall_reconciliation: Optional[pulumi.Input[bool]] = None,
|
1510
1527
|
dns_config: Optional[pulumi.Input['ClusterDnsConfigArgs']] = None,
|
1511
1528
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1512
1529
|
enable_autopilot: Optional[pulumi.Input[bool]] = None,
|
@@ -1612,6 +1629,7 @@ class _ClusterState:
|
|
1612
1629
|
for more information.
|
1613
1630
|
:param pulumi.Input['ClusterDefaultSnatStatusArgs'] default_snat_status: [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
|
1614
1631
|
:param pulumi.Input[str] description: Description of the cluster.
|
1632
|
+
:param pulumi.Input[bool] disable_l4_lb_firewall_reconciliation: Disable L4 load balancer VPC firewalls to enable firewall policies.
|
1615
1633
|
:param pulumi.Input['ClusterDnsConfigArgs'] dns_config: Configuration for [Using Cloud DNS for GKE](https://cloud.google.com/kubernetes-engine/docs/how-to/cloud-dns). Structure is documented below.
|
1616
1634
|
:param pulumi.Input[Mapping[str, pulumi.Input[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.
|
1617
1635
|
:param pulumi.Input[bool] enable_autopilot: Enable Autopilot for this cluster. Defaults to `false`.
|
@@ -1838,6 +1856,8 @@ class _ClusterState:
|
|
1838
1856
|
pulumi.set(__self__, "deletion_protection", deletion_protection)
|
1839
1857
|
if description is not None:
|
1840
1858
|
pulumi.set(__self__, "description", description)
|
1859
|
+
if disable_l4_lb_firewall_reconciliation is not None:
|
1860
|
+
pulumi.set(__self__, "disable_l4_lb_firewall_reconciliation", disable_l4_lb_firewall_reconciliation)
|
1841
1861
|
if dns_config is not None:
|
1842
1862
|
pulumi.set(__self__, "dns_config", dns_config)
|
1843
1863
|
if effective_labels is not None:
|
@@ -2183,6 +2203,18 @@ class _ClusterState:
|
|
2183
2203
|
def description(self, value: Optional[pulumi.Input[str]]):
|
2184
2204
|
pulumi.set(self, "description", value)
|
2185
2205
|
|
2206
|
+
@property
|
2207
|
+
@pulumi.getter(name="disableL4LbFirewallReconciliation")
|
2208
|
+
def disable_l4_lb_firewall_reconciliation(self) -> Optional[pulumi.Input[bool]]:
|
2209
|
+
"""
|
2210
|
+
Disable L4 load balancer VPC firewalls to enable firewall policies.
|
2211
|
+
"""
|
2212
|
+
return pulumi.get(self, "disable_l4_lb_firewall_reconciliation")
|
2213
|
+
|
2214
|
+
@disable_l4_lb_firewall_reconciliation.setter
|
2215
|
+
def disable_l4_lb_firewall_reconciliation(self, value: Optional[pulumi.Input[bool]]):
|
2216
|
+
pulumi.set(self, "disable_l4_lb_firewall_reconciliation", value)
|
2217
|
+
|
2186
2218
|
@property
|
2187
2219
|
@pulumi.getter(name="dnsConfig")
|
2188
2220
|
def dns_config(self) -> Optional[pulumi.Input['ClusterDnsConfigArgs']]:
|
@@ -3133,6 +3165,7 @@ class Cluster(pulumi.CustomResource):
|
|
3133
3165
|
default_snat_status: Optional[pulumi.Input[Union['ClusterDefaultSnatStatusArgs', 'ClusterDefaultSnatStatusArgsDict']]] = None,
|
3134
3166
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
3135
3167
|
description: Optional[pulumi.Input[str]] = None,
|
3168
|
+
disable_l4_lb_firewall_reconciliation: Optional[pulumi.Input[bool]] = None,
|
3136
3169
|
dns_config: Optional[pulumi.Input[Union['ClusterDnsConfigArgs', 'ClusterDnsConfigArgsDict']]] = None,
|
3137
3170
|
enable_autopilot: Optional[pulumi.Input[bool]] = None,
|
3138
3171
|
enable_cilium_clusterwide_network_policy: Optional[pulumi.Input[bool]] = None,
|
@@ -3351,6 +3384,7 @@ class Cluster(pulumi.CustomResource):
|
|
3351
3384
|
for more information.
|
3352
3385
|
:param pulumi.Input[Union['ClusterDefaultSnatStatusArgs', 'ClusterDefaultSnatStatusArgsDict']] default_snat_status: [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
|
3353
3386
|
:param pulumi.Input[str] description: Description of the cluster.
|
3387
|
+
:param pulumi.Input[bool] disable_l4_lb_firewall_reconciliation: Disable L4 load balancer VPC firewalls to enable firewall policies.
|
3354
3388
|
:param pulumi.Input[Union['ClusterDnsConfigArgs', 'ClusterDnsConfigArgsDict']] dns_config: Configuration for [Using Cloud DNS for GKE](https://cloud.google.com/kubernetes-engine/docs/how-to/cloud-dns). Structure is documented below.
|
3355
3389
|
:param pulumi.Input[bool] enable_autopilot: Enable Autopilot for this cluster. Defaults to `false`.
|
3356
3390
|
Note that when this option is enabled, certain features of Standard GKE are not available.
|
@@ -3688,6 +3722,7 @@ class Cluster(pulumi.CustomResource):
|
|
3688
3722
|
default_snat_status: Optional[pulumi.Input[Union['ClusterDefaultSnatStatusArgs', 'ClusterDefaultSnatStatusArgsDict']]] = None,
|
3689
3723
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
3690
3724
|
description: Optional[pulumi.Input[str]] = None,
|
3725
|
+
disable_l4_lb_firewall_reconciliation: Optional[pulumi.Input[bool]] = None,
|
3691
3726
|
dns_config: Optional[pulumi.Input[Union['ClusterDnsConfigArgs', 'ClusterDnsConfigArgsDict']]] = None,
|
3692
3727
|
enable_autopilot: Optional[pulumi.Input[bool]] = None,
|
3693
3728
|
enable_cilium_clusterwide_network_policy: Optional[pulumi.Input[bool]] = None,
|
@@ -3771,6 +3806,7 @@ class Cluster(pulumi.CustomResource):
|
|
3771
3806
|
__props__.__dict__["default_snat_status"] = default_snat_status
|
3772
3807
|
__props__.__dict__["deletion_protection"] = deletion_protection
|
3773
3808
|
__props__.__dict__["description"] = description
|
3809
|
+
__props__.__dict__["disable_l4_lb_firewall_reconciliation"] = disable_l4_lb_firewall_reconciliation
|
3774
3810
|
__props__.__dict__["dns_config"] = dns_config
|
3775
3811
|
__props__.__dict__["enable_autopilot"] = enable_autopilot
|
3776
3812
|
__props__.__dict__["enable_cilium_clusterwide_network_policy"] = enable_cilium_clusterwide_network_policy
|
@@ -3866,6 +3902,7 @@ class Cluster(pulumi.CustomResource):
|
|
3866
3902
|
default_snat_status: Optional[pulumi.Input[Union['ClusterDefaultSnatStatusArgs', 'ClusterDefaultSnatStatusArgsDict']]] = None,
|
3867
3903
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
3868
3904
|
description: Optional[pulumi.Input[str]] = None,
|
3905
|
+
disable_l4_lb_firewall_reconciliation: Optional[pulumi.Input[bool]] = None,
|
3869
3906
|
dns_config: Optional[pulumi.Input[Union['ClusterDnsConfigArgs', 'ClusterDnsConfigArgsDict']]] = None,
|
3870
3907
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
3871
3908
|
enable_autopilot: Optional[pulumi.Input[bool]] = None,
|
@@ -3976,6 +4013,7 @@ class Cluster(pulumi.CustomResource):
|
|
3976
4013
|
for more information.
|
3977
4014
|
:param pulumi.Input[Union['ClusterDefaultSnatStatusArgs', 'ClusterDefaultSnatStatusArgsDict']] default_snat_status: [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
|
3978
4015
|
:param pulumi.Input[str] description: Description of the cluster.
|
4016
|
+
:param pulumi.Input[bool] disable_l4_lb_firewall_reconciliation: Disable L4 load balancer VPC firewalls to enable firewall policies.
|
3979
4017
|
:param pulumi.Input[Union['ClusterDnsConfigArgs', 'ClusterDnsConfigArgsDict']] dns_config: Configuration for [Using Cloud DNS for GKE](https://cloud.google.com/kubernetes-engine/docs/how-to/cloud-dns). Structure is documented below.
|
3980
4018
|
:param pulumi.Input[Mapping[str, pulumi.Input[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.
|
3981
4019
|
:param pulumi.Input[bool] enable_autopilot: Enable Autopilot for this cluster. Defaults to `false`.
|
@@ -4190,6 +4228,7 @@ class Cluster(pulumi.CustomResource):
|
|
4190
4228
|
__props__.__dict__["default_snat_status"] = default_snat_status
|
4191
4229
|
__props__.__dict__["deletion_protection"] = deletion_protection
|
4192
4230
|
__props__.__dict__["description"] = description
|
4231
|
+
__props__.__dict__["disable_l4_lb_firewall_reconciliation"] = disable_l4_lb_firewall_reconciliation
|
4193
4232
|
__props__.__dict__["dns_config"] = dns_config
|
4194
4233
|
__props__.__dict__["effective_labels"] = effective_labels
|
4195
4234
|
__props__.__dict__["enable_autopilot"] = enable_autopilot
|
@@ -4405,6 +4444,14 @@ class Cluster(pulumi.CustomResource):
|
|
4405
4444
|
"""
|
4406
4445
|
return pulumi.get(self, "description")
|
4407
4446
|
|
4447
|
+
@property
|
4448
|
+
@pulumi.getter(name="disableL4LbFirewallReconciliation")
|
4449
|
+
def disable_l4_lb_firewall_reconciliation(self) -> pulumi.Output[Optional[bool]]:
|
4450
|
+
"""
|
4451
|
+
Disable L4 load balancer VPC firewalls to enable firewall policies.
|
4452
|
+
"""
|
4453
|
+
return pulumi.get(self, "disable_l4_lb_firewall_reconciliation")
|
4454
|
+
|
4408
4455
|
@property
|
4409
4456
|
@pulumi.getter(name="dnsConfig")
|
4410
4457
|
def dns_config(self) -> pulumi.Output[Optional['outputs.ClusterDnsConfig']]:
|
@@ -27,7 +27,7 @@ class GetClusterResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getCluster.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, addons_configs=None, allow_net_admin=None, authenticator_groups_configs=None, binary_authorizations=None, cluster_autoscalings=None, cluster_ipv4_cidr=None, cluster_telemetries=None, confidential_nodes=None, control_plane_endpoints_configs=None, cost_management_configs=None, database_encryptions=None, datapath_provider=None, default_max_pods_per_node=None, default_snat_statuses=None, deletion_protection=None, description=None, dns_configs=None, effective_labels=None, enable_autopilot=None, enable_cilium_clusterwide_network_policy=None, enable_fqdn_network_policy=None, enable_intranode_visibility=None, enable_k8s_beta_apis=None, enable_kubernetes_alpha=None, enable_l4_ilb_subsetting=None, enable_legacy_abac=None, enable_multi_networking=None, enable_shielded_nodes=None, enable_tpu=None, endpoint=None, enterprise_configs=None, fleets=None, gateway_api_configs=None, id=None, identity_service_configs=None, initial_node_count=None, ip_allocation_policies=None, label_fingerprint=None, location=None, logging_configs=None, logging_service=None, maintenance_policies=None, master_authorized_networks_configs=None, master_auths=None, master_version=None, mesh_certificates=None, min_master_version=None, monitoring_configs=None, monitoring_service=None, name=None, network=None, network_policies=None, networking_mode=None, node_configs=None, node_locations=None, node_pool_auto_configs=None, node_pool_defaults=None, node_pools=None, node_version=None, notification_configs=None, operation=None, pod_autoscalings=None, pod_security_policy_configs=None, private_cluster_configs=None, private_ipv6_google_access=None, project=None, protect_configs=None, pulumi_labels=None, release_channels=None, remove_default_node_pool=None, resource_labels=None, resource_usage_export_configs=None, secret_manager_configs=None, security_posture_configs=None, self_link=None, service_external_ips_configs=None, services_ipv4_cidr=None, subnetwork=None, tpu_configs=None, tpu_ipv4_cidr_block=None, user_managed_keys_configs=None, vertical_pod_autoscalings=None, workload_alts_configs=None, workload_identity_configs=None):
|
30
|
+
def __init__(__self__, addons_configs=None, allow_net_admin=None, authenticator_groups_configs=None, binary_authorizations=None, cluster_autoscalings=None, cluster_ipv4_cidr=None, cluster_telemetries=None, confidential_nodes=None, control_plane_endpoints_configs=None, cost_management_configs=None, database_encryptions=None, datapath_provider=None, default_max_pods_per_node=None, default_snat_statuses=None, deletion_protection=None, description=None, disable_l4_lb_firewall_reconciliation=None, dns_configs=None, effective_labels=None, enable_autopilot=None, enable_cilium_clusterwide_network_policy=None, enable_fqdn_network_policy=None, enable_intranode_visibility=None, enable_k8s_beta_apis=None, enable_kubernetes_alpha=None, enable_l4_ilb_subsetting=None, enable_legacy_abac=None, enable_multi_networking=None, enable_shielded_nodes=None, enable_tpu=None, endpoint=None, enterprise_configs=None, fleets=None, gateway_api_configs=None, id=None, identity_service_configs=None, initial_node_count=None, ip_allocation_policies=None, label_fingerprint=None, location=None, logging_configs=None, logging_service=None, maintenance_policies=None, master_authorized_networks_configs=None, master_auths=None, master_version=None, mesh_certificates=None, min_master_version=None, monitoring_configs=None, monitoring_service=None, name=None, network=None, network_policies=None, networking_mode=None, node_configs=None, node_locations=None, node_pool_auto_configs=None, node_pool_defaults=None, node_pools=None, node_version=None, notification_configs=None, operation=None, pod_autoscalings=None, pod_security_policy_configs=None, private_cluster_configs=None, private_ipv6_google_access=None, project=None, protect_configs=None, pulumi_labels=None, release_channels=None, remove_default_node_pool=None, resource_labels=None, resource_usage_export_configs=None, secret_manager_configs=None, security_posture_configs=None, self_link=None, service_external_ips_configs=None, services_ipv4_cidr=None, subnetwork=None, tpu_configs=None, tpu_ipv4_cidr_block=None, user_managed_keys_configs=None, vertical_pod_autoscalings=None, workload_alts_configs=None, workload_identity_configs=None):
|
31
31
|
if addons_configs and not isinstance(addons_configs, list):
|
32
32
|
raise TypeError("Expected argument 'addons_configs' to be a list")
|
33
33
|
pulumi.set(__self__, "addons_configs", addons_configs)
|
@@ -76,6 +76,9 @@ class GetClusterResult:
|
|
76
76
|
if description and not isinstance(description, str):
|
77
77
|
raise TypeError("Expected argument 'description' to be a str")
|
78
78
|
pulumi.set(__self__, "description", description)
|
79
|
+
if disable_l4_lb_firewall_reconciliation and not isinstance(disable_l4_lb_firewall_reconciliation, bool):
|
80
|
+
raise TypeError("Expected argument 'disable_l4_lb_firewall_reconciliation' to be a bool")
|
81
|
+
pulumi.set(__self__, "disable_l4_lb_firewall_reconciliation", disable_l4_lb_firewall_reconciliation)
|
79
82
|
if dns_configs and not isinstance(dns_configs, list):
|
80
83
|
raise TypeError("Expected argument 'dns_configs' to be a list")
|
81
84
|
pulumi.set(__self__, "dns_configs", dns_configs)
|
@@ -361,6 +364,11 @@ class GetClusterResult:
|
|
361
364
|
def description(self) -> str:
|
362
365
|
return pulumi.get(self, "description")
|
363
366
|
|
367
|
+
@property
|
368
|
+
@pulumi.getter(name="disableL4LbFirewallReconciliation")
|
369
|
+
def disable_l4_lb_firewall_reconciliation(self) -> bool:
|
370
|
+
return pulumi.get(self, "disable_l4_lb_firewall_reconciliation")
|
371
|
+
|
364
372
|
@property
|
365
373
|
@pulumi.getter(name="dnsConfigs")
|
366
374
|
def dns_configs(self) -> Sequence['outputs.GetClusterDnsConfigResult']:
|
@@ -727,6 +735,7 @@ class AwaitableGetClusterResult(GetClusterResult):
|
|
727
735
|
default_snat_statuses=self.default_snat_statuses,
|
728
736
|
deletion_protection=self.deletion_protection,
|
729
737
|
description=self.description,
|
738
|
+
disable_l4_lb_firewall_reconciliation=self.disable_l4_lb_firewall_reconciliation,
|
730
739
|
dns_configs=self.dns_configs,
|
731
740
|
effective_labels=self.effective_labels,
|
732
741
|
enable_autopilot=self.enable_autopilot,
|
@@ -850,6 +859,7 @@ def get_cluster(location: Optional[str] = None,
|
|
850
859
|
default_snat_statuses=pulumi.get(__ret__, 'default_snat_statuses'),
|
851
860
|
deletion_protection=pulumi.get(__ret__, 'deletion_protection'),
|
852
861
|
description=pulumi.get(__ret__, 'description'),
|
862
|
+
disable_l4_lb_firewall_reconciliation=pulumi.get(__ret__, 'disable_l4_lb_firewall_reconciliation'),
|
853
863
|
dns_configs=pulumi.get(__ret__, 'dns_configs'),
|
854
864
|
effective_labels=pulumi.get(__ret__, 'effective_labels'),
|
855
865
|
enable_autopilot=pulumi.get(__ret__, 'enable_autopilot'),
|
@@ -970,6 +980,7 @@ def get_cluster_output(location: Optional[pulumi.Input[Optional[str]]] = None,
|
|
970
980
|
default_snat_statuses=pulumi.get(__response__, 'default_snat_statuses'),
|
971
981
|
deletion_protection=pulumi.get(__response__, 'deletion_protection'),
|
972
982
|
description=pulumi.get(__response__, 'description'),
|
983
|
+
disable_l4_lb_firewall_reconciliation=pulumi.get(__response__, 'disable_l4_lb_firewall_reconciliation'),
|
973
984
|
dns_configs=pulumi.get(__response__, 'dns_configs'),
|
974
985
|
effective_labels=pulumi.get(__response__, 'effective_labels'),
|
975
986
|
enable_autopilot=pulumi.get(__response__, 'enable_autopilot'),
|
@@ -113,6 +113,8 @@ def get_registry_image(digest: Optional[str] = None,
|
|
113
113
|
tag: Optional[str] = None,
|
114
114
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistryImageResult:
|
115
115
|
"""
|
116
|
+
> **Warning**: Container Registry is deprecated. Effective March 18, 2025, Container Registry is shut down and writing images to Container Registry is unavailable. Resource will be removed in future major release.
|
117
|
+
|
116
118
|
This data source fetches the project name, and provides the appropriate URLs to use for container registry for this project.
|
117
119
|
|
118
120
|
The URLs are computed entirely offline - as long as the project exists, they will be valid, but this data source does not contact Google Container Registry (GCR) at any point.
|
@@ -158,6 +160,8 @@ def get_registry_image_output(digest: Optional[pulumi.Input[Optional[str]]] = No
|
|
158
160
|
tag: Optional[pulumi.Input[Optional[str]]] = None,
|
159
161
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegistryImageResult]:
|
160
162
|
"""
|
163
|
+
> **Warning**: Container Registry is deprecated. Effective March 18, 2025, Container Registry is shut down and writing images to Container Registry is unavailable. Resource will be removed in future major release.
|
164
|
+
|
161
165
|
This data source fetches the project name, and provides the appropriate URLs to use for container registry for this project.
|
162
166
|
|
163
167
|
The URLs are computed entirely offline - as long as the project exists, they will be valid, but this data source does not contact Google Container Registry (GCR) at any point.
|
@@ -83,6 +83,8 @@ def get_registry_repository(project: Optional[str] = None,
|
|
83
83
|
region: Optional[str] = None,
|
84
84
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistryRepositoryResult:
|
85
85
|
"""
|
86
|
+
> **Warning**: Container Registry is deprecated. Effective March 18, 2025, Container Registry is shut down and writing images to Container Registry is unavailable. Resource will be removed in future major release.
|
87
|
+
|
86
88
|
This data source fetches the project name, and provides the appropriate URLs to use for container registry for this project.
|
87
89
|
|
88
90
|
The URLs are computed entirely offline - as long as the project exists, they will be valid, but this data source does not contact Google Container Registry (GCR) at any point.
|
@@ -116,6 +118,8 @@ def get_registry_repository_output(project: Optional[pulumi.Input[Optional[str]]
|
|
116
118
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
117
119
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegistryRepositoryResult]:
|
118
120
|
"""
|
121
|
+
> **Warning**: Container Registry is deprecated. Effective March 18, 2025, Container Registry is shut down and writing images to Container Registry is unavailable. Resource will be removed in future major release.
|
122
|
+
|
119
123
|
This data source fetches the project name, and provides the appropriate URLs to use for container registry for this project.
|
120
124
|
|
121
125
|
The URLs are computed entirely offline - as long as the project exists, they will be valid, but this data source does not contact Google Container Registry (GCR) at any point.
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -4669,7 +4669,7 @@ class ClusterClusterAutoscaling(dict):
|
|
4669
4669
|
:param 'ClusterClusterAutoscalingAutoProvisioningDefaultsArgs' auto_provisioning_defaults: Contains defaults for a node pool created by NAP. A subset of fields also apply to
|
4670
4670
|
GKE Autopilot clusters.
|
4671
4671
|
Structure is documented below.
|
4672
|
-
:param Sequence[str] auto_provisioning_locations: The list of Google Compute Engine
|
4672
|
+
:param Sequence[str] auto_provisioning_locations: The list of Google Compute Engine
|
4673
4673
|
[zones](https://cloud.google.com/compute/docs/zones#available) in which the
|
4674
4674
|
NodePool's nodes can be created by NAP.
|
4675
4675
|
:param str autoscaling_profile: Configuration
|
@@ -4708,7 +4708,7 @@ class ClusterClusterAutoscaling(dict):
|
|
4708
4708
|
@pulumi.getter(name="autoProvisioningLocations")
|
4709
4709
|
def auto_provisioning_locations(self) -> Optional[Sequence[str]]:
|
4710
4710
|
"""
|
4711
|
-
The list of Google Compute Engine
|
4711
|
+
The list of Google Compute Engine
|
4712
4712
|
[zones](https://cloud.google.com/compute/docs/zones#available) in which the
|
4713
4713
|
NodePool's nodes can be created by NAP.
|
4714
4714
|
"""
|
@@ -7841,7 +7841,7 @@ class ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfig(dict):
|
|
7841
7841
|
certificate_authority_domain_configs: Optional[Sequence['outputs.ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfig']] = None):
|
7842
7842
|
"""
|
7843
7843
|
:param bool enabled: Enables private registry config. If set to false, all other fields in this object must not be set.
|
7844
|
-
:param Sequence['ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs'] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
7844
|
+
:param Sequence['ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs'] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
7845
7845
|
"""
|
7846
7846
|
pulumi.set(__self__, "enabled", enabled)
|
7847
7847
|
if certificate_authority_domain_configs is not None:
|
@@ -7859,7 +7859,7 @@ class ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfig(dict):
|
|
7859
7859
|
@pulumi.getter(name="certificateAuthorityDomainConfigs")
|
7860
7860
|
def certificate_authority_domain_configs(self) -> Optional[Sequence['outputs.ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfig']]:
|
7861
7861
|
"""
|
7862
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
7862
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
7863
7863
|
"""
|
7864
7864
|
return pulumi.get(self, "certificate_authority_domain_configs")
|
7865
7865
|
|
@@ -9811,7 +9811,7 @@ class ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAc
|
|
9811
9811
|
certificate_authority_domain_configs: Optional[Sequence['outputs.ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfig']] = None):
|
9812
9812
|
"""
|
9813
9813
|
:param bool enabled: Enables private registry config. If set to false, all other fields in this object must not be set.
|
9814
|
-
:param Sequence['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs'] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9814
|
+
:param Sequence['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs'] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9815
9815
|
"""
|
9816
9816
|
pulumi.set(__self__, "enabled", enabled)
|
9817
9817
|
if certificate_authority_domain_configs is not None:
|
@@ -9829,7 +9829,7 @@ class ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAc
|
|
9829
9829
|
@pulumi.getter(name="certificateAuthorityDomainConfigs")
|
9830
9830
|
def certificate_authority_domain_configs(self) -> Optional[Sequence['outputs.ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfig']]:
|
9831
9831
|
"""
|
9832
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9832
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9833
9833
|
"""
|
9834
9834
|
return pulumi.get(self, "certificate_authority_domain_configs")
|
9835
9835
|
|
@@ -11154,7 +11154,7 @@ class ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfig(dict)
|
|
11154
11154
|
certificate_authority_domain_configs: Optional[Sequence['outputs.ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfig']] = None):
|
11155
11155
|
"""
|
11156
11156
|
:param bool enabled: Enables private registry config. If set to false, all other fields in this object must not be set.
|
11157
|
-
:param Sequence['ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs'] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
11157
|
+
:param Sequence['ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs'] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
11158
11158
|
"""
|
11159
11159
|
pulumi.set(__self__, "enabled", enabled)
|
11160
11160
|
if certificate_authority_domain_configs is not None:
|
@@ -11172,7 +11172,7 @@ class ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfig(dict)
|
|
11172
11172
|
@pulumi.getter(name="certificateAuthorityDomainConfigs")
|
11173
11173
|
def certificate_authority_domain_configs(self) -> Optional[Sequence['outputs.ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfig']]:
|
11174
11174
|
"""
|
11175
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
11175
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
11176
11176
|
"""
|
11177
11177
|
return pulumi.get(self, "certificate_authority_domain_configs")
|
11178
11178
|
|
pulumi_gcp/container/registry.py
CHANGED
@@ -121,6 +121,8 @@ class Registry(pulumi.CustomResource):
|
|
121
121
|
project: Optional[pulumi.Input[str]] = None,
|
122
122
|
__props__=None):
|
123
123
|
"""
|
124
|
+
> **Warning**: Container Registry is deprecated. Effective March 18, 2025, Container Registry is shut down and writing images to Container Registry is unavailable. Resource will be removed in future major release.
|
125
|
+
|
124
126
|
Ensures that the Google Cloud Storage bucket that backs Google Container Registry exists. Creating this resource will create the backing bucket if it does not exist, or do nothing if the bucket already exists. Destroying this resource does *NOT* destroy the backing bucket. For more information see [the official documentation](https://cloud.google.com/container-registry/docs/overview)
|
125
127
|
|
126
128
|
This resource can be used to ensure that the GCS bucket exists prior to assigning permissions. For more information see the [access control page](https://cloud.google.com/container-registry/docs/access-control) for GCR.
|
@@ -167,6 +169,8 @@ class Registry(pulumi.CustomResource):
|
|
167
169
|
args: Optional[RegistryArgs] = None,
|
168
170
|
opts: Optional[pulumi.ResourceOptions] = None):
|
169
171
|
"""
|
172
|
+
> **Warning**: Container Registry is deprecated. Effective March 18, 2025, Container Registry is shut down and writing images to Container Registry is unavailable. Resource will be removed in future major release.
|
173
|
+
|
170
174
|
Ensures that the Google Cloud Storage bucket that backs Google Container Registry exists. Creating this resource will create the backing bucket if it does not exist, or do nothing if the bucket already exists. Destroying this resource does *NOT* destroy the backing bucket. For more information see [the official documentation](https://cloud.google.com/container-registry/docs/overview)
|
171
175
|
|
172
176
|
This resource can be used to ensure that the GCS bucket exists prior to assigning permissions. For more information see the [access control page](https://cloud.google.com/container-registry/docs/access-control) for GCR.
|
@@ -38,6 +38,7 @@ class InstanceArgs:
|
|
38
38
|
private_instance: Optional[pulumi.Input[bool]] = None,
|
39
39
|
project: Optional[pulumi.Input[str]] = None,
|
40
40
|
region: Optional[pulumi.Input[str]] = None,
|
41
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
41
42
|
version: Optional[pulumi.Input[str]] = None,
|
42
43
|
zone: Optional[pulumi.Input[str]] = None):
|
43
44
|
"""
|
@@ -85,6 +86,10 @@ class InstanceArgs:
|
|
85
86
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
86
87
|
If it is not provided, the provider project is used.
|
87
88
|
:param pulumi.Input[str] region: The region of the Data Fusion instance.
|
89
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags.
|
90
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
91
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
92
|
+
The field is ignored (both PUT & PATCH) when empty.
|
88
93
|
:param pulumi.Input[str] version: Current version of the Data Fusion.
|
89
94
|
:param pulumi.Input[str] zone: Name of the zone in which the Data Fusion instance will be created. Only DEVELOPER instances use this field.
|
90
95
|
"""
|
@@ -121,6 +126,8 @@ class InstanceArgs:
|
|
121
126
|
pulumi.set(__self__, "project", project)
|
122
127
|
if region is not None:
|
123
128
|
pulumi.set(__self__, "region", region)
|
129
|
+
if tags is not None:
|
130
|
+
pulumi.set(__self__, "tags", tags)
|
124
131
|
if version is not None:
|
125
132
|
pulumi.set(__self__, "version", version)
|
126
133
|
if zone is not None:
|
@@ -356,6 +363,21 @@ class InstanceArgs:
|
|
356
363
|
def region(self, value: Optional[pulumi.Input[str]]):
|
357
364
|
pulumi.set(self, "region", value)
|
358
365
|
|
366
|
+
@property
|
367
|
+
@pulumi.getter
|
368
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
369
|
+
"""
|
370
|
+
A map of resource manager tags.
|
371
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
372
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
373
|
+
The field is ignored (both PUT & PATCH) when empty.
|
374
|
+
"""
|
375
|
+
return pulumi.get(self, "tags")
|
376
|
+
|
377
|
+
@tags.setter
|
378
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
379
|
+
pulumi.set(self, "tags", value)
|
380
|
+
|
359
381
|
@property
|
360
382
|
@pulumi.getter
|
361
383
|
def version(self) -> Optional[pulumi.Input[str]]:
|
@@ -410,6 +432,7 @@ class _InstanceState:
|
|
410
432
|
service_endpoint: Optional[pulumi.Input[str]] = None,
|
411
433
|
state: Optional[pulumi.Input[str]] = None,
|
412
434
|
state_message: Optional[pulumi.Input[str]] = None,
|
435
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
413
436
|
tenant_project_id: Optional[pulumi.Input[str]] = None,
|
414
437
|
type: Optional[pulumi.Input[str]] = None,
|
415
438
|
update_time: Optional[pulumi.Input[str]] = None,
|
@@ -463,6 +486,10 @@ class _InstanceState:
|
|
463
486
|
- UPGRADING: Instance is being upgraded
|
464
487
|
- RESTARTING: Instance is being restarted
|
465
488
|
:param pulumi.Input[str] state_message: Additional information about the current state of this Data Fusion instance if available.
|
489
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags.
|
490
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
491
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
492
|
+
The field is ignored (both PUT & PATCH) when empty.
|
466
493
|
:param pulumi.Input[str] tenant_project_id: The name of the tenant project.
|
467
494
|
:param pulumi.Input[str] type: Represents the type of Data Fusion instance. Each type is configured with
|
468
495
|
the default settings for processing and memory.
|
@@ -537,6 +564,8 @@ class _InstanceState:
|
|
537
564
|
pulumi.set(__self__, "state", state)
|
538
565
|
if state_message is not None:
|
539
566
|
pulumi.set(__self__, "state_message", state_message)
|
567
|
+
if tags is not None:
|
568
|
+
pulumi.set(__self__, "tags", tags)
|
540
569
|
if tenant_project_id is not None:
|
541
570
|
pulumi.set(__self__, "tenant_project_id", tenant_project_id)
|
542
571
|
if type is not None:
|
@@ -881,6 +910,21 @@ class _InstanceState:
|
|
881
910
|
def state_message(self, value: Optional[pulumi.Input[str]]):
|
882
911
|
pulumi.set(self, "state_message", value)
|
883
912
|
|
913
|
+
@property
|
914
|
+
@pulumi.getter
|
915
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
916
|
+
"""
|
917
|
+
A map of resource manager tags.
|
918
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
919
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
920
|
+
The field is ignored (both PUT & PATCH) when empty.
|
921
|
+
"""
|
922
|
+
return pulumi.get(self, "tags")
|
923
|
+
|
924
|
+
@tags.setter
|
925
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
926
|
+
pulumi.set(self, "tags", value)
|
927
|
+
|
884
928
|
@property
|
885
929
|
@pulumi.getter(name="tenantProjectId")
|
886
930
|
def tenant_project_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -976,6 +1020,7 @@ class Instance(pulumi.CustomResource):
|
|
976
1020
|
private_instance: Optional[pulumi.Input[bool]] = None,
|
977
1021
|
project: Optional[pulumi.Input[str]] = None,
|
978
1022
|
region: Optional[pulumi.Input[str]] = None,
|
1023
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
979
1024
|
type: Optional[pulumi.Input[str]] = None,
|
980
1025
|
version: Optional[pulumi.Input[str]] = None,
|
981
1026
|
zone: Optional[pulumi.Input[str]] = None,
|
@@ -1202,6 +1247,10 @@ class Instance(pulumi.CustomResource):
|
|
1202
1247
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1203
1248
|
If it is not provided, the provider project is used.
|
1204
1249
|
:param pulumi.Input[str] region: The region of the Data Fusion instance.
|
1250
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags.
|
1251
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
1252
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
1253
|
+
The field is ignored (both PUT & PATCH) when empty.
|
1205
1254
|
:param pulumi.Input[str] type: Represents the type of Data Fusion instance. Each type is configured with
|
1206
1255
|
the default settings for processing and memory.
|
1207
1256
|
- BASIC: Basic Data Fusion instance. In Basic type, the user will be able to create data pipelines
|
@@ -1447,6 +1496,7 @@ class Instance(pulumi.CustomResource):
|
|
1447
1496
|
private_instance: Optional[pulumi.Input[bool]] = None,
|
1448
1497
|
project: Optional[pulumi.Input[str]] = None,
|
1449
1498
|
region: Optional[pulumi.Input[str]] = None,
|
1499
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1450
1500
|
type: Optional[pulumi.Input[str]] = None,
|
1451
1501
|
version: Optional[pulumi.Input[str]] = None,
|
1452
1502
|
zone: Optional[pulumi.Input[str]] = None,
|
@@ -1475,6 +1525,7 @@ class Instance(pulumi.CustomResource):
|
|
1475
1525
|
__props__.__dict__["private_instance"] = private_instance
|
1476
1526
|
__props__.__dict__["project"] = project
|
1477
1527
|
__props__.__dict__["region"] = region
|
1528
|
+
__props__.__dict__["tags"] = tags
|
1478
1529
|
if type is None and not opts.urn:
|
1479
1530
|
raise TypeError("Missing required property 'type'")
|
1480
1531
|
__props__.__dict__["type"] = type
|
@@ -1530,6 +1581,7 @@ class Instance(pulumi.CustomResource):
|
|
1530
1581
|
service_endpoint: Optional[pulumi.Input[str]] = None,
|
1531
1582
|
state: Optional[pulumi.Input[str]] = None,
|
1532
1583
|
state_message: Optional[pulumi.Input[str]] = None,
|
1584
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1533
1585
|
tenant_project_id: Optional[pulumi.Input[str]] = None,
|
1534
1586
|
type: Optional[pulumi.Input[str]] = None,
|
1535
1587
|
update_time: Optional[pulumi.Input[str]] = None,
|
@@ -1588,6 +1640,10 @@ class Instance(pulumi.CustomResource):
|
|
1588
1640
|
- UPGRADING: Instance is being upgraded
|
1589
1641
|
- RESTARTING: Instance is being restarted
|
1590
1642
|
:param pulumi.Input[str] state_message: Additional information about the current state of this Data Fusion instance if available.
|
1643
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags.
|
1644
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
1645
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
1646
|
+
The field is ignored (both PUT & PATCH) when empty.
|
1591
1647
|
:param pulumi.Input[str] tenant_project_id: The name of the tenant project.
|
1592
1648
|
:param pulumi.Input[str] type: Represents the type of Data Fusion instance. Each type is configured with
|
1593
1649
|
the default settings for processing and memory.
|
@@ -1637,6 +1693,7 @@ class Instance(pulumi.CustomResource):
|
|
1637
1693
|
__props__.__dict__["service_endpoint"] = service_endpoint
|
1638
1694
|
__props__.__dict__["state"] = state
|
1639
1695
|
__props__.__dict__["state_message"] = state_message
|
1696
|
+
__props__.__dict__["tags"] = tags
|
1640
1697
|
__props__.__dict__["tenant_project_id"] = tenant_project_id
|
1641
1698
|
__props__.__dict__["type"] = type
|
1642
1699
|
__props__.__dict__["update_time"] = update_time
|
@@ -1873,6 +1930,17 @@ class Instance(pulumi.CustomResource):
|
|
1873
1930
|
"""
|
1874
1931
|
return pulumi.get(self, "state_message")
|
1875
1932
|
|
1933
|
+
@property
|
1934
|
+
@pulumi.getter
|
1935
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1936
|
+
"""
|
1937
|
+
A map of resource manager tags.
|
1938
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
1939
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
1940
|
+
The field is ignored (both PUT & PATCH) when empty.
|
1941
|
+
"""
|
1942
|
+
return pulumi.get(self, "tags")
|
1943
|
+
|
1876
1944
|
@property
|
1877
1945
|
@pulumi.getter(name="tenantProjectId")
|
1878
1946
|
def tenant_project_id(self) -> pulumi.Output[str]:
|
pulumi_gcp/dataproc/__init__.py
CHANGED
@@ -20,13 +20,18 @@ from .gdc_spark_application import *
|
|
20
20
|
from .get_autoscaling_policy_iam_policy import *
|
21
21
|
from .get_cluster_iam_policy import *
|
22
22
|
from .get_job_iam_policy import *
|
23
|
+
from .get_metastore_database_iam_policy import *
|
23
24
|
from .get_metastore_federation_iam_policy import *
|
24
25
|
from .get_metastore_service import *
|
25
26
|
from .get_metastore_service_iam_policy import *
|
27
|
+
from .get_metastore_table_iam_policy import *
|
26
28
|
from .job import *
|
27
29
|
from .job_iam_binding import *
|
28
30
|
from .job_iam_member import *
|
29
31
|
from .job_iam_policy import *
|
32
|
+
from .metastore_database_iam_binding import *
|
33
|
+
from .metastore_database_iam_member import *
|
34
|
+
from .metastore_database_iam_policy import *
|
30
35
|
from .metastore_federation import *
|
31
36
|
from .metastore_federation_iam_binding import *
|
32
37
|
from .metastore_federation_iam_member import *
|
@@ -35,6 +40,9 @@ from .metastore_service import *
|
|
35
40
|
from .metastore_service_iam_binding import *
|
36
41
|
from .metastore_service_iam_member import *
|
37
42
|
from .metastore_service_iam_policy import *
|
43
|
+
from .metastore_table_iam_binding import *
|
44
|
+
from .metastore_table_iam_member import *
|
45
|
+
from .metastore_table_iam_policy import *
|
38
46
|
from .workflow_template import *
|
39
47
|
from ._inputs import *
|
40
48
|
from . import outputs
|