pulumi-gcp 8.2.0a1726671837__py3-none-any.whl → 8.3.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.
Files changed (100) hide show
  1. pulumi_gcp/__init__.py +158 -0
  2. pulumi_gcp/alloydb/_inputs.py +20 -0
  3. pulumi_gcp/alloydb/instance.py +36 -0
  4. pulumi_gcp/alloydb/outputs.py +14 -0
  5. pulumi_gcp/bigquery/__init__.py +1 -0
  6. pulumi_gcp/bigquery/get_tables.py +143 -0
  7. pulumi_gcp/bigquery/outputs.py +30 -0
  8. pulumi_gcp/compute/__init__.py +2 -0
  9. pulumi_gcp/compute/_inputs.py +12481 -9158
  10. pulumi_gcp/compute/attached_disk.py +103 -0
  11. pulumi_gcp/compute/backend_service.py +29 -22
  12. pulumi_gcp/compute/firewall_policy_with_rules.py +769 -0
  13. pulumi_gcp/compute/get_instance.py +3 -0
  14. pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
  15. pulumi_gcp/compute/outputs.py +3695 -1293
  16. pulumi_gcp/compute/region_backend_service.py +29 -22
  17. pulumi_gcp/compute/region_target_http_proxy.py +159 -0
  18. pulumi_gcp/compute/region_target_https_proxy.py +175 -0
  19. pulumi_gcp/compute/router_nat.py +27 -66
  20. pulumi_gcp/compute/service_attachment.py +75 -0
  21. pulumi_gcp/compute/target_http_proxy.py +49 -28
  22. pulumi_gcp/compute/target_https_proxy.py +49 -28
  23. pulumi_gcp/config/__init__.pyi +6 -0
  24. pulumi_gcp/config/vars.py +12 -0
  25. pulumi_gcp/container/_inputs.py +168 -99
  26. pulumi_gcp/container/attached_cluster.py +54 -1
  27. pulumi_gcp/container/outputs.py +155 -70
  28. pulumi_gcp/databasemigrationservice/__init__.py +1 -0
  29. pulumi_gcp/databasemigrationservice/_inputs.py +362 -0
  30. pulumi_gcp/databasemigrationservice/migration_job.py +1739 -0
  31. pulumi_gcp/databasemigrationservice/outputs.py +268 -0
  32. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  33. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  34. pulumi_gcp/dataproc/metastore_service.py +95 -0
  35. pulumi_gcp/datastream/stream.py +21 -14
  36. pulumi_gcp/developerconnect/__init__.py +11 -0
  37. pulumi_gcp/developerconnect/_inputs.py +304 -0
  38. pulumi_gcp/developerconnect/connection.py +1037 -0
  39. pulumi_gcp/developerconnect/git_repository_link.py +873 -0
  40. pulumi_gcp/developerconnect/outputs.py +249 -0
  41. pulumi_gcp/discoveryengine/__init__.py +1 -0
  42. pulumi_gcp/discoveryengine/_inputs.py +131 -0
  43. pulumi_gcp/discoveryengine/outputs.py +131 -0
  44. pulumi_gcp/discoveryengine/target_site.py +870 -0
  45. pulumi_gcp/dns/managed_zone.py +1 -1
  46. pulumi_gcp/filestore/get_instance.py +21 -1
  47. pulumi_gcp/filestore/instance.py +94 -0
  48. pulumi_gcp/gkehub/feature_membership.py +140 -62
  49. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  50. pulumi_gcp/gkeonprem/outputs.py +2 -2
  51. pulumi_gcp/healthcare/__init__.py +1 -0
  52. pulumi_gcp/healthcare/_inputs.py +39 -0
  53. pulumi_gcp/healthcare/outputs.py +40 -0
  54. pulumi_gcp/healthcare/workspace.py +465 -0
  55. pulumi_gcp/looker/instance.py +81 -0
  56. pulumi_gcp/memorystore/__init__.py +10 -0
  57. pulumi_gcp/memorystore/_inputs.py +731 -0
  58. pulumi_gcp/memorystore/instance.py +1663 -0
  59. pulumi_gcp/memorystore/outputs.py +598 -0
  60. pulumi_gcp/netapp/_inputs.py +63 -0
  61. pulumi_gcp/netapp/outputs.py +57 -0
  62. pulumi_gcp/netapp/storage_pool.py +54 -0
  63. pulumi_gcp/netapp/volume.py +183 -0
  64. pulumi_gcp/organizations/folder.py +52 -33
  65. pulumi_gcp/provider.py +60 -0
  66. pulumi_gcp/pubsub/subscription.py +43 -7
  67. pulumi_gcp/pulumi-plugin.json +1 -1
  68. pulumi_gcp/secretmanager/__init__.py +8 -0
  69. pulumi_gcp/secretmanager/_inputs.py +308 -0
  70. pulumi_gcp/secretmanager/get_regional_secret.py +279 -0
  71. pulumi_gcp/secretmanager/get_regional_secret_iam_policy.py +173 -0
  72. pulumi_gcp/secretmanager/get_regional_secret_version.py +241 -0
  73. pulumi_gcp/secretmanager/outputs.py +336 -0
  74. pulumi_gcp/secretmanager/regional_secret.py +1433 -0
  75. pulumi_gcp/secretmanager/regional_secret_iam_binding.py +1082 -0
  76. pulumi_gcp/secretmanager/regional_secret_iam_member.py +1082 -0
  77. pulumi_gcp/secretmanager/regional_secret_iam_policy.py +901 -0
  78. pulumi_gcp/secretmanager/regional_secret_version.py +753 -0
  79. pulumi_gcp/securitycenter/__init__.py +4 -0
  80. pulumi_gcp/securitycenter/folder_scc_big_query_export.py +795 -0
  81. pulumi_gcp/securitycenter/organization_scc_big_query_export.py +738 -0
  82. pulumi_gcp/securitycenter/project_scc_big_query_export.py +749 -0
  83. pulumi_gcp/securitycenter/v2_organization_scc_big_query_export.py +862 -0
  84. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +6 -2
  85. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  86. pulumi_gcp/siteverification/__init__.py +3 -0
  87. pulumi_gcp/siteverification/_inputs.py +85 -0
  88. pulumi_gcp/siteverification/outputs.py +57 -0
  89. pulumi_gcp/siteverification/web_resource.py +398 -0
  90. pulumi_gcp/spanner/__init__.py +1 -0
  91. pulumi_gcp/spanner/_inputs.py +129 -0
  92. pulumi_gcp/spanner/backup_schedule.py +748 -0
  93. pulumi_gcp/spanner/get_instance.py +11 -1
  94. pulumi_gcp/spanner/instance.py +56 -0
  95. pulumi_gcp/spanner/outputs.py +93 -0
  96. pulumi_gcp/vpcaccess/connector.py +21 -28
  97. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/METADATA +1 -1
  98. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/RECORD +100 -69
  99. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/WHEEL +0 -0
  100. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/top_level.txt +0 -0
@@ -113,7 +113,8 @@ class RegionBackendServiceArgs:
113
113
  build times and host selection times. For more information about
114
114
  Maglev, refer to https://ai.google/research/pubs/pub44824
115
115
  * `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
116
- reported weights. If set, the Backend Service must
116
+ reported weights. Only applicable to loadBalancingScheme
117
+ EXTERNAL. If set, the Backend Service must
117
118
  configure a non legacy HTTP-based Health Check, and
118
119
  health check replies are expected to contain
119
120
  non-standard HTTP response header field
@@ -124,14 +125,14 @@ class RegionBackendServiceArgs:
124
125
  instance either reported a valid weight or had
125
126
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
126
127
  equal-weight.
127
- This field is applicable to either:
128
+ locality_lb_policy is applicable to either:
128
129
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
129
130
  and loadBalancingScheme set to INTERNAL_MANAGED.
130
131
  * A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
131
132
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
132
133
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
133
134
  Network Load Balancing. The default is MAGLEV.
134
- If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
135
+ If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
135
136
  or RING_HASH, session affinity settings will not take effect.
136
137
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
137
138
  by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
@@ -446,7 +447,8 @@ class RegionBackendServiceArgs:
446
447
  build times and host selection times. For more information about
447
448
  Maglev, refer to https://ai.google/research/pubs/pub44824
448
449
  * `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
449
- reported weights. If set, the Backend Service must
450
+ reported weights. Only applicable to loadBalancingScheme
451
+ EXTERNAL. If set, the Backend Service must
450
452
  configure a non legacy HTTP-based Health Check, and
451
453
  health check replies are expected to contain
452
454
  non-standard HTTP response header field
@@ -457,14 +459,14 @@ class RegionBackendServiceArgs:
457
459
  instance either reported a valid weight or had
458
460
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
459
461
  equal-weight.
460
- This field is applicable to either:
462
+ locality_lb_policy is applicable to either:
461
463
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
462
464
  and loadBalancingScheme set to INTERNAL_MANAGED.
463
465
  * A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
464
466
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
465
467
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
466
468
  Network Load Balancing. The default is MAGLEV.
467
- If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
469
+ If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
468
470
  or RING_HASH, session affinity settings will not take effect.
469
471
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
470
472
  by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
@@ -757,7 +759,8 @@ class _RegionBackendServiceState:
757
759
  build times and host selection times. For more information about
758
760
  Maglev, refer to https://ai.google/research/pubs/pub44824
759
761
  * `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
760
- reported weights. If set, the Backend Service must
762
+ reported weights. Only applicable to loadBalancingScheme
763
+ EXTERNAL. If set, the Backend Service must
761
764
  configure a non legacy HTTP-based Health Check, and
762
765
  health check replies are expected to contain
763
766
  non-standard HTTP response header field
@@ -768,14 +771,14 @@ class _RegionBackendServiceState:
768
771
  instance either reported a valid weight or had
769
772
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
770
773
  equal-weight.
771
- This field is applicable to either:
774
+ locality_lb_policy is applicable to either:
772
775
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
773
776
  and loadBalancingScheme set to INTERNAL_MANAGED.
774
777
  * A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
775
778
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
776
779
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
777
780
  Network Load Balancing. The default is MAGLEV.
778
- If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
781
+ If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
779
782
  or RING_HASH, session affinity settings will not take effect.
780
783
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
781
784
  by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
@@ -1136,7 +1139,8 @@ class _RegionBackendServiceState:
1136
1139
  build times and host selection times. For more information about
1137
1140
  Maglev, refer to https://ai.google/research/pubs/pub44824
1138
1141
  * `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
1139
- reported weights. If set, the Backend Service must
1142
+ reported weights. Only applicable to loadBalancingScheme
1143
+ EXTERNAL. If set, the Backend Service must
1140
1144
  configure a non legacy HTTP-based Health Check, and
1141
1145
  health check replies are expected to contain
1142
1146
  non-standard HTTP response header field
@@ -1147,14 +1151,14 @@ class _RegionBackendServiceState:
1147
1151
  instance either reported a valid weight or had
1148
1152
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
1149
1153
  equal-weight.
1150
- This field is applicable to either:
1154
+ locality_lb_policy is applicable to either:
1151
1155
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
1152
1156
  and loadBalancingScheme set to INTERNAL_MANAGED.
1153
1157
  * A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
1154
1158
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
1155
1159
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
1156
1160
  Network Load Balancing. The default is MAGLEV.
1157
- If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
1161
+ If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
1158
1162
  or RING_HASH, session affinity settings will not take effect.
1159
1163
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
1160
1164
  by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
@@ -1743,7 +1747,8 @@ class RegionBackendService(pulumi.CustomResource):
1743
1747
  build times and host selection times. For more information about
1744
1748
  Maglev, refer to https://ai.google/research/pubs/pub44824
1745
1749
  * `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
1746
- reported weights. If set, the Backend Service must
1750
+ reported weights. Only applicable to loadBalancingScheme
1751
+ EXTERNAL. If set, the Backend Service must
1747
1752
  configure a non legacy HTTP-based Health Check, and
1748
1753
  health check replies are expected to contain
1749
1754
  non-standard HTTP response header field
@@ -1754,14 +1759,14 @@ class RegionBackendService(pulumi.CustomResource):
1754
1759
  instance either reported a valid weight or had
1755
1760
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
1756
1761
  equal-weight.
1757
- This field is applicable to either:
1762
+ locality_lb_policy is applicable to either:
1758
1763
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
1759
1764
  and loadBalancingScheme set to INTERNAL_MANAGED.
1760
1765
  * A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
1761
1766
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
1762
1767
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
1763
1768
  Network Load Balancing. The default is MAGLEV.
1764
- If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
1769
+ If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
1765
1770
  or RING_HASH, session affinity settings will not take effect.
1766
1771
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
1767
1772
  by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
@@ -2302,7 +2307,8 @@ class RegionBackendService(pulumi.CustomResource):
2302
2307
  build times and host selection times. For more information about
2303
2308
  Maglev, refer to https://ai.google/research/pubs/pub44824
2304
2309
  * `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
2305
- reported weights. If set, the Backend Service must
2310
+ reported weights. Only applicable to loadBalancingScheme
2311
+ EXTERNAL. If set, the Backend Service must
2306
2312
  configure a non legacy HTTP-based Health Check, and
2307
2313
  health check replies are expected to contain
2308
2314
  non-standard HTTP response header field
@@ -2313,14 +2319,14 @@ class RegionBackendService(pulumi.CustomResource):
2313
2319
  instance either reported a valid weight or had
2314
2320
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
2315
2321
  equal-weight.
2316
- This field is applicable to either:
2322
+ locality_lb_policy is applicable to either:
2317
2323
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
2318
2324
  and loadBalancingScheme set to INTERNAL_MANAGED.
2319
2325
  * A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
2320
2326
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
2321
2327
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
2322
2328
  Network Load Balancing. The default is MAGLEV.
2323
- If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
2329
+ If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
2324
2330
  or RING_HASH, session affinity settings will not take effect.
2325
2331
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
2326
2332
  by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
@@ -2547,7 +2553,7 @@ class RegionBackendService(pulumi.CustomResource):
2547
2553
 
2548
2554
  @property
2549
2555
  @pulumi.getter
2550
- def iap(self) -> pulumi.Output[Optional['outputs.RegionBackendServiceIap']]:
2556
+ def iap(self) -> pulumi.Output['outputs.RegionBackendServiceIap']:
2551
2557
  """
2552
2558
  Settings for enabling Cloud Identity Aware Proxy
2553
2559
  Structure is documented below.
@@ -2592,7 +2598,8 @@ class RegionBackendService(pulumi.CustomResource):
2592
2598
  build times and host selection times. For more information about
2593
2599
  Maglev, refer to https://ai.google/research/pubs/pub44824
2594
2600
  * `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
2595
- reported weights. If set, the Backend Service must
2601
+ reported weights. Only applicable to loadBalancingScheme
2602
+ EXTERNAL. If set, the Backend Service must
2596
2603
  configure a non legacy HTTP-based Health Check, and
2597
2604
  health check replies are expected to contain
2598
2605
  non-standard HTTP response header field
@@ -2603,14 +2610,14 @@ class RegionBackendService(pulumi.CustomResource):
2603
2610
  instance either reported a valid weight or had
2604
2611
  UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
2605
2612
  equal-weight.
2606
- This field is applicable to either:
2613
+ locality_lb_policy is applicable to either:
2607
2614
  * A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
2608
2615
  and loadBalancingScheme set to INTERNAL_MANAGED.
2609
2616
  * A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
2610
2617
  * A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
2611
2618
  Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
2612
2619
  Network Load Balancing. The default is MAGLEV.
2613
- If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
2620
+ If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
2614
2621
  or RING_HASH, session affinity settings will not take effect.
2615
2622
  Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
2616
2623
  by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
@@ -21,6 +21,7 @@ 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,
24
25
  name: Optional[pulumi.Input[str]] = None,
25
26
  project: Optional[pulumi.Input[str]] = None,
26
27
  region: Optional[pulumi.Input[str]] = None):
@@ -32,6 +33,11 @@ class RegionTargetHttpProxyArgs:
32
33
 
33
34
  - - -
34
35
  :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.
35
41
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
36
42
  created. The name must be 1-63 characters long, and comply with
37
43
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -47,6 +53,8 @@ class RegionTargetHttpProxyArgs:
47
53
  pulumi.set(__self__, "url_map", url_map)
48
54
  if description is not None:
49
55
  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)
50
58
  if name is not None:
51
59
  pulumi.set(__self__, "name", name)
52
60
  if project is not None:
@@ -82,6 +90,22 @@ class RegionTargetHttpProxyArgs:
82
90
  def description(self, value: Optional[pulumi.Input[str]]):
83
91
  pulumi.set(self, "description", value)
84
92
 
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
+
85
109
  @property
86
110
  @pulumi.getter
87
111
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -132,6 +156,7 @@ class _RegionTargetHttpProxyState:
132
156
  def __init__(__self__, *,
133
157
  creation_timestamp: Optional[pulumi.Input[str]] = None,
134
158
  description: Optional[pulumi.Input[str]] = None,
159
+ http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
135
160
  name: Optional[pulumi.Input[str]] = None,
136
161
  project: Optional[pulumi.Input[str]] = None,
137
162
  proxy_id: Optional[pulumi.Input[int]] = None,
@@ -142,6 +167,11 @@ class _RegionTargetHttpProxyState:
142
167
  Input properties used for looking up and filtering RegionTargetHttpProxy resources.
143
168
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
144
169
  :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.
145
175
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
146
176
  created. The name must be 1-63 characters long, and comply with
147
177
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -165,6 +195,8 @@ class _RegionTargetHttpProxyState:
165
195
  pulumi.set(__self__, "creation_timestamp", creation_timestamp)
166
196
  if description is not None:
167
197
  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)
168
200
  if name is not None:
169
201
  pulumi.set(__self__, "name", name)
170
202
  if project is not None:
@@ -202,6 +234,22 @@ class _RegionTargetHttpProxyState:
202
234
  def description(self, value: Optional[pulumi.Input[str]]):
203
235
  pulumi.set(self, "description", value)
204
236
 
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
+
205
253
  @property
206
254
  @pulumi.getter
207
255
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -293,6 +341,7 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
293
341
  resource_name: str,
294
342
  opts: Optional[pulumi.ResourceOptions] = None,
295
343
  description: Optional[pulumi.Input[str]] = None,
344
+ http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
296
345
  name: Optional[pulumi.Input[str]] = None,
297
346
  project: Optional[pulumi.Input[str]] = None,
298
347
  region: Optional[pulumi.Input[str]] = None,
@@ -350,6 +399,48 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
350
399
  name="test-proxy",
351
400
  url_map=default_region_url_map.id)
352
401
  ```
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
+ ```
353
444
  ### Region Target Http Proxy Https Redirect
354
445
 
355
446
  ```python
@@ -402,6 +493,11 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
402
493
  :param str resource_name: The name of the resource.
403
494
  :param pulumi.ResourceOptions opts: Options for the resource.
404
495
  :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.
405
501
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
406
502
  created. The name must be 1-63 characters long, and comply with
407
503
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -477,6 +573,48 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
477
573
  name="test-proxy",
478
574
  url_map=default_region_url_map.id)
479
575
  ```
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
+ ```
480
618
  ### Region Target Http Proxy Https Redirect
481
619
 
482
620
  ```python
@@ -542,6 +680,7 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
542
680
  resource_name: str,
543
681
  opts: Optional[pulumi.ResourceOptions] = None,
544
682
  description: Optional[pulumi.Input[str]] = None,
683
+ http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
545
684
  name: Optional[pulumi.Input[str]] = None,
546
685
  project: Optional[pulumi.Input[str]] = None,
547
686
  region: Optional[pulumi.Input[str]] = None,
@@ -556,6 +695,7 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
556
695
  __props__ = RegionTargetHttpProxyArgs.__new__(RegionTargetHttpProxyArgs)
557
696
 
558
697
  __props__.__dict__["description"] = description
698
+ __props__.__dict__["http_keep_alive_timeout_sec"] = http_keep_alive_timeout_sec
559
699
  __props__.__dict__["name"] = name
560
700
  __props__.__dict__["project"] = project
561
701
  __props__.__dict__["region"] = region
@@ -577,6 +717,7 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
577
717
  opts: Optional[pulumi.ResourceOptions] = None,
578
718
  creation_timestamp: Optional[pulumi.Input[str]] = None,
579
719
  description: Optional[pulumi.Input[str]] = None,
720
+ http_keep_alive_timeout_sec: Optional[pulumi.Input[int]] = None,
580
721
  name: Optional[pulumi.Input[str]] = None,
581
722
  project: Optional[pulumi.Input[str]] = None,
582
723
  proxy_id: Optional[pulumi.Input[int]] = None,
@@ -592,6 +733,11 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
592
733
  :param pulumi.ResourceOptions opts: Options for the resource.
593
734
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
594
735
  :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.
595
741
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
596
742
  created. The name must be 1-63 characters long, and comply with
597
743
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -617,6 +763,7 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
617
763
 
618
764
  __props__.__dict__["creation_timestamp"] = creation_timestamp
619
765
  __props__.__dict__["description"] = description
766
+ __props__.__dict__["http_keep_alive_timeout_sec"] = http_keep_alive_timeout_sec
620
767
  __props__.__dict__["name"] = name
621
768
  __props__.__dict__["project"] = project
622
769
  __props__.__dict__["proxy_id"] = proxy_id
@@ -641,6 +788,18 @@ class RegionTargetHttpProxy(pulumi.CustomResource):
641
788
  """
642
789
  return pulumi.get(self, "description")
643
790
 
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
+
644
803
  @property
645
804
  @pulumi.getter
646
805
  def name(self) -> pulumi.Output[str]: