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.
Files changed (43) hide show
  1. pulumi_gcp/__init__.py +0 -38
  2. pulumi_gcp/bigquery/__init__.py +0 -1
  3. pulumi_gcp/bigquery/outputs.py +0 -30
  4. pulumi_gcp/compute/__init__.py +0 -1
  5. pulumi_gcp/compute/_inputs.py +286 -2209
  6. pulumi_gcp/compute/get_instance.py +0 -3
  7. pulumi_gcp/compute/outputs.py +0 -1383
  8. pulumi_gcp/compute/region_target_http_proxy.py +0 -159
  9. pulumi_gcp/compute/region_target_https_proxy.py +0 -175
  10. pulumi_gcp/compute/service_attachment.py +0 -75
  11. pulumi_gcp/compute/target_http_proxy.py +28 -49
  12. pulumi_gcp/compute/target_https_proxy.py +28 -49
  13. pulumi_gcp/config/__init__.pyi +0 -4
  14. pulumi_gcp/config/vars.py +0 -8
  15. pulumi_gcp/container/_inputs.py +0 -96
  16. pulumi_gcp/container/attached_cluster.py +1 -54
  17. pulumi_gcp/container/outputs.py +0 -102
  18. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  19. pulumi_gcp/dataproc/metastore_service.py +0 -2
  20. pulumi_gcp/datastream/stream.py +14 -21
  21. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  22. pulumi_gcp/gkeonprem/outputs.py +2 -2
  23. pulumi_gcp/netapp/volume.py +0 -101
  24. pulumi_gcp/organizations/folder.py +33 -52
  25. pulumi_gcp/provider.py +0 -40
  26. pulumi_gcp/pulumi-plugin.json +1 -1
  27. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  28. pulumi_gcp/vpcaccess/connector.py +28 -21
  29. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/METADATA +1 -1
  30. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/RECORD +32 -43
  31. pulumi_gcp/bigquery/get_tables.py +0 -143
  32. pulumi_gcp/compute/network_firewall_policy_with_rules.py +0 -826
  33. pulumi_gcp/developerconnect/__init__.py +0 -11
  34. pulumi_gcp/developerconnect/_inputs.py +0 -301
  35. pulumi_gcp/developerconnect/connection.py +0 -1034
  36. pulumi_gcp/developerconnect/git_repository_link.py +0 -873
  37. pulumi_gcp/developerconnect/outputs.py +0 -247
  38. pulumi_gcp/memorystore/__init__.py +0 -10
  39. pulumi_gcp/memorystore/_inputs.py +0 -731
  40. pulumi_gcp/memorystore/instance.py +0 -1663
  41. pulumi_gcp/memorystore/outputs.py +0 -598
  42. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/WHEEL +0 -0
  43. {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/top_level.txt +0 -0
@@ -21,7 +21,6 @@ class RegionTargetHttpProxyArgs:
21
21
  def __init__(__self__, *,
22
22
  url_map: pulumi.Input[str],
23
23
  description: Optional[pulumi.Input[str]] = None,
24
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
25
24
  name: Optional[pulumi.Input[str]] = None,
26
25
  project: Optional[pulumi.Input[str]] = None,
27
26
  region: Optional[pulumi.Input[str]] = None):
@@ -33,11 +32,6 @@ class RegionTargetHttpProxyArgs:
33
32
 
34
33
  - - -
35
34
  :param pulumi.Input[str] description: An optional description of this resource.
36
- :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
37
- while there is no matching traffic (in seconds). If an HTTP keepalive is
38
- not specified, a default value (600 seconds) will be used. For Regional
39
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
40
- maximum allowed value is 600 seconds.
41
35
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
42
36
  created. The name must be 1-63 characters long, and comply with
43
37
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -53,8 +47,6 @@ class RegionTargetHttpProxyArgs:
53
47
  pulumi.set(__self__, "url_map", url_map)
54
48
  if description is not None:
55
49
  pulumi.set(__self__, "description", description)
56
- if http_keep_alive_timeout_sec is not None:
57
- pulumi.set(__self__, "http_keep_alive_timeout_sec", http_keep_alive_timeout_sec)
58
50
  if name is not None:
59
51
  pulumi.set(__self__, "name", name)
60
52
  if project is not None:
@@ -90,22 +82,6 @@ class RegionTargetHttpProxyArgs:
90
82
  def description(self, value: Optional[pulumi.Input[str]]):
91
83
  pulumi.set(self, "description", value)
92
84
 
93
- @property
94
- @pulumi.getter(name="httpKeepAliveTimeoutSec")
95
- def http_keep_alive_timeout_sec(self) -> Optional[pulumi.Input[int]]:
96
- """
97
- Specifies how long to keep a connection open, after completing a response,
98
- while there is no matching traffic (in seconds). If an HTTP keepalive is
99
- not specified, a default value (600 seconds) will be used. For Regional
100
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
101
- maximum allowed value is 600 seconds.
102
- """
103
- return pulumi.get(self, "http_keep_alive_timeout_sec")
104
-
105
- @http_keep_alive_timeout_sec.setter
106
- def http_keep_alive_timeout_sec(self, value: Optional[pulumi.Input[int]]):
107
- pulumi.set(self, "http_keep_alive_timeout_sec", value)
108
-
109
85
  @property
110
86
  @pulumi.getter
111
87
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -156,7 +132,6 @@ class _RegionTargetHttpProxyState:
156
132
  def __init__(__self__, *,
157
133
  creation_timestamp: Optional[pulumi.Input[str]] = None,
158
134
  description: Optional[pulumi.Input[str]] = None,
159
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
160
135
  name: Optional[pulumi.Input[str]] = None,
161
136
  project: Optional[pulumi.Input[str]] = None,
162
137
  proxy_id: Optional[pulumi.Input[int]] = None,
@@ -167,11 +142,6 @@ class _RegionTargetHttpProxyState:
167
142
  Input properties used for looking up and filtering RegionTargetHttpProxy resources.
168
143
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
169
144
  :param pulumi.Input[str] description: An optional description of this resource.
170
- :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
171
- while there is no matching traffic (in seconds). If an HTTP keepalive is
172
- not specified, a default value (600 seconds) will be used. For Regional
173
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
174
- maximum allowed value is 600 seconds.
175
145
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
176
146
  created. The name must be 1-63 characters long, and comply with
177
147
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -195,8 +165,6 @@ class _RegionTargetHttpProxyState:
195
165
  pulumi.set(__self__, "creation_timestamp", creation_timestamp)
196
166
  if description is not None:
197
167
  pulumi.set(__self__, "description", description)
198
- if http_keep_alive_timeout_sec is not None:
199
- pulumi.set(__self__, "http_keep_alive_timeout_sec", http_keep_alive_timeout_sec)
200
168
  if name is not None:
201
169
  pulumi.set(__self__, "name", name)
202
170
  if project is not None:
@@ -234,22 +202,6 @@ class _RegionTargetHttpProxyState:
234
202
  def description(self, value: Optional[pulumi.Input[str]]):
235
203
  pulumi.set(self, "description", value)
236
204
 
237
- @property
238
- @pulumi.getter(name="httpKeepAliveTimeoutSec")
239
- def http_keep_alive_timeout_sec(self) -> Optional[pulumi.Input[int]]:
240
- """
241
- Specifies how long to keep a connection open, after completing a response,
242
- while there is no matching traffic (in seconds). If an HTTP keepalive is
243
- not specified, a default value (600 seconds) will be used. For Regional
244
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
245
- maximum allowed value is 600 seconds.
246
- """
247
- return pulumi.get(self, "http_keep_alive_timeout_sec")
248
-
249
- @http_keep_alive_timeout_sec.setter
250
- def http_keep_alive_timeout_sec(self, value: Optional[pulumi.Input[int]]):
251
- pulumi.set(self, "http_keep_alive_timeout_sec", value)
252
-
253
205
  @property
254
206
  @pulumi.getter
255
207
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -341,7 +293,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
341
293
  resource_name: str,
342
294
  opts: Optional[pulumi.ResourceOptions] = None,
343
295
  description: Optional[pulumi.Input[str]] = None,
344
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
345
296
  name: Optional[pulumi.Input[str]] = None,
346
297
  project: Optional[pulumi.Input[str]] = None,
347
298
  region: Optional[pulumi.Input[str]] = None,
@@ -399,48 +350,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
399
350
  name="test-proxy",
400
351
  url_map=default_region_url_map.id)
401
352
  ```
402
- ### Region Target Http Proxy Http Keep Alive Timeout
403
-
404
- ```python
405
- import pulumi
406
- import pulumi_gcp as gcp
407
-
408
- default_region_health_check = gcp.compute.RegionHealthCheck("default",
409
- region="us-central1",
410
- name="http-health-check",
411
- http_health_check={
412
- "port": 80,
413
- })
414
- default_region_backend_service = gcp.compute.RegionBackendService("default",
415
- region="us-central1",
416
- name="backend-service",
417
- port_name="http",
418
- protocol="HTTP",
419
- timeout_sec=10,
420
- load_balancing_scheme="INTERNAL_MANAGED",
421
- health_checks=default_region_health_check.id)
422
- default_region_url_map = gcp.compute.RegionUrlMap("default",
423
- region="us-central1",
424
- name="url-map",
425
- default_service=default_region_backend_service.id,
426
- host_rules=[{
427
- "hosts": ["mysite.com"],
428
- "path_matcher": "allpaths",
429
- }],
430
- path_matchers=[{
431
- "name": "allpaths",
432
- "default_service": default_region_backend_service.id,
433
- "path_rules": [{
434
- "paths": ["/*"],
435
- "service": default_region_backend_service.id,
436
- }],
437
- }])
438
- default = gcp.compute.RegionTargetHttpProxy("default",
439
- region="us-central1",
440
- name="test-http-keep-alive-timeout-proxy",
441
- http_keep_alive_timeout_sec=600,
442
- url_map=default_region_url_map.id)
443
- ```
444
353
  ### Region Target Http Proxy Https Redirect
445
354
 
446
355
  ```python
@@ -493,11 +402,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
493
402
  :param str resource_name: The name of the resource.
494
403
  :param pulumi.ResourceOptions opts: Options for the resource.
495
404
  :param pulumi.Input[str] description: An optional description of this resource.
496
- :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
497
- while there is no matching traffic (in seconds). If an HTTP keepalive is
498
- not specified, a default value (600 seconds) will be used. For Regional
499
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
500
- maximum allowed value is 600 seconds.
501
405
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
502
406
  created. The name must be 1-63 characters long, and comply with
503
407
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -573,48 +477,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
573
477
  name="test-proxy",
574
478
  url_map=default_region_url_map.id)
575
479
  ```
576
- ### Region Target Http Proxy Http Keep Alive Timeout
577
-
578
- ```python
579
- import pulumi
580
- import pulumi_gcp as gcp
581
-
582
- default_region_health_check = gcp.compute.RegionHealthCheck("default",
583
- region="us-central1",
584
- name="http-health-check",
585
- http_health_check={
586
- "port": 80,
587
- })
588
- default_region_backend_service = gcp.compute.RegionBackendService("default",
589
- region="us-central1",
590
- name="backend-service",
591
- port_name="http",
592
- protocol="HTTP",
593
- timeout_sec=10,
594
- load_balancing_scheme="INTERNAL_MANAGED",
595
- health_checks=default_region_health_check.id)
596
- default_region_url_map = gcp.compute.RegionUrlMap("default",
597
- region="us-central1",
598
- name="url-map",
599
- default_service=default_region_backend_service.id,
600
- host_rules=[{
601
- "hosts": ["mysite.com"],
602
- "path_matcher": "allpaths",
603
- }],
604
- path_matchers=[{
605
- "name": "allpaths",
606
- "default_service": default_region_backend_service.id,
607
- "path_rules": [{
608
- "paths": ["/*"],
609
- "service": default_region_backend_service.id,
610
- }],
611
- }])
612
- default = gcp.compute.RegionTargetHttpProxy("default",
613
- region="us-central1",
614
- name="test-http-keep-alive-timeout-proxy",
615
- http_keep_alive_timeout_sec=600,
616
- url_map=default_region_url_map.id)
617
- ```
618
480
  ### Region Target Http Proxy Https Redirect
619
481
 
620
482
  ```python
@@ -680,7 +542,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
680
542
  resource_name: str,
681
543
  opts: Optional[pulumi.ResourceOptions] = None,
682
544
  description: Optional[pulumi.Input[str]] = None,
683
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
684
545
  name: Optional[pulumi.Input[str]] = None,
685
546
  project: Optional[pulumi.Input[str]] = None,
686
547
  region: Optional[pulumi.Input[str]] = None,
@@ -695,7 +556,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
695
556
  __props__ = RegionTargetHttpProxyArgs.__new__(RegionTargetHttpProxyArgs)
696
557
 
697
558
  __props__.__dict__["description"] = description
698
- __props__.__dict__["http_keep_alive_timeout_sec"] = http_keep_alive_timeout_sec
699
559
  __props__.__dict__["name"] = name
700
560
  __props__.__dict__["project"] = project
701
561
  __props__.__dict__["region"] = region
@@ -717,7 +577,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
717
577
  opts: Optional[pulumi.ResourceOptions] = None,
718
578
  creation_timestamp: Optional[pulumi.Input[str]] = None,
719
579
  description: Optional[pulumi.Input[str]] = None,
720
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
721
580
  name: Optional[pulumi.Input[str]] = None,
722
581
  project: Optional[pulumi.Input[str]] = None,
723
582
  proxy_id: Optional[pulumi.Input[int]] = None,
@@ -733,11 +592,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
733
592
  :param pulumi.ResourceOptions opts: Options for the resource.
734
593
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
735
594
  :param pulumi.Input[str] description: An optional description of this resource.
736
- :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
737
- while there is no matching traffic (in seconds). If an HTTP keepalive is
738
- not specified, a default value (600 seconds) will be used. For Regional
739
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
740
- maximum allowed value is 600 seconds.
741
595
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
742
596
  created. The name must be 1-63 characters long, and comply with
743
597
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -763,7 +617,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
763
617
 
764
618
  __props__.__dict__["creation_timestamp"] = creation_timestamp
765
619
  __props__.__dict__["description"] = description
766
- __props__.__dict__["http_keep_alive_timeout_sec"] = http_keep_alive_timeout_sec
767
620
  __props__.__dict__["name"] = name
768
621
  __props__.__dict__["project"] = project
769
622
  __props__.__dict__["proxy_id"] = proxy_id
@@ -788,18 +641,6 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
788
641
  """
789
642
  return pulumi.get(self, "description")
790
643
 
791
- @property
792
- @pulumi.getter(name="httpKeepAliveTimeoutSec")
793
- def http_keep_alive_timeout_sec(self) -> pulumi.Output[Optional[int]]:
794
- """
795
- Specifies how long to keep a connection open, after completing a response,
796
- while there is no matching traffic (in seconds). If an HTTP keepalive is
797
- not specified, a default value (600 seconds) will be used. For Regional
798
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
799
- maximum allowed value is 600 seconds.
800
- """
801
- return pulumi.get(self, "http_keep_alive_timeout_sec")
802
-
803
644
  @property
804
645
  @pulumi.getter
805
646
  def name(self) -> pulumi.Output[str]:
@@ -22,7 +22,6 @@ class RegionTargetHttpsProxyArgs:
22
22
  url_map: pulumi.Input[str],
23
23
  certificate_manager_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
24
24
  description: Optional[pulumi.Input[str]] = None,
25
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
26
25
  name: Optional[pulumi.Input[str]] = None,
27
26
  project: Optional[pulumi.Input[str]] = None,
28
27
  region: Optional[pulumi.Input[str]] = None,
@@ -40,11 +39,6 @@ class RegionTargetHttpsProxyArgs:
40
39
  sslCertificates and certificateManagerCertificates can't be defined together.
41
40
  Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
42
41
  :param pulumi.Input[str] description: An optional description of this resource.
43
- :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
44
- while there is no matching traffic (in seconds). If an HTTP keepalive is
45
- not specified, a default value (600 seconds) will be used. For Regioanl
46
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
47
- maximum allowed value is 600 seconds.
48
42
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
49
43
  created. The name must be 1-63 characters long, and comply with
50
44
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -81,8 +75,6 @@ class RegionTargetHttpsProxyArgs:
81
75
  pulumi.set(__self__, "certificate_manager_certificates", certificate_manager_certificates)
82
76
  if description is not None:
83
77
  pulumi.set(__self__, "description", description)
84
- if http_keep_alive_timeout_sec is not None:
85
- pulumi.set(__self__, "http_keep_alive_timeout_sec", http_keep_alive_timeout_sec)
86
78
  if name is not None:
87
79
  pulumi.set(__self__, "name", name)
88
80
  if project is not None:
@@ -138,22 +130,6 @@ class RegionTargetHttpsProxyArgs:
138
130
  def description(self, value: Optional[pulumi.Input[str]]):
139
131
  pulumi.set(self, "description", value)
140
132
 
141
- @property
142
- @pulumi.getter(name="httpKeepAliveTimeoutSec")
143
- def http_keep_alive_timeout_sec(self) -> Optional[pulumi.Input[int]]:
144
- """
145
- Specifies how long to keep a connection open, after completing a response,
146
- while there is no matching traffic (in seconds). If an HTTP keepalive is
147
- not specified, a default value (600 seconds) will be used. For Regioanl
148
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
149
- maximum allowed value is 600 seconds.
150
- """
151
- return pulumi.get(self, "http_keep_alive_timeout_sec")
152
-
153
- @http_keep_alive_timeout_sec.setter
154
- def http_keep_alive_timeout_sec(self, value: Optional[pulumi.Input[int]]):
155
- pulumi.set(self, "http_keep_alive_timeout_sec", value)
156
-
157
133
  @property
158
134
  @pulumi.getter
159
135
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -257,7 +233,6 @@ class _RegionTargetHttpsProxyState:
257
233
  certificate_manager_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
258
234
  creation_timestamp: Optional[pulumi.Input[str]] = None,
259
235
  description: Optional[pulumi.Input[str]] = None,
260
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
261
236
  name: Optional[pulumi.Input[str]] = None,
262
237
  project: Optional[pulumi.Input[str]] = None,
263
238
  proxy_id: Optional[pulumi.Input[int]] = None,
@@ -274,11 +249,6 @@ class _RegionTargetHttpsProxyState:
274
249
  Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
275
250
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
276
251
  :param pulumi.Input[str] description: An optional description of this resource.
277
- :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
278
- while there is no matching traffic (in seconds). If an HTTP keepalive is
279
- not specified, a default value (600 seconds) will be used. For Regioanl
280
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
281
- maximum allowed value is 600 seconds.
282
252
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
283
253
  created. The name must be 1-63 characters long, and comply with
284
254
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -323,8 +293,6 @@ class _RegionTargetHttpsProxyState:
323
293
  pulumi.set(__self__, "creation_timestamp", creation_timestamp)
324
294
  if description is not None:
325
295
  pulumi.set(__self__, "description", description)
326
- if http_keep_alive_timeout_sec is not None:
327
- pulumi.set(__self__, "http_keep_alive_timeout_sec", http_keep_alive_timeout_sec)
328
296
  if name is not None:
329
297
  pulumi.set(__self__, "name", name)
330
298
  if project is not None:
@@ -382,22 +350,6 @@ class _RegionTargetHttpsProxyState:
382
350
  def description(self, value: Optional[pulumi.Input[str]]):
383
351
  pulumi.set(self, "description", value)
384
352
 
385
- @property
386
- @pulumi.getter(name="httpKeepAliveTimeoutSec")
387
- def http_keep_alive_timeout_sec(self) -> Optional[pulumi.Input[int]]:
388
- """
389
- Specifies how long to keep a connection open, after completing a response,
390
- while there is no matching traffic (in seconds). If an HTTP keepalive is
391
- not specified, a default value (600 seconds) will be used. For Regioanl
392
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
393
- maximum allowed value is 600 seconds.
394
- """
395
- return pulumi.get(self, "http_keep_alive_timeout_sec")
396
-
397
- @http_keep_alive_timeout_sec.setter
398
- def http_keep_alive_timeout_sec(self, value: Optional[pulumi.Input[int]]):
399
- pulumi.set(self, "http_keep_alive_timeout_sec", value)
400
-
401
353
  @property
402
354
  @pulumi.getter
403
355
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -542,7 +494,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
542
494
  opts: Optional[pulumi.ResourceOptions] = None,
543
495
  certificate_manager_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
544
496
  description: Optional[pulumi.Input[str]] = None,
545
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
546
497
  name: Optional[pulumi.Input[str]] = None,
547
498
  project: Optional[pulumi.Input[str]] = None,
548
499
  region: Optional[pulumi.Input[str]] = None,
@@ -611,56 +562,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
611
562
  url_map=default_region_url_map.id,
612
563
  ssl_certificates=[default_region_ssl_certificate.id])
613
564
  ```
614
- ### Region Target Https Proxy Http Keep Alive Timeout
615
-
616
- ```python
617
- import pulumi
618
- import pulumi_gcp as gcp
619
- import pulumi_std as std
620
-
621
- default_region_ssl_certificate = gcp.compute.RegionSslCertificate("default",
622
- region="us-central1",
623
- name="my-certificate",
624
- private_key=std.file(input="path/to/private.key").result,
625
- certificate=std.file(input="path/to/certificate.crt").result)
626
- default_region_health_check = gcp.compute.RegionHealthCheck("default",
627
- region="us-central1",
628
- name="http-health-check",
629
- http_health_check={
630
- "port": 80,
631
- })
632
- default_region_backend_service = gcp.compute.RegionBackendService("default",
633
- region="us-central1",
634
- name="backend-service",
635
- port_name="http",
636
- protocol="HTTP",
637
- timeout_sec=10,
638
- load_balancing_scheme="INTERNAL_MANAGED",
639
- health_checks=default_region_health_check.id)
640
- default_region_url_map = gcp.compute.RegionUrlMap("default",
641
- region="us-central1",
642
- name="url-map",
643
- description="a description",
644
- default_service=default_region_backend_service.id,
645
- host_rules=[{
646
- "hosts": ["mysite.com"],
647
- "path_matcher": "allpaths",
648
- }],
649
- path_matchers=[{
650
- "name": "allpaths",
651
- "default_service": default_region_backend_service.id,
652
- "path_rules": [{
653
- "paths": ["/*"],
654
- "service": default_region_backend_service.id,
655
- }],
656
- }])
657
- default = gcp.compute.RegionTargetHttpsProxy("default",
658
- region="us-central1",
659
- name="test-http-keep-alive-timeout-proxy",
660
- http_keep_alive_timeout_sec=600,
661
- url_map=default_region_url_map.id,
662
- ssl_certificates=[default_region_ssl_certificate.id])
663
- ```
664
565
  ### Region Target Https Proxy Mtls
665
566
 
666
567
  ```python
@@ -804,11 +705,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
804
705
  sslCertificates and certificateManagerCertificates can't be defined together.
805
706
  Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
806
707
  :param pulumi.Input[str] description: An optional description of this resource.
807
- :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
808
- while there is no matching traffic (in seconds). If an HTTP keepalive is
809
- not specified, a default value (600 seconds) will be used. For Regioanl
810
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
811
- maximum allowed value is 600 seconds.
812
708
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
813
709
  created. The name must be 1-63 characters long, and comply with
814
710
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -911,56 +807,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
911
807
  url_map=default_region_url_map.id,
912
808
  ssl_certificates=[default_region_ssl_certificate.id])
913
809
  ```
914
- ### Region Target Https Proxy Http Keep Alive Timeout
915
-
916
- ```python
917
- import pulumi
918
- import pulumi_gcp as gcp
919
- import pulumi_std as std
920
-
921
- default_region_ssl_certificate = gcp.compute.RegionSslCertificate("default",
922
- region="us-central1",
923
- name="my-certificate",
924
- private_key=std.file(input="path/to/private.key").result,
925
- certificate=std.file(input="path/to/certificate.crt").result)
926
- default_region_health_check = gcp.compute.RegionHealthCheck("default",
927
- region="us-central1",
928
- name="http-health-check",
929
- http_health_check={
930
- "port": 80,
931
- })
932
- default_region_backend_service = gcp.compute.RegionBackendService("default",
933
- region="us-central1",
934
- name="backend-service",
935
- port_name="http",
936
- protocol="HTTP",
937
- timeout_sec=10,
938
- load_balancing_scheme="INTERNAL_MANAGED",
939
- health_checks=default_region_health_check.id)
940
- default_region_url_map = gcp.compute.RegionUrlMap("default",
941
- region="us-central1",
942
- name="url-map",
943
- description="a description",
944
- default_service=default_region_backend_service.id,
945
- host_rules=[{
946
- "hosts": ["mysite.com"],
947
- "path_matcher": "allpaths",
948
- }],
949
- path_matchers=[{
950
- "name": "allpaths",
951
- "default_service": default_region_backend_service.id,
952
- "path_rules": [{
953
- "paths": ["/*"],
954
- "service": default_region_backend_service.id,
955
- }],
956
- }])
957
- default = gcp.compute.RegionTargetHttpsProxy("default",
958
- region="us-central1",
959
- name="test-http-keep-alive-timeout-proxy",
960
- http_keep_alive_timeout_sec=600,
961
- url_map=default_region_url_map.id,
962
- ssl_certificates=[default_region_ssl_certificate.id])
963
- ```
964
810
  ### Region Target Https Proxy Mtls
965
811
 
966
812
  ```python
@@ -1115,7 +961,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
1115
961
  opts: Optional[pulumi.ResourceOptions] = None,
1116
962
  certificate_manager_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1117
963
  description: Optional[pulumi.Input[str]] = None,
1118
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
1119
964
  name: Optional[pulumi.Input[str]] = None,
1120
965
  project: Optional[pulumi.Input[str]] = None,
1121
966
  region: Optional[pulumi.Input[str]] = None,
@@ -1134,7 +979,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
1134
979
 
1135
980
  __props__.__dict__["certificate_manager_certificates"] = certificate_manager_certificates
1136
981
  __props__.__dict__["description"] = description
1137
- __props__.__dict__["http_keep_alive_timeout_sec"] = http_keep_alive_timeout_sec
1138
982
  __props__.__dict__["name"] = name
1139
983
  __props__.__dict__["project"] = project
1140
984
  __props__.__dict__["region"] = region
@@ -1160,7 +1004,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
1160
1004
  certificate_manager_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1161
1005
  creation_timestamp: Optional[pulumi.Input[str]] = None,
1162
1006
  description: Optional[pulumi.Input[str]] = None,
1163
- http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
1164
1007
  name: Optional[pulumi.Input[str]] = None,
1165
1008
  project: Optional[pulumi.Input[str]] = None,
1166
1009
  proxy_id: Optional[pulumi.Input[int]] = None,
@@ -1182,11 +1025,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
1182
1025
  Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
1183
1026
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
1184
1027
  :param pulumi.Input[str] description: An optional description of this resource.
1185
- :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
1186
- while there is no matching traffic (in seconds). If an HTTP keepalive is
1187
- not specified, a default value (600 seconds) will be used. For Regioanl
1188
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
1189
- maximum allowed value is 600 seconds.
1190
1028
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
1191
1029
  created. The name must be 1-63 characters long, and comply with
1192
1030
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -1232,7 +1070,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
1232
1070
  __props__.__dict__["certificate_manager_certificates"] = certificate_manager_certificates
1233
1071
  __props__.__dict__["creation_timestamp"] = creation_timestamp
1234
1072
  __props__.__dict__["description"] = description
1235
- __props__.__dict__["http_keep_alive_timeout_sec"] = http_keep_alive_timeout_sec
1236
1073
  __props__.__dict__["name"] = name
1237
1074
  __props__.__dict__["project"] = project
1238
1075
  __props__.__dict__["proxy_id"] = proxy_id
@@ -1270,18 +1107,6 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
1270
1107
  """
1271
1108
  return pulumi.get(self, "description")
1272
1109
 
1273
- @property
1274
- @pulumi.getter(name="httpKeepAliveTimeoutSec")
1275
- def http_keep_alive_timeout_sec(self) -> pulumi.Output[Optional[int]]:
1276
- """
1277
- Specifies how long to keep a connection open, after completing a response,
1278
- while there is no matching traffic (in seconds). If an HTTP keepalive is
1279
- not specified, a default value (600 seconds) will be used. For Regioanl
1280
- HTTP(S) load balancer, the minimum allowed value is 5 seconds and the
1281
- maximum allowed value is 600 seconds.
1282
- """
1283
- return pulumi.get(self, "http_keep_alive_timeout_sec")
1284
-
1285
1110
  @property
1286
1111
  @pulumi.getter
1287
1112
  def name(self) -> pulumi.Output[str]: