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
@@ -34,7 +34,8 @@ class ServiceAttachmentArgs:
|
|
34
34
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
35
35
|
propagated_connection_limit: Optional[pulumi.Input[builtins.int]] = None,
|
36
36
|
reconcile_connections: Optional[pulumi.Input[builtins.bool]] = None,
|
37
|
-
region: Optional[pulumi.Input[builtins.str]] = None
|
37
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
38
|
+
send_propagated_connection_limit_if_zero: Optional[pulumi.Input[builtins.bool]] = None):
|
38
39
|
"""
|
39
40
|
The set of arguments for constructing a ServiceAttachment resource.
|
40
41
|
:param pulumi.Input[builtins.str] connection_preference: The connection preference to use for this service attachment. Valid
|
@@ -69,11 +70,15 @@ class ServiceAttachmentArgs:
|
|
69
70
|
This limit lets the service producer limit how many propagated Private Service Connect connections can be established to this service attachment from a single consumer.
|
70
71
|
If the connection preference of the service attachment is ACCEPT_MANUAL, the limit applies to each project or network that is listed in the consumer accept list.
|
71
72
|
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
72
|
-
If unspecified, the default propagated connection limit is 250.
|
73
|
+
If unspecified, the default propagated connection limit is 250. To explicitly send a zero value, set `send_propagated_connection_limit_if_zero = true`.
|
73
74
|
:param pulumi.Input[builtins.bool] reconcile_connections: This flag determines whether a consumer accept/reject list change can reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
|
74
75
|
If false, connection policy update will only affect existing PENDING PSC endpoints. Existing ACCEPTED/REJECTED endpoints will remain untouched regardless how the connection policy is modified .
|
75
76
|
If true, update will affect both PENDING and ACCEPTED/REJECTED PSC endpoints. For example, an ACCEPTED PSC endpoint will be moved to REJECTED if its project is added to the reject list.
|
76
77
|
:param pulumi.Input[builtins.str] region: URL of the region where the resource resides.
|
78
|
+
:param pulumi.Input[builtins.bool] send_propagated_connection_limit_if_zero: Controls the behavior of propagated_connection_limit.
|
79
|
+
When false, setting propagated_connection_limit to zero causes the provider to use to the API's default value.
|
80
|
+
When true, the provider will set propagated_connection_limit to zero.
|
81
|
+
Defaults to false.
|
77
82
|
"""
|
78
83
|
pulumi.set(__self__, "connection_preference", connection_preference)
|
79
84
|
pulumi.set(__self__, "enable_proxy_protocol", enable_proxy_protocol)
|
@@ -97,6 +102,8 @@ class ServiceAttachmentArgs:
|
|
97
102
|
pulumi.set(__self__, "reconcile_connections", reconcile_connections)
|
98
103
|
if region is not None:
|
99
104
|
pulumi.set(__self__, "region", region)
|
105
|
+
if send_propagated_connection_limit_if_zero is not None:
|
106
|
+
pulumi.set(__self__, "send_propagated_connection_limit_if_zero", send_propagated_connection_limit_if_zero)
|
100
107
|
|
101
108
|
@property
|
102
109
|
@pulumi.getter(name="connectionPreference")
|
@@ -244,7 +251,7 @@ class ServiceAttachmentArgs:
|
|
244
251
|
This limit lets the service producer limit how many propagated Private Service Connect connections can be established to this service attachment from a single consumer.
|
245
252
|
If the connection preference of the service attachment is ACCEPT_MANUAL, the limit applies to each project or network that is listed in the consumer accept list.
|
246
253
|
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
247
|
-
If unspecified, the default propagated connection limit is 250.
|
254
|
+
If unspecified, the default propagated connection limit is 250. To explicitly send a zero value, set `send_propagated_connection_limit_if_zero = true`.
|
248
255
|
"""
|
249
256
|
return pulumi.get(self, "propagated_connection_limit")
|
250
257
|
|
@@ -278,6 +285,21 @@ class ServiceAttachmentArgs:
|
|
278
285
|
def region(self, value: Optional[pulumi.Input[builtins.str]]):
|
279
286
|
pulumi.set(self, "region", value)
|
280
287
|
|
288
|
+
@property
|
289
|
+
@pulumi.getter(name="sendPropagatedConnectionLimitIfZero")
|
290
|
+
def send_propagated_connection_limit_if_zero(self) -> Optional[pulumi.Input[builtins.bool]]:
|
291
|
+
"""
|
292
|
+
Controls the behavior of propagated_connection_limit.
|
293
|
+
When false, setting propagated_connection_limit to zero causes the provider to use to the API's default value.
|
294
|
+
When true, the provider will set propagated_connection_limit to zero.
|
295
|
+
Defaults to false.
|
296
|
+
"""
|
297
|
+
return pulumi.get(self, "send_propagated_connection_limit_if_zero")
|
298
|
+
|
299
|
+
@send_propagated_connection_limit_if_zero.setter
|
300
|
+
def send_propagated_connection_limit_if_zero(self, value: Optional[pulumi.Input[builtins.bool]]):
|
301
|
+
pulumi.set(self, "send_propagated_connection_limit_if_zero", value)
|
302
|
+
|
281
303
|
|
282
304
|
@pulumi.input_type
|
283
305
|
class _ServiceAttachmentState:
|
@@ -297,6 +319,7 @@ class _ServiceAttachmentState:
|
|
297
319
|
reconcile_connections: Optional[pulumi.Input[builtins.bool]] = None,
|
298
320
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
299
321
|
self_link: Optional[pulumi.Input[builtins.str]] = None,
|
322
|
+
send_propagated_connection_limit_if_zero: Optional[pulumi.Input[builtins.bool]] = None,
|
300
323
|
target_service: Optional[pulumi.Input[builtins.str]] = None):
|
301
324
|
"""
|
302
325
|
Input properties used for looking up and filtering ServiceAttachment resources.
|
@@ -336,12 +359,16 @@ class _ServiceAttachmentState:
|
|
336
359
|
This limit lets the service producer limit how many propagated Private Service Connect connections can be established to this service attachment from a single consumer.
|
337
360
|
If the connection preference of the service attachment is ACCEPT_MANUAL, the limit applies to each project or network that is listed in the consumer accept list.
|
338
361
|
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
339
|
-
If unspecified, the default propagated connection limit is 250.
|
362
|
+
If unspecified, the default propagated connection limit is 250. To explicitly send a zero value, set `send_propagated_connection_limit_if_zero = true`.
|
340
363
|
:param pulumi.Input[builtins.bool] reconcile_connections: This flag determines whether a consumer accept/reject list change can reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
|
341
364
|
If false, connection policy update will only affect existing PENDING PSC endpoints. Existing ACCEPTED/REJECTED endpoints will remain untouched regardless how the connection policy is modified .
|
342
365
|
If true, update will affect both PENDING and ACCEPTED/REJECTED PSC endpoints. For example, an ACCEPTED PSC endpoint will be moved to REJECTED if its project is added to the reject list.
|
343
366
|
:param pulumi.Input[builtins.str] region: URL of the region where the resource resides.
|
344
367
|
:param pulumi.Input[builtins.str] self_link: The URI of the created resource.
|
368
|
+
:param pulumi.Input[builtins.bool] send_propagated_connection_limit_if_zero: Controls the behavior of propagated_connection_limit.
|
369
|
+
When false, setting propagated_connection_limit to zero causes the provider to use to the API's default value.
|
370
|
+
When true, the provider will set propagated_connection_limit to zero.
|
371
|
+
Defaults to false.
|
345
372
|
:param pulumi.Input[builtins.str] target_service: The URL of a service serving the endpoint identified by this service attachment.
|
346
373
|
"""
|
347
374
|
if connected_endpoints is not None:
|
@@ -374,6 +401,8 @@ class _ServiceAttachmentState:
|
|
374
401
|
pulumi.set(__self__, "region", region)
|
375
402
|
if self_link is not None:
|
376
403
|
pulumi.set(__self__, "self_link", self_link)
|
404
|
+
if send_propagated_connection_limit_if_zero is not None:
|
405
|
+
pulumi.set(__self__, "send_propagated_connection_limit_if_zero", send_propagated_connection_limit_if_zero)
|
377
406
|
if target_service is not None:
|
378
407
|
pulumi.set(__self__, "target_service", target_service)
|
379
408
|
|
@@ -538,7 +567,7 @@ class _ServiceAttachmentState:
|
|
538
567
|
This limit lets the service producer limit how many propagated Private Service Connect connections can be established to this service attachment from a single consumer.
|
539
568
|
If the connection preference of the service attachment is ACCEPT_MANUAL, the limit applies to each project or network that is listed in the consumer accept list.
|
540
569
|
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
541
|
-
If unspecified, the default propagated connection limit is 250.
|
570
|
+
If unspecified, the default propagated connection limit is 250. To explicitly send a zero value, set `send_propagated_connection_limit_if_zero = true`.
|
542
571
|
"""
|
543
572
|
return pulumi.get(self, "propagated_connection_limit")
|
544
573
|
|
@@ -584,6 +613,21 @@ class _ServiceAttachmentState:
|
|
584
613
|
def self_link(self, value: Optional[pulumi.Input[builtins.str]]):
|
585
614
|
pulumi.set(self, "self_link", value)
|
586
615
|
|
616
|
+
@property
|
617
|
+
@pulumi.getter(name="sendPropagatedConnectionLimitIfZero")
|
618
|
+
def send_propagated_connection_limit_if_zero(self) -> Optional[pulumi.Input[builtins.bool]]:
|
619
|
+
"""
|
620
|
+
Controls the behavior of propagated_connection_limit.
|
621
|
+
When false, setting propagated_connection_limit to zero causes the provider to use to the API's default value.
|
622
|
+
When true, the provider will set propagated_connection_limit to zero.
|
623
|
+
Defaults to false.
|
624
|
+
"""
|
625
|
+
return pulumi.get(self, "send_propagated_connection_limit_if_zero")
|
626
|
+
|
627
|
+
@send_propagated_connection_limit_if_zero.setter
|
628
|
+
def send_propagated_connection_limit_if_zero(self, value: Optional[pulumi.Input[builtins.bool]]):
|
629
|
+
pulumi.set(self, "send_propagated_connection_limit_if_zero", value)
|
630
|
+
|
587
631
|
@property
|
588
632
|
@pulumi.getter(name="targetService")
|
589
633
|
def target_service(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -615,6 +659,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
615
659
|
propagated_connection_limit: Optional[pulumi.Input[builtins.int]] = None,
|
616
660
|
reconcile_connections: Optional[pulumi.Input[builtins.bool]] = None,
|
617
661
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
662
|
+
send_propagated_connection_limit_if_zero: Optional[pulumi.Input[builtins.bool]] = None,
|
618
663
|
target_service: Optional[pulumi.Input[builtins.str]] = None,
|
619
664
|
__props__=None):
|
620
665
|
"""
|
@@ -953,11 +998,15 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
953
998
|
This limit lets the service producer limit how many propagated Private Service Connect connections can be established to this service attachment from a single consumer.
|
954
999
|
If the connection preference of the service attachment is ACCEPT_MANUAL, the limit applies to each project or network that is listed in the consumer accept list.
|
955
1000
|
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
956
|
-
If unspecified, the default propagated connection limit is 250.
|
1001
|
+
If unspecified, the default propagated connection limit is 250. To explicitly send a zero value, set `send_propagated_connection_limit_if_zero = true`.
|
957
1002
|
:param pulumi.Input[builtins.bool] reconcile_connections: This flag determines whether a consumer accept/reject list change can reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
|
958
1003
|
If false, connection policy update will only affect existing PENDING PSC endpoints. Existing ACCEPTED/REJECTED endpoints will remain untouched regardless how the connection policy is modified .
|
959
1004
|
If true, update will affect both PENDING and ACCEPTED/REJECTED PSC endpoints. For example, an ACCEPTED PSC endpoint will be moved to REJECTED if its project is added to the reject list.
|
960
1005
|
:param pulumi.Input[builtins.str] region: URL of the region where the resource resides.
|
1006
|
+
:param pulumi.Input[builtins.bool] send_propagated_connection_limit_if_zero: Controls the behavior of propagated_connection_limit.
|
1007
|
+
When false, setting propagated_connection_limit to zero causes the provider to use to the API's default value.
|
1008
|
+
When true, the provider will set propagated_connection_limit to zero.
|
1009
|
+
Defaults to false.
|
961
1010
|
:param pulumi.Input[builtins.str] target_service: The URL of a service serving the endpoint identified by this service attachment.
|
962
1011
|
"""
|
963
1012
|
...
|
@@ -1296,6 +1345,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1296
1345
|
propagated_connection_limit: Optional[pulumi.Input[builtins.int]] = None,
|
1297
1346
|
reconcile_connections: Optional[pulumi.Input[builtins.bool]] = None,
|
1298
1347
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
1348
|
+
send_propagated_connection_limit_if_zero: Optional[pulumi.Input[builtins.bool]] = None,
|
1299
1349
|
target_service: Optional[pulumi.Input[builtins.str]] = None,
|
1300
1350
|
__props__=None):
|
1301
1351
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -1324,6 +1374,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1324
1374
|
__props__.__dict__["propagated_connection_limit"] = propagated_connection_limit
|
1325
1375
|
__props__.__dict__["reconcile_connections"] = reconcile_connections
|
1326
1376
|
__props__.__dict__["region"] = region
|
1377
|
+
__props__.__dict__["send_propagated_connection_limit_if_zero"] = send_propagated_connection_limit_if_zero
|
1327
1378
|
if target_service is None and not opts.urn:
|
1328
1379
|
raise TypeError("Missing required property 'target_service'")
|
1329
1380
|
__props__.__dict__["target_service"] = target_service
|
@@ -1355,6 +1406,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1355
1406
|
reconcile_connections: Optional[pulumi.Input[builtins.bool]] = None,
|
1356
1407
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
1357
1408
|
self_link: Optional[pulumi.Input[builtins.str]] = None,
|
1409
|
+
send_propagated_connection_limit_if_zero: Optional[pulumi.Input[builtins.bool]] = None,
|
1358
1410
|
target_service: Optional[pulumi.Input[builtins.str]] = None) -> 'ServiceAttachment':
|
1359
1411
|
"""
|
1360
1412
|
Get an existing ServiceAttachment resource's state with the given name, id, and optional extra
|
@@ -1399,12 +1451,16 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1399
1451
|
This limit lets the service producer limit how many propagated Private Service Connect connections can be established to this service attachment from a single consumer.
|
1400
1452
|
If the connection preference of the service attachment is ACCEPT_MANUAL, the limit applies to each project or network that is listed in the consumer accept list.
|
1401
1453
|
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
1402
|
-
If unspecified, the default propagated connection limit is 250.
|
1454
|
+
If unspecified, the default propagated connection limit is 250. To explicitly send a zero value, set `send_propagated_connection_limit_if_zero = true`.
|
1403
1455
|
:param pulumi.Input[builtins.bool] reconcile_connections: This flag determines whether a consumer accept/reject list change can reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
|
1404
1456
|
If false, connection policy update will only affect existing PENDING PSC endpoints. Existing ACCEPTED/REJECTED endpoints will remain untouched regardless how the connection policy is modified .
|
1405
1457
|
If true, update will affect both PENDING and ACCEPTED/REJECTED PSC endpoints. For example, an ACCEPTED PSC endpoint will be moved to REJECTED if its project is added to the reject list.
|
1406
1458
|
:param pulumi.Input[builtins.str] region: URL of the region where the resource resides.
|
1407
1459
|
:param pulumi.Input[builtins.str] self_link: The URI of the created resource.
|
1460
|
+
:param pulumi.Input[builtins.bool] send_propagated_connection_limit_if_zero: Controls the behavior of propagated_connection_limit.
|
1461
|
+
When false, setting propagated_connection_limit to zero causes the provider to use to the API's default value.
|
1462
|
+
When true, the provider will set propagated_connection_limit to zero.
|
1463
|
+
Defaults to false.
|
1408
1464
|
:param pulumi.Input[builtins.str] target_service: The URL of a service serving the endpoint identified by this service attachment.
|
1409
1465
|
"""
|
1410
1466
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -1426,6 +1482,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1426
1482
|
__props__.__dict__["reconcile_connections"] = reconcile_connections
|
1427
1483
|
__props__.__dict__["region"] = region
|
1428
1484
|
__props__.__dict__["self_link"] = self_link
|
1485
|
+
__props__.__dict__["send_propagated_connection_limit_if_zero"] = send_propagated_connection_limit_if_zero
|
1429
1486
|
__props__.__dict__["target_service"] = target_service
|
1430
1487
|
return ServiceAttachment(resource_name, opts=opts, __props__=__props__)
|
1431
1488
|
|
@@ -1546,7 +1603,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1546
1603
|
This limit lets the service producer limit how many propagated Private Service Connect connections can be established to this service attachment from a single consumer.
|
1547
1604
|
If the connection preference of the service attachment is ACCEPT_MANUAL, the limit applies to each project or network that is listed in the consumer accept list.
|
1548
1605
|
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
1549
|
-
If unspecified, the default propagated connection limit is 250.
|
1606
|
+
If unspecified, the default propagated connection limit is 250. To explicitly send a zero value, set `send_propagated_connection_limit_if_zero = true`.
|
1550
1607
|
"""
|
1551
1608
|
return pulumi.get(self, "propagated_connection_limit")
|
1552
1609
|
|
@@ -1576,6 +1633,17 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1576
1633
|
"""
|
1577
1634
|
return pulumi.get(self, "self_link")
|
1578
1635
|
|
1636
|
+
@property
|
1637
|
+
@pulumi.getter(name="sendPropagatedConnectionLimitIfZero")
|
1638
|
+
def send_propagated_connection_limit_if_zero(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1639
|
+
"""
|
1640
|
+
Controls the behavior of propagated_connection_limit.
|
1641
|
+
When false, setting propagated_connection_limit to zero causes the provider to use to the API's default value.
|
1642
|
+
When true, the provider will set propagated_connection_limit to zero.
|
1643
|
+
Defaults to false.
|
1644
|
+
"""
|
1645
|
+
return pulumi.get(self, "send_propagated_connection_limit_if_zero")
|
1646
|
+
|
1579
1647
|
@property
|
1580
1648
|
@pulumi.getter(name="targetService")
|
1581
1649
|
def target_service(self) -> pulumi.Output[builtins.str]:
|
pulumi_gcp/config/__init__.pyi
CHANGED
pulumi_gcp/config/vars.py
CHANGED
@@ -226,6 +226,10 @@ class _ExportableConfig(types.ModuleType):
|
|
226
226
|
def compute_custom_endpoint(self) -> Optional[str]:
|
227
227
|
return __config__.get('computeCustomEndpoint')
|
228
228
|
|
229
|
+
@property
|
230
|
+
def contact_center_insights_custom_endpoint(self) -> Optional[str]:
|
231
|
+
return __config__.get('contactCenterInsightsCustomEndpoint')
|
232
|
+
|
229
233
|
@property
|
230
234
|
def container_analysis_custom_endpoint(self) -> Optional[str]:
|
231
235
|
return __config__.get('containerAnalysisCustomEndpoint')
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
from .. import _utilities
|
7
|
+
import typing
|
8
|
+
# Export this package's modules as members:
|
9
|
+
from .view import *
|