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
@@ -21,18 +21,22 @@ class FolderArgs:
21
21
  def __init__(__self__, *,
22
22
  display_name: pulumi.Input[str],
23
23
  parent: pulumi.Input[str],
24
- deletion_protection: Optional[pulumi.Input[bool]] = None):
24
+ deletion_protection: Optional[pulumi.Input[bool]] = None,
25
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
25
26
  """
26
27
  The set of arguments for constructing a Folder resource.
27
28
  :param pulumi.Input[str] display_name: The folder’s display name.
28
29
  A folder’s display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters.
29
30
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
30
31
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
32
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
31
33
  """
32
34
  pulumi.set(__self__, "display_name", display_name)
33
35
  pulumi.set(__self__, "parent", parent)
34
36
  if deletion_protection is not None:
35
37
  pulumi.set(__self__, "deletion_protection", deletion_protection)
38
+ if tags is not None:
39
+ pulumi.set(__self__, "tags", tags)
36
40
 
37
41
  @property
38
42
  @pulumi.getter(name="displayName")
@@ -69,6 +73,18 @@ class FolderArgs:
69
73
  def deletion_protection(self, value: Optional[pulumi.Input[bool]]):
70
74
  pulumi.set(self, "deletion_protection", value)
71
75
 
76
+ @property
77
+ @pulumi.getter
78
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
79
+ """
80
+ A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
81
+ """
82
+ return pulumi.get(self, "tags")
83
+
84
+ @tags.setter
85
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
86
+ pulumi.set(self, "tags", value)
87
+
72
88
 
73
89
  @pulumi.input_type
74
90
  class _FolderState:
@@ -79,7 +95,8 @@ class _FolderState:
79
95
  folder_id: Optional[pulumi.Input[str]] = None,
80
96
  lifecycle_state: Optional[pulumi.Input[str]] = None,
81
97
  name: Optional[pulumi.Input[str]] = None,
82
- parent: Optional[pulumi.Input[str]] = None):
98
+ parent: Optional[pulumi.Input[str]] = None,
99
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
83
100
  """
84
101
  Input properties used for looking up and filtering Folder resources.
85
102
  :param pulumi.Input[str] create_time: Timestamp when the Folder was created. Assigned by the server.
@@ -91,6 +108,7 @@ class _FolderState:
91
108
  :param pulumi.Input[str] name: The resource name of the Folder. Its format is folders/{folder_id}.
92
109
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
93
110
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
111
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
94
112
  """
95
113
  if create_time is not None:
96
114
  pulumi.set(__self__, "create_time", create_time)
@@ -106,6 +124,8 @@ class _FolderState:
106
124
  pulumi.set(__self__, "name", name)
107
125
  if parent is not None:
108
126
  pulumi.set(__self__, "parent", parent)
127
+ if tags is not None:
128
+ pulumi.set(__self__, "tags", tags)
109
129
 
110
130
  @property
111
131
  @pulumi.getter(name="createTime")
@@ -191,6 +211,18 @@ class _FolderState:
191
211
  def parent(self, value: Optional[pulumi.Input[str]]):
192
212
  pulumi.set(self, "parent", value)
193
213
 
214
+ @property
215
+ @pulumi.getter
216
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
217
+ """
218
+ A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
219
+ """
220
+ return pulumi.get(self, "tags")
221
+
222
+ @tags.setter
223
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
224
+ pulumi.set(self, "tags", value)
225
+
194
226
 
195
227
  class Folder(pulumi.CustomResource):
196
228
  @overload
@@ -200,6 +232,7 @@ class Folder(pulumi.CustomResource):
200
232
  deletion_protection: Optional[pulumi.Input[bool]] = None,
201
233
  display_name: Optional[pulumi.Input[str]] = None,
202
234
  parent: Optional[pulumi.Input[str]] = None,
235
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
203
236
  __props__=None):
204
237
  """
205
238
  Allows management of a Google Cloud Platform folder. For more information see
@@ -216,21 +249,7 @@ class Folder(pulumi.CustomResource):
216
249
  [Access Control for Folders Using IAM](https://cloud.google.com/resource-manager/docs/access-control-folders)
217
250
  doc for more information.
218
251
 
219
- ## Example Usage
220
-
221
- ```python
222
- import pulumi
223
- import pulumi_gcp as gcp
224
-
225
- # Top-level folder under an organization.
226
- department1 = gcp.organizations.Folder("department1",
227
- display_name="Department 1",
228
- parent="organizations/1234567")
229
- # Folder nested under another folder.
230
- team_abc = gcp.organizations.Folder("team-abc",
231
- display_name="Team ABC",
232
- parent=department1.name)
233
- ```
252
+ > It may take a while for the attached tag bindings to be deleted after the folder is scheduled to be deleted.
234
253
 
235
254
  ## Import
236
255
 
@@ -256,6 +275,7 @@ class Folder(pulumi.CustomResource):
256
275
  A folder’s display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters.
257
276
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
258
277
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
278
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
259
279
  """
260
280
  ...
261
281
  @overload
@@ -278,21 +298,7 @@ class Folder(pulumi.CustomResource):
278
298
  [Access Control for Folders Using IAM](https://cloud.google.com/resource-manager/docs/access-control-folders)
279
299
  doc for more information.
280
300
 
281
- ## Example Usage
282
-
283
- ```python
284
- import pulumi
285
- import pulumi_gcp as gcp
286
-
287
- # Top-level folder under an organization.
288
- department1 = gcp.organizations.Folder("department1",
289
- display_name="Department 1",
290
- parent="organizations/1234567")
291
- # Folder nested under another folder.
292
- team_abc = gcp.organizations.Folder("team-abc",
293
- display_name="Team ABC",
294
- parent=department1.name)
295
- ```
301
+ > It may take a while for the attached tag bindings to be deleted after the folder is scheduled to be deleted.
296
302
 
297
303
  ## Import
298
304
 
@@ -330,6 +336,7 @@ class Folder(pulumi.CustomResource):
330
336
  deletion_protection: Optional[pulumi.Input[bool]] = None,
331
337
  display_name: Optional[pulumi.Input[str]] = None,
332
338
  parent: Optional[pulumi.Input[str]] = None,
339
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
333
340
  __props__=None):
334
341
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
335
342
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -346,6 +353,7 @@ class Folder(pulumi.CustomResource):
346
353
  if parent is None and not opts.urn:
347
354
  raise TypeError("Missing required property 'parent'")
348
355
  __props__.__dict__["parent"] = parent
356
+ __props__.__dict__["tags"] = tags
349
357
  __props__.__dict__["create_time"] = None
350
358
  __props__.__dict__["folder_id"] = None
351
359
  __props__.__dict__["lifecycle_state"] = None
@@ -366,7 +374,8 @@ class Folder(pulumi.CustomResource):
366
374
  folder_id: Optional[pulumi.Input[str]] = None,
367
375
  lifecycle_state: Optional[pulumi.Input[str]] = None,
368
376
  name: Optional[pulumi.Input[str]] = None,
369
- parent: Optional[pulumi.Input[str]] = None) -> 'Folder':
377
+ parent: Optional[pulumi.Input[str]] = None,
378
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'Folder':
370
379
  """
371
380
  Get an existing Folder resource's state with the given name, id, and optional extra
372
381
  properties used to qualify the lookup.
@@ -383,6 +392,7 @@ class Folder(pulumi.CustomResource):
383
392
  :param pulumi.Input[str] name: The resource name of the Folder. Its format is folders/{folder_id}.
384
393
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
385
394
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
395
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
386
396
  """
387
397
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
388
398
 
@@ -395,6 +405,7 @@ class Folder(pulumi.CustomResource):
395
405
  __props__.__dict__["lifecycle_state"] = lifecycle_state
396
406
  __props__.__dict__["name"] = name
397
407
  __props__.__dict__["parent"] = parent
408
+ __props__.__dict__["tags"] = tags
398
409
  return Folder(resource_name, opts=opts, __props__=__props__)
399
410
 
400
411
  @property
@@ -453,3 +464,11 @@ class Folder(pulumi.CustomResource):
453
464
  """
454
465
  return pulumi.get(self, "parent")
455
466
 
467
+ @property
468
+ @pulumi.getter
469
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
470
+ """
471
+ A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
472
+ """
473
+ return pulumi.get(self, "tags")
474
+
pulumi_gcp/provider.py CHANGED
@@ -88,6 +88,7 @@ class ProviderArgs:
88
88
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
89
89
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
90
90
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
91
+ developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
91
92
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
92
93
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
93
94
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -131,6 +132,7 @@ class ProviderArgs:
131
132
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
132
133
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
133
134
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
135
+ memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
134
136
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
135
137
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
136
138
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -162,6 +164,7 @@ class ProviderArgs:
162
164
  runtimeconfig_custom_endpoint: Optional[pulumi.Input[str]] = None,
163
165
  scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
164
166
  secret_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
167
+ secret_manager_regional_custom_endpoint: Optional[pulumi.Input[str]] = None,
165
168
  secure_source_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
166
169
  security_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
167
170
  security_center_management_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -331,6 +334,8 @@ class ProviderArgs:
331
334
  pulumi.set(__self__, "default_labels", default_labels)
332
335
  if deployment_manager_custom_endpoint is not None:
333
336
  pulumi.set(__self__, "deployment_manager_custom_endpoint", deployment_manager_custom_endpoint)
337
+ if developer_connect_custom_endpoint is not None:
338
+ pulumi.set(__self__, "developer_connect_custom_endpoint", developer_connect_custom_endpoint)
334
339
  if dialogflow_custom_endpoint is not None:
335
340
  pulumi.set(__self__, "dialogflow_custom_endpoint", dialogflow_custom_endpoint)
336
341
  if dialogflow_cx_custom_endpoint is not None:
@@ -417,6 +422,8 @@ class ProviderArgs:
417
422
  pulumi.set(__self__, "managed_kafka_custom_endpoint", managed_kafka_custom_endpoint)
418
423
  if memcache_custom_endpoint is not None:
419
424
  pulumi.set(__self__, "memcache_custom_endpoint", memcache_custom_endpoint)
425
+ if memorystore_custom_endpoint is not None:
426
+ pulumi.set(__self__, "memorystore_custom_endpoint", memorystore_custom_endpoint)
420
427
  if migration_center_custom_endpoint is not None:
421
428
  pulumi.set(__self__, "migration_center_custom_endpoint", migration_center_custom_endpoint)
422
429
  if ml_engine_custom_endpoint is not None:
@@ -483,6 +490,8 @@ class ProviderArgs:
483
490
  pulumi.set(__self__, "scopes", scopes)
484
491
  if secret_manager_custom_endpoint is not None:
485
492
  pulumi.set(__self__, "secret_manager_custom_endpoint", secret_manager_custom_endpoint)
493
+ if secret_manager_regional_custom_endpoint is not None:
494
+ pulumi.set(__self__, "secret_manager_regional_custom_endpoint", secret_manager_regional_custom_endpoint)
486
495
  if secure_source_manager_custom_endpoint is not None:
487
496
  pulumi.set(__self__, "secure_source_manager_custom_endpoint", secure_source_manager_custom_endpoint)
488
497
  if security_center_custom_endpoint is not None:
@@ -1158,6 +1167,15 @@ class ProviderArgs:
1158
1167
  def deployment_manager_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1159
1168
  pulumi.set(self, "deployment_manager_custom_endpoint", value)
1160
1169
 
1170
+ @property
1171
+ @pulumi.getter(name="developerConnectCustomEndpoint")
1172
+ def developer_connect_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1173
+ return pulumi.get(self, "developer_connect_custom_endpoint")
1174
+
1175
+ @developer_connect_custom_endpoint.setter
1176
+ def developer_connect_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1177
+ pulumi.set(self, "developer_connect_custom_endpoint", value)
1178
+
1161
1179
  @property
1162
1180
  @pulumi.getter(name="dialogflowCustomEndpoint")
1163
1181
  def dialogflow_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -1545,6 +1563,15 @@ class ProviderArgs:
1545
1563
  def memcache_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1546
1564
  pulumi.set(self, "memcache_custom_endpoint", value)
1547
1565
 
1566
+ @property
1567
+ @pulumi.getter(name="memorystoreCustomEndpoint")
1568
+ def memorystore_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1569
+ return pulumi.get(self, "memorystore_custom_endpoint")
1570
+
1571
+ @memorystore_custom_endpoint.setter
1572
+ def memorystore_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1573
+ pulumi.set(self, "memorystore_custom_endpoint", value)
1574
+
1548
1575
  @property
1549
1576
  @pulumi.getter(name="migrationCenterCustomEndpoint")
1550
1577
  def migration_center_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -1824,6 +1851,15 @@ class ProviderArgs:
1824
1851
  def secret_manager_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1825
1852
  pulumi.set(self, "secret_manager_custom_endpoint", value)
1826
1853
 
1854
+ @property
1855
+ @pulumi.getter(name="secretManagerRegionalCustomEndpoint")
1856
+ def secret_manager_regional_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1857
+ return pulumi.get(self, "secret_manager_regional_custom_endpoint")
1858
+
1859
+ @secret_manager_regional_custom_endpoint.setter
1860
+ def secret_manager_regional_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1861
+ pulumi.set(self, "secret_manager_regional_custom_endpoint", value)
1862
+
1827
1863
  @property
1828
1864
  @pulumi.getter(name="secureSourceManagerCustomEndpoint")
1829
1865
  def secure_source_manager_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -2168,6 +2204,7 @@ class Provider(pulumi.ProviderResource):
2168
2204
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
2169
2205
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2170
2206
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2207
+ developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
2171
2208
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
2172
2209
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
2173
2210
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -2211,6 +2248,7 @@ class Provider(pulumi.ProviderResource):
2211
2248
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
2212
2249
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
2213
2250
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
2251
+ memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
2214
2252
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2215
2253
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2216
2254
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2242,6 +2280,7 @@ class Provider(pulumi.ProviderResource):
2242
2280
  runtimeconfig_custom_endpoint: Optional[pulumi.Input[str]] = None,
2243
2281
  scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2244
2282
  secret_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2283
+ secret_manager_regional_custom_endpoint: Optional[pulumi.Input[str]] = None,
2245
2284
  secure_source_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2246
2285
  security_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2247
2286
  security_center_management_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2377,6 +2416,7 @@ class Provider(pulumi.ProviderResource):
2377
2416
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
2378
2417
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2379
2418
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2419
+ developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
2380
2420
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
2381
2421
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
2382
2422
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -2420,6 +2460,7 @@ class Provider(pulumi.ProviderResource):
2420
2460
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
2421
2461
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
2422
2462
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
2463
+ memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
2423
2464
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2424
2465
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2425
2466
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2451,6 +2492,7 @@ class Provider(pulumi.ProviderResource):
2451
2492
  runtimeconfig_custom_endpoint: Optional[pulumi.Input[str]] = None,
2452
2493
  scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2453
2494
  secret_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2495
+ secret_manager_regional_custom_endpoint: Optional[pulumi.Input[str]] = None,
2454
2496
  secure_source_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2455
2497
  security_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2456
2498
  security_center_management_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2558,6 +2600,7 @@ class Provider(pulumi.ProviderResource):
2558
2600
  __props__.__dict__["datastream_custom_endpoint"] = datastream_custom_endpoint
2559
2601
  __props__.__dict__["default_labels"] = pulumi.Output.from_input(default_labels).apply(pulumi.runtime.to_json) if default_labels is not None else None
2560
2602
  __props__.__dict__["deployment_manager_custom_endpoint"] = deployment_manager_custom_endpoint
2603
+ __props__.__dict__["developer_connect_custom_endpoint"] = developer_connect_custom_endpoint
2561
2604
  __props__.__dict__["dialogflow_custom_endpoint"] = dialogflow_custom_endpoint
2562
2605
  __props__.__dict__["dialogflow_cx_custom_endpoint"] = dialogflow_cx_custom_endpoint
2563
2606
  __props__.__dict__["disable_google_partner_name"] = pulumi.Output.from_input(disable_google_partner_name).apply(pulumi.runtime.to_json) if disable_google_partner_name is not None else None
@@ -2601,6 +2644,7 @@ class Provider(pulumi.ProviderResource):
2601
2644
  __props__.__dict__["looker_custom_endpoint"] = looker_custom_endpoint
2602
2645
  __props__.__dict__["managed_kafka_custom_endpoint"] = managed_kafka_custom_endpoint
2603
2646
  __props__.__dict__["memcache_custom_endpoint"] = memcache_custom_endpoint
2647
+ __props__.__dict__["memorystore_custom_endpoint"] = memorystore_custom_endpoint
2604
2648
  __props__.__dict__["migration_center_custom_endpoint"] = migration_center_custom_endpoint
2605
2649
  __props__.__dict__["ml_engine_custom_endpoint"] = ml_engine_custom_endpoint
2606
2650
  __props__.__dict__["monitoring_custom_endpoint"] = monitoring_custom_endpoint
@@ -2636,6 +2680,7 @@ class Provider(pulumi.ProviderResource):
2636
2680
  __props__.__dict__["runtimeconfig_custom_endpoint"] = runtimeconfig_custom_endpoint
2637
2681
  __props__.__dict__["scopes"] = pulumi.Output.from_input(scopes).apply(pulumi.runtime.to_json) if scopes is not None else None
2638
2682
  __props__.__dict__["secret_manager_custom_endpoint"] = secret_manager_custom_endpoint
2683
+ __props__.__dict__["secret_manager_regional_custom_endpoint"] = secret_manager_regional_custom_endpoint
2639
2684
  __props__.__dict__["secure_source_manager_custom_endpoint"] = secure_source_manager_custom_endpoint
2640
2685
  __props__.__dict__["security_center_custom_endpoint"] = security_center_custom_endpoint
2641
2686
  __props__.__dict__["security_center_management_custom_endpoint"] = security_center_management_custom_endpoint
@@ -3001,6 +3046,11 @@ class Provider(pulumi.ProviderResource):
3001
3046
  def deployment_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3002
3047
  return pulumi.get(self, "deployment_manager_custom_endpoint")
3003
3048
 
3049
+ @property
3050
+ @pulumi.getter(name="developerConnectCustomEndpoint")
3051
+ def developer_connect_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3052
+ return pulumi.get(self, "developer_connect_custom_endpoint")
3053
+
3004
3054
  @property
3005
3055
  @pulumi.getter(name="dialogflowCustomEndpoint")
3006
3056
  def dialogflow_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -3206,6 +3256,11 @@ class Provider(pulumi.ProviderResource):
3206
3256
  def memcache_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3207
3257
  return pulumi.get(self, "memcache_custom_endpoint")
3208
3258
 
3259
+ @property
3260
+ @pulumi.getter(name="memorystoreCustomEndpoint")
3261
+ def memorystore_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3262
+ return pulumi.get(self, "memorystore_custom_endpoint")
3263
+
3209
3264
  @property
3210
3265
  @pulumi.getter(name="migrationCenterCustomEndpoint")
3211
3266
  def migration_center_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -3356,6 +3411,11 @@ class Provider(pulumi.ProviderResource):
3356
3411
  def secret_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3357
3412
  return pulumi.get(self, "secret_manager_custom_endpoint")
3358
3413
 
3414
+ @property
3415
+ @pulumi.getter(name="secretManagerRegionalCustomEndpoint")
3416
+ def secret_manager_regional_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3417
+ return pulumi.get(self, "secret_manager_regional_custom_endpoint")
3418
+
3359
3419
  @property
3360
3420
  @pulumi.getter(name="secureSourceManagerCustomEndpoint")
3361
3421
  def secure_source_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -106,7 +106,7 @@ class SubscriptionArgs:
106
106
  retain_acked_messages is true, then this also configures the retention
107
107
  of acknowledged messages, and thus configures how far back in time a
108
108
  subscriptions.seek can be done. Defaults to 7 days. Cannot be more
109
- than 7 days (`"604800s"`) or less than 10 minutes (`"600s"`).
109
+ than 31 days (`"2678400s"`) or less than 10 minutes (`"600s"`).
110
110
  A duration in seconds with up to nine fractional digits, terminated
111
111
  by 's'. Example: `"600.5s"`.
112
112
  :param pulumi.Input[str] name: Name of the subscription.
@@ -338,7 +338,7 @@ class SubscriptionArgs:
338
338
  retain_acked_messages is true, then this also configures the retention
339
339
  of acknowledged messages, and thus configures how far back in time a
340
340
  subscriptions.seek can be done. Defaults to 7 days. Cannot be more
341
- than 7 days (`"604800s"`) or less than 10 minutes (`"600s"`).
341
+ than 31 days (`"2678400s"`) or less than 10 minutes (`"600s"`).
342
342
  A duration in seconds with up to nine fractional digits, terminated
343
343
  by 's'. Example: `"600.5s"`.
344
344
  """
@@ -504,7 +504,7 @@ class _SubscriptionState:
504
504
  retain_acked_messages is true, then this also configures the retention
505
505
  of acknowledged messages, and thus configures how far back in time a
506
506
  subscriptions.seek can be done. Defaults to 7 days. Cannot be more
507
- than 7 days (`"604800s"`) or less than 10 minutes (`"600s"`).
507
+ than 31 days (`"2678400s"`) or less than 10 minutes (`"600s"`).
508
508
  A duration in seconds with up to nine fractional digits, terminated
509
509
  by 's'. Example: `"600.5s"`.
510
510
  :param pulumi.Input[str] name: Name of the subscription.
@@ -744,7 +744,7 @@ class _SubscriptionState:
744
744
  retain_acked_messages is true, then this also configures the retention
745
745
  of acknowledged messages, and thus configures how far back in time a
746
746
  subscriptions.seek can be done. Defaults to 7 days. Cannot be more
747
- than 7 days (`"604800s"`) or less than 10 minutes (`"600s"`).
747
+ than 31 days (`"2678400s"`) or less than 10 minutes (`"600s"`).
748
748
  A duration in seconds with up to nine fractional digits, terminated
749
749
  by 's'. Example: `"600.5s"`.
750
750
  """
@@ -937,6 +937,24 @@ class Subscription(pulumi.CustomResource):
937
937
  },
938
938
  enable_message_ordering=False)
939
939
  ```
940
+ ### Pubsub Subscription Pull Filter
941
+
942
+ ```python
943
+ import pulumi
944
+ import pulumi_gcp as gcp
945
+
946
+ example = gcp.pubsub.Topic("example", name="example-topic")
947
+ example_subscription = gcp.pubsub.Subscription("example",
948
+ name="example-subscription",
949
+ topic=example.id,
950
+ labels={
951
+ "foo": "bar",
952
+ },
953
+ filter=\"\"\" attributes.foo = "foo"
954
+ AND attributes.bar = "bar"
955
+ \"\"\",
956
+ ack_deadline_seconds=20)
957
+ ```
940
958
  ### Pubsub Subscription Dead Letter
941
959
 
942
960
  ```python
@@ -1292,7 +1310,7 @@ class Subscription(pulumi.CustomResource):
1292
1310
  retain_acked_messages is true, then this also configures the retention
1293
1311
  of acknowledged messages, and thus configures how far back in time a
1294
1312
  subscriptions.seek can be done. Defaults to 7 days. Cannot be more
1295
- than 7 days (`"604800s"`) or less than 10 minutes (`"600s"`).
1313
+ than 31 days (`"2678400s"`) or less than 10 minutes (`"600s"`).
1296
1314
  A duration in seconds with up to nine fractional digits, terminated
1297
1315
  by 's'. Example: `"600.5s"`.
1298
1316
  :param pulumi.Input[str] name: Name of the subscription.
@@ -1383,6 +1401,24 @@ class Subscription(pulumi.CustomResource):
1383
1401
  },
1384
1402
  enable_message_ordering=False)
1385
1403
  ```
1404
+ ### Pubsub Subscription Pull Filter
1405
+
1406
+ ```python
1407
+ import pulumi
1408
+ import pulumi_gcp as gcp
1409
+
1410
+ example = gcp.pubsub.Topic("example", name="example-topic")
1411
+ example_subscription = gcp.pubsub.Subscription("example",
1412
+ name="example-subscription",
1413
+ topic=example.id,
1414
+ labels={
1415
+ "foo": "bar",
1416
+ },
1417
+ filter=\"\"\" attributes.foo = "foo"
1418
+ AND attributes.bar = "bar"
1419
+ \"\"\",
1420
+ ack_deadline_seconds=20)
1421
+ ```
1386
1422
  ### Pubsub Subscription Dead Letter
1387
1423
 
1388
1424
  ```python
@@ -1834,7 +1870,7 @@ class Subscription(pulumi.CustomResource):
1834
1870
  retain_acked_messages is true, then this also configures the retention
1835
1871
  of acknowledged messages, and thus configures how far back in time a
1836
1872
  subscriptions.seek can be done. Defaults to 7 days. Cannot be more
1837
- than 7 days (`"604800s"`) or less than 10 minutes (`"600s"`).
1873
+ than 31 days (`"2678400s"`) or less than 10 minutes (`"600s"`).
1838
1874
  A duration in seconds with up to nine fractional digits, terminated
1839
1875
  by 's'. Example: `"600.5s"`.
1840
1876
  :param pulumi.Input[str] name: Name of the subscription.
@@ -2021,7 +2057,7 @@ class Subscription(pulumi.CustomResource):
2021
2057
  retain_acked_messages is true, then this also configures the retention
2022
2058
  of acknowledged messages, and thus configures how far back in time a
2023
2059
  subscriptions.seek can be done. Defaults to 7 days. Cannot be more
2024
- than 7 days (`"604800s"`) or less than 10 minutes (`"600s"`).
2060
+ than 31 days (`"2678400s"`) or less than 10 minutes (`"600s"`).
2025
2061
  A duration in seconds with up to nine fractional digits, terminated
2026
2062
  by 's'. Example: `"600.5s"`.
2027
2063
  """
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "gcp",
4
- "version": "8.2.0-alpha.1726671837"
4
+ "version": "8.3.0"
5
5
  }
@@ -5,11 +5,19 @@
5
5
  from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
+ from .get_regional_secret import *
9
+ from .get_regional_secret_iam_policy import *
10
+ from .get_regional_secret_version import *
8
11
  from .get_secret import *
9
12
  from .get_secret_iam_policy import *
10
13
  from .get_secret_version import *
11
14
  from .get_secret_version_access import *
12
15
  from .get_secrets import *
16
+ from .regional_secret import *
17
+ from .regional_secret_iam_binding import *
18
+ from .regional_secret_iam_member import *
19
+ from .regional_secret_iam_policy import *
20
+ from .regional_secret_version import *
13
21
  from .secret import *
14
22
  from .secret_iam_binding import *
15
23
  from .secret_iam_member import *