pulumi-gcp 8.36.0a1750439108__py3-none-any.whl → 8.36.0a1751060819__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 +35 -0
- pulumi_gcp/alloydb/_inputs.py +26 -0
- pulumi_gcp/alloydb/outputs.py +34 -1
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +983 -0
- pulumi_gcp/apihub/outputs.py +807 -0
- pulumi_gcp/apihub/plugin_instance.py +808 -0
- pulumi_gcp/bigquery/table.py +16 -12
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +56 -6
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +73 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +201 -48
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +28 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +50 -4
- pulumi_gcp/bigtable/table.py +82 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +64 -8
- pulumi_gcp/compute/_inputs.py +24 -12
- pulumi_gcp/compute/instance.py +2 -2
- pulumi_gcp/compute/instance_template.py +2 -2
- pulumi_gcp/compute/interconnect.py +43 -11
- pulumi_gcp/compute/node_template.py +21 -0
- pulumi_gcp/compute/outputs.py +16 -8
- pulumi_gcp/compute/service_attachment.py +76 -8
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/contactcenterinsights/__init__.py +9 -0
- pulumi_gcp/contactcenterinsights/view.py +526 -0
- pulumi_gcp/container/_inputs.py +72 -12
- pulumi_gcp/container/get_engine_versions.py +15 -1
- pulumi_gcp/container/outputs.py +73 -9
- pulumi_gcp/dataplex/_inputs.py +431 -6
- pulumi_gcp/dataplex/datascan.py +251 -0
- pulumi_gcp/dataplex/entry_type.py +2 -2
- pulumi_gcp/dataplex/glossary_category.py +8 -8
- pulumi_gcp/dataplex/glossary_term.py +8 -8
- pulumi_gcp/dataplex/outputs.py +353 -4
- pulumi_gcp/dataplex/task.py +16 -16
- pulumi_gcp/dataproc/__init__.py +1 -0
- pulumi_gcp/dataproc/_inputs.py +486 -0
- pulumi_gcp/dataproc/batch.py +10 -10
- pulumi_gcp/dataproc/outputs.py +407 -0
- pulumi_gcp/dataproc/session_template.py +1084 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +48 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/encryption_spec.py +382 -0
- pulumi_gcp/diagflow/outputs.py +46 -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/managed_zone.py +8 -8
- pulumi_gcp/lustre/get_instance.py +12 -1
- pulumi_gcp/lustre/instance.py +143 -86
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/bucket_object.py +56 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.36.0a1750439108.dist-info → pulumi_gcp-8.36.0a1751060819.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.36.0a1750439108.dist-info → pulumi_gcp-8.36.0a1751060819.dist-info}/RECORD +71 -66
- {pulumi_gcp-8.36.0a1750439108.dist-info → pulumi_gcp-8.36.0a1751060819.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.36.0a1750439108.dist-info → pulumi_gcp-8.36.0a1751060819.dist-info}/top_level.txt +0 -0
pulumi_gcp/gkehub/namespace.py
CHANGED
@@ -430,9 +430,9 @@ class Namespace(pulumi.CustomResource):
|
|
430
430
|
import pulumi
|
431
431
|
import pulumi_gcp as gcp
|
432
432
|
|
433
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
433
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_40289")
|
434
434
|
namespace = gcp.gkehub.Namespace("namespace",
|
435
|
-
scope_namespace_id="tf-test-
|
435
|
+
scope_namespace_id="tf-test-namespace_33395",
|
436
436
|
scope_id=scope.scope_id,
|
437
437
|
scope=scope.name,
|
438
438
|
namespace_labels={
|
@@ -515,9 +515,9 @@ class Namespace(pulumi.CustomResource):
|
|
515
515
|
import pulumi
|
516
516
|
import pulumi_gcp as gcp
|
517
517
|
|
518
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
518
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_40289")
|
519
519
|
namespace = gcp.gkehub.Namespace("namespace",
|
520
|
-
scope_namespace_id="tf-test-
|
520
|
+
scope_namespace_id="tf-test-namespace_33395",
|
521
521
|
scope_id=scope.scope_id,
|
522
522
|
scope=scope.name,
|
523
523
|
namespace_labels={
|
@@ -431,9 +431,9 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
431
431
|
import pulumi
|
432
432
|
import pulumi_gcp as gcp
|
433
433
|
|
434
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
434
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_76044")
|
435
435
|
scope_rbac_role_binding = gcp.gkehub.ScopeRbacRoleBinding("scope_rbac_role_binding",
|
436
|
-
scope_rbac_role_binding_id="tf-test-scope-rbac-role-
|
436
|
+
scope_rbac_role_binding_id="tf-test-scope-rbac-role-binding_69391",
|
437
437
|
scope_id=scope.scope_id,
|
438
438
|
user="test-email@gmail.com",
|
439
439
|
role={
|
@@ -449,7 +449,7 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
449
449
|
import pulumi
|
450
450
|
import pulumi_gcp as gcp
|
451
451
|
|
452
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
452
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_8270")
|
453
453
|
rbacrolebindingactuation = gcp.gkehub.Feature("rbacrolebindingactuation",
|
454
454
|
name="rbacrolebindingactuation",
|
455
455
|
location="global",
|
@@ -459,7 +459,7 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
459
459
|
},
|
460
460
|
})
|
461
461
|
scope_rbac_role_binding = gcp.gkehub.ScopeRbacRoleBinding("scope_rbac_role_binding",
|
462
|
-
scope_rbac_role_binding_id="tf-test-scope-rbac-role-
|
462
|
+
scope_rbac_role_binding_id="tf-test-scope-rbac-role-binding_41150",
|
463
463
|
scope_id=scope.scope_id,
|
464
464
|
user="test-email@gmail.com",
|
465
465
|
role={
|
@@ -532,9 +532,9 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
532
532
|
import pulumi
|
533
533
|
import pulumi_gcp as gcp
|
534
534
|
|
535
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
535
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_76044")
|
536
536
|
scope_rbac_role_binding = gcp.gkehub.ScopeRbacRoleBinding("scope_rbac_role_binding",
|
537
|
-
scope_rbac_role_binding_id="tf-test-scope-rbac-role-
|
537
|
+
scope_rbac_role_binding_id="tf-test-scope-rbac-role-binding_69391",
|
538
538
|
scope_id=scope.scope_id,
|
539
539
|
user="test-email@gmail.com",
|
540
540
|
role={
|
@@ -550,7 +550,7 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
550
550
|
import pulumi
|
551
551
|
import pulumi_gcp as gcp
|
552
552
|
|
553
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
553
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_8270")
|
554
554
|
rbacrolebindingactuation = gcp.gkehub.Feature("rbacrolebindingactuation",
|
555
555
|
name="rbacrolebindingactuation",
|
556
556
|
location="global",
|
@@ -560,7 +560,7 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
560
560
|
},
|
561
561
|
})
|
562
562
|
scope_rbac_role_binding = gcp.gkehub.ScopeRbacRoleBinding("scope_rbac_role_binding",
|
563
|
-
scope_rbac_role_binding_id="tf-test-scope-rbac-role-
|
563
|
+
scope_rbac_role_binding_id="tf-test-scope-rbac-role-binding_41150",
|
564
564
|
scope_id=scope.scope_id,
|
565
565
|
user="test-email@gmail.com",
|
566
566
|
role={
|
@@ -255,7 +255,7 @@ class TunnelDestGroup(pulumi.CustomResource):
|
|
255
255
|
|
256
256
|
dest_group = gcp.iap.TunnelDestGroup("dest_group",
|
257
257
|
region="us-central1",
|
258
|
-
group_name="
|
258
|
+
group_name="testgroup_89313",
|
259
259
|
cidrs=[
|
260
260
|
"10.1.0.0/16",
|
261
261
|
"192.168.10.0/24",
|
@@ -341,7 +341,7 @@ class TunnelDestGroup(pulumi.CustomResource):
|
|
341
341
|
|
342
342
|
dest_group = gcp.iap.TunnelDestGroup("dest_group",
|
343
343
|
region="us-central1",
|
344
|
-
group_name="
|
344
|
+
group_name="testgroup_89313",
|
345
345
|
cidrs=[
|
346
346
|
"10.1.0.0/16",
|
347
347
|
"192.168.10.0/24",
|
@@ -380,8 +380,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
380
380
|
import pulumi_gcp as gcp
|
381
381
|
|
382
382
|
target_project = gcp.organizations.Project("target_project",
|
383
|
-
project_id="tf-
|
384
|
-
name="tf-
|
383
|
+
project_id="tf-test_60646",
|
384
|
+
name="tf-test_9394",
|
385
385
|
org_id="123456789",
|
386
386
|
billing_account="000000-0000000-0000000-000000",
|
387
387
|
deletion_policy="DELETE")
|
@@ -402,8 +402,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
402
402
|
auto_create_subnetworks=False,
|
403
403
|
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
404
404
|
zone = gcp.dns.ManagedZone("zone",
|
405
|
-
name="tf-test-
|
406
|
-
dns_name="
|
405
|
+
name="tf-test-dns_11380",
|
406
|
+
dns_name="private_35305.example.com.",
|
407
407
|
visibility="private",
|
408
408
|
private_visibility_config={
|
409
409
|
"networks": [{
|
@@ -491,8 +491,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
491
491
|
import pulumi_gcp as gcp
|
492
492
|
|
493
493
|
target_project = gcp.organizations.Project("target_project",
|
494
|
-
project_id="tf-
|
495
|
-
name="tf-
|
494
|
+
project_id="tf-test_60646",
|
495
|
+
name="tf-test_9394",
|
496
496
|
org_id="123456789",
|
497
497
|
billing_account="000000-0000000-0000000-000000",
|
498
498
|
deletion_policy="DELETE")
|
@@ -513,8 +513,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
513
513
|
auto_create_subnetworks=False,
|
514
514
|
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
515
515
|
zone = gcp.dns.ManagedZone("zone",
|
516
|
-
name="tf-test-
|
517
|
-
dns_name="
|
516
|
+
name="tf-test-dns_11380",
|
517
|
+
dns_name="private_35305.example.com.",
|
518
518
|
visibility="private",
|
519
519
|
private_visibility_config={
|
520
520
|
"networks": [{
|
@@ -27,7 +27,7 @@ class GetInstanceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getInstance.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, capacity_gib=None, create_time=None, description=None, effective_labels=None, filesystem=None, gke_support_enabled=None, id=None, instance_id=None, labels=None, location=None, mount_point=None, name=None, network=None, project=None, pulumi_labels=None, state=None, update_time=None, zone=None):
|
30
|
+
def __init__(__self__, capacity_gib=None, create_time=None, description=None, effective_labels=None, filesystem=None, gke_support_enabled=None, id=None, instance_id=None, labels=None, location=None, mount_point=None, name=None, network=None, per_unit_storage_throughput=None, project=None, pulumi_labels=None, state=None, update_time=None, zone=None):
|
31
31
|
if capacity_gib and not isinstance(capacity_gib, str):
|
32
32
|
raise TypeError("Expected argument 'capacity_gib' to be a str")
|
33
33
|
pulumi.set(__self__, "capacity_gib", capacity_gib)
|
@@ -67,6 +67,9 @@ class GetInstanceResult:
|
|
67
67
|
if network and not isinstance(network, str):
|
68
68
|
raise TypeError("Expected argument 'network' to be a str")
|
69
69
|
pulumi.set(__self__, "network", network)
|
70
|
+
if per_unit_storage_throughput and not isinstance(per_unit_storage_throughput, str):
|
71
|
+
raise TypeError("Expected argument 'per_unit_storage_throughput' to be a str")
|
72
|
+
pulumi.set(__self__, "per_unit_storage_throughput", per_unit_storage_throughput)
|
70
73
|
if project and not isinstance(project, str):
|
71
74
|
raise TypeError("Expected argument 'project' to be a str")
|
72
75
|
pulumi.set(__self__, "project", project)
|
@@ -151,6 +154,11 @@ class GetInstanceResult:
|
|
151
154
|
def network(self) -> builtins.str:
|
152
155
|
return pulumi.get(self, "network")
|
153
156
|
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="perUnitStorageThroughput")
|
159
|
+
def per_unit_storage_throughput(self) -> builtins.str:
|
160
|
+
return pulumi.get(self, "per_unit_storage_throughput")
|
161
|
+
|
154
162
|
@property
|
155
163
|
@pulumi.getter
|
156
164
|
def project(self) -> Optional[builtins.str]:
|
@@ -196,6 +204,7 @@ class AwaitableGetInstanceResult(GetInstanceResult):
|
|
196
204
|
mount_point=self.mount_point,
|
197
205
|
name=self.name,
|
198
206
|
network=self.network,
|
207
|
+
per_unit_storage_throughput=self.per_unit_storage_throughput,
|
199
208
|
project=self.project,
|
200
209
|
pulumi_labels=self.pulumi_labels,
|
201
210
|
state=self.state,
|
@@ -236,6 +245,7 @@ def get_instance(instance_id: Optional[builtins.str] = None,
|
|
236
245
|
mount_point=pulumi.get(__ret__, 'mount_point'),
|
237
246
|
name=pulumi.get(__ret__, 'name'),
|
238
247
|
network=pulumi.get(__ret__, 'network'),
|
248
|
+
per_unit_storage_throughput=pulumi.get(__ret__, 'per_unit_storage_throughput'),
|
239
249
|
project=pulumi.get(__ret__, 'project'),
|
240
250
|
pulumi_labels=pulumi.get(__ret__, 'pulumi_labels'),
|
241
251
|
state=pulumi.get(__ret__, 'state'),
|
@@ -273,6 +283,7 @@ def get_instance_output(instance_id: Optional[pulumi.Input[builtins.str]] = None
|
|
273
283
|
mount_point=pulumi.get(__response__, 'mount_point'),
|
274
284
|
name=pulumi.get(__response__, 'name'),
|
275
285
|
network=pulumi.get(__response__, 'network'),
|
286
|
+
per_unit_storage_throughput=pulumi.get(__response__, 'per_unit_storage_throughput'),
|
276
287
|
project=pulumi.get(__response__, 'project'),
|
277
288
|
pulumi_labels=pulumi.get(__response__, 'pulumi_labels'),
|
278
289
|
state=pulumi.get(__response__, 'state'),
|