pulumi-gcp 8.42.0a1758178363__py3-none-any.whl → 9.0.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 +83 -48
- pulumi_gcp/activedirectory/peering.py +16 -0
- pulumi_gcp/alloydb/backup.py +8 -4
- pulumi_gcp/alloydb/cluster.py +56 -10
- pulumi_gcp/alloydb/get_cluster.py +12 -1
- pulumi_gcp/alloydb/instance.py +10 -4
- pulumi_gcp/alloydb/user.py +8 -4
- pulumi_gcp/apigateway/api_config_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_policy.py +4 -4
- pulumi_gcp/apigateway/api_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_iam_policy.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_binding.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_member.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_policy.py +4 -4
- pulumi_gcp/apigee/_inputs.py +151 -108
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +52 -40
- pulumi_gcp/apigee/outputs.py +92 -88
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/_inputs.py +0 -12
- pulumi_gcp/artifactregistry/get_npm_package.py +251 -0
- pulumi_gcp/artifactregistry/get_python_package.py +237 -0
- pulumi_gcp/artifactregistry/get_repository.py +12 -1
- pulumi_gcp/artifactregistry/outputs.py +8 -16
- pulumi_gcp/artifactregistry/repository.py +28 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +4 -4
- pulumi_gcp/backupdisasterrecovery/get_backup.py +12 -1
- pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +4 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source_references.py +135 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +4 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +103 -0
- pulumi_gcp/beyondcorp/__init__.py +0 -5
- pulumi_gcp/beyondcorp/_inputs.py +0 -312
- pulumi_gcp/beyondcorp/outputs.py +0 -200
- pulumi_gcp/bigquery/_inputs.py +114 -4
- pulumi_gcp/bigquery/app_profile.py +3 -5
- pulumi_gcp/bigquery/outputs.py +75 -5
- pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +20 -0
- pulumi_gcp/bigtable/app_profile.py +1 -1
- pulumi_gcp/bigtable/get_table_iam_policy.py +16 -18
- pulumi_gcp/bigtable/table_iam_binding.py +43 -43
- pulumi_gcp/bigtable/table_iam_member.py +43 -43
- pulumi_gcp/bigtable/table_iam_policy.py +43 -43
- pulumi_gcp/billing/_inputs.py +0 -6
- pulumi_gcp/billing/outputs.py +0 -4
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate_map_entry.py +7 -7
- pulumi_gcp/certificatemanager/get_dns_authorization.py +229 -0
- pulumi_gcp/certificatemanager/outputs.py +41 -0
- pulumi_gcp/chronicle/_inputs.py +6 -5
- pulumi_gcp/chronicle/outputs.py +4 -3
- pulumi_gcp/chronicle/reference_list.py +53 -5
- pulumi_gcp/cloudasset/get_resources_search_all.py +8 -0
- pulumi_gcp/cloudbuild/_inputs.py +309 -45
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +2 -6
- pulumi_gcp/cloudbuild/get_trigger.py +12 -1
- pulumi_gcp/cloudbuild/outputs.py +380 -30
- pulumi_gcp/cloudbuild/trigger.py +160 -2
- pulumi_gcp/cloudbuild/worker_pool.py +2 -6
- pulumi_gcp/cloudfunctionsv2/_inputs.py +23 -21
- pulumi_gcp/cloudfunctionsv2/outputs.py +17 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +16 -0
- pulumi_gcp/cloudrunv2/_inputs.py +80 -26
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +109 -30
- pulumi_gcp/cloudrunv2/service.py +72 -12
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -2
- pulumi_gcp/cloudtasks/queue.py +98 -2
- pulumi_gcp/colab/_inputs.py +1 -114
- pulumi_gcp/colab/outputs.py +1 -106
- pulumi_gcp/compute/_inputs.py +884 -24
- pulumi_gcp/compute/backend_bucket.py +68 -0
- pulumi_gcp/compute/backend_bucket_iam_binding.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_member.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_policy.py +236 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/backend_service_iam_binding.py +464 -0
- pulumi_gcp/compute/backend_service_iam_member.py +464 -0
- pulumi_gcp/compute/backend_service_iam_policy.py +464 -0
- pulumi_gcp/compute/cross_site_network.py +16 -0
- pulumi_gcp/compute/future_reservation.py +32 -0
- pulumi_gcp/compute/get_backend_bucket.py +12 -1
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/get_resource_policy.py +2 -20
- pulumi_gcp/compute/machine_image_iam_binding.py +8 -4
- pulumi_gcp/compute/machine_image_iam_member.py +8 -4
- pulumi_gcp/compute/machine_image_iam_policy.py +8 -4
- pulumi_gcp/compute/network_edge_security_service.py +16 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +0 -100
- pulumi_gcp/compute/organization_security_policy.py +83 -51
- pulumi_gcp/compute/outputs.py +799 -16
- pulumi_gcp/compute/packet_mirroring.py +6 -0
- pulumi_gcp/compute/preview_feature.py +16 -0
- pulumi_gcp/compute/public_delegated_prefix.py +42 -0
- pulumi_gcp/compute/region_backend_service.py +54 -0
- pulumi_gcp/compute/region_backend_service_iam_binding.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_member.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_policy.py +488 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -3
- pulumi_gcp/compute/region_resize_request.py +24 -0
- pulumi_gcp/compute/region_url_map.py +75 -0
- pulumi_gcp/compute/subnetwork.py +0 -98
- pulumi_gcp/compute/wire_group.py +16 -0
- pulumi_gcp/config/__init__.pyi +2 -2
- pulumi_gcp/config/vars.py +4 -4
- pulumi_gcp/container/_inputs.py +466 -18
- pulumi_gcp/container/cluster.py +16 -7
- pulumi_gcp/container/outputs.py +448 -15
- pulumi_gcp/databasemigrationservice/connection_profile.py +4 -2
- pulumi_gcp/databasemigrationservice/migration_job.py +4 -2
- pulumi_gcp/dataflow/flex_template_job.py +10 -0
- pulumi_gcp/dataform/repository.py +16 -0
- pulumi_gcp/dataform/repository_release_config.py +16 -0
- pulumi_gcp/dataform/repository_workflow_config.py +16 -0
- pulumi_gcp/diagflow/_inputs.py +152 -0
- pulumi_gcp/diagflow/cx_agent.py +425 -0
- pulumi_gcp/diagflow/outputs.py +143 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +94 -0
- pulumi_gcp/discoveryengine/acl_config.py +393 -0
- pulumi_gcp/discoveryengine/outputs.py +92 -0
- pulumi_gcp/firebase/android_app.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +4 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +2 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -12
- pulumi_gcp/firebase/app_hosting_backend.py +4 -8
- pulumi_gcp/firebase/app_hosting_build.py +4 -8
- pulumi_gcp/firebase/app_hosting_traffic.py +6 -12
- pulumi_gcp/firebase/apple_app.py +16 -0
- pulumi_gcp/firebase/data_connect_service.py +4 -8
- pulumi_gcp/firebase/database_instance.py +20 -8
- pulumi_gcp/firebase/extensions_instance.py +12 -0
- pulumi_gcp/firebase/get_android_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app_config.py +16 -2
- pulumi_gcp/firebase/get_hosting_channel.py +4 -2
- pulumi_gcp/firebase/hosting_channel.py +20 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +20 -0
- pulumi_gcp/firebase/hosting_release.py +16 -0
- pulumi_gcp/firebase/hosting_site.py +16 -0
- pulumi_gcp/firebase/hosting_version.py +16 -0
- pulumi_gcp/firebase/storage_bucket.py +18 -0
- pulumi_gcp/firestore/index.py +118 -3
- pulumi_gcp/folder/service_identity.py +26 -0
- pulumi_gcp/gkehub/_inputs.py +0 -60
- pulumi_gcp/gkehub/get_membership.py +1 -12
- pulumi_gcp/gkehub/membership.py +0 -70
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +16 -0
- pulumi_gcp/gkehub/outputs.py +0 -36
- pulumi_gcp/healthcare/_inputs.py +205 -0
- pulumi_gcp/healthcare/fhir_store.py +128 -0
- pulumi_gcp/healthcare/outputs.py +163 -0
- pulumi_gcp/iam/workload_identity_pool_iam_binding.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_member.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_policy.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +18 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +20 -0
- pulumi_gcp/iap/__init__.py +8 -0
- pulumi_gcp/iap/_inputs.py +260 -0
- pulumi_gcp/iap/get_web_forwarding_rule_service_iam_policy.py +159 -0
- pulumi_gcp/iap/get_web_region_forwarding_rule_service_iam_policy.py +182 -0
- pulumi_gcp/iap/outputs.py +152 -0
- pulumi_gcp/{beyondcorp/application_iam_binding.py → iap/web_forwarding_rule_service_iam_binding.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_member.py → iap/web_forwarding_rule_service_iam_member.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_policy.py → iap/web_forwarding_rule_service_iam_policy.py} +212 -294
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_binding.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_member.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_policy.py +910 -0
- pulumi_gcp/kms/autokey_config.py +0 -2
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +22 -0
- pulumi_gcp/kms/key_handle.py +0 -2
- pulumi_gcp/logging/organization_sink.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +4 -0
- pulumi_gcp/managedkafka/connector.py +4 -0
- pulumi_gcp/memorystore/get_instance.py +1 -12
- pulumi_gcp/memorystore/instance.py +14 -84
- pulumi_gcp/netapp/storage_pool.py +91 -2
- pulumi_gcp/netapp/volume.py +47 -0
- pulumi_gcp/networkmanagement/__init__.py +1 -0
- pulumi_gcp/networkmanagement/organization_vpc_flow_logs_config.py +1028 -0
- pulumi_gcp/networksecurity/authorization_policy.py +12 -0
- pulumi_gcp/networkservices/gateway.py +7 -7
- pulumi_gcp/networkservices/lb_traffic_extension.py +24 -23
- pulumi_gcp/networkservices/service_lb_policies.py +12 -0
- pulumi_gcp/notebooks/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +3 -3
- pulumi_gcp/projects/service.py +2 -11
- pulumi_gcp/provider.py +20 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +0 -70
- pulumi_gcp/redis/get_cluster.py +1 -12
- pulumi_gcp/resourcemanager/capability.py +16 -0
- pulumi_gcp/runtimeconfig/config.py +16 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_member.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_policy.py +236 -0
- pulumi_gcp/runtimeconfig/variable.py +10 -0
- pulumi_gcp/saasruntime/__init__.py +12 -0
- pulumi_gcp/saasruntime/_inputs.py +513 -0
- pulumi_gcp/saasruntime/outputs.py +431 -0
- pulumi_gcp/saasruntime/saa_s.py +819 -0
- pulumi_gcp/saasruntime/unit_kind.py +1024 -0
- pulumi_gcp/securesourcemanager/_inputs.py +20 -19
- pulumi_gcp/securesourcemanager/instance.py +7 -7
- pulumi_gcp/securesourcemanager/outputs.py +15 -14
- pulumi_gcp/securesourcemanager/repository.py +7 -7
- pulumi_gcp/serviceaccount/get_account_key.py +1 -21
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_policy.py +4 -4
- pulumi_gcp/sql/_inputs.py +135 -1
- pulumi_gcp/sql/database_instance.py +94 -0
- pulumi_gcp/sql/get_database_instance.py +23 -1
- pulumi_gcp/sql/outputs.py +276 -3
- pulumi_gcp/sql/user.py +61 -0
- pulumi_gcp/storage/_inputs.py +253 -7
- pulumi_gcp/storage/bucket_object.py +0 -9
- pulumi_gcp/storage/outputs.py +198 -8
- pulumi_gcp/storage/transfer_job.py +47 -0
- pulumi_gcp/tpu/__init__.py +0 -2
- pulumi_gcp/tpu/_inputs.py +0 -93
- pulumi_gcp/tpu/outputs.py +0 -72
- pulumi_gcp/tpu/v2_queued_resource.py +16 -0
- pulumi_gcp/tpu/v2_vm.py +16 -0
- pulumi_gcp/vertex/_inputs.py +8 -9
- pulumi_gcp/vertex/ai_endpoint.py +2 -4
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +0 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_index.py +24 -23
- pulumi_gcp/vertex/ai_metadata_store.py +16 -0
- pulumi_gcp/vertex/outputs.py +7 -8
- pulumi_gcp/workstations/workstation.py +16 -0
- pulumi_gcp/workstations/workstation_cluster.py +16 -0
- pulumi_gcp/workstations/workstation_config.py +16 -0
- pulumi_gcp/workstations/workstation_config_iam_binding.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_member.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_policy.py +260 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +272 -0
- pulumi_gcp/workstations/workstation_iam_member.py +272 -0
- pulumi_gcp/workstations/workstation_iam_policy.py +272 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/RECORD +266 -255
- pulumi_gcp/beyondcorp/application.py +0 -746
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +0 -182
- pulumi_gcp/notebooks/location.py +0 -285
- pulumi_gcp/tpu/get_tensorflow_versions.py +0 -184
- pulumi_gcp/tpu/node.py +0 -1062
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/tpu/outputs.py
CHANGED
@@ -16,8 +16,6 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
-
'NodeNetworkEndpoint',
|
20
|
-
'NodeSchedulingConfig',
|
21
19
|
'V2QueuedResourceTpu',
|
22
20
|
'V2QueuedResourceTpuNodeSpec',
|
23
21
|
'V2QueuedResourceTpuNodeSpecNode',
|
@@ -33,76 +31,6 @@ __all__ = [
|
|
33
31
|
'V2VmSymptom',
|
34
32
|
]
|
35
33
|
|
36
|
-
@pulumi.output_type
|
37
|
-
class NodeNetworkEndpoint(dict):
|
38
|
-
@staticmethod
|
39
|
-
def __key_warning(key: str):
|
40
|
-
suggest = None
|
41
|
-
if key == "ipAddress":
|
42
|
-
suggest = "ip_address"
|
43
|
-
|
44
|
-
if suggest:
|
45
|
-
pulumi.log.warn(f"Key '{key}' not found in NodeNetworkEndpoint. Access the value via the '{suggest}' property getter instead.")
|
46
|
-
|
47
|
-
def __getitem__(self, key: str) -> Any:
|
48
|
-
NodeNetworkEndpoint.__key_warning(key)
|
49
|
-
return super().__getitem__(key)
|
50
|
-
|
51
|
-
def get(self, key: str, default = None) -> Any:
|
52
|
-
NodeNetworkEndpoint.__key_warning(key)
|
53
|
-
return super().get(key, default)
|
54
|
-
|
55
|
-
def __init__(__self__, *,
|
56
|
-
ip_address: Optional[_builtins.str] = None,
|
57
|
-
port: Optional[_builtins.int] = None):
|
58
|
-
"""
|
59
|
-
:param _builtins.str ip_address: (Output)
|
60
|
-
The IP address of this network endpoint.
|
61
|
-
:param _builtins.int port: (Output)
|
62
|
-
The port of this network endpoint.
|
63
|
-
"""
|
64
|
-
if ip_address is not None:
|
65
|
-
pulumi.set(__self__, "ip_address", ip_address)
|
66
|
-
if port is not None:
|
67
|
-
pulumi.set(__self__, "port", port)
|
68
|
-
|
69
|
-
@_builtins.property
|
70
|
-
@pulumi.getter(name="ipAddress")
|
71
|
-
def ip_address(self) -> Optional[_builtins.str]:
|
72
|
-
"""
|
73
|
-
(Output)
|
74
|
-
The IP address of this network endpoint.
|
75
|
-
"""
|
76
|
-
return pulumi.get(self, "ip_address")
|
77
|
-
|
78
|
-
@_builtins.property
|
79
|
-
@pulumi.getter
|
80
|
-
def port(self) -> Optional[_builtins.int]:
|
81
|
-
"""
|
82
|
-
(Output)
|
83
|
-
The port of this network endpoint.
|
84
|
-
"""
|
85
|
-
return pulumi.get(self, "port")
|
86
|
-
|
87
|
-
|
88
|
-
@pulumi.output_type
|
89
|
-
class NodeSchedulingConfig(dict):
|
90
|
-
def __init__(__self__, *,
|
91
|
-
preemptible: _builtins.bool):
|
92
|
-
"""
|
93
|
-
:param _builtins.bool preemptible: Defines whether the TPU instance is preemptible.
|
94
|
-
"""
|
95
|
-
pulumi.set(__self__, "preemptible", preemptible)
|
96
|
-
|
97
|
-
@_builtins.property
|
98
|
-
@pulumi.getter
|
99
|
-
def preemptible(self) -> _builtins.bool:
|
100
|
-
"""
|
101
|
-
Defines whether the TPU instance is preemptible.
|
102
|
-
"""
|
103
|
-
return pulumi.get(self, "preemptible")
|
104
|
-
|
105
|
-
|
106
34
|
@pulumi.output_type
|
107
35
|
class V2QueuedResourceTpu(dict):
|
108
36
|
@staticmethod
|
@@ -182,6 +182,14 @@ class V2QueuedResource(pulumi.CustomResource):
|
|
182
182
|
zone: Optional[pulumi.Input[_builtins.str]] = None,
|
183
183
|
__props__=None):
|
184
184
|
"""
|
185
|
+
A Cloud TPU Queued Resource.
|
186
|
+
|
187
|
+
To get more information about QueuedResource, see:
|
188
|
+
|
189
|
+
* [API documentation](https://cloud.google.com/tpu/docs/reference/rest/v2/projects.locations.queuedResources)
|
190
|
+
* How-to Guides
|
191
|
+
* [Official Documentation](https://cloud.google.com/tpu/docs/)
|
192
|
+
|
185
193
|
## Example Usage
|
186
194
|
|
187
195
|
### Tpu V2 Queued Resource Basic
|
@@ -290,6 +298,14 @@ class V2QueuedResource(pulumi.CustomResource):
|
|
290
298
|
args: Optional[V2QueuedResourceArgs] = None,
|
291
299
|
opts: Optional[pulumi.ResourceOptions] = None):
|
292
300
|
"""
|
301
|
+
A Cloud TPU Queued Resource.
|
302
|
+
|
303
|
+
To get more information about QueuedResource, see:
|
304
|
+
|
305
|
+
* [API documentation](https://cloud.google.com/tpu/docs/reference/rest/v2/projects.locations.queuedResources)
|
306
|
+
* How-to Guides
|
307
|
+
* [Official Documentation](https://cloud.google.com/tpu/docs/)
|
308
|
+
|
293
309
|
## Example Usage
|
294
310
|
|
295
311
|
### Tpu V2 Queued Resource Basic
|
pulumi_gcp/tpu/v2_vm.py
CHANGED
@@ -846,6 +846,14 @@ class V2Vm(pulumi.CustomResource):
|
|
846
846
|
zone: Optional[pulumi.Input[_builtins.str]] = None,
|
847
847
|
__props__=None):
|
848
848
|
"""
|
849
|
+
A Cloud TPU VM instance.
|
850
|
+
|
851
|
+
To get more information about Vm, see:
|
852
|
+
|
853
|
+
* [API documentation](https://cloud.google.com/tpu/docs/reference/rest/v2/projects.locations.nodes)
|
854
|
+
* How-to Guides
|
855
|
+
* [Official Documentation](https://cloud.google.com/tpu/docs/)
|
856
|
+
|
849
857
|
## Example Usage
|
850
858
|
|
851
859
|
### Tpu V2 Vm Basic
|
@@ -1007,6 +1015,14 @@ class V2Vm(pulumi.CustomResource):
|
|
1007
1015
|
args: V2VmArgs,
|
1008
1016
|
opts: Optional[pulumi.ResourceOptions] = None):
|
1009
1017
|
"""
|
1018
|
+
A Cloud TPU VM instance.
|
1019
|
+
|
1020
|
+
To get more information about Vm, see:
|
1021
|
+
|
1022
|
+
* [API documentation](https://cloud.google.com/tpu/docs/reference/rest/v2/projects.locations.nodes)
|
1023
|
+
* How-to Guides
|
1024
|
+
* [Official Documentation](https://cloud.google.com/tpu/docs/)
|
1025
|
+
|
1010
1026
|
## Example Usage
|
1011
1027
|
|
1012
1028
|
### Tpu V2 Vm Basic
|
pulumi_gcp/vertex/_inputs.py
CHANGED
@@ -7367,7 +7367,7 @@ class AiIndexIndexStatArgs:
|
|
7367
7367
|
|
7368
7368
|
if not MYPY:
|
7369
7369
|
class AiIndexMetadataArgsDict(TypedDict):
|
7370
|
-
config:
|
7370
|
+
config: pulumi.Input['AiIndexMetadataConfigArgsDict']
|
7371
7371
|
"""
|
7372
7372
|
The configuration of the Matching Engine Index.
|
7373
7373
|
Structure is documented below.
|
@@ -7392,7 +7392,7 @@ elif False:
|
|
7392
7392
|
@pulumi.input_type
|
7393
7393
|
class AiIndexMetadataArgs:
|
7394
7394
|
def __init__(__self__, *,
|
7395
|
-
config:
|
7395
|
+
config: pulumi.Input['AiIndexMetadataConfigArgs'],
|
7396
7396
|
contents_delta_uri: Optional[pulumi.Input[_builtins.str]] = None,
|
7397
7397
|
is_complete_overwrite: Optional[pulumi.Input[_builtins.bool]] = None):
|
7398
7398
|
"""
|
@@ -7407,8 +7407,7 @@ class AiIndexMetadataArgs:
|
|
7407
7407
|
:param pulumi.Input[_builtins.bool] is_complete_overwrite: If this field is set together with contentsDeltaUri when calling IndexService.UpdateIndex,
|
7408
7408
|
then existing content of the Index will be replaced by the data from the contentsDeltaUri.
|
7409
7409
|
"""
|
7410
|
-
|
7411
|
-
pulumi.set(__self__, "config", config)
|
7410
|
+
pulumi.set(__self__, "config", config)
|
7412
7411
|
if contents_delta_uri is not None:
|
7413
7412
|
pulumi.set(__self__, "contents_delta_uri", contents_delta_uri)
|
7414
7413
|
if is_complete_overwrite is not None:
|
@@ -7416,7 +7415,7 @@ class AiIndexMetadataArgs:
|
|
7416
7415
|
|
7417
7416
|
@_builtins.property
|
7418
7417
|
@pulumi.getter
|
7419
|
-
def config(self) ->
|
7418
|
+
def config(self) -> pulumi.Input['AiIndexMetadataConfigArgs']:
|
7420
7419
|
"""
|
7421
7420
|
The configuration of the Matching Engine Index.
|
7422
7421
|
Structure is documented below.
|
@@ -7424,7 +7423,7 @@ class AiIndexMetadataArgs:
|
|
7424
7423
|
return pulumi.get(self, "config")
|
7425
7424
|
|
7426
7425
|
@config.setter
|
7427
|
-
def config(self, value:
|
7426
|
+
def config(self, value: pulumi.Input['AiIndexMetadataConfigArgs']):
|
7428
7427
|
pulumi.set(self, "config", value)
|
7429
7428
|
|
7430
7429
|
@_builtins.property
|
@@ -7466,7 +7465,7 @@ if not MYPY:
|
|
7466
7465
|
"""
|
7467
7466
|
algorithm_config: NotRequired[pulumi.Input['AiIndexMetadataConfigAlgorithmConfigArgsDict']]
|
7468
7467
|
"""
|
7469
|
-
The configuration with regard to the algorithms used for efficient search.
|
7468
|
+
The configuration with regard to the algorithms used for efficient search. This field may be required based on your configuration.
|
7470
7469
|
Structure is documented below.
|
7471
7470
|
"""
|
7472
7471
|
approximate_neighbors_count: NotRequired[pulumi.Input[_builtins.int]]
|
@@ -7512,7 +7511,7 @@ class AiIndexMetadataConfigArgs:
|
|
7512
7511
|
shard_size: Optional[pulumi.Input[_builtins.str]] = None):
|
7513
7512
|
"""
|
7514
7513
|
:param pulumi.Input[_builtins.int] dimensions: The number of dimensions of the input vectors.
|
7515
|
-
:param pulumi.Input['AiIndexMetadataConfigAlgorithmConfigArgs'] algorithm_config: The configuration with regard to the algorithms used for efficient search.
|
7514
|
+
:param pulumi.Input['AiIndexMetadataConfigAlgorithmConfigArgs'] algorithm_config: The configuration with regard to the algorithms used for efficient search. This field may be required based on your configuration.
|
7516
7515
|
Structure is documented below.
|
7517
7516
|
:param pulumi.Input[_builtins.int] approximate_neighbors_count: The default number of neighbors to find via approximate search before exact reordering is
|
7518
7517
|
performed. Exact reordering is a procedure where results returned by an
|
@@ -7560,7 +7559,7 @@ class AiIndexMetadataConfigArgs:
|
|
7560
7559
|
@pulumi.getter(name="algorithmConfig")
|
7561
7560
|
def algorithm_config(self) -> Optional[pulumi.Input['AiIndexMetadataConfigAlgorithmConfigArgs']]:
|
7562
7561
|
"""
|
7563
|
-
The configuration with regard to the algorithms used for efficient search.
|
7562
|
+
The configuration with regard to the algorithms used for efficient search. This field may be required based on your configuration.
|
7564
7563
|
Structure is documented below.
|
7565
7564
|
"""
|
7566
7565
|
return pulumi.get(self, "algorithm_config")
|
pulumi_gcp/vertex/ai_endpoint.py
CHANGED
@@ -651,7 +651,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
651
651
|
|
652
652
|
To get more information about Endpoint, see:
|
653
653
|
|
654
|
-
* [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/
|
654
|
+
* [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.endpoints)
|
655
655
|
* How-to Guides
|
656
656
|
* [Official Documentation](https://cloud.google.com/vertex-ai/docs)
|
657
657
|
|
@@ -730,7 +730,6 @@ class AiEndpoint(pulumi.CustomResource):
|
|
730
730
|
private_service_connect_config={
|
731
731
|
"enable_private_service_connect": True,
|
732
732
|
"project_allowlists": [project.project_id],
|
733
|
-
"enable_secure_private_service_connect": False,
|
734
733
|
})
|
735
734
|
```
|
736
735
|
### Vertex Ai Endpoint Dedicated Endpoint
|
@@ -814,7 +813,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
814
813
|
|
815
814
|
To get more information about Endpoint, see:
|
816
815
|
|
817
|
-
* [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/
|
816
|
+
* [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.endpoints)
|
818
817
|
* How-to Guides
|
819
818
|
* [Official Documentation](https://cloud.google.com/vertex-ai/docs)
|
820
819
|
|
@@ -893,7 +892,6 @@ class AiEndpoint(pulumi.CustomResource):
|
|
893
892
|
private_service_connect_config={
|
894
893
|
"enable_private_service_connect": True,
|
895
894
|
"project_allowlists": [project.project_id],
|
896
|
-
"enable_secure_private_service_connect": False,
|
897
895
|
})
|
898
896
|
```
|
899
897
|
### Vertex Ai Endpoint Dedicated Endpoint
|
@@ -305,6 +305,124 @@ class AiFeatureGroupIamBinding(pulumi.CustomResource):
|
|
305
305
|
role: Optional[pulumi.Input[_builtins.str]] = None,
|
306
306
|
__props__=None):
|
307
307
|
"""
|
308
|
+
Three different resources help you manage your IAM policy for Vertex AI FeatureGroup. Each of these resources serves a different use case:
|
309
|
+
|
310
|
+
* `vertex.AiFeatureGroupIamPolicy`: Authoritative. Sets the IAM policy for the featuregroup and replaces any existing policy already attached.
|
311
|
+
* `vertex.AiFeatureGroupIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the featuregroup are preserved.
|
312
|
+
* `vertex.AiFeatureGroupIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the featuregroup are preserved.
|
313
|
+
|
314
|
+
A data source can be used to retrieve policy data in advent you do not need creation
|
315
|
+
|
316
|
+
* `vertex.AiFeatureGroupIamPolicy`: Retrieves the IAM policy for the featuregroup
|
317
|
+
|
318
|
+
> **Note:** `vertex.AiFeatureGroupIamPolicy` **cannot** be used in conjunction with `vertex.AiFeatureGroupIamBinding` and `vertex.AiFeatureGroupIamMember` or they will fight over what your policy should be.
|
319
|
+
|
320
|
+
> **Note:** `vertex.AiFeatureGroupIamBinding` resources **can be** used in conjunction with `vertex.AiFeatureGroupIamMember` resources **only if** they do not grant privilege to the same role.
|
321
|
+
|
322
|
+
## vertex.AiFeatureGroupIamPolicy
|
323
|
+
|
324
|
+
```python
|
325
|
+
import pulumi
|
326
|
+
import pulumi_gcp as gcp
|
327
|
+
|
328
|
+
admin = gcp.organizations.get_iam_policy(bindings=[{
|
329
|
+
"role": "roles/viewer",
|
330
|
+
"members": ["user:jane@example.com"],
|
331
|
+
}])
|
332
|
+
policy = gcp.vertex.AiFeatureGroupIamPolicy("policy",
|
333
|
+
region=feature_group["region"],
|
334
|
+
feature_group=feature_group["name"],
|
335
|
+
policy_data=admin.policy_data)
|
336
|
+
```
|
337
|
+
|
338
|
+
## vertex.AiFeatureGroupIamBinding
|
339
|
+
|
340
|
+
```python
|
341
|
+
import pulumi
|
342
|
+
import pulumi_gcp as gcp
|
343
|
+
|
344
|
+
binding = gcp.vertex.AiFeatureGroupIamBinding("binding",
|
345
|
+
region=feature_group["region"],
|
346
|
+
feature_group=feature_group["name"],
|
347
|
+
role="roles/viewer",
|
348
|
+
members=["user:jane@example.com"])
|
349
|
+
```
|
350
|
+
|
351
|
+
## vertex.AiFeatureGroupIamMember
|
352
|
+
|
353
|
+
```python
|
354
|
+
import pulumi
|
355
|
+
import pulumi_gcp as gcp
|
356
|
+
|
357
|
+
member = gcp.vertex.AiFeatureGroupIamMember("member",
|
358
|
+
region=feature_group["region"],
|
359
|
+
feature_group=feature_group["name"],
|
360
|
+
role="roles/viewer",
|
361
|
+
member="user:jane@example.com")
|
362
|
+
```
|
363
|
+
|
364
|
+
## This resource supports User Project Overrides.
|
365
|
+
|
366
|
+
-
|
367
|
+
|
368
|
+
# IAM policy for Vertex AI FeatureGroup
|
369
|
+
|
370
|
+
Three different resources help you manage your IAM policy for Vertex AI FeatureGroup. Each of these resources serves a different use case:
|
371
|
+
|
372
|
+
* `vertex.AiFeatureGroupIamPolicy`: Authoritative. Sets the IAM policy for the featuregroup and replaces any existing policy already attached.
|
373
|
+
* `vertex.AiFeatureGroupIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the featuregroup are preserved.
|
374
|
+
* `vertex.AiFeatureGroupIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the featuregroup are preserved.
|
375
|
+
|
376
|
+
A data source can be used to retrieve policy data in advent you do not need creation
|
377
|
+
|
378
|
+
* `vertex.AiFeatureGroupIamPolicy`: Retrieves the IAM policy for the featuregroup
|
379
|
+
|
380
|
+
> **Note:** `vertex.AiFeatureGroupIamPolicy` **cannot** be used in conjunction with `vertex.AiFeatureGroupIamBinding` and `vertex.AiFeatureGroupIamMember` or they will fight over what your policy should be.
|
381
|
+
|
382
|
+
> **Note:** `vertex.AiFeatureGroupIamBinding` resources **can be** used in conjunction with `vertex.AiFeatureGroupIamMember` resources **only if** they do not grant privilege to the same role.
|
383
|
+
|
384
|
+
## vertex.AiFeatureGroupIamPolicy
|
385
|
+
|
386
|
+
```python
|
387
|
+
import pulumi
|
388
|
+
import pulumi_gcp as gcp
|
389
|
+
|
390
|
+
admin = gcp.organizations.get_iam_policy(bindings=[{
|
391
|
+
"role": "roles/viewer",
|
392
|
+
"members": ["user:jane@example.com"],
|
393
|
+
}])
|
394
|
+
policy = gcp.vertex.AiFeatureGroupIamPolicy("policy",
|
395
|
+
region=feature_group["region"],
|
396
|
+
feature_group=feature_group["name"],
|
397
|
+
policy_data=admin.policy_data)
|
398
|
+
```
|
399
|
+
|
400
|
+
## vertex.AiFeatureGroupIamBinding
|
401
|
+
|
402
|
+
```python
|
403
|
+
import pulumi
|
404
|
+
import pulumi_gcp as gcp
|
405
|
+
|
406
|
+
binding = gcp.vertex.AiFeatureGroupIamBinding("binding",
|
407
|
+
region=feature_group["region"],
|
408
|
+
feature_group=feature_group["name"],
|
409
|
+
role="roles/viewer",
|
410
|
+
members=["user:jane@example.com"])
|
411
|
+
```
|
412
|
+
|
413
|
+
## vertex.AiFeatureGroupIamMember
|
414
|
+
|
415
|
+
```python
|
416
|
+
import pulumi
|
417
|
+
import pulumi_gcp as gcp
|
418
|
+
|
419
|
+
member = gcp.vertex.AiFeatureGroupIamMember("member",
|
420
|
+
region=feature_group["region"],
|
421
|
+
feature_group=feature_group["name"],
|
422
|
+
role="roles/viewer",
|
423
|
+
member="user:jane@example.com")
|
424
|
+
```
|
425
|
+
|
308
426
|
## Import
|
309
427
|
|
310
428
|
For all import syntaxes, the "resource in question" can take any of the following forms:
|
@@ -373,6 +491,124 @@ class AiFeatureGroupIamBinding(pulumi.CustomResource):
|
|
373
491
|
args: AiFeatureGroupIamBindingArgs,
|
374
492
|
opts: Optional[pulumi.ResourceOptions] = None):
|
375
493
|
"""
|
494
|
+
Three different resources help you manage your IAM policy for Vertex AI FeatureGroup. Each of these resources serves a different use case:
|
495
|
+
|
496
|
+
* `vertex.AiFeatureGroupIamPolicy`: Authoritative. Sets the IAM policy for the featuregroup and replaces any existing policy already attached.
|
497
|
+
* `vertex.AiFeatureGroupIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the featuregroup are preserved.
|
498
|
+
* `vertex.AiFeatureGroupIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the featuregroup are preserved.
|
499
|
+
|
500
|
+
A data source can be used to retrieve policy data in advent you do not need creation
|
501
|
+
|
502
|
+
* `vertex.AiFeatureGroupIamPolicy`: Retrieves the IAM policy for the featuregroup
|
503
|
+
|
504
|
+
> **Note:** `vertex.AiFeatureGroupIamPolicy` **cannot** be used in conjunction with `vertex.AiFeatureGroupIamBinding` and `vertex.AiFeatureGroupIamMember` or they will fight over what your policy should be.
|
505
|
+
|
506
|
+
> **Note:** `vertex.AiFeatureGroupIamBinding` resources **can be** used in conjunction with `vertex.AiFeatureGroupIamMember` resources **only if** they do not grant privilege to the same role.
|
507
|
+
|
508
|
+
## vertex.AiFeatureGroupIamPolicy
|
509
|
+
|
510
|
+
```python
|
511
|
+
import pulumi
|
512
|
+
import pulumi_gcp as gcp
|
513
|
+
|
514
|
+
admin = gcp.organizations.get_iam_policy(bindings=[{
|
515
|
+
"role": "roles/viewer",
|
516
|
+
"members": ["user:jane@example.com"],
|
517
|
+
}])
|
518
|
+
policy = gcp.vertex.AiFeatureGroupIamPolicy("policy",
|
519
|
+
region=feature_group["region"],
|
520
|
+
feature_group=feature_group["name"],
|
521
|
+
policy_data=admin.policy_data)
|
522
|
+
```
|
523
|
+
|
524
|
+
## vertex.AiFeatureGroupIamBinding
|
525
|
+
|
526
|
+
```python
|
527
|
+
import pulumi
|
528
|
+
import pulumi_gcp as gcp
|
529
|
+
|
530
|
+
binding = gcp.vertex.AiFeatureGroupIamBinding("binding",
|
531
|
+
region=feature_group["region"],
|
532
|
+
feature_group=feature_group["name"],
|
533
|
+
role="roles/viewer",
|
534
|
+
members=["user:jane@example.com"])
|
535
|
+
```
|
536
|
+
|
537
|
+
## vertex.AiFeatureGroupIamMember
|
538
|
+
|
539
|
+
```python
|
540
|
+
import pulumi
|
541
|
+
import pulumi_gcp as gcp
|
542
|
+
|
543
|
+
member = gcp.vertex.AiFeatureGroupIamMember("member",
|
544
|
+
region=feature_group["region"],
|
545
|
+
feature_group=feature_group["name"],
|
546
|
+
role="roles/viewer",
|
547
|
+
member="user:jane@example.com")
|
548
|
+
```
|
549
|
+
|
550
|
+
## This resource supports User Project Overrides.
|
551
|
+
|
552
|
+
-
|
553
|
+
|
554
|
+
# IAM policy for Vertex AI FeatureGroup
|
555
|
+
|
556
|
+
Three different resources help you manage your IAM policy for Vertex AI FeatureGroup. Each of these resources serves a different use case:
|
557
|
+
|
558
|
+
* `vertex.AiFeatureGroupIamPolicy`: Authoritative. Sets the IAM policy for the featuregroup and replaces any existing policy already attached.
|
559
|
+
* `vertex.AiFeatureGroupIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the featuregroup are preserved.
|
560
|
+
* `vertex.AiFeatureGroupIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the featuregroup are preserved.
|
561
|
+
|
562
|
+
A data source can be used to retrieve policy data in advent you do not need creation
|
563
|
+
|
564
|
+
* `vertex.AiFeatureGroupIamPolicy`: Retrieves the IAM policy for the featuregroup
|
565
|
+
|
566
|
+
> **Note:** `vertex.AiFeatureGroupIamPolicy` **cannot** be used in conjunction with `vertex.AiFeatureGroupIamBinding` and `vertex.AiFeatureGroupIamMember` or they will fight over what your policy should be.
|
567
|
+
|
568
|
+
> **Note:** `vertex.AiFeatureGroupIamBinding` resources **can be** used in conjunction with `vertex.AiFeatureGroupIamMember` resources **only if** they do not grant privilege to the same role.
|
569
|
+
|
570
|
+
## vertex.AiFeatureGroupIamPolicy
|
571
|
+
|
572
|
+
```python
|
573
|
+
import pulumi
|
574
|
+
import pulumi_gcp as gcp
|
575
|
+
|
576
|
+
admin = gcp.organizations.get_iam_policy(bindings=[{
|
577
|
+
"role": "roles/viewer",
|
578
|
+
"members": ["user:jane@example.com"],
|
579
|
+
}])
|
580
|
+
policy = gcp.vertex.AiFeatureGroupIamPolicy("policy",
|
581
|
+
region=feature_group["region"],
|
582
|
+
feature_group=feature_group["name"],
|
583
|
+
policy_data=admin.policy_data)
|
584
|
+
```
|
585
|
+
|
586
|
+
## vertex.AiFeatureGroupIamBinding
|
587
|
+
|
588
|
+
```python
|
589
|
+
import pulumi
|
590
|
+
import pulumi_gcp as gcp
|
591
|
+
|
592
|
+
binding = gcp.vertex.AiFeatureGroupIamBinding("binding",
|
593
|
+
region=feature_group["region"],
|
594
|
+
feature_group=feature_group["name"],
|
595
|
+
role="roles/viewer",
|
596
|
+
members=["user:jane@example.com"])
|
597
|
+
```
|
598
|
+
|
599
|
+
## vertex.AiFeatureGroupIamMember
|
600
|
+
|
601
|
+
```python
|
602
|
+
import pulumi
|
603
|
+
import pulumi_gcp as gcp
|
604
|
+
|
605
|
+
member = gcp.vertex.AiFeatureGroupIamMember("member",
|
606
|
+
region=feature_group["region"],
|
607
|
+
feature_group=feature_group["name"],
|
608
|
+
role="roles/viewer",
|
609
|
+
member="user:jane@example.com")
|
610
|
+
```
|
611
|
+
|
376
612
|
## Import
|
377
613
|
|
378
614
|
For all import syntaxes, the "resource in question" can take any of the following forms:
|