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
@@ -309,7 +309,7 @@ class InsightsReportConfig(pulumi.CustomResource):
|
|
309
309
|
destination_path="test-insights-reports",
|
310
310
|
),
|
311
311
|
),
|
312
|
-
opts=pulumi.ResourceOptions(depends_on=[admin]))
|
312
|
+
opts = pulumi.ResourceOptions(depends_on=[admin]))
|
313
313
|
```
|
314
314
|
|
315
315
|
## Import
|
@@ -414,7 +414,7 @@ class InsightsReportConfig(pulumi.CustomResource):
|
|
414
414
|
destination_path="test-insights-reports",
|
415
415
|
),
|
416
416
|
),
|
417
|
-
opts=pulumi.ResourceOptions(depends_on=[admin]))
|
417
|
+
opts = pulumi.ResourceOptions(depends_on=[admin]))
|
418
418
|
```
|
419
419
|
|
420
420
|
## Import
|
@@ -326,7 +326,7 @@ class Notification(pulumi.CustomResource):
|
|
326
326
|
custom_attributes={
|
327
327
|
"new-attribute": "new-attribute-value",
|
328
328
|
},
|
329
|
-
opts=pulumi.ResourceOptions(depends_on=[binding]))
|
329
|
+
opts = pulumi.ResourceOptions(depends_on=[binding]))
|
330
330
|
```
|
331
331
|
|
332
332
|
## Import
|
@@ -407,7 +407,7 @@ class Notification(pulumi.CustomResource):
|
|
407
407
|
custom_attributes={
|
408
408
|
"new-attribute": "new-attribute-value",
|
409
409
|
},
|
410
|
-
opts=pulumi.ResourceOptions(depends_on=[binding]))
|
410
|
+
opts = pulumi.ResourceOptions(depends_on=[binding]))
|
411
411
|
```
|
412
412
|
|
413
413
|
## Import
|
@@ -259,7 +259,7 @@ class TransferAgentPool(pulumi.CustomResource):
|
|
259
259
|
bandwidth_limit=gcp.storage.TransferAgentPoolBandwidthLimitArgs(
|
260
260
|
limit_mbps="120",
|
261
261
|
),
|
262
|
-
opts=pulumi.ResourceOptions(depends_on=[pubsub_editor_role]))
|
262
|
+
opts = pulumi.ResourceOptions(depends_on=[pubsub_editor_role]))
|
263
263
|
```
|
264
264
|
|
265
265
|
## Import
|
@@ -339,7 +339,7 @@ class TransferAgentPool(pulumi.CustomResource):
|
|
339
339
|
bandwidth_limit=gcp.storage.TransferAgentPoolBandwidthLimitArgs(
|
340
340
|
limit_mbps="120",
|
341
341
|
),
|
342
|
-
opts=pulumi.ResourceOptions(depends_on=[pubsub_editor_role]))
|
342
|
+
opts = pulumi.ResourceOptions(depends_on=[pubsub_editor_role]))
|
343
343
|
```
|
344
344
|
|
345
345
|
## Import
|
@@ -385,7 +385,7 @@ class TransferJob(pulumi.CustomResource):
|
|
385
385
|
bucket=s3_backup_bucket.name,
|
386
386
|
role="roles/storage.admin",
|
387
387
|
member=f"serviceAccount:{default.email}",
|
388
|
-
opts=pulumi.ResourceOptions(depends_on=[s3_backup_bucket]))
|
388
|
+
opts = pulumi.ResourceOptions(depends_on=[s3_backup_bucket]))
|
389
389
|
topic = gcp.pubsub.Topic("topic", name=pubsub_topic_name)
|
390
390
|
notification_config = gcp.pubsub.TopicIAMMember("notification_config",
|
391
391
|
topic=topic.id,
|
@@ -441,7 +441,7 @@ class TransferJob(pulumi.CustomResource):
|
|
441
441
|
],
|
442
442
|
payload_format="JSON",
|
443
443
|
),
|
444
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
444
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
445
445
|
s3_backup_bucket_bucket_iam_member,
|
446
446
|
notification_config,
|
447
447
|
]))
|
@@ -507,7 +507,7 @@ class TransferJob(pulumi.CustomResource):
|
|
507
507
|
bucket=s3_backup_bucket.name,
|
508
508
|
role="roles/storage.admin",
|
509
509
|
member=f"serviceAccount:{default.email}",
|
510
|
-
opts=pulumi.ResourceOptions(depends_on=[s3_backup_bucket]))
|
510
|
+
opts = pulumi.ResourceOptions(depends_on=[s3_backup_bucket]))
|
511
511
|
topic = gcp.pubsub.Topic("topic", name=pubsub_topic_name)
|
512
512
|
notification_config = gcp.pubsub.TopicIAMMember("notification_config",
|
513
513
|
topic=topic.id,
|
@@ -563,7 +563,7 @@ class TransferJob(pulumi.CustomResource):
|
|
563
563
|
],
|
564
564
|
payload_format="JSON",
|
565
565
|
),
|
566
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
566
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
567
567
|
s3_backup_bucket_bucket_iam_member,
|
568
568
|
notification_config,
|
569
569
|
]))
|
pulumi_gcp/tpu/v2_vm.py
CHANGED
@@ -853,7 +853,7 @@ class V2Vm(pulumi.CustomResource):
|
|
853
853
|
zone="us-central1-c")
|
854
854
|
# Wait after service account creation to limit eventual consistency errors.
|
855
855
|
wait60_seconds = time.index.Sleep("wait_60_seconds", create_duration=60s,
|
856
|
-
opts=pulumi.ResourceOptions(depends_on=[sa]))
|
856
|
+
opts = pulumi.ResourceOptions(depends_on=[sa]))
|
857
857
|
tpu = gcp.tpu.V2Vm("tpu",
|
858
858
|
name="test-tpu",
|
859
859
|
zone="us-central1-c",
|
@@ -891,7 +891,7 @@ class V2Vm(pulumi.CustomResource):
|
|
891
891
|
"foo": "bar",
|
892
892
|
},
|
893
893
|
tags=["foo"],
|
894
|
-
opts=pulumi.ResourceOptions(depends_on=[wait60_seconds]))
|
894
|
+
opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
|
895
895
|
```
|
896
896
|
|
897
897
|
## Import
|
@@ -1012,7 +1012,7 @@ class V2Vm(pulumi.CustomResource):
|
|
1012
1012
|
zone="us-central1-c")
|
1013
1013
|
# Wait after service account creation to limit eventual consistency errors.
|
1014
1014
|
wait60_seconds = time.index.Sleep("wait_60_seconds", create_duration=60s,
|
1015
|
-
opts=pulumi.ResourceOptions(depends_on=[sa]))
|
1015
|
+
opts = pulumi.ResourceOptions(depends_on=[sa]))
|
1016
1016
|
tpu = gcp.tpu.V2Vm("tpu",
|
1017
1017
|
name="test-tpu",
|
1018
1018
|
zone="us-central1-c",
|
@@ -1050,7 +1050,7 @@ class V2Vm(pulumi.CustomResource):
|
|
1050
1050
|
"foo": "bar",
|
1051
1051
|
},
|
1052
1052
|
tags=["foo"],
|
1053
|
-
opts=pulumi.ResourceOptions(depends_on=[wait60_seconds]))
|
1053
|
+
opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
|
1054
1054
|
```
|
1055
1055
|
|
1056
1056
|
## Import
|
pulumi_gcp/vertex/_inputs.py
CHANGED
@@ -1750,6 +1750,7 @@ class AiFeatureStoreEntityTypeMonitoringConfigSnapshotAnalysisArgs:
|
|
1750
1750
|
|
1751
1751
|
@property
|
1752
1752
|
@pulumi.getter(name="monitoringInterval")
|
1753
|
+
@_utilities.deprecated("""`monitoring_interval` is deprecated and will be removed in a future release.""")
|
1753
1754
|
def monitoring_interval(self) -> Optional[pulumi.Input[str]]:
|
1754
1755
|
"""
|
1755
1756
|
Configuration of the snapshot analysis based monitoring pipeline running interval. The value is rolled up to full day.
|
@@ -1757,9 +1758,6 @@ class AiFeatureStoreEntityTypeMonitoringConfigSnapshotAnalysisArgs:
|
|
1757
1758
|
|
1758
1759
|
> **Warning:** `monitoring_interval` is deprecated and will be removed in a future release.
|
1759
1760
|
"""
|
1760
|
-
warnings.warn("""`monitoring_interval` is deprecated and will be removed in a future release.""", DeprecationWarning)
|
1761
|
-
pulumi.log.warn("""monitoring_interval is deprecated: `monitoring_interval` is deprecated and will be removed in a future release.""")
|
1762
|
-
|
1763
1761
|
return pulumi.get(self, "monitoring_interval")
|
1764
1762
|
|
1765
1763
|
@monitoring_interval.setter
|
pulumi_gcp/vertex/ai_endpoint.py
CHANGED
@@ -518,7 +518,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
518
518
|
encryption_spec=gcp.vertex.AiEndpointEncryptionSpecArgs(
|
519
519
|
kms_key_name="kms-name",
|
520
520
|
),
|
521
|
-
opts=pulumi.ResourceOptions(depends_on=[vertex_vpc_connection]))
|
521
|
+
opts = pulumi.ResourceOptions(depends_on=[vertex_vpc_connection]))
|
522
522
|
crypto_key = gcp.kms.CryptoKeyIAMMember("crypto_key",
|
523
523
|
crypto_key_id="kms-name",
|
524
524
|
role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
|
@@ -616,7 +616,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
616
616
|
encryption_spec=gcp.vertex.AiEndpointEncryptionSpecArgs(
|
617
617
|
kms_key_name="kms-name",
|
618
618
|
),
|
619
|
-
opts=pulumi.ResourceOptions(depends_on=[vertex_vpc_connection]))
|
619
|
+
opts = pulumi.ResourceOptions(depends_on=[vertex_vpc_connection]))
|
620
620
|
crypto_key = gcp.kms.CryptoKeyIAMMember("crypto_key",
|
621
621
|
crypto_key_id="kms-name",
|
622
622
|
role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
|
@@ -31,8 +31,10 @@ class AiFeatureOnlineStoreArgs:
|
|
31
31
|
Structure is documented below.
|
32
32
|
:param pulumi.Input['AiFeatureOnlineStoreDedicatedServingEndpointArgs'] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
33
33
|
Structure is documented below.
|
34
|
-
:param pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs'] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
34
|
+
:param pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs'] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
35
35
|
Structure is documented below.
|
36
|
+
|
37
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
36
38
|
:param pulumi.Input[bool] force_destroy: If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted.
|
37
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your feature online stores.
|
38
40
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -50,6 +52,9 @@ class AiFeatureOnlineStoreArgs:
|
|
50
52
|
pulumi.set(__self__, "bigtable", bigtable)
|
51
53
|
if dedicated_serving_endpoint is not None:
|
52
54
|
pulumi.set(__self__, "dedicated_serving_endpoint", dedicated_serving_endpoint)
|
55
|
+
if embedding_management is not None:
|
56
|
+
warnings.warn("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""", DeprecationWarning)
|
57
|
+
pulumi.log.warn("""embedding_management is deprecated: `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
53
58
|
if embedding_management is not None:
|
54
59
|
pulumi.set(__self__, "embedding_management", embedding_management)
|
55
60
|
if force_destroy is not None:
|
@@ -93,10 +98,13 @@ class AiFeatureOnlineStoreArgs:
|
|
93
98
|
|
94
99
|
@property
|
95
100
|
@pulumi.getter(name="embeddingManagement")
|
101
|
+
@_utilities.deprecated("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
96
102
|
def embedding_management(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs']]:
|
97
103
|
"""
|
98
|
-
The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
104
|
+
The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
99
105
|
Structure is documented below.
|
106
|
+
|
107
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
100
108
|
"""
|
101
109
|
return pulumi.get(self, "embedding_management")
|
102
110
|
|
@@ -209,8 +217,10 @@ class _AiFeatureOnlineStoreState:
|
|
209
217
|
:param pulumi.Input['AiFeatureOnlineStoreDedicatedServingEndpointArgs'] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
210
218
|
Structure is documented below.
|
211
219
|
: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.
|
212
|
-
:param pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs'] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
220
|
+
:param pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs'] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
213
221
|
Structure is documented below.
|
222
|
+
|
223
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
214
224
|
:param pulumi.Input[str] etag: Used to perform consistent read-modify-write updates.
|
215
225
|
:param pulumi.Input[bool] force_destroy: If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted.
|
216
226
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your feature online stores.
|
@@ -237,6 +247,9 @@ class _AiFeatureOnlineStoreState:
|
|
237
247
|
pulumi.set(__self__, "dedicated_serving_endpoint", dedicated_serving_endpoint)
|
238
248
|
if effective_labels is not None:
|
239
249
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
250
|
+
if embedding_management is not None:
|
251
|
+
warnings.warn("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""", DeprecationWarning)
|
252
|
+
pulumi.log.warn("""embedding_management is deprecated: `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
240
253
|
if embedding_management is not None:
|
241
254
|
pulumi.set(__self__, "embedding_management", embedding_management)
|
242
255
|
if etag is not None:
|
@@ -312,10 +325,13 @@ class _AiFeatureOnlineStoreState:
|
|
312
325
|
|
313
326
|
@property
|
314
327
|
@pulumi.getter(name="embeddingManagement")
|
328
|
+
@_utilities.deprecated("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
315
329
|
def embedding_management(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs']]:
|
316
330
|
"""
|
317
|
-
The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
331
|
+
The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
318
332
|
Structure is documented below.
|
333
|
+
|
334
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
319
335
|
"""
|
320
336
|
return pulumi.get(self, "embedding_management")
|
321
337
|
|
@@ -580,8 +596,10 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
580
596
|
Structure is documented below.
|
581
597
|
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreDedicatedServingEndpointArgs']] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
582
598
|
Structure is documented below.
|
583
|
-
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreEmbeddingManagementArgs']] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
599
|
+
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreEmbeddingManagementArgs']] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
584
600
|
Structure is documented below.
|
601
|
+
|
602
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
585
603
|
:param pulumi.Input[bool] force_destroy: If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted.
|
586
604
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your feature online stores.
|
587
605
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -797,8 +815,10 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
797
815
|
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreDedicatedServingEndpointArgs']] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
798
816
|
Structure is documented below.
|
799
817
|
: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.
|
800
|
-
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreEmbeddingManagementArgs']] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
818
|
+
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreEmbeddingManagementArgs']] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
801
819
|
Structure is documented below.
|
820
|
+
|
821
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
802
822
|
:param pulumi.Input[str] etag: Used to perform consistent read-modify-write updates.
|
803
823
|
:param pulumi.Input[bool] force_destroy: If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted.
|
804
824
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your feature online stores.
|
@@ -874,10 +894,13 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
874
894
|
|
875
895
|
@property
|
876
896
|
@pulumi.getter(name="embeddingManagement")
|
877
|
-
|
897
|
+
@_utilities.deprecated("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
898
|
+
def embedding_management(self) -> pulumi.Output['outputs.AiFeatureOnlineStoreEmbeddingManagement']:
|
878
899
|
"""
|
879
|
-
The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
900
|
+
The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
880
901
|
Structure is documented below.
|
902
|
+
|
903
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
881
904
|
"""
|
882
905
|
return pulumi.get(self, "embedding_management")
|
883
906
|
|
@@ -487,7 +487,7 @@ class AiIndexEndpoint(pulumi.CustomResource):
|
|
487
487
|
"label-one": "value-one",
|
488
488
|
},
|
489
489
|
network=vertex_network.name.apply(lambda name: f"projects/{project.number}/global/networks/{name}"),
|
490
|
-
opts=pulumi.ResourceOptions(depends_on=[vertex_vpc_connection]))
|
490
|
+
opts = pulumi.ResourceOptions(depends_on=[vertex_vpc_connection]))
|
491
491
|
```
|
492
492
|
### Vertex Ai Index Endpoint With Psc
|
493
493
|
|
@@ -616,7 +616,7 @@ class AiIndexEndpoint(pulumi.CustomResource):
|
|
616
616
|
"label-one": "value-one",
|
617
617
|
},
|
618
618
|
network=vertex_network.name.apply(lambda name: f"projects/{project.number}/global/networks/{name}"),
|
619
|
-
opts=pulumi.ResourceOptions(depends_on=[vertex_vpc_connection]))
|
619
|
+
opts = pulumi.ResourceOptions(depends_on=[vertex_vpc_connection]))
|
620
620
|
```
|
621
621
|
### Vertex Ai Index Endpoint With Psc
|
622
622
|
|
@@ -426,7 +426,7 @@ class AiTensorboard(pulumi.CustomResource):
|
|
426
426
|
encryption_spec=gcp.vertex.AiTensorboardEncryptionSpecArgs(
|
427
427
|
kms_key_name="kms-name",
|
428
428
|
),
|
429
|
-
opts=pulumi.ResourceOptions(depends_on=[crypto_key]))
|
429
|
+
opts = pulumi.ResourceOptions(depends_on=[crypto_key]))
|
430
430
|
```
|
431
431
|
|
432
432
|
## Import
|
@@ -530,7 +530,7 @@ class AiTensorboard(pulumi.CustomResource):
|
|
530
530
|
encryption_spec=gcp.vertex.AiTensorboardEncryptionSpecArgs(
|
531
531
|
kms_key_name="kms-name",
|
532
532
|
),
|
533
|
-
opts=pulumi.ResourceOptions(depends_on=[crypto_key]))
|
533
|
+
opts = pulumi.ResourceOptions(depends_on=[crypto_key]))
|
534
534
|
```
|
535
535
|
|
536
536
|
## Import
|
pulumi_gcp/vertex/outputs.py
CHANGED
@@ -1931,6 +1931,7 @@ class AiFeatureStoreEntityTypeMonitoringConfigSnapshotAnalysis(dict):
|
|
1931
1931
|
|
1932
1932
|
@property
|
1933
1933
|
@pulumi.getter(name="monitoringInterval")
|
1934
|
+
@_utilities.deprecated("""`monitoring_interval` is deprecated and will be removed in a future release.""")
|
1934
1935
|
def monitoring_interval(self) -> Optional[str]:
|
1935
1936
|
"""
|
1936
1937
|
Configuration of the snapshot analysis based monitoring pipeline running interval. The value is rolled up to full day.
|
@@ -1938,9 +1939,6 @@ class AiFeatureStoreEntityTypeMonitoringConfigSnapshotAnalysis(dict):
|
|
1938
1939
|
|
1939
1940
|
> **Warning:** `monitoring_interval` is deprecated and will be removed in a future release.
|
1940
1941
|
"""
|
1941
|
-
warnings.warn("""`monitoring_interval` is deprecated and will be removed in a future release.""", DeprecationWarning)
|
1942
|
-
pulumi.log.warn("""monitoring_interval is deprecated: `monitoring_interval` is deprecated and will be removed in a future release.""")
|
1943
|
-
|
1944
1942
|
return pulumi.get(self, "monitoring_interval")
|
1945
1943
|
|
1946
1944
|
@property
|
@@ -316,7 +316,7 @@ class ExternalAddress(pulumi.CustomResource):
|
|
316
316
|
parent=external_address_pc.id,
|
317
317
|
internal_ip="192.168.0.66",
|
318
318
|
description="Sample description.",
|
319
|
-
opts=pulumi.ResourceOptions(depends_on=[external_address_np]))
|
319
|
+
opts = pulumi.ResourceOptions(depends_on=[external_address_np]))
|
320
320
|
```
|
321
321
|
|
322
322
|
## Import
|
@@ -394,7 +394,7 @@ class ExternalAddress(pulumi.CustomResource):
|
|
394
394
|
parent=external_address_pc.id,
|
395
395
|
internal_ip="192.168.0.66",
|
396
396
|
description="Sample description.",
|
397
|
-
opts=pulumi.ResourceOptions(depends_on=[external_address_np]))
|
397
|
+
opts = pulumi.ResourceOptions(depends_on=[external_address_np]))
|
398
398
|
```
|
399
399
|
|
400
400
|
## Import
|
@@ -306,11 +306,11 @@ class Network(pulumi.CustomResource):
|
|
306
306
|
org_id="123456789",
|
307
307
|
billing_account="000000-0000000-0000000-000000")
|
308
308
|
wait60_seconds = time.index.Sleep("wait_60_seconds", create_duration=60s,
|
309
|
-
opts=pulumi.ResourceOptions(depends_on=[acceptance_project]))
|
309
|
+
opts = pulumi.ResourceOptions(depends_on=[acceptance_project]))
|
310
310
|
acceptance = gcp.projects.Service("acceptance",
|
311
311
|
project=acceptance_project.project_id,
|
312
312
|
service="vmwareengine.googleapis.com",
|
313
|
-
opts=pulumi.ResourceOptions(depends_on=[wait60_seconds]))
|
313
|
+
opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
|
314
314
|
vmw_engine_network = gcp.vmwareengine.Network("vmw-engine-network",
|
315
315
|
project=acceptance.project,
|
316
316
|
name="us-west1-default",
|
@@ -398,11 +398,11 @@ class Network(pulumi.CustomResource):
|
|
398
398
|
org_id="123456789",
|
399
399
|
billing_account="000000-0000000-0000000-000000")
|
400
400
|
wait60_seconds = time.index.Sleep("wait_60_seconds", create_duration=60s,
|
401
|
-
opts=pulumi.ResourceOptions(depends_on=[acceptance_project]))
|
401
|
+
opts = pulumi.ResourceOptions(depends_on=[acceptance_project]))
|
402
402
|
acceptance = gcp.projects.Service("acceptance",
|
403
403
|
project=acceptance_project.project_id,
|
404
404
|
service="vmwareengine.googleapis.com",
|
405
|
-
opts=pulumi.ResourceOptions(depends_on=[wait60_seconds]))
|
405
|
+
opts = pulumi.ResourceOptions(depends_on=[wait60_seconds]))
|
406
406
|
vmw_engine_network = gcp.vmwareengine.Network("vmw-engine-network",
|
407
407
|
project=acceptance.project,
|
408
408
|
name="us-west1-default",
|
@@ -522,14 +522,11 @@ class Connector(pulumi.CustomResource):
|
|
522
522
|
import pulumi
|
523
523
|
import pulumi_gcp as gcp
|
524
524
|
|
525
|
-
custom_test_network = gcp.compute.Network("custom_test",
|
526
|
-
name="vpc-con",
|
527
|
-
auto_create_subnetworks=False)
|
528
525
|
custom_test = gcp.compute.Subnetwork("custom_test",
|
529
526
|
name="vpc-con",
|
530
527
|
ip_cidr_range="10.2.0.0/28",
|
531
528
|
region="us-central1",
|
532
|
-
network=
|
529
|
+
network="default")
|
533
530
|
connector = gcp.vpcaccess.Connector("connector",
|
534
531
|
name="vpc-con",
|
535
532
|
subnet=gcp.vpcaccess.ConnectorSubnetArgs(
|
@@ -628,14 +625,11 @@ class Connector(pulumi.CustomResource):
|
|
628
625
|
import pulumi
|
629
626
|
import pulumi_gcp as gcp
|
630
627
|
|
631
|
-
custom_test_network = gcp.compute.Network("custom_test",
|
632
|
-
name="vpc-con",
|
633
|
-
auto_create_subnetworks=False)
|
634
628
|
custom_test = gcp.compute.Subnetwork("custom_test",
|
635
629
|
name="vpc-con",
|
636
630
|
ip_cidr_range="10.2.0.0/28",
|
637
631
|
region="us-central1",
|
638
|
-
network=
|
632
|
+
network="default")
|
639
633
|
connector = gcp.vpcaccess.Connector("connector",
|
640
634
|
name="vpc-con",
|
641
635
|
subnet=gcp.vpcaccess.ConnectorSubnetArgs(
|