pulumi-mongodbatlas 4.1.0a1767140082__py3-none-any.whl → 4.2.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 (44) hide show
  1. pulumi_mongodbatlas/__init__.py +75 -0
  2. pulumi_mongodbatlas/_inputs.py +423 -49
  3. pulumi_mongodbatlas/advanced_cluster.py +7 -7
  4. pulumi_mongodbatlas/api_key_project_assignment.py +16 -2
  5. pulumi_mongodbatlas/get_access_list_api_key.py +19 -14
  6. pulumi_mongodbatlas/get_access_list_api_keys.py +13 -14
  7. pulumi_mongodbatlas/get_api_key_project_assignment.py +16 -2
  8. pulumi_mongodbatlas/get_api_key_project_assignments.py +16 -2
  9. pulumi_mongodbatlas/get_maintenance_window.py +1 -1
  10. pulumi_mongodbatlas/get_project_ip_access_list.py +63 -65
  11. pulumi_mongodbatlas/get_project_service_account.py +185 -0
  12. pulumi_mongodbatlas/get_project_service_account_access_list_entries.py +195 -0
  13. pulumi_mongodbatlas/get_project_service_account_access_list_entry.py +276 -0
  14. pulumi_mongodbatlas/get_project_service_account_secret.py +244 -0
  15. pulumi_mongodbatlas/get_project_service_accounts.py +109 -0
  16. pulumi_mongodbatlas/get_search_index.py +15 -1
  17. pulumi_mongodbatlas/get_service_account.py +185 -0
  18. pulumi_mongodbatlas/get_service_account_access_list_entries.py +195 -0
  19. pulumi_mongodbatlas/get_service_account_access_list_entry.py +276 -0
  20. pulumi_mongodbatlas/get_service_account_project_assignment.py +176 -0
  21. pulumi_mongodbatlas/get_service_account_project_assignments.py +177 -0
  22. pulumi_mongodbatlas/get_service_account_secret.py +244 -0
  23. pulumi_mongodbatlas/get_service_accounts.py +109 -0
  24. pulumi_mongodbatlas/get_stream_connection.py +46 -2
  25. pulumi_mongodbatlas/get_stream_processor.py +16 -3
  26. pulumi_mongodbatlas/get_stream_processors.py +4 -2
  27. pulumi_mongodbatlas/maintenance_window.py +21 -21
  28. pulumi_mongodbatlas/outputs.py +1186 -120
  29. pulumi_mongodbatlas/project_ip_access_list.py +71 -87
  30. pulumi_mongodbatlas/project_service_account.py +444 -0
  31. pulumi_mongodbatlas/project_service_account_access_list_entry.py +490 -0
  32. pulumi_mongodbatlas/project_service_account_secret.py +491 -0
  33. pulumi_mongodbatlas/pulumi-plugin.json +1 -1
  34. pulumi_mongodbatlas/search_index.py +47 -0
  35. pulumi_mongodbatlas/service_account.py +444 -0
  36. pulumi_mongodbatlas/service_account_access_list_entry.py +490 -0
  37. pulumi_mongodbatlas/service_account_project_assignment.py +314 -0
  38. pulumi_mongodbatlas/service_account_secret.py +491 -0
  39. pulumi_mongodbatlas/stream_connection.py +185 -7
  40. pulumi_mongodbatlas/stream_processor.py +51 -2
  41. {pulumi_mongodbatlas-4.1.0a1767140082.dist-info → pulumi_mongodbatlas-4.2.0.dist-info}/METADATA +1 -1
  42. {pulumi_mongodbatlas-4.1.0a1767140082.dist-info → pulumi_mongodbatlas-4.2.0.dist-info}/RECORD +44 -25
  43. {pulumi_mongodbatlas-4.1.0a1767140082.dist-info → pulumi_mongodbatlas-4.2.0.dist-info}/WHEEL +1 -1
  44. {pulumi_mongodbatlas-4.1.0a1767140082.dist-info → pulumi_mongodbatlas-4.2.0.dist-info}/top_level.txt +0 -0
@@ -231,6 +231,8 @@ __all__ = [
231
231
  'ProjectIpAddressesServicesClusterArgsDict',
232
232
  'ProjectLimitArgs',
233
233
  'ProjectLimitArgsDict',
234
+ 'ProjectServiceAccountSecretArgs',
235
+ 'ProjectServiceAccountSecretArgsDict',
234
236
  'ProjectTeamArgs',
235
237
  'ProjectTeamArgsDict',
236
238
  'ProviderAssumeRoleArgs',
@@ -255,6 +257,8 @@ __all__ = [
255
257
  'ServerlessInstanceLinkArgsDict',
256
258
  'ServerlessInstanceTagArgs',
257
259
  'ServerlessInstanceTagArgsDict',
260
+ 'ServiceAccountSecretArgs',
261
+ 'ServiceAccountSecretArgsDict',
258
262
  'StreamConnectionAuthenticationArgs',
259
263
  'StreamConnectionAuthenticationArgsDict',
260
264
  'StreamConnectionAwsArgs',
@@ -265,6 +269,8 @@ __all__ = [
265
269
  'StreamConnectionNetworkingArgsDict',
266
270
  'StreamConnectionNetworkingAccessArgs',
267
271
  'StreamConnectionNetworkingAccessArgsDict',
272
+ 'StreamConnectionSchemaRegistryAuthenticationArgs',
273
+ 'StreamConnectionSchemaRegistryAuthenticationArgsDict',
268
274
  'StreamConnectionSecurityArgs',
269
275
  'StreamConnectionSecurityArgsDict',
270
276
  'StreamInstanceDataProcessRegionArgs',
@@ -1959,15 +1965,15 @@ if not MYPY:
1959
1965
  class AdvancedClusterTimeoutsArgsDict(TypedDict):
1960
1966
  create: NotRequired[pulumi.Input[_builtins.str]]
1961
1967
  """
1962
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
1968
+ (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
1963
1969
  """
1964
1970
  delete: NotRequired[pulumi.Input[_builtins.str]]
1965
1971
  """
1966
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
1972
+ (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
1967
1973
  """
1968
1974
  update: NotRequired[pulumi.Input[_builtins.str]]
1969
1975
  """
1970
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
1976
+ (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
1971
1977
  """
1972
1978
  elif False:
1973
1979
  AdvancedClusterTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
@@ -1979,9 +1985,9 @@ class AdvancedClusterTimeoutsArgs:
1979
1985
  delete: Optional[pulumi.Input[_builtins.str]] = None,
1980
1986
  update: Optional[pulumi.Input[_builtins.str]] = None):
1981
1987
  """
1982
- :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
1983
- :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
1984
- :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
1988
+ :param pulumi.Input[_builtins.str] create: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
1989
+ :param pulumi.Input[_builtins.str] delete: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
1990
+ :param pulumi.Input[_builtins.str] update: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
1985
1991
  """
1986
1992
  if create is not None:
1987
1993
  pulumi.set(__self__, "create", create)
@@ -1994,7 +2000,7 @@ class AdvancedClusterTimeoutsArgs:
1994
2000
  @pulumi.getter
1995
2001
  def create(self) -> Optional[pulumi.Input[_builtins.str]]:
1996
2002
  """
1997
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
2003
+ (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
1998
2004
  """
1999
2005
  return pulumi.get(self, "create")
2000
2006
 
@@ -2006,7 +2012,7 @@ class AdvancedClusterTimeoutsArgs:
2006
2012
  @pulumi.getter
2007
2013
  def delete(self) -> Optional[pulumi.Input[_builtins.str]]:
2008
2014
  """
2009
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
2015
+ (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
2010
2016
  """
2011
2017
  return pulumi.get(self, "delete")
2012
2018
 
@@ -2018,7 +2024,7 @@ class AdvancedClusterTimeoutsArgs:
2018
2024
  @pulumi.getter
2019
2025
  def update(self) -> Optional[pulumi.Input[_builtins.str]]:
2020
2026
  """
2021
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
2027
+ (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
2022
2028
  """
2023
2029
  return pulumi.get(self, "update")
2024
2030
 
@@ -6600,6 +6606,8 @@ if not MYPY:
6600
6606
  role_name: pulumi.Input[_builtins.str]
6601
6607
  """
6602
6608
  Name of the inherited role. This can either be another custom role or a built-in role.
6609
+
6610
+ > **NOTE** Built-in roles are present in clusters by default and do not need to be redefined for their properties to be inherited by a custom role.
6603
6611
  """
6604
6612
  elif False:
6605
6613
  CustomDbRoleInheritedRoleArgsDict: TypeAlias = Mapping[str, Any]
@@ -6614,6 +6622,8 @@ class CustomDbRoleInheritedRoleArgs:
6614
6622
 
6615
6623
  > **NOTE** This value should be admin for all roles except read and readWrite.
6616
6624
  :param pulumi.Input[_builtins.str] role_name: Name of the inherited role. This can either be another custom role or a built-in role.
6625
+
6626
+ > **NOTE** Built-in roles are present in clusters by default and do not need to be redefined for their properties to be inherited by a custom role.
6617
6627
  """
6618
6628
  pulumi.set(__self__, "database_name", database_name)
6619
6629
  pulumi.set(__self__, "role_name", role_name)
@@ -6637,6 +6647,8 @@ class CustomDbRoleInheritedRoleArgs:
6637
6647
  def role_name(self) -> pulumi.Input[_builtins.str]:
6638
6648
  """
6639
6649
  Name of the inherited role. This can either be another custom role or a built-in role.
6650
+
6651
+ > **NOTE** Built-in roles are present in clusters by default and do not need to be redefined for their properties to be inherited by a custom role.
6640
6652
  """
6641
6653
  return pulumi.get(self, "role_name")
6642
6654
 
@@ -7339,11 +7351,11 @@ if not MYPY:
7339
7351
  class EncryptionAtRestPrivateEndpointTimeoutsArgsDict(TypedDict):
7340
7352
  create: NotRequired[pulumi.Input[_builtins.str]]
7341
7353
  """
7342
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
7354
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
7343
7355
  """
7344
7356
  delete: NotRequired[pulumi.Input[_builtins.str]]
7345
7357
  """
7346
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
7358
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
7347
7359
  """
7348
7360
  elif False:
7349
7361
  EncryptionAtRestPrivateEndpointTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
@@ -7354,8 +7366,8 @@ class EncryptionAtRestPrivateEndpointTimeoutsArgs:
7354
7366
  create: Optional[pulumi.Input[_builtins.str]] = None,
7355
7367
  delete: Optional[pulumi.Input[_builtins.str]] = None):
7356
7368
  """
7357
- :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
7358
- :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
7369
+ :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
7370
+ :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
7359
7371
  """
7360
7372
  if create is not None:
7361
7373
  pulumi.set(__self__, "create", create)
@@ -7366,7 +7378,7 @@ class EncryptionAtRestPrivateEndpointTimeoutsArgs:
7366
7378
  @pulumi.getter
7367
7379
  def create(self) -> Optional[pulumi.Input[_builtins.str]]:
7368
7380
  """
7369
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
7381
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
7370
7382
  """
7371
7383
  return pulumi.get(self, "create")
7372
7384
 
@@ -7378,7 +7390,7 @@ class EncryptionAtRestPrivateEndpointTimeoutsArgs:
7378
7390
  @pulumi.getter
7379
7391
  def delete(self) -> Optional[pulumi.Input[_builtins.str]]:
7380
7392
  """
7381
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
7393
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
7382
7394
  """
7383
7395
  return pulumi.get(self, "delete")
7384
7396
 
@@ -8743,15 +8755,15 @@ if not MYPY:
8743
8755
  class FlexClusterTimeoutsArgsDict(TypedDict):
8744
8756
  create: NotRequired[pulumi.Input[_builtins.str]]
8745
8757
  """
8746
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8758
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
8747
8759
  """
8748
8760
  delete: NotRequired[pulumi.Input[_builtins.str]]
8749
8761
  """
8750
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
8762
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
8751
8763
  """
8752
8764
  update: NotRequired[pulumi.Input[_builtins.str]]
8753
8765
  """
8754
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8766
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
8755
8767
  """
8756
8768
  elif False:
8757
8769
  FlexClusterTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
@@ -8763,9 +8775,9 @@ class FlexClusterTimeoutsArgs:
8763
8775
  delete: Optional[pulumi.Input[_builtins.str]] = None,
8764
8776
  update: Optional[pulumi.Input[_builtins.str]] = None):
8765
8777
  """
8766
- :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8767
- :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
8768
- :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8778
+ :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
8779
+ :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
8780
+ :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
8769
8781
  """
8770
8782
  if create is not None:
8771
8783
  pulumi.set(__self__, "create", create)
@@ -8778,7 +8790,7 @@ class FlexClusterTimeoutsArgs:
8778
8790
  @pulumi.getter
8779
8791
  def create(self) -> Optional[pulumi.Input[_builtins.str]]:
8780
8792
  """
8781
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8793
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
8782
8794
  """
8783
8795
  return pulumi.get(self, "create")
8784
8796
 
@@ -8790,7 +8802,7 @@ class FlexClusterTimeoutsArgs:
8790
8802
  @pulumi.getter
8791
8803
  def delete(self) -> Optional[pulumi.Input[_builtins.str]]:
8792
8804
  """
8793
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
8805
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
8794
8806
  """
8795
8807
  return pulumi.get(self, "delete")
8796
8808
 
@@ -8802,7 +8814,7 @@ class FlexClusterTimeoutsArgs:
8802
8814
  @pulumi.getter
8803
8815
  def update(self) -> Optional[pulumi.Input[_builtins.str]]:
8804
8816
  """
8805
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8817
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
8806
8818
  """
8807
8819
  return pulumi.get(self, "update")
8808
8820
 
@@ -9717,6 +9729,10 @@ if not MYPY:
9717
9729
  """
9718
9730
  A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
9719
9731
  """
9732
+ update: NotRequired[pulumi.Input[_builtins.str]]
9733
+ """
9734
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
9735
+ """
9720
9736
  elif False:
9721
9737
  ProjectIpAccessListTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
9722
9738
 
@@ -9724,15 +9740,19 @@ elif False:
9724
9740
  class ProjectIpAccessListTimeoutsArgs:
9725
9741
  def __init__(__self__, *,
9726
9742
  delete: Optional[pulumi.Input[_builtins.str]] = None,
9727
- read: Optional[pulumi.Input[_builtins.str]] = None):
9743
+ read: Optional[pulumi.Input[_builtins.str]] = None,
9744
+ update: Optional[pulumi.Input[_builtins.str]] = None):
9728
9745
  """
9729
9746
  :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
9730
9747
  :param pulumi.Input[_builtins.str] read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
9748
+ :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
9731
9749
  """
9732
9750
  if delete is not None:
9733
9751
  pulumi.set(__self__, "delete", delete)
9734
9752
  if read is not None:
9735
9753
  pulumi.set(__self__, "read", read)
9754
+ if update is not None:
9755
+ pulumi.set(__self__, "update", update)
9736
9756
 
9737
9757
  @_builtins.property
9738
9758
  @pulumi.getter
@@ -9758,6 +9778,18 @@ class ProjectIpAccessListTimeoutsArgs:
9758
9778
  def read(self, value: Optional[pulumi.Input[_builtins.str]]):
9759
9779
  pulumi.set(self, "read", value)
9760
9780
 
9781
+ @_builtins.property
9782
+ @pulumi.getter
9783
+ def update(self) -> Optional[pulumi.Input[_builtins.str]]:
9784
+ """
9785
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
9786
+ """
9787
+ return pulumi.get(self, "update")
9788
+
9789
+ @update.setter
9790
+ def update(self, value: Optional[pulumi.Input[_builtins.str]]):
9791
+ pulumi.set(self, "update", value)
9792
+
9761
9793
 
9762
9794
  if not MYPY:
9763
9795
  class ProjectIpAddressesArgsDict(TypedDict):
@@ -9943,6 +9975,138 @@ class ProjectLimitArgs:
9943
9975
  pulumi.set(self, "maximum_limit", value)
9944
9976
 
9945
9977
 
9978
+ if not MYPY:
9979
+ class ProjectServiceAccountSecretArgsDict(TypedDict):
9980
+ created_at: NotRequired[pulumi.Input[_builtins.str]]
9981
+ """
9982
+ The date that the secret was created on. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
9983
+ """
9984
+ expires_at: NotRequired[pulumi.Input[_builtins.str]]
9985
+ """
9986
+ The date for the expiration of the secret. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
9987
+ """
9988
+ last_used_at: NotRequired[pulumi.Input[_builtins.str]]
9989
+ """
9990
+ The last time the secret was used. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
9991
+ """
9992
+ masked_secret_value: NotRequired[pulumi.Input[_builtins.str]]
9993
+ """
9994
+ The masked Service Account secret.
9995
+ """
9996
+ secret: NotRequired[pulumi.Input[_builtins.str]]
9997
+ """
9998
+ The secret for the Service Account. It will be returned only the first time after creation.
9999
+ """
10000
+ secret_id: NotRequired[pulumi.Input[_builtins.str]]
10001
+ """
10002
+ Unique 24-hexadecimal digit string that identifies the secret.
10003
+ """
10004
+ elif False:
10005
+ ProjectServiceAccountSecretArgsDict: TypeAlias = Mapping[str, Any]
10006
+
10007
+ @pulumi.input_type
10008
+ class ProjectServiceAccountSecretArgs:
10009
+ def __init__(__self__, *,
10010
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
10011
+ expires_at: Optional[pulumi.Input[_builtins.str]] = None,
10012
+ last_used_at: Optional[pulumi.Input[_builtins.str]] = None,
10013
+ masked_secret_value: Optional[pulumi.Input[_builtins.str]] = None,
10014
+ secret: Optional[pulumi.Input[_builtins.str]] = None,
10015
+ secret_id: Optional[pulumi.Input[_builtins.str]] = None):
10016
+ """
10017
+ :param pulumi.Input[_builtins.str] created_at: The date that the secret was created on. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10018
+ :param pulumi.Input[_builtins.str] expires_at: The date for the expiration of the secret. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10019
+ :param pulumi.Input[_builtins.str] last_used_at: The last time the secret was used. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10020
+ :param pulumi.Input[_builtins.str] masked_secret_value: The masked Service Account secret.
10021
+ :param pulumi.Input[_builtins.str] secret: The secret for the Service Account. It will be returned only the first time after creation.
10022
+ :param pulumi.Input[_builtins.str] secret_id: Unique 24-hexadecimal digit string that identifies the secret.
10023
+ """
10024
+ if created_at is not None:
10025
+ pulumi.set(__self__, "created_at", created_at)
10026
+ if expires_at is not None:
10027
+ pulumi.set(__self__, "expires_at", expires_at)
10028
+ if last_used_at is not None:
10029
+ pulumi.set(__self__, "last_used_at", last_used_at)
10030
+ if masked_secret_value is not None:
10031
+ pulumi.set(__self__, "masked_secret_value", masked_secret_value)
10032
+ if secret is not None:
10033
+ pulumi.set(__self__, "secret", secret)
10034
+ if secret_id is not None:
10035
+ pulumi.set(__self__, "secret_id", secret_id)
10036
+
10037
+ @_builtins.property
10038
+ @pulumi.getter(name="createdAt")
10039
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
10040
+ """
10041
+ The date that the secret was created on. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10042
+ """
10043
+ return pulumi.get(self, "created_at")
10044
+
10045
+ @created_at.setter
10046
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
10047
+ pulumi.set(self, "created_at", value)
10048
+
10049
+ @_builtins.property
10050
+ @pulumi.getter(name="expiresAt")
10051
+ def expires_at(self) -> Optional[pulumi.Input[_builtins.str]]:
10052
+ """
10053
+ The date for the expiration of the secret. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10054
+ """
10055
+ return pulumi.get(self, "expires_at")
10056
+
10057
+ @expires_at.setter
10058
+ def expires_at(self, value: Optional[pulumi.Input[_builtins.str]]):
10059
+ pulumi.set(self, "expires_at", value)
10060
+
10061
+ @_builtins.property
10062
+ @pulumi.getter(name="lastUsedAt")
10063
+ def last_used_at(self) -> Optional[pulumi.Input[_builtins.str]]:
10064
+ """
10065
+ The last time the secret was used. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10066
+ """
10067
+ return pulumi.get(self, "last_used_at")
10068
+
10069
+ @last_used_at.setter
10070
+ def last_used_at(self, value: Optional[pulumi.Input[_builtins.str]]):
10071
+ pulumi.set(self, "last_used_at", value)
10072
+
10073
+ @_builtins.property
10074
+ @pulumi.getter(name="maskedSecretValue")
10075
+ def masked_secret_value(self) -> Optional[pulumi.Input[_builtins.str]]:
10076
+ """
10077
+ The masked Service Account secret.
10078
+ """
10079
+ return pulumi.get(self, "masked_secret_value")
10080
+
10081
+ @masked_secret_value.setter
10082
+ def masked_secret_value(self, value: Optional[pulumi.Input[_builtins.str]]):
10083
+ pulumi.set(self, "masked_secret_value", value)
10084
+
10085
+ @_builtins.property
10086
+ @pulumi.getter
10087
+ def secret(self) -> Optional[pulumi.Input[_builtins.str]]:
10088
+ """
10089
+ The secret for the Service Account. It will be returned only the first time after creation.
10090
+ """
10091
+ return pulumi.get(self, "secret")
10092
+
10093
+ @secret.setter
10094
+ def secret(self, value: Optional[pulumi.Input[_builtins.str]]):
10095
+ pulumi.set(self, "secret", value)
10096
+
10097
+ @_builtins.property
10098
+ @pulumi.getter(name="secretId")
10099
+ def secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
10100
+ """
10101
+ Unique 24-hexadecimal digit string that identifies the secret.
10102
+ """
10103
+ return pulumi.get(self, "secret_id")
10104
+
10105
+ @secret_id.setter
10106
+ def secret_id(self, value: Optional[pulumi.Input[_builtins.str]]):
10107
+ pulumi.set(self, "secret_id", value)
10108
+
10109
+
9946
10110
  if not MYPY:
9947
10111
  class ProjectTeamArgsDict(TypedDict):
9948
10112
  role_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
@@ -10035,15 +10199,15 @@ if not MYPY:
10035
10199
  class PushBasedLogExportTimeoutsArgsDict(TypedDict):
10036
10200
  create: NotRequired[pulumi.Input[_builtins.str]]
10037
10201
  """
10038
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10202
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
10039
10203
  """
10040
10204
  delete: NotRequired[pulumi.Input[_builtins.str]]
10041
10205
  """
10042
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
10206
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `15m`.
10043
10207
  """
10044
10208
  update: NotRequired[pulumi.Input[_builtins.str]]
10045
10209
  """
10046
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10210
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
10047
10211
  """
10048
10212
  elif False:
10049
10213
  PushBasedLogExportTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
@@ -10055,9 +10219,9 @@ class PushBasedLogExportTimeoutsArgs:
10055
10219
  delete: Optional[pulumi.Input[_builtins.str]] = None,
10056
10220
  update: Optional[pulumi.Input[_builtins.str]] = None):
10057
10221
  """
10058
- :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10059
- :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
10060
- :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10222
+ :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
10223
+ :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `15m`.
10224
+ :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
10061
10225
  """
10062
10226
  if create is not None:
10063
10227
  pulumi.set(__self__, "create", create)
@@ -10070,7 +10234,7 @@ class PushBasedLogExportTimeoutsArgs:
10070
10234
  @pulumi.getter
10071
10235
  def create(self) -> Optional[pulumi.Input[_builtins.str]]:
10072
10236
  """
10073
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10237
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
10074
10238
  """
10075
10239
  return pulumi.get(self, "create")
10076
10240
 
@@ -10082,7 +10246,7 @@ class PushBasedLogExportTimeoutsArgs:
10082
10246
  @pulumi.getter
10083
10247
  def delete(self) -> Optional[pulumi.Input[_builtins.str]]:
10084
10248
  """
10085
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
10249
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `15m`.
10086
10250
  """
10087
10251
  return pulumi.get(self, "delete")
10088
10252
 
@@ -10094,7 +10258,7 @@ class PushBasedLogExportTimeoutsArgs:
10094
10258
  @pulumi.getter
10095
10259
  def update(self) -> Optional[pulumi.Input[_builtins.str]]:
10096
10260
  """
10097
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10261
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
10098
10262
  """
10099
10263
  return pulumi.get(self, "update")
10100
10264
 
@@ -10312,15 +10476,15 @@ if not MYPY:
10312
10476
  class SearchDeploymentTimeoutsArgsDict(TypedDict):
10313
10477
  create: NotRequired[pulumi.Input[_builtins.str]]
10314
10478
  """
10315
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10479
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
10316
10480
  """
10317
10481
  delete: NotRequired[pulumi.Input[_builtins.str]]
10318
10482
  """
10319
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
10483
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
10320
10484
  """
10321
10485
  update: NotRequired[pulumi.Input[_builtins.str]]
10322
10486
  """
10323
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10487
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
10324
10488
  """
10325
10489
  elif False:
10326
10490
  SearchDeploymentTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
@@ -10332,9 +10496,9 @@ class SearchDeploymentTimeoutsArgs:
10332
10496
  delete: Optional[pulumi.Input[_builtins.str]] = None,
10333
10497
  update: Optional[pulumi.Input[_builtins.str]] = None):
10334
10498
  """
10335
- :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10336
- :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
10337
- :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10499
+ :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
10500
+ :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
10501
+ :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
10338
10502
  """
10339
10503
  if create is not None:
10340
10504
  pulumi.set(__self__, "create", create)
@@ -10347,7 +10511,7 @@ class SearchDeploymentTimeoutsArgs:
10347
10511
  @pulumi.getter
10348
10512
  def create(self) -> Optional[pulumi.Input[_builtins.str]]:
10349
10513
  """
10350
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10514
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
10351
10515
  """
10352
10516
  return pulumi.get(self, "create")
10353
10517
 
@@ -10359,7 +10523,7 @@ class SearchDeploymentTimeoutsArgs:
10359
10523
  @pulumi.getter
10360
10524
  def delete(self) -> Optional[pulumi.Input[_builtins.str]]:
10361
10525
  """
10362
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
10526
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
10363
10527
  """
10364
10528
  return pulumi.get(self, "delete")
10365
10529
 
@@ -10371,7 +10535,7 @@ class SearchDeploymentTimeoutsArgs:
10371
10535
  @pulumi.getter
10372
10536
  def update(self) -> Optional[pulumi.Input[_builtins.str]]:
10373
10537
  """
10374
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
10538
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
10375
10539
  """
10376
10540
  return pulumi.get(self, "update")
10377
10541
 
@@ -10592,6 +10756,138 @@ class ServerlessInstanceTagArgs:
10592
10756
  pulumi.set(self, "value", value)
10593
10757
 
10594
10758
 
10759
+ if not MYPY:
10760
+ class ServiceAccountSecretArgsDict(TypedDict):
10761
+ created_at: NotRequired[pulumi.Input[_builtins.str]]
10762
+ """
10763
+ The date that the secret was created on. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10764
+ """
10765
+ expires_at: NotRequired[pulumi.Input[_builtins.str]]
10766
+ """
10767
+ The date for the expiration of the secret. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10768
+ """
10769
+ last_used_at: NotRequired[pulumi.Input[_builtins.str]]
10770
+ """
10771
+ The last time the secret was used. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10772
+ """
10773
+ masked_secret_value: NotRequired[pulumi.Input[_builtins.str]]
10774
+ """
10775
+ The masked Service Account secret.
10776
+ """
10777
+ secret: NotRequired[pulumi.Input[_builtins.str]]
10778
+ """
10779
+ The secret for the Service Account. It will be returned only the first time after creation.
10780
+ """
10781
+ secret_id: NotRequired[pulumi.Input[_builtins.str]]
10782
+ """
10783
+ Unique 24-hexadecimal digit string that identifies the secret.
10784
+ """
10785
+ elif False:
10786
+ ServiceAccountSecretArgsDict: TypeAlias = Mapping[str, Any]
10787
+
10788
+ @pulumi.input_type
10789
+ class ServiceAccountSecretArgs:
10790
+ def __init__(__self__, *,
10791
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
10792
+ expires_at: Optional[pulumi.Input[_builtins.str]] = None,
10793
+ last_used_at: Optional[pulumi.Input[_builtins.str]] = None,
10794
+ masked_secret_value: Optional[pulumi.Input[_builtins.str]] = None,
10795
+ secret: Optional[pulumi.Input[_builtins.str]] = None,
10796
+ secret_id: Optional[pulumi.Input[_builtins.str]] = None):
10797
+ """
10798
+ :param pulumi.Input[_builtins.str] created_at: The date that the secret was created on. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10799
+ :param pulumi.Input[_builtins.str] expires_at: The date for the expiration of the secret. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10800
+ :param pulumi.Input[_builtins.str] last_used_at: The last time the secret was used. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10801
+ :param pulumi.Input[_builtins.str] masked_secret_value: The masked Service Account secret.
10802
+ :param pulumi.Input[_builtins.str] secret: The secret for the Service Account. It will be returned only the first time after creation.
10803
+ :param pulumi.Input[_builtins.str] secret_id: Unique 24-hexadecimal digit string that identifies the secret.
10804
+ """
10805
+ if created_at is not None:
10806
+ pulumi.set(__self__, "created_at", created_at)
10807
+ if expires_at is not None:
10808
+ pulumi.set(__self__, "expires_at", expires_at)
10809
+ if last_used_at is not None:
10810
+ pulumi.set(__self__, "last_used_at", last_used_at)
10811
+ if masked_secret_value is not None:
10812
+ pulumi.set(__self__, "masked_secret_value", masked_secret_value)
10813
+ if secret is not None:
10814
+ pulumi.set(__self__, "secret", secret)
10815
+ if secret_id is not None:
10816
+ pulumi.set(__self__, "secret_id", secret_id)
10817
+
10818
+ @_builtins.property
10819
+ @pulumi.getter(name="createdAt")
10820
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
10821
+ """
10822
+ The date that the secret was created on. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10823
+ """
10824
+ return pulumi.get(self, "created_at")
10825
+
10826
+ @created_at.setter
10827
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
10828
+ pulumi.set(self, "created_at", value)
10829
+
10830
+ @_builtins.property
10831
+ @pulumi.getter(name="expiresAt")
10832
+ def expires_at(self) -> Optional[pulumi.Input[_builtins.str]]:
10833
+ """
10834
+ The date for the expiration of the secret. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10835
+ """
10836
+ return pulumi.get(self, "expires_at")
10837
+
10838
+ @expires_at.setter
10839
+ def expires_at(self, value: Optional[pulumi.Input[_builtins.str]]):
10840
+ pulumi.set(self, "expires_at", value)
10841
+
10842
+ @_builtins.property
10843
+ @pulumi.getter(name="lastUsedAt")
10844
+ def last_used_at(self) -> Optional[pulumi.Input[_builtins.str]]:
10845
+ """
10846
+ The last time the secret was used. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
10847
+ """
10848
+ return pulumi.get(self, "last_used_at")
10849
+
10850
+ @last_used_at.setter
10851
+ def last_used_at(self, value: Optional[pulumi.Input[_builtins.str]]):
10852
+ pulumi.set(self, "last_used_at", value)
10853
+
10854
+ @_builtins.property
10855
+ @pulumi.getter(name="maskedSecretValue")
10856
+ def masked_secret_value(self) -> Optional[pulumi.Input[_builtins.str]]:
10857
+ """
10858
+ The masked Service Account secret.
10859
+ """
10860
+ return pulumi.get(self, "masked_secret_value")
10861
+
10862
+ @masked_secret_value.setter
10863
+ def masked_secret_value(self, value: Optional[pulumi.Input[_builtins.str]]):
10864
+ pulumi.set(self, "masked_secret_value", value)
10865
+
10866
+ @_builtins.property
10867
+ @pulumi.getter
10868
+ def secret(self) -> Optional[pulumi.Input[_builtins.str]]:
10869
+ """
10870
+ The secret for the Service Account. It will be returned only the first time after creation.
10871
+ """
10872
+ return pulumi.get(self, "secret")
10873
+
10874
+ @secret.setter
10875
+ def secret(self, value: Optional[pulumi.Input[_builtins.str]]):
10876
+ pulumi.set(self, "secret", value)
10877
+
10878
+ @_builtins.property
10879
+ @pulumi.getter(name="secretId")
10880
+ def secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
10881
+ """
10882
+ Unique 24-hexadecimal digit string that identifies the secret.
10883
+ """
10884
+ return pulumi.get(self, "secret_id")
10885
+
10886
+ @secret_id.setter
10887
+ def secret_id(self, value: Optional[pulumi.Input[_builtins.str]]):
10888
+ pulumi.set(self, "secret_id", value)
10889
+
10890
+
10595
10891
  if not MYPY:
10596
10892
  class StreamConnectionAuthenticationArgsDict(TypedDict):
10597
10893
  client_id: NotRequired[pulumi.Input[_builtins.str]]
@@ -10823,7 +11119,7 @@ if not MYPY:
10823
11119
  """
10824
11120
  type: pulumi.Input[_builtins.str]
10825
11121
  """
10826
- Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
11122
+ Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
10827
11123
 
10828
11124
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
10829
11125
  """
@@ -10837,7 +11133,7 @@ class StreamConnectionDbRoleToExecuteArgs:
10837
11133
  type: pulumi.Input[_builtins.str]):
10838
11134
  """
10839
11135
  :param pulumi.Input[_builtins.str] role: The name of the role to use. Value can be `atlasAdmin`, `readWriteAnyDatabase`, or `readAnyDatabase` if `type` is set to `BUILT_IN`, or the name of a user-defined role if `type` is set to `CUSTOM`.
10840
- :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
11136
+ :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
10841
11137
 
10842
11138
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
10843
11139
  """
@@ -10860,7 +11156,7 @@ class StreamConnectionDbRoleToExecuteArgs:
10860
11156
  @pulumi.getter
10861
11157
  def type(self) -> pulumi.Input[_builtins.str]:
10862
11158
  """
10863
- Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
11159
+ Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
10864
11160
 
10865
11161
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
10866
11162
  """
@@ -10953,6 +11249,84 @@ class StreamConnectionNetworkingAccessArgs:
10953
11249
  pulumi.set(self, "connection_id", value)
10954
11250
 
10955
11251
 
11252
+ if not MYPY:
11253
+ class StreamConnectionSchemaRegistryAuthenticationArgsDict(TypedDict):
11254
+ password: NotRequired[pulumi.Input[_builtins.str]]
11255
+ """
11256
+ Password for the Schema Registry. Required when `type` is `USER_INFO`.
11257
+ """
11258
+ type: NotRequired[pulumi.Input[_builtins.str]]
11259
+ """
11260
+ Authentication type discriminator. Specifies the authentication mechanism for Confluent Schema Registry. Valid values are `USER_INFO` or `SASL_INHERIT`.
11261
+ * `USER_INFO` - Uses username and password authentication for Confluent Schema Registry.
11262
+ * `SASL_INHERIT` - Inherits the authentication configuration from Kafka for the Confluent Schema Registry.
11263
+ """
11264
+ username: NotRequired[pulumi.Input[_builtins.str]]
11265
+ """
11266
+ Username for the Schema Registry. Required when `type` is `USER_INFO`.
11267
+ """
11268
+ elif False:
11269
+ StreamConnectionSchemaRegistryAuthenticationArgsDict: TypeAlias = Mapping[str, Any]
11270
+
11271
+ @pulumi.input_type
11272
+ class StreamConnectionSchemaRegistryAuthenticationArgs:
11273
+ def __init__(__self__, *,
11274
+ password: Optional[pulumi.Input[_builtins.str]] = None,
11275
+ type: Optional[pulumi.Input[_builtins.str]] = None,
11276
+ username: Optional[pulumi.Input[_builtins.str]] = None):
11277
+ """
11278
+ :param pulumi.Input[_builtins.str] password: Password for the Schema Registry. Required when `type` is `USER_INFO`.
11279
+ :param pulumi.Input[_builtins.str] type: Authentication type discriminator. Specifies the authentication mechanism for Confluent Schema Registry. Valid values are `USER_INFO` or `SASL_INHERIT`.
11280
+ * `USER_INFO` - Uses username and password authentication for Confluent Schema Registry.
11281
+ * `SASL_INHERIT` - Inherits the authentication configuration from Kafka for the Confluent Schema Registry.
11282
+ :param pulumi.Input[_builtins.str] username: Username for the Schema Registry. Required when `type` is `USER_INFO`.
11283
+ """
11284
+ if password is not None:
11285
+ pulumi.set(__self__, "password", password)
11286
+ if type is not None:
11287
+ pulumi.set(__self__, "type", type)
11288
+ if username is not None:
11289
+ pulumi.set(__self__, "username", username)
11290
+
11291
+ @_builtins.property
11292
+ @pulumi.getter
11293
+ def password(self) -> Optional[pulumi.Input[_builtins.str]]:
11294
+ """
11295
+ Password for the Schema Registry. Required when `type` is `USER_INFO`.
11296
+ """
11297
+ return pulumi.get(self, "password")
11298
+
11299
+ @password.setter
11300
+ def password(self, value: Optional[pulumi.Input[_builtins.str]]):
11301
+ pulumi.set(self, "password", value)
11302
+
11303
+ @_builtins.property
11304
+ @pulumi.getter
11305
+ def type(self) -> Optional[pulumi.Input[_builtins.str]]:
11306
+ """
11307
+ Authentication type discriminator. Specifies the authentication mechanism for Confluent Schema Registry. Valid values are `USER_INFO` or `SASL_INHERIT`.
11308
+ * `USER_INFO` - Uses username and password authentication for Confluent Schema Registry.
11309
+ * `SASL_INHERIT` - Inherits the authentication configuration from Kafka for the Confluent Schema Registry.
11310
+ """
11311
+ return pulumi.get(self, "type")
11312
+
11313
+ @type.setter
11314
+ def type(self, value: Optional[pulumi.Input[_builtins.str]]):
11315
+ pulumi.set(self, "type", value)
11316
+
11317
+ @_builtins.property
11318
+ @pulumi.getter
11319
+ def username(self) -> Optional[pulumi.Input[_builtins.str]]:
11320
+ """
11321
+ Username for the Schema Registry. Required when `type` is `USER_INFO`.
11322
+ """
11323
+ return pulumi.get(self, "username")
11324
+
11325
+ @username.setter
11326
+ def username(self, value: Optional[pulumi.Input[_builtins.str]]):
11327
+ pulumi.set(self, "username", value)
11328
+
11329
+
10956
11330
  if not MYPY:
10957
11331
  class StreamConnectionSecurityArgsDict(TypedDict):
10958
11332
  broker_public_certificate: NotRequired[pulumi.Input[_builtins.str]]
@@ -11204,7 +11578,7 @@ if not MYPY:
11204
11578
  class StreamProcessorTimeoutsArgsDict(TypedDict):
11205
11579
  create: NotRequired[pulumi.Input[_builtins.str]]
11206
11580
  """
11207
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
11581
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
11208
11582
  """
11209
11583
  elif False:
11210
11584
  StreamProcessorTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
@@ -11214,7 +11588,7 @@ class StreamProcessorTimeoutsArgs:
11214
11588
  def __init__(__self__, *,
11215
11589
  create: Optional[pulumi.Input[_builtins.str]] = None):
11216
11590
  """
11217
- :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
11591
+ :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
11218
11592
  """
11219
11593
  if create is not None:
11220
11594
  pulumi.set(__self__, "create", create)
@@ -11223,7 +11597,7 @@ class StreamProcessorTimeoutsArgs:
11223
11597
  @pulumi.getter
11224
11598
  def create(self) -> Optional[pulumi.Input[_builtins.str]]:
11225
11599
  """
11226
- A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
11600
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
11227
11601
  """
11228
11602
  return pulumi.get(self, "create")
11229
11603