pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.2.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 +62 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/__init__.py +1 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/get_tables.py +143 -0
- pulumi_gcp/bigquery/outputs.py +66 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2300 -257
- pulumi_gcp/compute/get_instance.py +4 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +1491 -6
- pulumi_gcp/compute/region_target_http_proxy.py +159 -0
- pulumi_gcp/compute/region_target_https_proxy.py +175 -0
- pulumi_gcp/compute/service_attachment.py +75 -0
- pulumi_gcp/compute/target_http_proxy.py +49 -28
- pulumi_gcp/compute/target_https_proxy.py +77 -28
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/_inputs.py +236 -3
- pulumi_gcp/container/attached_cluster.py +61 -8
- pulumi_gcp/container/outputs.py +276 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/metastore_federation.py +8 -8
- pulumi_gcp/dataproc/metastore_service.py +2 -0
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +201 -7
- pulumi_gcp/developerconnect/__init__.py +11 -0
- pulumi_gcp/developerconnect/_inputs.py +301 -0
- pulumi_gcp/developerconnect/connection.py +1034 -0
- pulumi_gcp/developerconnect/git_repository_link.py +873 -0
- pulumi_gcp/developerconnect/outputs.py +247 -0
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/gkeonprem/_inputs.py +3 -3
- pulumi_gcp/gkeonprem/outputs.py +2 -2
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/memorystore/__init__.py +10 -0
- pulumi_gcp/memorystore/_inputs.py +731 -0
- pulumi_gcp/memorystore/instance.py +1663 -0
- pulumi_gcp/memorystore/outputs.py +598 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +108 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/folder.py +52 -33
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- pulumi_gcp/vpcaccess/connector.py +21 -28
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +128 -111
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/top_level.txt +0 -0
@@ -31,6 +31,7 @@ class ServiceAttachmentArgs:
|
|
31
31
|
domain_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
32
32
|
name: Optional[pulumi.Input[str]] = None,
|
33
33
|
project: Optional[pulumi.Input[str]] = None,
|
34
|
+
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
34
35
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
35
36
|
region: Optional[pulumi.Input[str]] = None):
|
36
37
|
"""
|
@@ -63,6 +64,11 @@ class ServiceAttachmentArgs:
|
|
63
64
|
except the last character, which cannot be a dash.
|
64
65
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
65
66
|
If it is not provided, the provider project is used.
|
67
|
+
:param pulumi.Input[int] propagated_connection_limit: The number of consumer spokes that connected Private Service Connect endpoints can be propagated to through Network Connectivity Center.
|
68
|
+
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.
|
69
|
+
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.
|
70
|
+
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
71
|
+
If unspecified, the default propagated connection limit is 250.
|
66
72
|
:param pulumi.Input[bool] reconcile_connections: This flag determines whether a consumer accept/reject list change can reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
|
67
73
|
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 .
|
68
74
|
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.
|
@@ -84,6 +90,8 @@ class ServiceAttachmentArgs:
|
|
84
90
|
pulumi.set(__self__, "name", name)
|
85
91
|
if project is not None:
|
86
92
|
pulumi.set(__self__, "project", project)
|
93
|
+
if propagated_connection_limit is not None:
|
94
|
+
pulumi.set(__self__, "propagated_connection_limit", propagated_connection_limit)
|
87
95
|
if reconcile_connections is not None:
|
88
96
|
pulumi.set(__self__, "reconcile_connections", reconcile_connections)
|
89
97
|
if region is not None:
|
@@ -227,6 +235,22 @@ class ServiceAttachmentArgs:
|
|
227
235
|
def project(self, value: Optional[pulumi.Input[str]]):
|
228
236
|
pulumi.set(self, "project", value)
|
229
237
|
|
238
|
+
@property
|
239
|
+
@pulumi.getter(name="propagatedConnectionLimit")
|
240
|
+
def propagated_connection_limit(self) -> Optional[pulumi.Input[int]]:
|
241
|
+
"""
|
242
|
+
The number of consumer spokes that connected Private Service Connect endpoints can be propagated to through Network Connectivity Center.
|
243
|
+
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.
|
244
|
+
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.
|
245
|
+
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
246
|
+
If unspecified, the default propagated connection limit is 250.
|
247
|
+
"""
|
248
|
+
return pulumi.get(self, "propagated_connection_limit")
|
249
|
+
|
250
|
+
@propagated_connection_limit.setter
|
251
|
+
def propagated_connection_limit(self, value: Optional[pulumi.Input[int]]):
|
252
|
+
pulumi.set(self, "propagated_connection_limit", value)
|
253
|
+
|
230
254
|
@property
|
231
255
|
@pulumi.getter(name="reconcileConnections")
|
232
256
|
def reconcile_connections(self) -> Optional[pulumi.Input[bool]]:
|
@@ -268,6 +292,7 @@ class _ServiceAttachmentState:
|
|
268
292
|
name: Optional[pulumi.Input[str]] = None,
|
269
293
|
nat_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
270
294
|
project: Optional[pulumi.Input[str]] = None,
|
295
|
+
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
271
296
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
272
297
|
region: Optional[pulumi.Input[str]] = None,
|
273
298
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -306,6 +331,11 @@ class _ServiceAttachmentState:
|
|
306
331
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nat_subnets: An array of subnets that is provided for NAT in this service attachment.
|
307
332
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
308
333
|
If it is not provided, the provider project is used.
|
334
|
+
:param pulumi.Input[int] propagated_connection_limit: The number of consumer spokes that connected Private Service Connect endpoints can be propagated to through Network Connectivity Center.
|
335
|
+
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.
|
336
|
+
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.
|
337
|
+
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
338
|
+
If unspecified, the default propagated connection limit is 250.
|
309
339
|
:param pulumi.Input[bool] reconcile_connections: This flag determines whether a consumer accept/reject list change can reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
|
310
340
|
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 .
|
311
341
|
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.
|
@@ -335,6 +365,8 @@ class _ServiceAttachmentState:
|
|
335
365
|
pulumi.set(__self__, "nat_subnets", nat_subnets)
|
336
366
|
if project is not None:
|
337
367
|
pulumi.set(__self__, "project", project)
|
368
|
+
if propagated_connection_limit is not None:
|
369
|
+
pulumi.set(__self__, "propagated_connection_limit", propagated_connection_limit)
|
338
370
|
if reconcile_connections is not None:
|
339
371
|
pulumi.set(__self__, "reconcile_connections", reconcile_connections)
|
340
372
|
if region is not None:
|
@@ -497,6 +529,22 @@ class _ServiceAttachmentState:
|
|
497
529
|
def project(self, value: Optional[pulumi.Input[str]]):
|
498
530
|
pulumi.set(self, "project", value)
|
499
531
|
|
532
|
+
@property
|
533
|
+
@pulumi.getter(name="propagatedConnectionLimit")
|
534
|
+
def propagated_connection_limit(self) -> Optional[pulumi.Input[int]]:
|
535
|
+
"""
|
536
|
+
The number of consumer spokes that connected Private Service Connect endpoints can be propagated to through Network Connectivity Center.
|
537
|
+
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.
|
538
|
+
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.
|
539
|
+
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
540
|
+
If unspecified, the default propagated connection limit is 250.
|
541
|
+
"""
|
542
|
+
return pulumi.get(self, "propagated_connection_limit")
|
543
|
+
|
544
|
+
@propagated_connection_limit.setter
|
545
|
+
def propagated_connection_limit(self, value: Optional[pulumi.Input[int]]):
|
546
|
+
pulumi.set(self, "propagated_connection_limit", value)
|
547
|
+
|
500
548
|
@property
|
501
549
|
@pulumi.getter(name="reconcileConnections")
|
502
550
|
def reconcile_connections(self) -> Optional[pulumi.Input[bool]]:
|
@@ -562,6 +610,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
562
610
|
name: Optional[pulumi.Input[str]] = None,
|
563
611
|
nat_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
564
612
|
project: Optional[pulumi.Input[str]] = None,
|
613
|
+
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
565
614
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
566
615
|
region: Optional[pulumi.Input[str]] = None,
|
567
616
|
target_service: Optional[pulumi.Input[str]] = None,
|
@@ -898,6 +947,11 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
898
947
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nat_subnets: An array of subnets that is provided for NAT in this service attachment.
|
899
948
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
900
949
|
If it is not provided, the provider project is used.
|
950
|
+
:param pulumi.Input[int] propagated_connection_limit: The number of consumer spokes that connected Private Service Connect endpoints can be propagated to through Network Connectivity Center.
|
951
|
+
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.
|
952
|
+
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.
|
953
|
+
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
954
|
+
If unspecified, the default propagated connection limit is 250.
|
901
955
|
:param pulumi.Input[bool] reconcile_connections: This flag determines whether a consumer accept/reject list change can reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
|
902
956
|
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 .
|
903
957
|
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.
|
@@ -1237,6 +1291,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1237
1291
|
name: Optional[pulumi.Input[str]] = None,
|
1238
1292
|
nat_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1239
1293
|
project: Optional[pulumi.Input[str]] = None,
|
1294
|
+
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
1240
1295
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
1241
1296
|
region: Optional[pulumi.Input[str]] = None,
|
1242
1297
|
target_service: Optional[pulumi.Input[str]] = None,
|
@@ -1264,6 +1319,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1264
1319
|
raise TypeError("Missing required property 'nat_subnets'")
|
1265
1320
|
__props__.__dict__["nat_subnets"] = nat_subnets
|
1266
1321
|
__props__.__dict__["project"] = project
|
1322
|
+
__props__.__dict__["propagated_connection_limit"] = propagated_connection_limit
|
1267
1323
|
__props__.__dict__["reconcile_connections"] = reconcile_connections
|
1268
1324
|
__props__.__dict__["region"] = region
|
1269
1325
|
if target_service is None and not opts.urn:
|
@@ -1293,6 +1349,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1293
1349
|
name: Optional[pulumi.Input[str]] = None,
|
1294
1350
|
nat_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1295
1351
|
project: Optional[pulumi.Input[str]] = None,
|
1352
|
+
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
1296
1353
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
1297
1354
|
region: Optional[pulumi.Input[str]] = None,
|
1298
1355
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -1336,6 +1393,11 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1336
1393
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nat_subnets: An array of subnets that is provided for NAT in this service attachment.
|
1337
1394
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1338
1395
|
If it is not provided, the provider project is used.
|
1396
|
+
:param pulumi.Input[int] propagated_connection_limit: The number of consumer spokes that connected Private Service Connect endpoints can be propagated to through Network Connectivity Center.
|
1397
|
+
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.
|
1398
|
+
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.
|
1399
|
+
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
1400
|
+
If unspecified, the default propagated connection limit is 250.
|
1339
1401
|
:param pulumi.Input[bool] reconcile_connections: This flag determines whether a consumer accept/reject list change can reconcile the statuses of existing ACCEPTED or REJECTED PSC endpoints.
|
1340
1402
|
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 .
|
1341
1403
|
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.
|
@@ -1358,6 +1420,7 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1358
1420
|
__props__.__dict__["name"] = name
|
1359
1421
|
__props__.__dict__["nat_subnets"] = nat_subnets
|
1360
1422
|
__props__.__dict__["project"] = project
|
1423
|
+
__props__.__dict__["propagated_connection_limit"] = propagated_connection_limit
|
1361
1424
|
__props__.__dict__["reconcile_connections"] = reconcile_connections
|
1362
1425
|
__props__.__dict__["region"] = region
|
1363
1426
|
__props__.__dict__["self_link"] = self_link
|
@@ -1473,6 +1536,18 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1473
1536
|
"""
|
1474
1537
|
return pulumi.get(self, "project")
|
1475
1538
|
|
1539
|
+
@property
|
1540
|
+
@pulumi.getter(name="propagatedConnectionLimit")
|
1541
|
+
def propagated_connection_limit(self) -> pulumi.Output[int]:
|
1542
|
+
"""
|
1543
|
+
The number of consumer spokes that connected Private Service Connect endpoints can be propagated to through Network Connectivity Center.
|
1544
|
+
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.
|
1545
|
+
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.
|
1546
|
+
If the connection preference of the service attachment is ACCEPT_AUTOMATIC, the limit applies to each project that contains a connected endpoint.
|
1547
|
+
If unspecified, the default propagated connection limit is 250.
|
1548
|
+
"""
|
1549
|
+
return pulumi.get(self, "propagated_connection_limit")
|
1550
|
+
|
1476
1551
|
@property
|
1477
1552
|
@pulumi.getter(name="reconcileConnections")
|
1478
1553
|
def reconcile_connections(self) -> pulumi.Output[bool]:
|
@@ -35,10 +35,13 @@ class TargetHttpProxyArgs:
|
|
35
35
|
:param pulumi.Input[str] description: An optional description of this resource.
|
36
36
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
37
37
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
38
|
-
not specified, a default value
|
39
|
-
external HTTP(S) load balancer, the
|
40
|
-
|
41
|
-
|
38
|
+
not specified, a default value will be used. For Global
|
39
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
40
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
41
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
42
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
43
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
44
|
+
balancer (classic), this option is not available publicly.
|
42
45
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
43
46
|
created. The name must be 1-63 characters long, and comply with
|
44
47
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -97,10 +100,13 @@ class TargetHttpProxyArgs:
|
|
97
100
|
"""
|
98
101
|
Specifies how long to keep a connection open, after completing a response,
|
99
102
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
100
|
-
not specified, a default value
|
101
|
-
external HTTP(S) load balancer, the
|
102
|
-
|
103
|
-
|
103
|
+
not specified, a default value will be used. For Global
|
104
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
105
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
106
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
107
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
108
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
109
|
+
balancer (classic), this option is not available publicly.
|
104
110
|
"""
|
105
111
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
106
112
|
|
@@ -171,10 +177,13 @@ class _TargetHttpProxyState:
|
|
171
177
|
:param pulumi.Input[str] description: An optional description of this resource.
|
172
178
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
173
179
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
174
|
-
not specified, a default value
|
175
|
-
external HTTP(S) load balancer, the
|
176
|
-
|
177
|
-
|
180
|
+
not specified, a default value will be used. For Global
|
181
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
182
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
183
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
184
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
185
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
186
|
+
balancer (classic), this option is not available publicly.
|
178
187
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
179
188
|
created. The name must be 1-63 characters long, and comply with
|
180
189
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -243,10 +252,13 @@ class _TargetHttpProxyState:
|
|
243
252
|
"""
|
244
253
|
Specifies how long to keep a connection open, after completing a response,
|
245
254
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
246
|
-
not specified, a default value
|
247
|
-
external HTTP(S) load balancer, the
|
248
|
-
|
249
|
-
|
255
|
+
not specified, a default value will be used. For Global
|
256
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
257
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
258
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
259
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
260
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
261
|
+
balancer (classic), this option is not available publicly.
|
250
262
|
"""
|
251
263
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
252
264
|
|
@@ -483,10 +495,13 @@ class TargetHttpProxy(pulumi.CustomResource):
|
|
483
495
|
:param pulumi.Input[str] description: An optional description of this resource.
|
484
496
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
485
497
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
486
|
-
not specified, a default value
|
487
|
-
external HTTP(S) load balancer, the
|
488
|
-
|
489
|
-
|
498
|
+
not specified, a default value will be used. For Global
|
499
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
500
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
501
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
502
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
503
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
504
|
+
balancer (classic), this option is not available publicly.
|
490
505
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
491
506
|
created. The name must be 1-63 characters long, and comply with
|
492
507
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -708,10 +723,13 @@ class TargetHttpProxy(pulumi.CustomResource):
|
|
708
723
|
:param pulumi.Input[str] description: An optional description of this resource.
|
709
724
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
710
725
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
711
|
-
not specified, a default value
|
712
|
-
external HTTP(S) load balancer, the
|
713
|
-
|
714
|
-
|
726
|
+
not specified, a default value will be used. For Global
|
727
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
728
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
729
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
730
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
731
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
732
|
+
balancer (classic), this option is not available publicly.
|
715
733
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
716
734
|
created. The name must be 1-63 characters long, and comply with
|
717
735
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -768,10 +786,13 @@ class TargetHttpProxy(pulumi.CustomResource):
|
|
768
786
|
"""
|
769
787
|
Specifies how long to keep a connection open, after completing a response,
|
770
788
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
771
|
-
not specified, a default value
|
772
|
-
external HTTP(S) load balancer, the
|
773
|
-
|
774
|
-
|
789
|
+
not specified, a default value will be used. For Global
|
790
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
791
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
792
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
793
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
794
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
795
|
+
balancer (classic), this option is not available publicly.
|
775
796
|
"""
|
776
797
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
777
798
|
|
@@ -51,10 +51,13 @@ class TargetHttpsProxyArgs:
|
|
51
51
|
:param pulumi.Input[str] description: An optional description of this resource.
|
52
52
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
53
53
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
54
|
-
not specified, a default value
|
55
|
-
external HTTP(S) load balancer, the
|
56
|
-
|
57
|
-
|
54
|
+
not specified, a default value will be used. For Global
|
55
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
56
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
57
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
58
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
59
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
60
|
+
balancer (classic), this option is not available publicly.
|
58
61
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
59
62
|
created. The name must be 1-63 characters long, and comply with
|
60
63
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -81,6 +84,10 @@ class TargetHttpsProxyArgs:
|
|
81
84
|
INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
|
82
85
|
loadBalancingScheme consult ServerTlsPolicy documentation.
|
83
86
|
If left blank, communications are not encrypted.
|
87
|
+
If you remove this field from your configuration at the same time as
|
88
|
+
deleting or recreating a referenced ServerTlsPolicy resource, you will
|
89
|
+
receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
|
90
|
+
within the ServerTlsPolicy resource to avoid this.
|
84
91
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssl_certificates: URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer.
|
85
92
|
Currently, you may specify up to 15 SSL certificates. sslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
86
93
|
sslCertificates and certificateManagerCertificates can not be defined together.
|
@@ -184,10 +191,13 @@ class TargetHttpsProxyArgs:
|
|
184
191
|
"""
|
185
192
|
Specifies how long to keep a connection open, after completing a response,
|
186
193
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
187
|
-
not specified, a default value
|
188
|
-
external HTTP(S) load balancer, the
|
189
|
-
|
190
|
-
|
194
|
+
not specified, a default value will be used. For Global
|
195
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
196
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
197
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
198
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
199
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
200
|
+
balancer (classic), this option is not available publicly.
|
191
201
|
"""
|
192
202
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
193
203
|
|
@@ -269,6 +279,10 @@ class TargetHttpsProxyArgs:
|
|
269
279
|
INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
|
270
280
|
loadBalancingScheme consult ServerTlsPolicy documentation.
|
271
281
|
If left blank, communications are not encrypted.
|
282
|
+
If you remove this field from your configuration at the same time as
|
283
|
+
deleting or recreating a referenced ServerTlsPolicy resource, you will
|
284
|
+
receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
|
285
|
+
within the ServerTlsPolicy resource to avoid this.
|
272
286
|
"""
|
273
287
|
return pulumi.get(self, "server_tls_policy")
|
274
288
|
|
@@ -355,10 +369,13 @@ class _TargetHttpsProxyState:
|
|
355
369
|
:param pulumi.Input[str] description: An optional description of this resource.
|
356
370
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
357
371
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
358
|
-
not specified, a default value
|
359
|
-
external HTTP(S) load balancer, the
|
360
|
-
|
361
|
-
|
372
|
+
not specified, a default value will be used. For Global
|
373
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
374
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
375
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
376
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
377
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
378
|
+
balancer (classic), this option is not available publicly.
|
362
379
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
363
380
|
created. The name must be 1-63 characters long, and comply with
|
364
381
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -387,6 +404,10 @@ class _TargetHttpsProxyState:
|
|
387
404
|
INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
|
388
405
|
loadBalancingScheme consult ServerTlsPolicy documentation.
|
389
406
|
If left blank, communications are not encrypted.
|
407
|
+
If you remove this field from your configuration at the same time as
|
408
|
+
deleting or recreating a referenced ServerTlsPolicy resource, you will
|
409
|
+
receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
|
410
|
+
within the ServerTlsPolicy resource to avoid this.
|
390
411
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssl_certificates: URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer.
|
391
412
|
Currently, you may specify up to 15 SSL certificates. sslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
392
413
|
sslCertificates and certificateManagerCertificates can not be defined together.
|
@@ -498,10 +519,13 @@ class _TargetHttpsProxyState:
|
|
498
519
|
"""
|
499
520
|
Specifies how long to keep a connection open, after completing a response,
|
500
521
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
501
|
-
not specified, a default value
|
502
|
-
external HTTP(S) load balancer, the
|
503
|
-
|
504
|
-
|
522
|
+
not specified, a default value will be used. For Global
|
523
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
524
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
525
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
526
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
527
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
528
|
+
balancer (classic), this option is not available publicly.
|
505
529
|
"""
|
506
530
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
507
531
|
|
@@ -607,6 +631,10 @@ class _TargetHttpsProxyState:
|
|
607
631
|
INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
|
608
632
|
loadBalancingScheme consult ServerTlsPolicy documentation.
|
609
633
|
If left blank, communications are not encrypted.
|
634
|
+
If you remove this field from your configuration at the same time as
|
635
|
+
deleting or recreating a referenced ServerTlsPolicy resource, you will
|
636
|
+
receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
|
637
|
+
within the ServerTlsPolicy resource to avoid this.
|
610
638
|
"""
|
611
639
|
return pulumi.get(self, "server_tls_policy")
|
612
640
|
|
@@ -943,10 +971,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
943
971
|
:param pulumi.Input[str] description: An optional description of this resource.
|
944
972
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
945
973
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
946
|
-
not specified, a default value
|
947
|
-
external HTTP(S) load balancer, the
|
948
|
-
|
949
|
-
|
974
|
+
not specified, a default value will be used. For Global
|
975
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
976
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
977
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
978
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
979
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
980
|
+
balancer (classic), this option is not available publicly.
|
950
981
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
951
982
|
created. The name must be 1-63 characters long, and comply with
|
952
983
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -973,6 +1004,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
973
1004
|
INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
|
974
1005
|
loadBalancingScheme consult ServerTlsPolicy documentation.
|
975
1006
|
If left blank, communications are not encrypted.
|
1007
|
+
If you remove this field from your configuration at the same time as
|
1008
|
+
deleting or recreating a referenced ServerTlsPolicy resource, you will
|
1009
|
+
receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
|
1010
|
+
within the ServerTlsPolicy resource to avoid this.
|
976
1011
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssl_certificates: URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer.
|
977
1012
|
Currently, you may specify up to 15 SSL certificates. sslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
978
1013
|
sslCertificates and certificateManagerCertificates can not be defined together.
|
@@ -1332,10 +1367,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1332
1367
|
:param pulumi.Input[str] description: An optional description of this resource.
|
1333
1368
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
1334
1369
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
1335
|
-
not specified, a default value
|
1336
|
-
external HTTP(S) load balancer, the
|
1337
|
-
|
1338
|
-
|
1370
|
+
not specified, a default value will be used. For Global
|
1371
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
1372
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
1373
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
1374
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
1375
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
1376
|
+
balancer (classic), this option is not available publicly.
|
1339
1377
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
1340
1378
|
created. The name must be 1-63 characters long, and comply with
|
1341
1379
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -1364,6 +1402,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1364
1402
|
INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
|
1365
1403
|
loadBalancingScheme consult ServerTlsPolicy documentation.
|
1366
1404
|
If left blank, communications are not encrypted.
|
1405
|
+
If you remove this field from your configuration at the same time as
|
1406
|
+
deleting or recreating a referenced ServerTlsPolicy resource, you will
|
1407
|
+
receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
|
1408
|
+
within the ServerTlsPolicy resource to avoid this.
|
1367
1409
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssl_certificates: URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer.
|
1368
1410
|
Currently, you may specify up to 15 SSL certificates. sslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
1369
1411
|
sslCertificates and certificateManagerCertificates can not be defined together.
|
@@ -1448,10 +1490,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1448
1490
|
"""
|
1449
1491
|
Specifies how long to keep a connection open, after completing a response,
|
1450
1492
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
1451
|
-
not specified, a default value
|
1452
|
-
external HTTP(S) load balancer, the
|
1453
|
-
|
1454
|
-
|
1493
|
+
not specified, a default value will be used. For Global
|
1494
|
+
external HTTP(S) load balancer, the default value is 610 seconds, the
|
1495
|
+
minimum allowed value is 5 seconds and the maximum allowed value is 1200
|
1496
|
+
seconds. For cross-region internal HTTP(S) load balancer, the default
|
1497
|
+
value is 600 seconds, the minimum allowed value is 5 seconds, and the
|
1498
|
+
maximum allowed value is 600 seconds. For Global external HTTP(S) load
|
1499
|
+
balancer (classic), this option is not available publicly.
|
1455
1500
|
"""
|
1456
1501
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
1457
1502
|
|
@@ -1529,6 +1574,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1529
1574
|
INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
|
1530
1575
|
loadBalancingScheme consult ServerTlsPolicy documentation.
|
1531
1576
|
If left blank, communications are not encrypted.
|
1577
|
+
If you remove this field from your configuration at the same time as
|
1578
|
+
deleting or recreating a referenced ServerTlsPolicy resource, you will
|
1579
|
+
receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
|
1580
|
+
within the ServerTlsPolicy resource to avoid this.
|
1532
1581
|
"""
|
1533
1582
|
return pulumi.get(self, "server_tls_policy")
|
1534
1583
|
|
pulumi_gcp/config/__init__.pyi
CHANGED
@@ -151,6 +151,8 @@ defaultLabels: Optional[str]
|
|
151
151
|
|
152
152
|
deploymentManagerCustomEndpoint: Optional[str]
|
153
153
|
|
154
|
+
developerConnectCustomEndpoint: Optional[str]
|
155
|
+
|
154
156
|
dialogflowCustomEndpoint: Optional[str]
|
155
157
|
|
156
158
|
dialogflowCxCustomEndpoint: Optional[str]
|
@@ -237,6 +239,8 @@ managedKafkaCustomEndpoint: Optional[str]
|
|
237
239
|
|
238
240
|
memcacheCustomEndpoint: Optional[str]
|
239
241
|
|
242
|
+
memorystoreCustomEndpoint: Optional[str]
|
243
|
+
|
240
244
|
migrationCenterCustomEndpoint: Optional[str]
|
241
245
|
|
242
246
|
mlEngineCustomEndpoint: Optional[str]
|
pulumi_gcp/config/vars.py
CHANGED
@@ -293,6 +293,10 @@ class _ExportableConfig(types.ModuleType):
|
|
293
293
|
def deployment_manager_custom_endpoint(self) -> Optional[str]:
|
294
294
|
return __config__.get('deploymentManagerCustomEndpoint')
|
295
295
|
|
296
|
+
@property
|
297
|
+
def developer_connect_custom_endpoint(self) -> Optional[str]:
|
298
|
+
return __config__.get('developerConnectCustomEndpoint')
|
299
|
+
|
296
300
|
@property
|
297
301
|
def dialogflow_custom_endpoint(self) -> Optional[str]:
|
298
302
|
return __config__.get('dialogflowCustomEndpoint')
|
@@ -465,6 +469,10 @@ class _ExportableConfig(types.ModuleType):
|
|
465
469
|
def memcache_custom_endpoint(self) -> Optional[str]:
|
466
470
|
return __config__.get('memcacheCustomEndpoint')
|
467
471
|
|
472
|
+
@property
|
473
|
+
def memorystore_custom_endpoint(self) -> Optional[str]:
|
474
|
+
return __config__.get('memorystoreCustomEndpoint')
|
475
|
+
|
468
476
|
@property
|
469
477
|
def migration_center_custom_endpoint(self) -> Optional[str]:
|
470
478
|
return __config__.get('migrationCenterCustomEndpoint')
|