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
@@ -35,10 +35,13 @@ class TargetHttpProxyArgs:
35
35
  :param pulumi.Input[str] description: An optional description of this resource.
36
36
  :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
37
37
  while there is no matching traffic (in seconds). If an HTTP keepalive is
38
- not specified, a default value (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.
38
+ not specified, a default value will be used. For Global
39
+ external HTTP(S) load balancer, the default value is 610 seconds, the
40
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
41
+ seconds. For cross-region internal HTTP(S) load balancer, the default
42
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
43
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
44
+ balancer (classic), this option is not available publicly.
42
45
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
43
46
  created. The name must be 1-63 characters long, and comply with
44
47
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -97,10 +100,13 @@ class TargetHttpProxyArgs:
97
100
  """
98
101
  Specifies how long to keep a connection open, after completing a response,
99
102
  while there is no matching traffic (in seconds). If an HTTP keepalive is
100
- not specified, a default value (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.
103
+ not specified, a default value will be used. For Global
104
+ external HTTP(S) load balancer, the default value is 610 seconds, the
105
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
106
+ seconds. For cross-region internal HTTP(S) load balancer, the default
107
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
108
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
109
+ balancer (classic), this option is not available publicly.
104
110
  """
105
111
  return pulumi.get(self, "http_keep_alive_timeout_sec")
106
112
 
@@ -171,10 +177,13 @@ class _TargetHttpProxyState:
171
177
  :param pulumi.Input[str] description: An optional description of this resource.
172
178
  :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
173
179
  while there is no matching traffic (in seconds). If an HTTP keepalive is
174
- not specified, a default value (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.
180
+ not specified, a default value will be used. For Global
181
+ external HTTP(S) load balancer, the default value is 610 seconds, the
182
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
183
+ seconds. For cross-region internal HTTP(S) load balancer, the default
184
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
185
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
186
+ balancer (classic), this option is not available publicly.
178
187
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
179
188
  created. The name must be 1-63 characters long, and comply with
180
189
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -243,10 +252,13 @@ class _TargetHttpProxyState:
243
252
  """
244
253
  Specifies how long to keep a connection open, after completing a response,
245
254
  while there is no matching traffic (in seconds). If an HTTP keepalive is
246
- not specified, a default value (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.
255
+ not specified, a default value will be used. For Global
256
+ external HTTP(S) load balancer, the default value is 610 seconds, the
257
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
258
+ seconds. For cross-region internal HTTP(S) load balancer, the default
259
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
260
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
261
+ balancer (classic), this option is not available publicly.
250
262
  """
251
263
  return pulumi.get(self, "http_keep_alive_timeout_sec")
252
264
 
@@ -483,10 +495,13 @@ class TargetHttpProxy(pulumi.CustomResource):
483
495
  :param pulumi.Input[str] description: An optional description of this resource.
484
496
  :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
485
497
  while there is no matching traffic (in seconds). If an HTTP keepalive is
486
- not specified, a default value (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.
498
+ not specified, a default value will be used. For Global
499
+ external HTTP(S) load balancer, the default value is 610 seconds, the
500
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
501
+ seconds. For cross-region internal HTTP(S) load balancer, the default
502
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
503
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
504
+ balancer (classic), this option is not available publicly.
490
505
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
491
506
  created. The name must be 1-63 characters long, and comply with
492
507
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -708,10 +723,13 @@ class TargetHttpProxy(pulumi.CustomResource):
708
723
  :param pulumi.Input[str] description: An optional description of this resource.
709
724
  :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
710
725
  while there is no matching traffic (in seconds). If an HTTP keepalive is
711
- not specified, a default value (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.
726
+ not specified, a default value will be used. For Global
727
+ external HTTP(S) load balancer, the default value is 610 seconds, the
728
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
729
+ seconds. For cross-region internal HTTP(S) load balancer, the default
730
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
731
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
732
+ balancer (classic), this option is not available publicly.
715
733
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
716
734
  created. The name must be 1-63 characters long, and comply with
717
735
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -768,10 +786,13 @@ class TargetHttpProxy(pulumi.CustomResource):
768
786
  """
769
787
  Specifies how long to keep a connection open, after completing a response,
770
788
  while there is no matching traffic (in seconds). If an HTTP keepalive is
771
- not specified, a default value (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.
789
+ not specified, a default value will be used. For Global
790
+ external HTTP(S) load balancer, the default value is 610 seconds, the
791
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
792
+ seconds. For cross-region internal HTTP(S) load balancer, the default
793
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
794
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
795
+ balancer (classic), this option is not available publicly.
775
796
  """
776
797
  return pulumi.get(self, "http_keep_alive_timeout_sec")
777
798
 
@@ -51,10 +51,13 @@ class TargetHttpsProxyArgs:
51
51
  :param pulumi.Input[str] description: An optional description of this resource.
52
52
  :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
53
53
  while there is no matching traffic (in seconds). If an HTTP keepalive is
54
- not specified, a default value (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.
54
+ not specified, a default value will be used. For Global
55
+ external HTTP(S) load balancer, the default value is 610 seconds, the
56
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
57
+ seconds. For cross-region internal HTTP(S) load balancer, the default
58
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
59
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
60
+ balancer (classic), this option is not available publicly.
58
61
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
59
62
  created. The name must be 1-63 characters long, and comply with
60
63
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -188,10 +191,13 @@ class TargetHttpsProxyArgs:
188
191
  """
189
192
  Specifies how long to keep a connection open, after completing a response,
190
193
  while there is no matching traffic (in seconds). If an HTTP keepalive is
191
- not specified, a default value (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.
194
+ not specified, a default value will be used. For Global
195
+ external HTTP(S) load balancer, the default value is 610 seconds, the
196
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
197
+ seconds. For cross-region internal HTTP(S) load balancer, the default
198
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
199
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
200
+ balancer (classic), this option is not available publicly.
195
201
  """
196
202
  return pulumi.get(self, "http_keep_alive_timeout_sec")
197
203
 
@@ -363,10 +369,13 @@ class _TargetHttpsProxyState:
363
369
  :param pulumi.Input[str] description: An optional description of this resource.
364
370
  :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
365
371
  while there is no matching traffic (in seconds). If an HTTP keepalive is
366
- not specified, a default value (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.
372
+ not specified, a default value will be used. For Global
373
+ external HTTP(S) load balancer, the default value is 610 seconds, the
374
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
375
+ seconds. For cross-region internal HTTP(S) load balancer, the default
376
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
377
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
378
+ balancer (classic), this option is not available publicly.
370
379
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
371
380
  created. The name must be 1-63 characters long, and comply with
372
381
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -510,10 +519,13 @@ class _TargetHttpsProxyState:
510
519
  """
511
520
  Specifies how long to keep a connection open, after completing a response,
512
521
  while there is no matching traffic (in seconds). If an HTTP keepalive is
513
- not specified, a default value (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.
522
+ not specified, a default value will be used. For Global
523
+ external HTTP(S) load balancer, the default value is 610 seconds, the
524
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
525
+ seconds. For cross-region internal HTTP(S) load balancer, the default
526
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
527
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
528
+ balancer (classic), this option is not available publicly.
517
529
  """
518
530
  return pulumi.get(self, "http_keep_alive_timeout_sec")
519
531
 
@@ -959,10 +971,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
959
971
  :param pulumi.Input[str] description: An optional description of this resource.
960
972
  :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
961
973
  while there is no matching traffic (in seconds). If an HTTP keepalive is
962
- not specified, a default value (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.
974
+ not specified, a default value will be used. For Global
975
+ external HTTP(S) load balancer, the default value is 610 seconds, the
976
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
977
+ seconds. For cross-region internal HTTP(S) load balancer, the default
978
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
979
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
980
+ balancer (classic), this option is not available publicly.
966
981
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
967
982
  created. The name must be 1-63 characters long, and comply with
968
983
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -1352,10 +1367,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
1352
1367
  :param pulumi.Input[str] description: An optional description of this resource.
1353
1368
  :param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
1354
1369
  while there is no matching traffic (in seconds). If an HTTP keepalive is
1355
- not specified, a default value (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.
1370
+ not specified, a default value will be used. For Global
1371
+ external HTTP(S) load balancer, the default value is 610 seconds, the
1372
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
1373
+ seconds. For cross-region internal HTTP(S) load balancer, the default
1374
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
1375
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
1376
+ balancer (classic), this option is not available publicly.
1359
1377
  :param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
1360
1378
  created. The name must be 1-63 characters long, and comply with
1361
1379
  RFC1035. Specifically, the name must be 1-63 characters long and match
@@ -1472,10 +1490,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
1472
1490
  """
1473
1491
  Specifies how long to keep a connection open, after completing a response,
1474
1492
  while there is no matching traffic (in seconds). If an HTTP keepalive is
1475
- not specified, a default value (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.
1493
+ not specified, a default value will be used. For Global
1494
+ external HTTP(S) load balancer, the default value is 610 seconds, the
1495
+ minimum allowed value is 5 seconds and the maximum allowed value is 1200
1496
+ seconds. For cross-region internal HTTP(S) load balancer, the default
1497
+ value is 600 seconds, the minimum allowed value is 5 seconds, and the
1498
+ maximum allowed value is 600 seconds. For Global external HTTP(S) load
1499
+ balancer (classic), this option is not available publicly.
1479
1500
  """
1480
1501
  return pulumi.get(self, "http_keep_alive_timeout_sec")
1481
1502
 
@@ -151,6 +151,8 @@ defaultLabels: Optional[str]
151
151
 
152
152
  deploymentManagerCustomEndpoint: Optional[str]
153
153
 
154
+ developerConnectCustomEndpoint: Optional[str]
155
+
154
156
  dialogflowCustomEndpoint: Optional[str]
155
157
 
156
158
  dialogflowCxCustomEndpoint: Optional[str]
@@ -237,6 +239,8 @@ managedKafkaCustomEndpoint: Optional[str]
237
239
 
238
240
  memcacheCustomEndpoint: Optional[str]
239
241
 
242
+ memorystoreCustomEndpoint: Optional[str]
243
+
240
244
  migrationCenterCustomEndpoint: Optional[str]
241
245
 
242
246
  mlEngineCustomEndpoint: Optional[str]
@@ -299,6 +303,8 @@ scopes: Optional[str]
299
303
 
300
304
  secretManagerCustomEndpoint: Optional[str]
301
305
 
306
+ secretManagerRegionalCustomEndpoint: Optional[str]
307
+
302
308
  secureSourceManagerCustomEndpoint: Optional[str]
303
309
 
304
310
  securityCenterCustomEndpoint: Optional[str]
pulumi_gcp/config/vars.py CHANGED
@@ -293,6 +293,10 @@ class _ExportableConfig(types.ModuleType):
293
293
  def deployment_manager_custom_endpoint(self) -> Optional[str]:
294
294
  return __config__.get('deploymentManagerCustomEndpoint')
295
295
 
296
+ @property
297
+ def developer_connect_custom_endpoint(self) -> Optional[str]:
298
+ return __config__.get('developerConnectCustomEndpoint')
299
+
296
300
  @property
297
301
  def dialogflow_custom_endpoint(self) -> Optional[str]:
298
302
  return __config__.get('dialogflowCustomEndpoint')
@@ -465,6 +469,10 @@ class _ExportableConfig(types.ModuleType):
465
469
  def memcache_custom_endpoint(self) -> Optional[str]:
466
470
  return __config__.get('memcacheCustomEndpoint')
467
471
 
472
+ @property
473
+ def memorystore_custom_endpoint(self) -> Optional[str]:
474
+ return __config__.get('memorystoreCustomEndpoint')
475
+
468
476
  @property
469
477
  def migration_center_custom_endpoint(self) -> Optional[str]:
470
478
  return __config__.get('migrationCenterCustomEndpoint')
@@ -589,6 +597,10 @@ class _ExportableConfig(types.ModuleType):
589
597
  def secret_manager_custom_endpoint(self) -> Optional[str]:
590
598
  return __config__.get('secretManagerCustomEndpoint')
591
599
 
600
+ @property
601
+ def secret_manager_regional_custom_endpoint(self) -> Optional[str]:
602
+ return __config__.get('secretManagerRegionalCustomEndpoint')
603
+
592
604
  @property
593
605
  def secure_source_manager_custom_endpoint(self) -> Optional[str]:
594
606
  return __config__.get('secureSourceManagerCustomEndpoint')