pulumi-gcp 8.2.0__py3-none-any.whl → 8.2.0a1726671837__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 +0 -38
- pulumi_gcp/bigquery/__init__.py +0 -1
- pulumi_gcp/bigquery/outputs.py +0 -30
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +286 -2209
- pulumi_gcp/compute/get_instance.py +0 -3
- pulumi_gcp/compute/outputs.py +0 -1383
- pulumi_gcp/compute/region_target_http_proxy.py +0 -159
- pulumi_gcp/compute/region_target_https_proxy.py +0 -175
- pulumi_gcp/compute/service_attachment.py +0 -75
- pulumi_gcp/compute/target_http_proxy.py +28 -49
- pulumi_gcp/compute/target_https_proxy.py +28 -49
- pulumi_gcp/config/__init__.pyi +0 -4
- pulumi_gcp/config/vars.py +0 -8
- pulumi_gcp/container/_inputs.py +0 -96
- pulumi_gcp/container/attached_cluster.py +1 -54
- pulumi_gcp/container/outputs.py +0 -102
- pulumi_gcp/dataproc/metastore_federation.py +8 -8
- pulumi_gcp/dataproc/metastore_service.py +0 -2
- pulumi_gcp/datastream/stream.py +14 -21
- pulumi_gcp/gkeonprem/_inputs.py +3 -3
- pulumi_gcp/gkeonprem/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +0 -101
- pulumi_gcp/organizations/folder.py +33 -52
- pulumi_gcp/provider.py +0 -40
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
- pulumi_gcp/vpcaccess/connector.py +28 -21
- {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/RECORD +32 -43
- pulumi_gcp/bigquery/get_tables.py +0 -143
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +0 -826
- pulumi_gcp/developerconnect/__init__.py +0 -11
- pulumi_gcp/developerconnect/_inputs.py +0 -301
- pulumi_gcp/developerconnect/connection.py +0 -1034
- pulumi_gcp/developerconnect/git_repository_link.py +0 -873
- pulumi_gcp/developerconnect/outputs.py +0 -247
- pulumi_gcp/memorystore/__init__.py +0 -10
- pulumi_gcp/memorystore/_inputs.py +0 -731
- pulumi_gcp/memorystore/instance.py +0 -1663
- pulumi_gcp/memorystore/outputs.py +0 -598
- {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/top_level.txt +0 -0
@@ -31,7 +31,6 @@ 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,
|
35
34
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
36
35
|
region: Optional[pulumi.Input[str]] = None):
|
37
36
|
"""
|
@@ -64,11 +63,6 @@ class ServiceAttachmentArgs:
|
|
64
63
|
except the last character, which cannot be a dash.
|
65
64
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
66
65
|
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.
|
72
66
|
: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.
|
73
67
|
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 .
|
74
68
|
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.
|
@@ -90,8 +84,6 @@ class ServiceAttachmentArgs:
|
|
90
84
|
pulumi.set(__self__, "name", name)
|
91
85
|
if project is not None:
|
92
86
|
pulumi.set(__self__, "project", project)
|
93
|
-
if propagated_connection_limit is not None:
|
94
|
-
pulumi.set(__self__, "propagated_connection_limit", propagated_connection_limit)
|
95
87
|
if reconcile_connections is not None:
|
96
88
|
pulumi.set(__self__, "reconcile_connections", reconcile_connections)
|
97
89
|
if region is not None:
|
@@ -235,22 +227,6 @@ class ServiceAttachmentArgs:
|
|
235
227
|
def project(self, value: Optional[pulumi.Input[str]]):
|
236
228
|
pulumi.set(self, "project", value)
|
237
229
|
|
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
|
-
|
254
230
|
@property
|
255
231
|
@pulumi.getter(name="reconcileConnections")
|
256
232
|
def reconcile_connections(self) -> Optional[pulumi.Input[bool]]:
|
@@ -292,7 +268,6 @@ class _ServiceAttachmentState:
|
|
292
268
|
name: Optional[pulumi.Input[str]] = None,
|
293
269
|
nat_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
294
270
|
project: Optional[pulumi.Input[str]] = None,
|
295
|
-
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
296
271
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
297
272
|
region: Optional[pulumi.Input[str]] = None,
|
298
273
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -331,11 +306,6 @@ class _ServiceAttachmentState:
|
|
331
306
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nat_subnets: An array of subnets that is provided for NAT in this service attachment.
|
332
307
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
333
308
|
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.
|
339
309
|
: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.
|
340
310
|
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 .
|
341
311
|
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.
|
@@ -365,8 +335,6 @@ class _ServiceAttachmentState:
|
|
365
335
|
pulumi.set(__self__, "nat_subnets", nat_subnets)
|
366
336
|
if project is not None:
|
367
337
|
pulumi.set(__self__, "project", project)
|
368
|
-
if propagated_connection_limit is not None:
|
369
|
-
pulumi.set(__self__, "propagated_connection_limit", propagated_connection_limit)
|
370
338
|
if reconcile_connections is not None:
|
371
339
|
pulumi.set(__self__, "reconcile_connections", reconcile_connections)
|
372
340
|
if region is not None:
|
@@ -529,22 +497,6 @@ class _ServiceAttachmentState:
|
|
529
497
|
def project(self, value: Optional[pulumi.Input[str]]):
|
530
498
|
pulumi.set(self, "project", value)
|
531
499
|
|
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
|
-
|
548
500
|
@property
|
549
501
|
@pulumi.getter(name="reconcileConnections")
|
550
502
|
def reconcile_connections(self) -> Optional[pulumi.Input[bool]]:
|
@@ -610,7 +562,6 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
610
562
|
name: Optional[pulumi.Input[str]] = None,
|
611
563
|
nat_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
612
564
|
project: Optional[pulumi.Input[str]] = None,
|
613
|
-
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
614
565
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
615
566
|
region: Optional[pulumi.Input[str]] = None,
|
616
567
|
target_service: Optional[pulumi.Input[str]] = None,
|
@@ -947,11 +898,6 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
947
898
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nat_subnets: An array of subnets that is provided for NAT in this service attachment.
|
948
899
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
949
900
|
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.
|
955
901
|
: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.
|
956
902
|
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 .
|
957
903
|
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.
|
@@ -1291,7 +1237,6 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1291
1237
|
name: Optional[pulumi.Input[str]] = None,
|
1292
1238
|
nat_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1293
1239
|
project: Optional[pulumi.Input[str]] = None,
|
1294
|
-
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
1295
1240
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
1296
1241
|
region: Optional[pulumi.Input[str]] = None,
|
1297
1242
|
target_service: Optional[pulumi.Input[str]] = None,
|
@@ -1319,7 +1264,6 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1319
1264
|
raise TypeError("Missing required property 'nat_subnets'")
|
1320
1265
|
__props__.__dict__["nat_subnets"] = nat_subnets
|
1321
1266
|
__props__.__dict__["project"] = project
|
1322
|
-
__props__.__dict__["propagated_connection_limit"] = propagated_connection_limit
|
1323
1267
|
__props__.__dict__["reconcile_connections"] = reconcile_connections
|
1324
1268
|
__props__.__dict__["region"] = region
|
1325
1269
|
if target_service is None and not opts.urn:
|
@@ -1349,7 +1293,6 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1349
1293
|
name: Optional[pulumi.Input[str]] = None,
|
1350
1294
|
nat_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1351
1295
|
project: Optional[pulumi.Input[str]] = None,
|
1352
|
-
propagated_connection_limit: Optional[pulumi.Input[int]] = None,
|
1353
1296
|
reconcile_connections: Optional[pulumi.Input[bool]] = None,
|
1354
1297
|
region: Optional[pulumi.Input[str]] = None,
|
1355
1298
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -1393,11 +1336,6 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1393
1336
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nat_subnets: An array of subnets that is provided for NAT in this service attachment.
|
1394
1337
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1395
1338
|
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.
|
1401
1339
|
: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.
|
1402
1340
|
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 .
|
1403
1341
|
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.
|
@@ -1420,7 +1358,6 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1420
1358
|
__props__.__dict__["name"] = name
|
1421
1359
|
__props__.__dict__["nat_subnets"] = nat_subnets
|
1422
1360
|
__props__.__dict__["project"] = project
|
1423
|
-
__props__.__dict__["propagated_connection_limit"] = propagated_connection_limit
|
1424
1361
|
__props__.__dict__["reconcile_connections"] = reconcile_connections
|
1425
1362
|
__props__.__dict__["region"] = region
|
1426
1363
|
__props__.__dict__["self_link"] = self_link
|
@@ -1536,18 +1473,6 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1536
1473
|
"""
|
1537
1474
|
return pulumi.get(self, "project")
|
1538
1475
|
|
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
|
-
|
1551
1476
|
@property
|
1552
1477
|
@pulumi.getter(name="reconcileConnections")
|
1553
1478
|
def reconcile_connections(self) -> pulumi.Output[bool]:
|
@@ -35,13 +35,10 @@ 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 will be used. For Global
|
39
|
-
external HTTP(S) load balancer, the
|
40
|
-
|
41
|
-
|
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.
|
38
|
+
not specified, a default value (610 seconds) will be used. For Global
|
39
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
40
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
41
|
+
load balancer (classic), this option is not available publicly.
|
45
42
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
46
43
|
created. The name must be 1-63 characters long, and comply with
|
47
44
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -100,13 +97,10 @@ class TargetHttpProxyArgs:
|
|
100
97
|
"""
|
101
98
|
Specifies how long to keep a connection open, after completing a response,
|
102
99
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
103
|
-
not specified, a default value will be used. For Global
|
104
|
-
external HTTP(S) load balancer, the
|
105
|
-
|
106
|
-
|
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.
|
100
|
+
not specified, a default value (610 seconds) will be used. For Global
|
101
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
102
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
103
|
+
load balancer (classic), this option is not available publicly.
|
110
104
|
"""
|
111
105
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
112
106
|
|
@@ -177,13 +171,10 @@ class _TargetHttpProxyState:
|
|
177
171
|
:param pulumi.Input[str] description: An optional description of this resource.
|
178
172
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
179
173
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
180
|
-
not specified, a default value will be used. For Global
|
181
|
-
external HTTP(S) load balancer, the
|
182
|
-
|
183
|
-
|
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.
|
174
|
+
not specified, a default value (610 seconds) will be used. For Global
|
175
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
176
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
177
|
+
load balancer (classic), this option is not available publicly.
|
187
178
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
188
179
|
created. The name must be 1-63 characters long, and comply with
|
189
180
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -252,13 +243,10 @@ class _TargetHttpProxyState:
|
|
252
243
|
"""
|
253
244
|
Specifies how long to keep a connection open, after completing a response,
|
254
245
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
255
|
-
not specified, a default value will be used. For Global
|
256
|
-
external HTTP(S) load balancer, the
|
257
|
-
|
258
|
-
|
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.
|
246
|
+
not specified, a default value (610 seconds) will be used. For Global
|
247
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
248
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
249
|
+
load balancer (classic), this option is not available publicly.
|
262
250
|
"""
|
263
251
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
264
252
|
|
@@ -495,13 +483,10 @@ class TargetHttpProxy(pulumi.CustomResource):
|
|
495
483
|
:param pulumi.Input[str] description: An optional description of this resource.
|
496
484
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
497
485
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
498
|
-
not specified, a default value will be used. For Global
|
499
|
-
external HTTP(S) load balancer, the
|
500
|
-
|
501
|
-
|
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.
|
486
|
+
not specified, a default value (610 seconds) will be used. For Global
|
487
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
488
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
489
|
+
load balancer (classic), this option is not available publicly.
|
505
490
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
506
491
|
created. The name must be 1-63 characters long, and comply with
|
507
492
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -723,13 +708,10 @@ class TargetHttpProxy(pulumi.CustomResource):
|
|
723
708
|
:param pulumi.Input[str] description: An optional description of this resource.
|
724
709
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
725
710
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
726
|
-
not specified, a default value will be used. For Global
|
727
|
-
external HTTP(S) load balancer, the
|
728
|
-
|
729
|
-
|
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.
|
711
|
+
not specified, a default value (610 seconds) will be used. For Global
|
712
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
713
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
714
|
+
load balancer (classic), this option is not available publicly.
|
733
715
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
734
716
|
created. The name must be 1-63 characters long, and comply with
|
735
717
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -786,13 +768,10 @@ class TargetHttpProxy(pulumi.CustomResource):
|
|
786
768
|
"""
|
787
769
|
Specifies how long to keep a connection open, after completing a response,
|
788
770
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
789
|
-
not specified, a default value will be used. For Global
|
790
|
-
external HTTP(S) load balancer, the
|
791
|
-
|
792
|
-
|
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.
|
771
|
+
not specified, a default value (610 seconds) will be used. For Global
|
772
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
773
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
774
|
+
load balancer (classic), this option is not available publicly.
|
796
775
|
"""
|
797
776
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
798
777
|
|
@@ -51,13 +51,10 @@ 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 will be used. For Global
|
55
|
-
external HTTP(S) load balancer, the
|
56
|
-
|
57
|
-
|
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.
|
54
|
+
not specified, a default value (610 seconds) will be used. For Global
|
55
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
56
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
57
|
+
load balancer (classic), this option is not available publicly.
|
61
58
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
62
59
|
created. The name must be 1-63 characters long, and comply with
|
63
60
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -191,13 +188,10 @@ class TargetHttpsProxyArgs:
|
|
191
188
|
"""
|
192
189
|
Specifies how long to keep a connection open, after completing a response,
|
193
190
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
194
|
-
not specified, a default value will be used. For Global
|
195
|
-
external HTTP(S) load balancer, the
|
196
|
-
|
197
|
-
|
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
|
+
not specified, a default value (610 seconds) will be used. For Global
|
192
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
193
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
194
|
+
load balancer (classic), this option is not available publicly.
|
201
195
|
"""
|
202
196
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
203
197
|
|
@@ -369,13 +363,10 @@ class _TargetHttpsProxyState:
|
|
369
363
|
:param pulumi.Input[str] description: An optional description of this resource.
|
370
364
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
371
365
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
372
|
-
not specified, a default value will be used. For Global
|
373
|
-
external HTTP(S) load balancer, the
|
374
|
-
|
375
|
-
|
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.
|
366
|
+
not specified, a default value (610 seconds) will be used. For Global
|
367
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
368
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
369
|
+
load balancer (classic), this option is not available publicly.
|
379
370
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
380
371
|
created. The name must be 1-63 characters long, and comply with
|
381
372
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -519,13 +510,10 @@ class _TargetHttpsProxyState:
|
|
519
510
|
"""
|
520
511
|
Specifies how long to keep a connection open, after completing a response,
|
521
512
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
522
|
-
not specified, a default value will be used. For Global
|
523
|
-
external HTTP(S) load balancer, the
|
524
|
-
|
525
|
-
|
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.
|
513
|
+
not specified, a default value (610 seconds) will be used. For Global
|
514
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
515
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
516
|
+
load balancer (classic), this option is not available publicly.
|
529
517
|
"""
|
530
518
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
531
519
|
|
@@ -971,13 +959,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
971
959
|
:param pulumi.Input[str] description: An optional description of this resource.
|
972
960
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
973
961
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
974
|
-
not specified, a default value will be used. For Global
|
975
|
-
external HTTP(S) load balancer, the
|
976
|
-
|
977
|
-
|
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.
|
962
|
+
not specified, a default value (610 seconds) will be used. For Global
|
963
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
964
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
965
|
+
load balancer (classic), this option is not available publicly.
|
981
966
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
982
967
|
created. The name must be 1-63 characters long, and comply with
|
983
968
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -1367,13 +1352,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1367
1352
|
:param pulumi.Input[str] description: An optional description of this resource.
|
1368
1353
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
1369
1354
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
1370
|
-
not specified, a default value will be used. For Global
|
1371
|
-
external HTTP(S) load balancer, the
|
1372
|
-
|
1373
|
-
|
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.
|
1355
|
+
not specified, a default value (610 seconds) will be used. For Global
|
1356
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
1357
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
1358
|
+
load balancer (classic), this option is not available publicly.
|
1377
1359
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
1378
1360
|
created. The name must be 1-63 characters long, and comply with
|
1379
1361
|
RFC1035. Specifically, the name must be 1-63 characters long and match
|
@@ -1490,13 +1472,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1490
1472
|
"""
|
1491
1473
|
Specifies how long to keep a connection open, after completing a response,
|
1492
1474
|
while there is no matching traffic (in seconds). If an HTTP keepalive is
|
1493
|
-
not specified, a default value will be used. For Global
|
1494
|
-
external HTTP(S) load balancer, the
|
1495
|
-
|
1496
|
-
|
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.
|
1475
|
+
not specified, a default value (610 seconds) will be used. For Global
|
1476
|
+
external HTTP(S) load balancer, the minimum allowed value is 5 seconds and
|
1477
|
+
the maximum allowed value is 1200 seconds. For Global external HTTP(S)
|
1478
|
+
load balancer (classic), this option is not available publicly.
|
1500
1479
|
"""
|
1501
1480
|
return pulumi.get(self, "http_keep_alive_timeout_sec")
|
1502
1481
|
|
pulumi_gcp/config/__init__.pyi
CHANGED
@@ -151,8 +151,6 @@ defaultLabels: Optional[str]
|
|
151
151
|
|
152
152
|
deploymentManagerCustomEndpoint: Optional[str]
|
153
153
|
|
154
|
-
developerConnectCustomEndpoint: Optional[str]
|
155
|
-
|
156
154
|
dialogflowCustomEndpoint: Optional[str]
|
157
155
|
|
158
156
|
dialogflowCxCustomEndpoint: Optional[str]
|
@@ -239,8 +237,6 @@ managedKafkaCustomEndpoint: Optional[str]
|
|
239
237
|
|
240
238
|
memcacheCustomEndpoint: Optional[str]
|
241
239
|
|
242
|
-
memorystoreCustomEndpoint: Optional[str]
|
243
|
-
|
244
240
|
migrationCenterCustomEndpoint: Optional[str]
|
245
241
|
|
246
242
|
mlEngineCustomEndpoint: Optional[str]
|
pulumi_gcp/config/vars.py
CHANGED
@@ -293,10 +293,6 @@ 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
|
-
|
300
296
|
@property
|
301
297
|
def dialogflow_custom_endpoint(self) -> Optional[str]:
|
302
298
|
return __config__.get('dialogflowCustomEndpoint')
|
@@ -469,10 +465,6 @@ class _ExportableConfig(types.ModuleType):
|
|
469
465
|
def memcache_custom_endpoint(self) -> Optional[str]:
|
470
466
|
return __config__.get('memcacheCustomEndpoint')
|
471
467
|
|
472
|
-
@property
|
473
|
-
def memorystore_custom_endpoint(self) -> Optional[str]:
|
474
|
-
return __config__.get('memorystoreCustomEndpoint')
|
475
|
-
|
476
468
|
@property
|
477
469
|
def migration_center_custom_endpoint(self) -> Optional[str]:
|
478
470
|
return __config__.get('migrationCenterCustomEndpoint')
|