pulumi-gcp 8.1.0a1726492828__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 +38 -0
- pulumi_gcp/bigquery/__init__.py +1 -0
- pulumi_gcp/bigquery/get_tables.py +143 -0
- pulumi_gcp/bigquery/outputs.py +30 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2208 -285
- pulumi_gcp/compute/get_instance.py +3 -0
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
- pulumi_gcp/compute/outputs.py +1383 -0
- 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 +49 -28
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/_inputs.py +96 -0
- pulumi_gcp/container/attached_cluster.py +54 -1
- pulumi_gcp/container/outputs.py +102 -0
- pulumi_gcp/dataproc/metastore_federation.py +8 -8
- pulumi_gcp/dataproc/metastore_service.py +2 -0
- pulumi_gcp/datastream/stream.py +21 -14
- 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/gkeonprem/_inputs.py +3 -3
- pulumi_gcp/gkeonprem/outputs.py +2 -2
- 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/volume.py +101 -0
- pulumi_gcp/organizations/folder.py +52 -33
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
- pulumi_gcp/vpcaccess/connector.py +21 -28
- {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +43 -32
- {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.1.0a1726492828.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
|
@@ -188,10 +191,13 @@ class TargetHttpsProxyArgs:
|
|
188
191
|
"""
|
189
192
|
Specifies how long to keep a connection open, after completing a response,
|
190
193
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
191
|
-
not specified, a default value
|
192
|
-
external HTTP(S) load balancer, the
|
193
|
-
|
194
|
-
|
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.
|
195
201
|
"""
|
196
202
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
197
203
|
|
@@ -363,10 +369,13 @@ class _TargetHttpsProxyState:
|
|
363
369
|
:param pulumi.Input[str] description: An optional description of this resource.
|
364
370
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
365
371
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
366
|
-
not specified, a default value
|
367
|
-
external HTTP(S) load balancer, the
|
368
|
-
|
369
|
-
|
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.
|
370
379
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
371
380
|
created. The name must be 1-63 characters long, and comply with
|
372
381
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -510,10 +519,13 @@ class _TargetHttpsProxyState:
|
|
510
519
|
"""
|
511
520
|
Specifies how long to keep a connection open, after completing a response,
|
512
521
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
513
|
-
not specified, a default value
|
514
|
-
external HTTP(S) load balancer, the
|
515
|
-
|
516
|
-
|
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.
|
517
529
|
"""
|
518
530
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
519
531
|
|
@@ -959,10 +971,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
959
971
|
:param pulumi.Input[str] description: An optional description of this resource.
|
960
972
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
961
973
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
962
|
-
not specified, a default value
|
963
|
-
external HTTP(S) load balancer, the
|
964
|
-
|
965
|
-
|
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.
|
966
981
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
967
982
|
created. The name must be 1-63 characters long, and comply with
|
968
983
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -1352,10 +1367,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1352
1367
|
:param pulumi.Input[str] description: An optional description of this resource.
|
1353
1368
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
1354
1369
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
1355
|
-
not specified, a default value
|
1356
|
-
external HTTP(S) load balancer, the
|
1357
|
-
|
1358
|
-
|
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.
|
1359
1377
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
1360
1378
|
created. The name must be 1-63 characters long, and comply with
|
1361
1379
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -1472,10 +1490,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1472
1490
|
"""
|
1473
1491
|
Specifies how long to keep a connection open, after completing a response,
|
1474
1492
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
1475
|
-
not specified, a default value
|
1476
|
-
external HTTP(S) load balancer, the
|
1477
|
-
|
1478
|
-
|
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.
|
1479
1500
|
"""
|
1480
1501
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
1481
1502
|
|
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')
|