pulumi-gcp 8.35.0a1750142992__py3-none-any.whl → 8.35.0a1750225231__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 +8 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +100 -7
- pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +35 -7
- pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +12 -1
- pulumi_gcp/bigqueryanalyticshub/listing.py +108 -0
- pulumi_gcp/compute/_inputs.py +2028 -175
- pulumi_gcp/compute/disk.py +7 -7
- pulumi_gcp/compute/outputs.py +1483 -110
- pulumi_gcp/compute/region_url_map.py +344 -0
- pulumi_gcp/compute/target_http_proxy.py +118 -0
- pulumi_gcp/compute/target_https_proxy.py +132 -0
- pulumi_gcp/compute/url_map.py +344 -0
- pulumi_gcp/compute/vpn_tunnel.py +178 -0
- pulumi_gcp/dataplex/__init__.py +1 -0
- pulumi_gcp/dataplex/get_data_quality_rules.py +169 -0
- pulumi_gcp/dataplex/outputs.py +420 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +939 -0
- pulumi_gcp/diagflow/cx_agent.py +34 -0
- pulumi_gcp/diagflow/cx_tool.py +899 -0
- pulumi_gcp/diagflow/outputs.py +780 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/_inputs.py +24 -1
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +15 -1
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/netapp/_inputs.py +23 -0
- pulumi_gcp/netapp/outputs.py +16 -0
- pulumi_gcp/netapp/storage_pool.py +108 -0
- pulumi_gcp/networkconnectivity/_inputs.py +71 -1
- pulumi_gcp/networkconnectivity/outputs.py +64 -1
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/notebooks/runtime.py +4 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +77 -0
- pulumi_gcp/redis/cluster.py +32 -0
- pulumi_gcp/redis/outputs.py +63 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +99 -64
- {pulumi_gcp-8.35.0a1750142992.dist-info → pulumi_gcp-8.35.0a1750225231.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.35.0a1750142992.dist-info → pulumi_gcp-8.35.0a1750225231.dist-info}/RECORD +52 -50
- {pulumi_gcp-8.35.0a1750142992.dist-info → pulumi_gcp-8.35.0a1750225231.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.35.0a1750142992.dist-info → pulumi_gcp-8.35.0a1750225231.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/disk.py
CHANGED
@@ -60,7 +60,7 @@ class DiskArgs:
|
|
60
60
|
* READ_WRITE_SINGLE
|
61
61
|
* READ_WRITE_MANY
|
62
62
|
* READ_ONLY_SINGLE
|
63
|
-
:param pulumi.Input[builtins.str] architecture:
|
63
|
+
:param pulumi.Input[builtins.str] architecture: The architecture of the disk. Values include `X86_64`, `ARM64`.
|
64
64
|
:param pulumi.Input['DiskAsyncPrimaryDiskArgs'] async_primary_disk: A nested object resource.
|
65
65
|
Structure is documented below.
|
66
66
|
:param pulumi.Input[builtins.bool] create_snapshot_before_destroy: If set to true, a snapshot of the disk will be created before it is destroyed.
|
@@ -272,7 +272,7 @@ class DiskArgs:
|
|
272
272
|
@pulumi.getter
|
273
273
|
def architecture(self) -> Optional[pulumi.Input[builtins.str]]:
|
274
274
|
"""
|
275
|
-
|
275
|
+
The architecture of the disk. Values include `X86_64`, `ARM64`.
|
276
276
|
"""
|
277
277
|
return pulumi.get(self, "architecture")
|
278
278
|
|
@@ -779,7 +779,7 @@ class _DiskState:
|
|
779
779
|
* READ_WRITE_SINGLE
|
780
780
|
* READ_WRITE_MANY
|
781
781
|
* READ_ONLY_SINGLE
|
782
|
-
:param pulumi.Input[builtins.str] architecture:
|
782
|
+
:param pulumi.Input[builtins.str] architecture: The architecture of the disk. Values include `X86_64`, `ARM64`.
|
783
783
|
:param pulumi.Input['DiskAsyncPrimaryDiskArgs'] async_primary_disk: A nested object resource.
|
784
784
|
Structure is documented below.
|
785
785
|
:param pulumi.Input[builtins.bool] create_snapshot_before_destroy: If set to true, a snapshot of the disk will be created before it is destroyed.
|
@@ -1048,7 +1048,7 @@ class _DiskState:
|
|
1048
1048
|
@pulumi.getter
|
1049
1049
|
def architecture(self) -> Optional[pulumi.Input[builtins.str]]:
|
1050
1050
|
"""
|
1051
|
-
|
1051
|
+
The architecture of the disk. Values include `X86_64`, `ARM64`.
|
1052
1052
|
"""
|
1053
1053
|
return pulumi.get(self, "architecture")
|
1054
1054
|
|
@@ -1839,7 +1839,7 @@ class Disk(pulumi.CustomResource):
|
|
1839
1839
|
* READ_WRITE_SINGLE
|
1840
1840
|
* READ_WRITE_MANY
|
1841
1841
|
* READ_ONLY_SINGLE
|
1842
|
-
:param pulumi.Input[builtins.str] architecture:
|
1842
|
+
:param pulumi.Input[builtins.str] architecture: The architecture of the disk. Values include `X86_64`, `ARM64`.
|
1843
1843
|
:param pulumi.Input[Union['DiskAsyncPrimaryDiskArgs', 'DiskAsyncPrimaryDiskArgsDict']] async_primary_disk: A nested object resource.
|
1844
1844
|
Structure is documented below.
|
1845
1845
|
:param pulumi.Input[builtins.bool] create_snapshot_before_destroy: If set to true, a snapshot of the disk will be created before it is destroyed.
|
@@ -2257,7 +2257,7 @@ class Disk(pulumi.CustomResource):
|
|
2257
2257
|
* READ_WRITE_SINGLE
|
2258
2258
|
* READ_WRITE_MANY
|
2259
2259
|
* READ_ONLY_SINGLE
|
2260
|
-
:param pulumi.Input[builtins.str] architecture:
|
2260
|
+
:param pulumi.Input[builtins.str] architecture: The architecture of the disk. Values include `X86_64`, `ARM64`.
|
2261
2261
|
:param pulumi.Input[Union['DiskAsyncPrimaryDiskArgs', 'DiskAsyncPrimaryDiskArgsDict']] async_primary_disk: A nested object resource.
|
2262
2262
|
Structure is documented below.
|
2263
2263
|
:param pulumi.Input[builtins.bool] create_snapshot_before_destroy: If set to true, a snapshot of the disk will be created before it is destroyed.
|
@@ -2480,7 +2480,7 @@ class Disk(pulumi.CustomResource):
|
|
2480
2480
|
@pulumi.getter
|
2481
2481
|
def architecture(self) -> pulumi.Output[Optional[builtins.str]]:
|
2482
2482
|
"""
|
2483
|
-
|
2483
|
+
The architecture of the disk. Values include `X86_64`, `ARM64`.
|
2484
2484
|
"""
|
2485
2485
|
return pulumi.get(self, "architecture")
|
2486
2486
|
|