pulumi-gcp 7.28.0a1718950249__py3-none-any.whl → 7.29.0__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 +67 -0
- pulumi_gcp/_utilities.py +35 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/activedirectory/domain.py +14 -14
- pulumi_gcp/activedirectory/domain_trust.py +14 -14
- pulumi_gcp/alloydb/backup.py +8 -8
- pulumi_gcp/alloydb/cluster.py +11 -17
- pulumi_gcp/alloydb/instance.py +8 -8
- pulumi_gcp/alloydb/user.py +8 -8
- pulumi_gcp/apigee/addons_config.py +4 -4
- pulumi_gcp/apigee/endpoint_attachment.py +2 -2
- pulumi_gcp/apigee/env_group.py +2 -2
- pulumi_gcp/apigee/environment.py +2 -2
- pulumi_gcp/apigee/instance.py +8 -8
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +10 -10
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +6 -6
- pulumi_gcp/apigee/sync_authorization.py +4 -4
- pulumi_gcp/apigee/target_server.py +10 -10
- pulumi_gcp/apphub/service.py +20 -20
- pulumi_gcp/apphub/service_project_attachment.py +8 -8
- pulumi_gcp/applicationintegration/auth_config.py +2 -2
- pulumi_gcp/applicationintegration/client.py +6 -18
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/_inputs.py +4 -4
- pulumi_gcp/artifactregistry/get_docker_image.py +244 -0
- pulumi_gcp/artifactregistry/outputs.py +6 -6
- pulumi_gcp/artifactregistry/repository.py +10 -10
- pulumi_gcp/backupdisasterrecovery/management_server.py +2 -2
- pulumi_gcp/bigquery/_inputs.py +2 -6
- pulumi_gcp/bigquery/data_transfer_config.py +4 -4
- pulumi_gcp/bigquery/dataset.py +75 -0
- pulumi_gcp/bigquery/get_dataset.py +11 -1
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/bigquery/outputs.py +2 -6
- pulumi_gcp/bigtable/_inputs.py +41 -3
- pulumi_gcp/bigtable/instance.py +3 -9
- pulumi_gcp/bigtable/outputs.py +50 -3
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/billing/_inputs.py +22 -0
- pulumi_gcp/billing/budget.py +50 -0
- pulumi_gcp/billing/outputs.py +20 -0
- pulumi_gcp/certificateauthority/authority.py +2 -2
- pulumi_gcp/certificateauthority/certificate.py +4 -4
- pulumi_gcp/certificatemanager/_inputs.py +2 -6
- pulumi_gcp/certificatemanager/certificate.py +4 -4
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +2 -2
- pulumi_gcp/certificatemanager/outputs.py +2 -6
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +6 -6
- pulumi_gcp/cloudbuild/trigger.py +2 -2
- pulumi_gcp/cloudbuild/worker_pool.py +6 -6
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +112 -4
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/cloudbuildv2/repository.py +2 -2
- pulumi_gcp/cloudfunctionsv2/function.py +28 -28
- pulumi_gcp/cloudids/endpoint.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +3 -9
- pulumi_gcp/cloudrun/outputs.py +3 -9
- pulumi_gcp/cloudrunv2/get_job.py +21 -1
- pulumi_gcp/cloudrunv2/job.py +163 -19
- pulumi_gcp/cloudrunv2/service.py +8 -8
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +87 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/disk.py +3 -9
- pulumi_gcp/compute/firewall.py +3 -9
- pulumi_gcp/compute/forwarding_rule.py +22 -22
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +176 -5
- pulumi_gcp/compute/packet_mirroring.py +2 -2
- pulumi_gcp/compute/project_cloud_armor_tier.py +2 -2
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_disk.py +3 -9
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_security_policy_rule.py +2 -2
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/route.py +2 -2
- pulumi_gcp/compute/subnetwork.py +2 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/compute/target_instance.py +2 -2
- pulumi_gcp/compute/vpn_gateway.py +2 -2
- pulumi_gcp/compute/vpn_tunnel.py +2 -2
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +4 -8
- pulumi_gcp/container/outputs.py +6 -10
- pulumi_gcp/databasemigrationservice/connection_profile.py +16 -16
- pulumi_gcp/datacatalog/policy_tag.py +2 -2
- pulumi_gcp/datafusion/instance.py +4 -8
- pulumi_gcp/dataplex/asset.py +2 -2
- pulumi_gcp/dataplex/datascan.py +2 -2
- pulumi_gcp/dataproc/_inputs.py +100 -0
- pulumi_gcp/dataproc/metastore_service.py +172 -0
- pulumi_gcp/dataproc/outputs.py +192 -1
- pulumi_gcp/dataproc/workflow_template.py +3 -9
- pulumi_gcp/datastore/data_store_index.py +2 -2
- pulumi_gcp/datastream/stream.py +6 -6
- pulumi_gcp/diagflow/entity_type.py +2 -2
- pulumi_gcp/diagflow/fulfillment.py +2 -2
- pulumi_gcp/diagflow/intent.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/node_pool.py +2 -2
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/edgecontainer/vpn_connection.py +2 -2
- pulumi_gcp/eventarc/channel.py +2 -2
- pulumi_gcp/eventarc/google_channel_config.py +2 -2
- pulumi_gcp/filestore/instance.py +3 -9
- pulumi_gcp/firebase/app_check_app_attest_config.py +8 -8
- pulumi_gcp/firebase/app_check_debug_token.py +4 -4
- pulumi_gcp/firebase/app_check_device_check_config.py +4 -4
- pulumi_gcp/firebase/app_check_play_integrity_config.py +8 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +4 -4
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +4 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -6
- pulumi_gcp/firebase/database_instance.py +2 -2
- pulumi_gcp/firestore/database.py +4 -4
- pulumi_gcp/firestore/document.py +12 -12
- pulumi_gcp/folder/access_approval_settings.py +2 -2
- pulumi_gcp/gkehub/_inputs.py +20 -8
- pulumi_gcp/gkehub/membership.py +3 -9
- pulumi_gcp/gkehub/membership_binding.py +4 -4
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +2 -2
- pulumi_gcp/gkehub/outputs.py +19 -9
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +2 -2
- pulumi_gcp/healthcare/fhir_store.py +3 -9
- pulumi_gcp/healthcare/hl7_store.py +3 -9
- pulumi_gcp/integrationconnectors/connection.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +6 -6
- pulumi_gcp/kms/_inputs.py +1 -3
- pulumi_gcp/kms/autokey_config.py +16 -16
- pulumi_gcp/kms/key_handle.py +22 -22
- pulumi_gcp/kms/outputs.py +1 -3
- pulumi_gcp/logging/folder_settings.py +2 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/linked_dataset.py +2 -2
- pulumi_gcp/logging/organization_settings.py +2 -2
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/logging/project_bucket_config.py +2 -2
- pulumi_gcp/looker/instance.py +2 -2
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/netapp/volume_replication.py +2 -2
- pulumi_gcp/netapp/volume_snapshot.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +2 -2
- pulumi_gcp/networksecurity/gateway_security_policy.py +4 -4
- pulumi_gcp/networksecurity/tls_inspection_policy.py +4 -4
- pulumi_gcp/networkservices/gateway.py +6 -6
- pulumi_gcp/organizations/access_approval_settings.py +2 -2
- pulumi_gcp/parallelstore/instance.py +2 -2
- pulumi_gcp/projects/access_approval_settings.py +5 -11
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +66 -0
- pulumi_gcp/pubsub/schema.py +2 -2
- pulumi_gcp/pubsub/subscription.py +174 -8
- pulumi_gcp/pubsub/topic.py +2 -2
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +4 -4
- pulumi_gcp/redis/get_instance.py +11 -1
- pulumi_gcp/redis/instance.py +49 -2
- pulumi_gcp/secretmanager/secret.py +2 -2
- pulumi_gcp/securesourcemanager/instance.py +6 -6
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_member.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_policy.py +2 -2
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/servicenetworking/__init__.py +1 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +511 -0
- pulumi_gcp/sql/_inputs.py +1 -3
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +1 -3
- pulumi_gcp/sql/user.py +21 -7
- pulumi_gcp/storage/get_project_service_account.py +2 -2
- pulumi_gcp/storage/insights_report_config.py +2 -2
- pulumi_gcp/storage/notification.py +2 -2
- pulumi_gcp/storage/transfer_agent_pool.py +2 -2
- pulumi_gcp/storage/transfer_job.py +4 -4
- pulumi_gcp/tpu/v2_vm.py +4 -4
- pulumi_gcp/vertex/_inputs.py +1 -3
- pulumi_gcp/vertex/ai_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store.py +31 -8
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_tensorboard.py +2 -2
- pulumi_gcp/vertex/outputs.py +1 -3
- pulumi_gcp/vmwareengine/external_address.py +2 -2
- pulumi_gcp/vmwareengine/network.py +4 -4
- pulumi_gcp/vpcaccess/connector.py +2 -8
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/RECORD +214 -200
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/top_level.txt +0 -0
@@ -34,11 +34,13 @@ class TargetHttpsProxyArgs:
|
|
34
34
|
|
35
35
|
- - -
|
36
36
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
37
|
-
|
37
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
38
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
38
39
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
39
40
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
40
41
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
41
|
-
associated with the given target proxy. This field
|
42
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
43
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
42
44
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
43
45
|
:param pulumi.Input[str] description: An optional description of this resource.
|
44
46
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
@@ -125,7 +127,8 @@ class TargetHttpsProxyArgs:
|
|
125
127
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
126
128
|
"""
|
127
129
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
128
|
-
|
130
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
131
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
129
132
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
130
133
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
131
134
|
"""
|
@@ -140,7 +143,8 @@ class TargetHttpsProxyArgs:
|
|
140
143
|
def certificate_map(self) -> Optional[pulumi.Input[str]]:
|
141
144
|
"""
|
142
145
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
143
|
-
associated with the given target proxy. This field
|
146
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
147
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
144
148
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
145
149
|
"""
|
146
150
|
return pulumi.get(self, "certificate_map")
|
@@ -309,11 +313,13 @@ class _TargetHttpsProxyState:
|
|
309
313
|
"""
|
310
314
|
Input properties used for looking up and filtering TargetHttpsProxy resources.
|
311
315
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
312
|
-
|
316
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
317
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
313
318
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
314
319
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
315
320
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
316
|
-
associated with the given target proxy. This field
|
321
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
322
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
317
323
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
318
324
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
319
325
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -399,7 +405,8 @@ class _TargetHttpsProxyState:
|
|
399
405
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
400
406
|
"""
|
401
407
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
402
|
-
|
408
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
409
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
403
410
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
404
411
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
405
412
|
"""
|
@@ -414,7 +421,8 @@ class _TargetHttpsProxyState:
|
|
414
421
|
def certificate_map(self) -> Optional[pulumi.Input[str]]:
|
415
422
|
"""
|
416
423
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
417
|
-
associated with the given target proxy. This field
|
424
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
425
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
418
426
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
419
427
|
"""
|
420
428
|
return pulumi.get(self, "certificate_map")
|
@@ -870,11 +878,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
870
878
|
:param str resource_name: The name of the resource.
|
871
879
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
872
880
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
873
|
-
|
881
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
882
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
874
883
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
875
884
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
876
885
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
877
|
-
associated with the given target proxy. This field
|
886
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
887
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
878
888
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
879
889
|
:param pulumi.Input[str] description: An optional description of this resource.
|
880
890
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
@@ -1248,11 +1258,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1248
1258
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1249
1259
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1250
1260
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
1251
|
-
|
1261
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
1262
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
1252
1263
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1253
1264
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1254
1265
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
1255
|
-
associated with the given target proxy. This field
|
1266
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
1267
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
1256
1268
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
1257
1269
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
1258
1270
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -1328,7 +1340,8 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1328
1340
|
def certificate_manager_certificates(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1329
1341
|
"""
|
1330
1342
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
1331
|
-
|
1343
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
1344
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
1332
1345
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1333
1346
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1334
1347
|
"""
|
@@ -1339,7 +1352,8 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1339
1352
|
def certificate_map(self) -> pulumi.Output[Optional[str]]:
|
1340
1353
|
"""
|
1341
1354
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
1342
|
-
associated with the given target proxy. This field
|
1355
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
1356
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
1343
1357
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
1344
1358
|
"""
|
1345
1359
|
return pulumi.get(self, "certificate_map")
|
@@ -517,7 +517,7 @@ class TargetInstance(pulumi.CustomResource):
|
|
517
517
|
region="southamerica-west1",
|
518
518
|
description="basic security policy for target instance",
|
519
519
|
type="CLOUD_ARMOR_NETWORK",
|
520
|
-
opts=pulumi.ResourceOptions(depends_on=[edge_sec_service]))
|
520
|
+
opts = pulumi.ResourceOptions(depends_on=[edge_sec_service]))
|
521
521
|
default_target_instance = gcp.compute.TargetInstance("default",
|
522
522
|
name="target-instance",
|
523
523
|
zone="southamerica-west1-a",
|
@@ -707,7 +707,7 @@ class TargetInstance(pulumi.CustomResource):
|
|
707
707
|
region="southamerica-west1",
|
708
708
|
description="basic security policy for target instance",
|
709
709
|
type="CLOUD_ARMOR_NETWORK",
|
710
|
-
opts=pulumi.ResourceOptions(depends_on=[edge_sec_service]))
|
710
|
+
opts = pulumi.ResourceOptions(depends_on=[edge_sec_service]))
|
711
711
|
default_target_instance = gcp.compute.TargetInstance("default",
|
712
712
|
name="target-instance",
|
713
713
|
zone="southamerica-west1-a",
|
@@ -331,7 +331,7 @@ class VPNGateway(pulumi.CustomResource):
|
|
331
331
|
peer_ip="15.0.0.120",
|
332
332
|
shared_secret="a secret message",
|
333
333
|
target_vpn_gateway=target_gateway.id,
|
334
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
334
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
335
335
|
fr_esp,
|
336
336
|
fr_udp500,
|
337
337
|
fr_udp4500,
|
@@ -444,7 +444,7 @@ class VPNGateway(pulumi.CustomResource):
|
|
444
444
|
peer_ip="15.0.0.120",
|
445
445
|
shared_secret="a secret message",
|
446
446
|
target_vpn_gateway=target_gateway.id,
|
447
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
447
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
448
448
|
fr_esp,
|
449
449
|
fr_udp500,
|
450
450
|
fr_udp4500,
|
pulumi_gcp/compute/vpn_tunnel.py
CHANGED
@@ -885,7 +885,7 @@ class VPNTunnel(pulumi.CustomResource):
|
|
885
885
|
labels={
|
886
886
|
"foo": "bar",
|
887
887
|
},
|
888
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
888
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
889
889
|
fr_esp,
|
890
890
|
fr_udp500,
|
891
891
|
fr_udp4500,
|
@@ -1030,7 +1030,7 @@ class VPNTunnel(pulumi.CustomResource):
|
|
1030
1030
|
labels={
|
1031
1031
|
"foo": "bar",
|
1032
1032
|
},
|
1033
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
1033
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
1034
1034
|
fr_esp,
|
1035
1035
|
fr_udp500,
|
1036
1036
|
fr_udp4500,
|
pulumi_gcp/config/__init__.pyi
CHANGED
pulumi_gcp/config/vars.py
CHANGED
@@ -456,6 +456,10 @@ class _ExportableConfig(types.ModuleType):
|
|
456
456
|
def looker_custom_endpoint(self) -> Optional[str]:
|
457
457
|
return __config__.get('lookerCustomEndpoint')
|
458
458
|
|
459
|
+
@property
|
460
|
+
def managed_kafka_custom_endpoint(self) -> Optional[str]:
|
461
|
+
return __config__.get('managedKafkaCustomEndpoint')
|
462
|
+
|
459
463
|
@property
|
460
464
|
def memcache_custom_endpoint(self) -> Optional[str]:
|
461
465
|
return __config__.get('memcacheCustomEndpoint')
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -3769,13 +3769,11 @@ class ClusterBinaryAuthorizationArgs:
|
|
3769
3769
|
|
3770
3770
|
@property
|
3771
3771
|
@pulumi.getter
|
3772
|
+
@_utilities.deprecated("""Deprecated in favor of evaluation_mode.""")
|
3772
3773
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
3773
3774
|
"""
|
3774
3775
|
Enable Binary Authorization for this cluster.
|
3775
3776
|
"""
|
3776
|
-
warnings.warn("""Deprecated in favor of evaluation_mode.""", DeprecationWarning)
|
3777
|
-
pulumi.log.warn("""enabled is deprecated: Deprecated in favor of evaluation_mode.""")
|
3778
|
-
|
3779
3777
|
return pulumi.get(self, "enabled")
|
3780
3778
|
|
3781
3779
|
@enabled.setter
|
@@ -5654,13 +5652,11 @@ class ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs:
|
|
5654
5652
|
|
5655
5653
|
@property
|
5656
5654
|
@pulumi.getter(name="relayMode")
|
5655
|
+
@_utilities.deprecated("""Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""")
|
5657
5656
|
def relay_mode(self) -> Optional[pulumi.Input[str]]:
|
5658
5657
|
"""
|
5659
5658
|
Mode used to make Relay available.
|
5660
5659
|
"""
|
5661
|
-
warnings.warn("""Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""", DeprecationWarning)
|
5662
|
-
pulumi.log.warn("""relay_mode is deprecated: Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""")
|
5663
|
-
|
5664
5660
|
return pulumi.get(self, "relay_mode")
|
5665
5661
|
|
5666
5662
|
@relay_mode.setter
|
@@ -11092,7 +11088,7 @@ class ClusterSecurityPostureConfigArgs:
|
|
11092
11088
|
mode: Optional[pulumi.Input[str]] = None,
|
11093
11089
|
vulnerability_mode: Optional[pulumi.Input[str]] = None):
|
11094
11090
|
"""
|
11095
|
-
:param pulumi.Input[str] mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `
|
11091
|
+
:param pulumi.Input[str] mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED`, `BASIC`, and `ENTERPRISE`.
|
11096
11092
|
:param pulumi.Input[str] vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning. Available options include `VULNERABILITY_DISABLED`, `VULNERABILITY_BASIC` and `VULNERABILITY_ENTERPRISE`.
|
11097
11093
|
"""
|
11098
11094
|
if mode is not None:
|
@@ -11104,7 +11100,7 @@ class ClusterSecurityPostureConfigArgs:
|
|
11104
11100
|
@pulumi.getter
|
11105
11101
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
11106
11102
|
"""
|
11107
|
-
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `
|
11103
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED`, `BASIC`, and `ENTERPRISE`.
|
11108
11104
|
"""
|
11109
11105
|
return pulumi.get(self, "mode")
|
11110
11106
|
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -4309,13 +4309,11 @@ class ClusterBinaryAuthorization(dict):
|
|
4309
4309
|
|
4310
4310
|
@property
|
4311
4311
|
@pulumi.getter
|
4312
|
+
@_utilities.deprecated("""Deprecated in favor of evaluation_mode.""")
|
4312
4313
|
def enabled(self) -> Optional[bool]:
|
4313
4314
|
"""
|
4314
4315
|
Enable Binary Authorization for this cluster.
|
4315
4316
|
"""
|
4316
|
-
warnings.warn("""Deprecated in favor of evaluation_mode.""", DeprecationWarning)
|
4317
|
-
pulumi.log.warn("""enabled is deprecated: Deprecated in favor of evaluation_mode.""")
|
4318
|
-
|
4319
4317
|
return pulumi.get(self, "enabled")
|
4320
4318
|
|
4321
4319
|
@property
|
@@ -6374,13 +6372,11 @@ class ClusterMonitoringConfigAdvancedDatapathObservabilityConfig(dict):
|
|
6374
6372
|
|
6375
6373
|
@property
|
6376
6374
|
@pulumi.getter(name="relayMode")
|
6375
|
+
@_utilities.deprecated("""Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""")
|
6377
6376
|
def relay_mode(self) -> Optional[str]:
|
6378
6377
|
"""
|
6379
6378
|
Mode used to make Relay available.
|
6380
6379
|
"""
|
6381
|
-
warnings.warn("""Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""", DeprecationWarning)
|
6382
|
-
pulumi.log.warn("""relay_mode is deprecated: Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""")
|
6383
|
-
|
6384
6380
|
return pulumi.get(self, "relay_mode")
|
6385
6381
|
|
6386
6382
|
|
@@ -12062,7 +12058,7 @@ class ClusterSecurityPostureConfig(dict):
|
|
12062
12058
|
mode: Optional[str] = None,
|
12063
12059
|
vulnerability_mode: Optional[str] = None):
|
12064
12060
|
"""
|
12065
|
-
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `
|
12061
|
+
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED`, `BASIC`, and `ENTERPRISE`.
|
12066
12062
|
:param str vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning. Available options include `VULNERABILITY_DISABLED`, `VULNERABILITY_BASIC` and `VULNERABILITY_ENTERPRISE`.
|
12067
12063
|
"""
|
12068
12064
|
if mode is not None:
|
@@ -12074,7 +12070,7 @@ class ClusterSecurityPostureConfig(dict):
|
|
12074
12070
|
@pulumi.getter
|
12075
12071
|
def mode(self) -> Optional[str]:
|
12076
12072
|
"""
|
12077
|
-
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `
|
12073
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED`, `BASIC`, and `ENTERPRISE`.
|
12078
12074
|
"""
|
12079
12075
|
return pulumi.get(self, "mode")
|
12080
12076
|
|
@@ -19847,7 +19843,7 @@ class GetClusterSecurityPostureConfigResult(dict):
|
|
19847
19843
|
mode: str,
|
19848
19844
|
vulnerability_mode: str):
|
19849
19845
|
"""
|
19850
|
-
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED and
|
19846
|
+
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED, BASIC, and ENTERPRISE.
|
19851
19847
|
:param str vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning. Available options include VULNERABILITY_DISABLED, VULNERABILITY_BASIC and VULNERABILITY_ENTERPRISE.
|
19852
19848
|
"""
|
19853
19849
|
pulumi.set(__self__, "mode", mode)
|
@@ -19857,7 +19853,7 @@ class GetClusterSecurityPostureConfigResult(dict):
|
|
19857
19853
|
@pulumi.getter
|
19858
19854
|
def mode(self) -> str:
|
19859
19855
|
"""
|
19860
|
-
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED and
|
19856
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED, BASIC, and ENTERPRISE.
|
19861
19857
|
"""
|
19862
19858
|
return pulumi.get(self, "mode")
|
19863
19859
|
|
@@ -557,12 +557,12 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
557
557
|
sql_client_cert = gcp.sql.SslCert("sql_client_cert",
|
558
558
|
common_name="my-cert",
|
559
559
|
instance=cloudsqldb.name,
|
560
|
-
opts=pulumi.ResourceOptions(depends_on=[cloudsqldb]))
|
560
|
+
opts = pulumi.ResourceOptions(depends_on=[cloudsqldb]))
|
561
561
|
sqldb_user = gcp.sql.User("sqldb_user",
|
562
562
|
name="my-username",
|
563
563
|
instance=cloudsqldb.name,
|
564
564
|
password="my-password",
|
565
|
-
opts=pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
565
|
+
opts = pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
566
566
|
cloudsqlprofile = gcp.databasemigrationservice.ConnectionProfile("cloudsqlprofile",
|
567
567
|
location="us-central1",
|
568
568
|
connection_profile_id="my-fromprofileid",
|
@@ -582,7 +582,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
582
582
|
),
|
583
583
|
cloud_sql_id="my-database",
|
584
584
|
),
|
585
|
-
opts=pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
585
|
+
opts = pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
586
586
|
cloudsqlprofile_destination = gcp.databasemigrationservice.ConnectionProfile("cloudsqlprofile_destination",
|
587
587
|
location="us-central1",
|
588
588
|
connection_profile_id="my-toprofileid",
|
@@ -612,7 +612,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
612
612
|
root_password="testpasscloudsql",
|
613
613
|
),
|
614
614
|
),
|
615
|
-
opts=pulumi.ResourceOptions(depends_on=[cloudsqlprofile]))
|
615
|
+
opts = pulumi.ResourceOptions(depends_on=[cloudsqlprofile]))
|
616
616
|
```
|
617
617
|
### Database Migration Service Connection Profile Postgres
|
618
618
|
|
@@ -630,12 +630,12 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
630
630
|
sql_client_cert = gcp.sql.SslCert("sql_client_cert",
|
631
631
|
common_name="my-cert",
|
632
632
|
instance=postgresqldb.name,
|
633
|
-
opts=pulumi.ResourceOptions(depends_on=[postgresqldb]))
|
633
|
+
opts = pulumi.ResourceOptions(depends_on=[postgresqldb]))
|
634
634
|
sqldb_user = gcp.sql.User("sqldb_user",
|
635
635
|
name="my-username",
|
636
636
|
instance=postgresqldb.name,
|
637
637
|
password="my-password",
|
638
|
-
opts=pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
638
|
+
opts = pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
639
639
|
postgresprofile = gcp.databasemigrationservice.ConnectionProfile("postgresprofile",
|
640
640
|
location="us-central1",
|
641
641
|
connection_profile_id="my-profileid",
|
@@ -655,7 +655,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
655
655
|
),
|
656
656
|
cloud_sql_id="my-database",
|
657
657
|
),
|
658
|
-
opts=pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
658
|
+
opts = pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
659
659
|
```
|
660
660
|
### Database Migration Service Connection Profile Oracle
|
661
661
|
|
@@ -727,7 +727,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
727
727
|
),
|
728
728
|
),
|
729
729
|
),
|
730
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
730
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
731
731
|
```
|
732
732
|
|
733
733
|
## Import
|
@@ -814,12 +814,12 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
814
814
|
sql_client_cert = gcp.sql.SslCert("sql_client_cert",
|
815
815
|
common_name="my-cert",
|
816
816
|
instance=cloudsqldb.name,
|
817
|
-
opts=pulumi.ResourceOptions(depends_on=[cloudsqldb]))
|
817
|
+
opts = pulumi.ResourceOptions(depends_on=[cloudsqldb]))
|
818
818
|
sqldb_user = gcp.sql.User("sqldb_user",
|
819
819
|
name="my-username",
|
820
820
|
instance=cloudsqldb.name,
|
821
821
|
password="my-password",
|
822
|
-
opts=pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
822
|
+
opts = pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
823
823
|
cloudsqlprofile = gcp.databasemigrationservice.ConnectionProfile("cloudsqlprofile",
|
824
824
|
location="us-central1",
|
825
825
|
connection_profile_id="my-fromprofileid",
|
@@ -839,7 +839,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
839
839
|
),
|
840
840
|
cloud_sql_id="my-database",
|
841
841
|
),
|
842
|
-
opts=pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
842
|
+
opts = pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
843
843
|
cloudsqlprofile_destination = gcp.databasemigrationservice.ConnectionProfile("cloudsqlprofile_destination",
|
844
844
|
location="us-central1",
|
845
845
|
connection_profile_id="my-toprofileid",
|
@@ -869,7 +869,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
869
869
|
root_password="testpasscloudsql",
|
870
870
|
),
|
871
871
|
),
|
872
|
-
opts=pulumi.ResourceOptions(depends_on=[cloudsqlprofile]))
|
872
|
+
opts = pulumi.ResourceOptions(depends_on=[cloudsqlprofile]))
|
873
873
|
```
|
874
874
|
### Database Migration Service Connection Profile Postgres
|
875
875
|
|
@@ -887,12 +887,12 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
887
887
|
sql_client_cert = gcp.sql.SslCert("sql_client_cert",
|
888
888
|
common_name="my-cert",
|
889
889
|
instance=postgresqldb.name,
|
890
|
-
opts=pulumi.ResourceOptions(depends_on=[postgresqldb]))
|
890
|
+
opts = pulumi.ResourceOptions(depends_on=[postgresqldb]))
|
891
891
|
sqldb_user = gcp.sql.User("sqldb_user",
|
892
892
|
name="my-username",
|
893
893
|
instance=postgresqldb.name,
|
894
894
|
password="my-password",
|
895
|
-
opts=pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
895
|
+
opts = pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
896
896
|
postgresprofile = gcp.databasemigrationservice.ConnectionProfile("postgresprofile",
|
897
897
|
location="us-central1",
|
898
898
|
connection_profile_id="my-profileid",
|
@@ -912,7 +912,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
912
912
|
),
|
913
913
|
cloud_sql_id="my-database",
|
914
914
|
),
|
915
|
-
opts=pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
915
|
+
opts = pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
916
916
|
```
|
917
917
|
### Database Migration Service Connection Profile Oracle
|
918
918
|
|
@@ -984,7 +984,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
984
984
|
),
|
985
985
|
),
|
986
986
|
),
|
987
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
987
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
988
988
|
```
|
989
989
|
|
990
990
|
## Import
|
@@ -287,7 +287,7 @@ class PolicyTag(pulumi.CustomResource):
|
|
287
287
|
display_name="dob",
|
288
288
|
description="The users date of birth",
|
289
289
|
parent_policy_tag=parent_policy.id,
|
290
|
-
opts=pulumi.ResourceOptions(depends_on=[child_policy]))
|
290
|
+
opts = pulumi.ResourceOptions(depends_on=[child_policy]))
|
291
291
|
```
|
292
292
|
|
293
293
|
## Import
|
@@ -375,7 +375,7 @@ class PolicyTag(pulumi.CustomResource):
|
|
375
375
|
display_name="dob",
|
376
376
|
description="The users date of birth",
|
377
377
|
parent_policy_tag=parent_policy.id,
|
378
|
-
opts=pulumi.ResourceOptions(depends_on=[child_policy]))
|
378
|
+
opts = pulumi.ResourceOptions(depends_on=[child_policy]))
|
379
379
|
```
|
380
380
|
|
381
381
|
## Import
|
@@ -823,13 +823,11 @@ class _InstanceState:
|
|
823
823
|
|
824
824
|
@property
|
825
825
|
@pulumi.getter(name="serviceAccount")
|
826
|
+
@_utilities.deprecated("""`service_account` is deprecated and will be removed in a future major release. Instead, use `tenant_project_id` to extract the tenant project ID.""")
|
826
827
|
def service_account(self) -> Optional[pulumi.Input[str]]:
|
827
828
|
"""
|
828
829
|
Service account which will be used to access resources in the customer project.
|
829
830
|
"""
|
830
|
-
warnings.warn("""`service_account` is deprecated and will be removed in a future major release. Instead, use `tenant_project_id` to extract the tenant project ID.""", DeprecationWarning)
|
831
|
-
pulumi.log.warn("""service_account is deprecated: `service_account` is deprecated and will be removed in a future major release. Instead, use `tenant_project_id` to extract the tenant project ID.""")
|
832
|
-
|
833
831
|
return pulumi.get(self, "service_account")
|
834
832
|
|
835
833
|
@service_account.setter
|
@@ -1059,7 +1057,7 @@ class Instance(pulumi.CustomResource):
|
|
1059
1057
|
crypto_key_config=gcp.datafusion.InstanceCryptoKeyConfigArgs(
|
1060
1058
|
key_reference=crypto_key.id,
|
1061
1059
|
),
|
1062
|
-
opts=pulumi.ResourceOptions(depends_on=[crypto_key_member]))
|
1060
|
+
opts = pulumi.ResourceOptions(depends_on=[crypto_key_member]))
|
1063
1061
|
```
|
1064
1062
|
### Data Fusion Instance Enterprise
|
1065
1063
|
|
@@ -1268,7 +1266,7 @@ class Instance(pulumi.CustomResource):
|
|
1268
1266
|
crypto_key_config=gcp.datafusion.InstanceCryptoKeyConfigArgs(
|
1269
1267
|
key_reference=crypto_key.id,
|
1270
1268
|
),
|
1271
|
-
opts=pulumi.ResourceOptions(depends_on=[crypto_key_member]))
|
1269
|
+
opts = pulumi.ResourceOptions(depends_on=[crypto_key_member]))
|
1272
1270
|
```
|
1273
1271
|
### Data Fusion Instance Enterprise
|
1274
1272
|
|
@@ -1761,13 +1759,11 @@ class Instance(pulumi.CustomResource):
|
|
1761
1759
|
|
1762
1760
|
@property
|
1763
1761
|
@pulumi.getter(name="serviceAccount")
|
1762
|
+
@_utilities.deprecated("""`service_account` is deprecated and will be removed in a future major release. Instead, use `tenant_project_id` to extract the tenant project ID.""")
|
1764
1763
|
def service_account(self) -> pulumi.Output[str]:
|
1765
1764
|
"""
|
1766
1765
|
Service account which will be used to access resources in the customer project.
|
1767
1766
|
"""
|
1768
|
-
warnings.warn("""`service_account` is deprecated and will be removed in a future major release. Instead, use `tenant_project_id` to extract the tenant project ID.""", DeprecationWarning)
|
1769
|
-
pulumi.log.warn("""service_account is deprecated: `service_account` is deprecated and will be removed in a future major release. Instead, use `tenant_project_id` to extract the tenant project ID.""")
|
1770
|
-
|
1771
1767
|
return pulumi.get(self, "service_account")
|
1772
1768
|
|
1773
1769
|
@property
|
pulumi_gcp/dataplex/asset.py
CHANGED
@@ -560,7 +560,7 @@ class Asset(pulumi.CustomResource):
|
|
560
560
|
"my-asset": "exists",
|
561
561
|
},
|
562
562
|
project="my-project-name",
|
563
|
-
opts=pulumi.ResourceOptions(depends_on=[basic_bucket]))
|
563
|
+
opts = pulumi.ResourceOptions(depends_on=[basic_bucket]))
|
564
564
|
```
|
565
565
|
|
566
566
|
## Import
|
@@ -656,7 +656,7 @@ class Asset(pulumi.CustomResource):
|
|
656
656
|
"my-asset": "exists",
|
657
657
|
},
|
658
658
|
project="my-project-name",
|
659
|
-
opts=pulumi.ResourceOptions(depends_on=[basic_bucket]))
|
659
|
+
opts = pulumi.ResourceOptions(depends_on=[basic_bucket]))
|
660
660
|
```
|
661
661
|
|
662
662
|
## Import
|
pulumi_gcp/dataplex/datascan.py
CHANGED
@@ -594,7 +594,7 @@ class Datascan(pulumi.CustomResource):
|
|
594
594
|
),
|
595
595
|
),
|
596
596
|
project="my-project-name",
|
597
|
-
opts=pulumi.ResourceOptions(depends_on=[source]))
|
597
|
+
opts = pulumi.ResourceOptions(depends_on=[source]))
|
598
598
|
```
|
599
599
|
### Dataplex Datascan Basic Quality
|
600
600
|
|
@@ -854,7 +854,7 @@ class Datascan(pulumi.CustomResource):
|
|
854
854
|
),
|
855
855
|
),
|
856
856
|
project="my-project-name",
|
857
|
-
opts=pulumi.ResourceOptions(depends_on=[source]))
|
857
|
+
opts = pulumi.ResourceOptions(depends_on=[source]))
|
858
858
|
```
|
859
859
|
### Dataplex Datascan Basic Quality
|
860
860
|
|