pulumi-aiven 6.19.0a1721845827__py3-none-any.whl → 6.20.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.

Potentially problematic release.


This version of pulumi-aiven might be problematic. Click here for more details.

Files changed (47) hide show
  1. pulumi_aiven/__init__.py +20 -0
  2. pulumi_aiven/_inputs.py +1089 -29
  3. pulumi_aiven/account_team.py +12 -4
  4. pulumi_aiven/account_team_member.py +4 -4
  5. pulumi_aiven/account_team_project.py +4 -4
  6. pulumi_aiven/clickhouse.py +22 -22
  7. pulumi_aiven/clickhouse_database.py +39 -19
  8. pulumi_aiven/clickhouse_grant.py +80 -82
  9. pulumi_aiven/clickhouse_role.py +17 -31
  10. pulumi_aiven/clickhouse_user.py +31 -31
  11. pulumi_aiven/flink.py +19 -19
  12. pulumi_aiven/flink_application.py +39 -39
  13. pulumi_aiven/flink_application_deployment.py +131 -57
  14. pulumi_aiven/flink_application_version.py +64 -56
  15. pulumi_aiven/get_clickhouse.py +8 -8
  16. pulumi_aiven/get_clickhouse_database.py +11 -11
  17. pulumi_aiven/get_clickhouse_user.py +14 -14
  18. pulumi_aiven/get_flink.py +7 -7
  19. pulumi_aiven/get_flink_application.py +16 -16
  20. pulumi_aiven/get_flink_application_version.py +22 -22
  21. pulumi_aiven/get_kafka_acl.py +22 -22
  22. pulumi_aiven/get_kafka_connect.py +6 -6
  23. pulumi_aiven/get_kafka_connector.py +13 -13
  24. pulumi_aiven/get_kafka_topic.py +2 -2
  25. pulumi_aiven/get_kafka_user.py +15 -15
  26. pulumi_aiven/get_transit_gateway_vpc_attachment.py +1 -1
  27. pulumi_aiven/get_valkey.py +469 -0
  28. pulumi_aiven/get_valkey_user.py +206 -0
  29. pulumi_aiven/kafka_acl.py +43 -39
  30. pulumi_aiven/kafka_connect.py +66 -14
  31. pulumi_aiven/kafka_connector.py +46 -40
  32. pulumi_aiven/kafka_schema_registry_acl.py +2 -2
  33. pulumi_aiven/kafka_topic.py +16 -16
  34. pulumi_aiven/kafka_user.py +40 -40
  35. pulumi_aiven/organization_application_user.py +12 -2
  36. pulumi_aiven/organization_application_user_token.py +7 -7
  37. pulumi_aiven/organization_group_project.py +9 -9
  38. pulumi_aiven/organization_user_group_member.py +13 -9
  39. pulumi_aiven/outputs.py +2113 -332
  40. pulumi_aiven/pulumi-plugin.json +1 -1
  41. pulumi_aiven/transit_gateway_vpc_attachment.py +7 -16
  42. pulumi_aiven/valkey.py +1252 -0
  43. pulumi_aiven/valkey_user.py +513 -0
  44. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.20.0.dist-info}/METADATA +1 -1
  45. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.20.0.dist-info}/RECORD +47 -43
  46. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.20.0.dist-info}/WHEEL +0 -0
  47. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.20.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py CHANGED
@@ -271,6 +271,17 @@ __all__ = [
271
271
  'ThanosThanosUserConfigPublicAccess',
272
272
  'ThanosThanosUserConfigQuery',
273
273
  'ThanosThanosUserConfigQueryFrontend',
274
+ 'ValkeyComponent',
275
+ 'ValkeyServiceIntegration',
276
+ 'ValkeyTag',
277
+ 'ValkeyTechEmail',
278
+ 'ValkeyValkey',
279
+ 'ValkeyValkeyUserConfig',
280
+ 'ValkeyValkeyUserConfigIpFilterObject',
281
+ 'ValkeyValkeyUserConfigMigration',
282
+ 'ValkeyValkeyUserConfigPrivateAccess',
283
+ 'ValkeyValkeyUserConfigPrivatelinkAccess',
284
+ 'ValkeyValkeyUserConfigPublicAccess',
274
285
  'GetAccountAuthenticationSamlFieldMappingResult',
275
286
  'GetCassandaCassandraResult',
276
287
  'GetCassandaCassandraUserConfigResult',
@@ -536,6 +547,17 @@ __all__ = [
536
547
  'GetThanosThanosUserConfigPublicAccessResult',
537
548
  'GetThanosThanosUserConfigQueryResult',
538
549
  'GetThanosThanosUserConfigQueryFrontendResult',
550
+ 'GetValkeyComponentResult',
551
+ 'GetValkeyServiceIntegrationResult',
552
+ 'GetValkeyTagResult',
553
+ 'GetValkeyTechEmailResult',
554
+ 'GetValkeyValkeyResult',
555
+ 'GetValkeyValkeyUserConfigResult',
556
+ 'GetValkeyValkeyUserConfigIpFilterObjectResult',
557
+ 'GetValkeyValkeyUserConfigMigrationResult',
558
+ 'GetValkeyValkeyUserConfigPrivateAccessResult',
559
+ 'GetValkeyValkeyUserConfigPrivatelinkAccessResult',
560
+ 'GetValkeyValkeyUserConfigPublicAccessResult',
539
561
  ]
540
562
 
541
563
  @pulumi.output_type
@@ -900,6 +922,10 @@ class CassandraCassandraUserConfigCassandra(dict):
900
922
  suggest = "batch_size_fail_threshold_in_kb"
901
923
  elif key == "batchSizeWarnThresholdInKb":
902
924
  suggest = "batch_size_warn_threshold_in_kb"
925
+ elif key == "readRequestTimeoutInMs":
926
+ suggest = "read_request_timeout_in_ms"
927
+ elif key == "writeRequestTimeoutInMs":
928
+ suggest = "write_request_timeout_in_ms"
903
929
 
904
930
  if suggest:
905
931
  pulumi.log.warn(f"Key '{key}' not found in CassandraCassandraUserConfigCassandra. Access the value via the '{suggest}' property getter instead.")
@@ -915,11 +941,15 @@ class CassandraCassandraUserConfigCassandra(dict):
915
941
  def __init__(__self__, *,
916
942
  batch_size_fail_threshold_in_kb: Optional[int] = None,
917
943
  batch_size_warn_threshold_in_kb: Optional[int] = None,
918
- datacenter: Optional[str] = None):
944
+ datacenter: Optional[str] = None,
945
+ read_request_timeout_in_ms: Optional[int] = None,
946
+ write_request_timeout_in_ms: Optional[int] = None):
919
947
  """
920
948
  :param int batch_size_fail_threshold_in_kb: Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default. Example: `50`.
921
949
  :param int batch_size_warn_threshold_in_kb: Log a warning message on any multiple-partition batch size exceeding this value.5kb per batch by default.Caution should be taken on increasing the size of this thresholdas it can lead to node instability. Example: `5`.
922
950
  :param str datacenter: Name of the datacenter to which nodes of this service belong. Can be set only when creating the service. Example: `my-service-google-west1`.
951
+ :param int read_request_timeout_in_ms: How long the coordinator waits for read operations to complete before timing it out. 5 seconds by default. Example: `5000`.
952
+ :param int write_request_timeout_in_ms: How long the coordinator waits for write requests to complete with at least one node in the local datacenter. 2 seconds by default. Example: `2000`.
923
953
  """
924
954
  if batch_size_fail_threshold_in_kb is not None:
925
955
  pulumi.set(__self__, "batch_size_fail_threshold_in_kb", batch_size_fail_threshold_in_kb)
@@ -927,6 +957,10 @@ class CassandraCassandraUserConfigCassandra(dict):
927
957
  pulumi.set(__self__, "batch_size_warn_threshold_in_kb", batch_size_warn_threshold_in_kb)
928
958
  if datacenter is not None:
929
959
  pulumi.set(__self__, "datacenter", datacenter)
960
+ if read_request_timeout_in_ms is not None:
961
+ pulumi.set(__self__, "read_request_timeout_in_ms", read_request_timeout_in_ms)
962
+ if write_request_timeout_in_ms is not None:
963
+ pulumi.set(__self__, "write_request_timeout_in_ms", write_request_timeout_in_ms)
930
964
 
931
965
  @property
932
966
  @pulumi.getter(name="batchSizeFailThresholdInKb")
@@ -952,6 +986,22 @@ class CassandraCassandraUserConfigCassandra(dict):
952
986
  """
953
987
  return pulumi.get(self, "datacenter")
954
988
 
989
+ @property
990
+ @pulumi.getter(name="readRequestTimeoutInMs")
991
+ def read_request_timeout_in_ms(self) -> Optional[int]:
992
+ """
993
+ How long the coordinator waits for read operations to complete before timing it out. 5 seconds by default. Example: `5000`.
994
+ """
995
+ return pulumi.get(self, "read_request_timeout_in_ms")
996
+
997
+ @property
998
+ @pulumi.getter(name="writeRequestTimeoutInMs")
999
+ def write_request_timeout_in_ms(self) -> Optional[int]:
1000
+ """
1001
+ How long the coordinator waits for write requests to complete with at least one node in the local datacenter. 2 seconds by default. Example: `2000`.
1002
+ """
1003
+ return pulumi.get(self, "write_request_timeout_in_ms")
1004
+
955
1005
 
956
1006
  @pulumi.output_type
957
1007
  class CassandraCassandraUserConfigIpFilterObject(dict):
@@ -1243,7 +1293,7 @@ class ClickhouseClickhouse(dict):
1243
1293
  def __init__(__self__, *,
1244
1294
  uris: Optional[Sequence[str]] = None):
1245
1295
  """
1246
- :param Sequence[str] uris: Clickhouse server URIs.
1296
+ :param Sequence[str] uris: ClickHouse server URIs.
1247
1297
  """
1248
1298
  if uris is not None:
1249
1299
  pulumi.set(__self__, "uris", uris)
@@ -1252,7 +1302,7 @@ class ClickhouseClickhouse(dict):
1252
1302
  @pulumi.getter
1253
1303
  def uris(self) -> Optional[Sequence[str]]:
1254
1304
  """
1255
- Clickhouse server URIs.
1305
+ ClickHouse server URIs.
1256
1306
  """
1257
1307
  return pulumi.get(self, "uris")
1258
1308
 
@@ -1835,11 +1885,11 @@ class ClickhouseGrantPrivilegeGrant(dict):
1835
1885
  table: Optional[str] = None,
1836
1886
  with_grant: Optional[bool] = None):
1837
1887
  """
1838
- :param str database: The database that the grant refers to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
1839
- :param str column: The column that the grant refers to. Changing this property forces recreation of the resource.
1840
- :param str privilege: The privilege to grant, i.e. 'INSERT', 'SELECT', etc. Changing this property forces recreation of the resource.
1841
- :param str table: The table that the grant refers to. Changing this property forces recreation of the resource.
1842
- :param bool with_grant: If true then the grantee gets the ability to grant the privileges he received too. Changing this property forces recreation of the resource.
1888
+ :param str database: The database to grant access to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
1889
+ :param str column: The column to grant access to. Changing this property forces recreation of the resource.
1890
+ :param str privilege: The privileges to grant. For example: `INSERT`, `SELECT`, `CREATE TABLE`. A complete list is available in the [ClickHouse documentation](https://clickhouse.com/docs/en/sql-reference/statements/grant). Changing this property forces recreation of the resource.
1891
+ :param str table: The table to grant access to. Changing this property forces recreation of the resource.
1892
+ :param bool with_grant: Allow grantees to grant their privileges to other grantees. Changing this property forces recreation of the resource.
1843
1893
  """
1844
1894
  pulumi.set(__self__, "database", database)
1845
1895
  if column is not None:
@@ -1855,7 +1905,7 @@ class ClickhouseGrantPrivilegeGrant(dict):
1855
1905
  @pulumi.getter
1856
1906
  def database(self) -> str:
1857
1907
  """
1858
- The database that the grant refers to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
1908
+ The database to grant access to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
1859
1909
  """
1860
1910
  return pulumi.get(self, "database")
1861
1911
 
@@ -1863,7 +1913,7 @@ class ClickhouseGrantPrivilegeGrant(dict):
1863
1913
  @pulumi.getter
1864
1914
  def column(self) -> Optional[str]:
1865
1915
  """
1866
- The column that the grant refers to. Changing this property forces recreation of the resource.
1916
+ The column to grant access to. Changing this property forces recreation of the resource.
1867
1917
  """
1868
1918
  return pulumi.get(self, "column")
1869
1919
 
@@ -1871,7 +1921,7 @@ class ClickhouseGrantPrivilegeGrant(dict):
1871
1921
  @pulumi.getter
1872
1922
  def privilege(self) -> Optional[str]:
1873
1923
  """
1874
- The privilege to grant, i.e. 'INSERT', 'SELECT', etc. Changing this property forces recreation of the resource.
1924
+ The privileges to grant. For example: `INSERT`, `SELECT`, `CREATE TABLE`. A complete list is available in the [ClickHouse documentation](https://clickhouse.com/docs/en/sql-reference/statements/grant). Changing this property forces recreation of the resource.
1875
1925
  """
1876
1926
  return pulumi.get(self, "privilege")
1877
1927
 
@@ -1879,7 +1929,7 @@ class ClickhouseGrantPrivilegeGrant(dict):
1879
1929
  @pulumi.getter
1880
1930
  def table(self) -> Optional[str]:
1881
1931
  """
1882
- The table that the grant refers to. Changing this property forces recreation of the resource.
1932
+ The table to grant access to. Changing this property forces recreation of the resource.
1883
1933
  """
1884
1934
  return pulumi.get(self, "table")
1885
1935
 
@@ -1887,7 +1937,7 @@ class ClickhouseGrantPrivilegeGrant(dict):
1887
1937
  @pulumi.getter(name="withGrant")
1888
1938
  def with_grant(self) -> Optional[bool]:
1889
1939
  """
1890
- If true then the grantee gets the ability to grant the privileges he received too. Changing this property forces recreation of the resource.
1940
+ Allow grantees to grant their privileges to other grantees. Changing this property forces recreation of the resource.
1891
1941
  """
1892
1942
  return pulumi.get(self, "with_grant")
1893
1943
 
@@ -1897,7 +1947,7 @@ class ClickhouseGrantRoleGrant(dict):
1897
1947
  def __init__(__self__, *,
1898
1948
  role: Optional[str] = None):
1899
1949
  """
1900
- :param str role: The role that is to be granted. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
1950
+ :param str role: The roles to grant. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
1901
1951
  """
1902
1952
  if role is not None:
1903
1953
  pulumi.set(__self__, "role", role)
@@ -1906,7 +1956,7 @@ class ClickhouseGrantRoleGrant(dict):
1906
1956
  @pulumi.getter
1907
1957
  def role(self) -> Optional[str]:
1908
1958
  """
1909
- The role that is to be granted. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
1959
+ The roles to grant. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
1910
1960
  """
1911
1961
  return pulumi.get(self, "role")
1912
1962
 
@@ -1936,8 +1986,8 @@ class ClickhouseServiceIntegration(dict):
1936
1986
  integration_type: str,
1937
1987
  source_service_name: str):
1938
1988
  """
1939
- :param str integration_type: Type of the service integration. The only supported values at the moment are `clickhouse_kafka` and `clickhouse_postgresql`.
1940
- :param str source_service_name: Name of the source service
1989
+ :param str integration_type: Type of the service integration. Supported integrations are `clickhouse_kafka` and `clickhouse_postgresql`.
1990
+ :param str source_service_name: Name of the source service.
1941
1991
  """
1942
1992
  pulumi.set(__self__, "integration_type", integration_type)
1943
1993
  pulumi.set(__self__, "source_service_name", source_service_name)
@@ -1946,7 +1996,7 @@ class ClickhouseServiceIntegration(dict):
1946
1996
  @pulumi.getter(name="integrationType")
1947
1997
  def integration_type(self) -> str:
1948
1998
  """
1949
- Type of the service integration. The only supported values at the moment are `clickhouse_kafka` and `clickhouse_postgresql`.
1999
+ Type of the service integration. Supported integrations are `clickhouse_kafka` and `clickhouse_postgresql`.
1950
2000
  """
1951
2001
  return pulumi.get(self, "integration_type")
1952
2002
 
@@ -1954,7 +2004,7 @@ class ClickhouseServiceIntegration(dict):
1954
2004
  @pulumi.getter(name="sourceServiceName")
1955
2005
  def source_service_name(self) -> str:
1956
2006
  """
1957
- Name of the source service
2007
+ Name of the source service.
1958
2008
  """
1959
2009
  return pulumi.get(self, "source_service_name")
1960
2010
 
@@ -3011,7 +3061,7 @@ class FlinkFlink(dict):
3011
3061
  def __init__(__self__, *,
3012
3062
  host_ports: Optional[Sequence[str]] = None):
3013
3063
  """
3014
- :param Sequence[str] host_ports: Host and Port of a Flink server
3064
+ :param Sequence[str] host_ports: The host and port of a Flink server.
3015
3065
  """
3016
3066
  if host_ports is not None:
3017
3067
  pulumi.set(__self__, "host_ports", host_ports)
@@ -3020,7 +3070,7 @@ class FlinkFlink(dict):
3020
3070
  @pulumi.getter(name="hostPorts")
3021
3071
  def host_ports(self) -> Optional[Sequence[str]]:
3022
3072
  """
3023
- Host and Port of a Flink server
3073
+ The host and port of a Flink server.
3024
3074
  """
3025
3075
  return pulumi.get(self, "host_ports")
3026
3076
 
@@ -7041,7 +7091,7 @@ class KafkaConnectorTask(dict):
7041
7091
  task: Optional[int] = None):
7042
7092
  """
7043
7093
  :param str connector: The name of the related connector.
7044
- :param int task: The task id of the task.
7094
+ :param int task: The task ID of the task.
7045
7095
  """
7046
7096
  if connector is not None:
7047
7097
  pulumi.set(__self__, "connector", connector)
@@ -7060,7 +7110,7 @@ class KafkaConnectorTask(dict):
7060
7110
  @pulumi.getter
7061
7111
  def task(self) -> Optional[int]:
7062
7112
  """
7063
- The task id of the task.
7113
+ The task ID of the task.
7064
7114
  """
7065
7115
  return pulumi.get(self, "task")
7066
7116
 
@@ -10312,8 +10362,8 @@ class KafkaTopicTag(dict):
10312
10362
  key: str,
10313
10363
  value: Optional[str] = None):
10314
10364
  """
10315
- :param str key: Topic tag key. Maximum length: `64`.
10316
- :param str value: Topic tag value. Maximum length: `256`.
10365
+ :param str key: Tag key. Maximum length: `64`.
10366
+ :param str value: Tag value. Maximum length: `256`.
10317
10367
  """
10318
10368
  pulumi.set(__self__, "key", key)
10319
10369
  if value is not None:
@@ -10323,7 +10373,7 @@ class KafkaTopicTag(dict):
10323
10373
  @pulumi.getter
10324
10374
  def key(self) -> str:
10325
10375
  """
10326
- Topic tag key. Maximum length: `64`.
10376
+ Tag key. Maximum length: `64`.
10327
10377
  """
10328
10378
  return pulumi.get(self, "key")
10329
10379
 
@@ -10331,7 +10381,7 @@ class KafkaTopicTag(dict):
10331
10381
  @pulumi.getter
10332
10382
  def value(self) -> Optional[str]:
10333
10383
  """
10334
- Topic tag value. Maximum length: `256`.
10384
+ Tag value. Maximum length: `256`.
10335
10385
  """
10336
10386
  return pulumi.get(self, "value")
10337
10387
 
@@ -14379,6 +14429,10 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
14379
14429
  suggest = "ism_history_rollover_check_period"
14380
14430
  elif key == "ismHistoryRolloverRetentionPeriod":
14381
14431
  suggest = "ism_history_rollover_retention_period"
14432
+ elif key == "knnMemoryCircuitBreakerEnabled":
14433
+ suggest = "knn_memory_circuit_breaker_enabled"
14434
+ elif key == "knnMemoryCircuitBreakerLimit":
14435
+ suggest = "knn_memory_circuit_breaker_limit"
14382
14436
  elif key == "overrideMainResponseVersion":
14383
14437
  suggest = "override_main_response_version"
14384
14438
  elif key == "pluginsAlertingFilterByBackendRoles":
@@ -14450,6 +14504,8 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
14450
14504
  ism_history_max_docs: Optional[int] = None,
14451
14505
  ism_history_rollover_check_period: Optional[int] = None,
14452
14506
  ism_history_rollover_retention_period: Optional[int] = None,
14507
+ knn_memory_circuit_breaker_enabled: Optional[bool] = None,
14508
+ knn_memory_circuit_breaker_limit: Optional[int] = None,
14453
14509
  override_main_response_version: Optional[bool] = None,
14454
14510
  plugins_alerting_filter_by_backend_roles: Optional[bool] = None,
14455
14511
  reindex_remote_whitelists: Optional[Sequence[str]] = None,
@@ -14493,6 +14549,8 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
14493
14549
  :param int ism_history_max_docs: The maximum number of documents before rolling over the audit history index. Default: `2500000`.
14494
14550
  :param int ism_history_rollover_check_period: The time between rollover checks for the audit history index in hours. Default: `8`.
14495
14551
  :param int ism_history_rollover_retention_period: How long audit history indices are kept in days. Default: `30`.
14552
+ :param bool knn_memory_circuit_breaker_enabled: Enable or disable KNN memory circuit breaker. Defaults to true. Default: `true`.
14553
+ :param int knn_memory_circuit_breaker_limit: Maximum amount of memory that can be used for KNN index. Defaults to 50% of the JVM heap size. Default: `50`.
14496
14554
  :param bool override_main_response_version: Compatibility mode sets OpenSearch to report its version as 7.10 so clients continue to work. Default is false.
14497
14555
  :param bool plugins_alerting_filter_by_backend_roles: Enable or disable filtering of alerting by backend roles. Requires Security plugin. Defaults to false.
14498
14556
  :param Sequence[str] reindex_remote_whitelists: Whitelisted addresses for reindexing. Changing this value will cause all OpenSearch instances to restart.
@@ -14562,6 +14620,10 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
14562
14620
  pulumi.set(__self__, "ism_history_rollover_check_period", ism_history_rollover_check_period)
14563
14621
  if ism_history_rollover_retention_period is not None:
14564
14622
  pulumi.set(__self__, "ism_history_rollover_retention_period", ism_history_rollover_retention_period)
14623
+ if knn_memory_circuit_breaker_enabled is not None:
14624
+ pulumi.set(__self__, "knn_memory_circuit_breaker_enabled", knn_memory_circuit_breaker_enabled)
14625
+ if knn_memory_circuit_breaker_limit is not None:
14626
+ pulumi.set(__self__, "knn_memory_circuit_breaker_limit", knn_memory_circuit_breaker_limit)
14565
14627
  if override_main_response_version is not None:
14566
14628
  pulumi.set(__self__, "override_main_response_version", override_main_response_version)
14567
14629
  if plugins_alerting_filter_by_backend_roles is not None:
@@ -14803,6 +14865,22 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
14803
14865
  """
14804
14866
  return pulumi.get(self, "ism_history_rollover_retention_period")
14805
14867
 
14868
+ @property
14869
+ @pulumi.getter(name="knnMemoryCircuitBreakerEnabled")
14870
+ def knn_memory_circuit_breaker_enabled(self) -> Optional[bool]:
14871
+ """
14872
+ Enable or disable KNN memory circuit breaker. Defaults to true. Default: `true`.
14873
+ """
14874
+ return pulumi.get(self, "knn_memory_circuit_breaker_enabled")
14875
+
14876
+ @property
14877
+ @pulumi.getter(name="knnMemoryCircuitBreakerLimit")
14878
+ def knn_memory_circuit_breaker_limit(self) -> Optional[int]:
14879
+ """
14880
+ Maximum amount of memory that can be used for KNN index. Defaults to 50% of the JVM heap size. Default: `50`.
14881
+ """
14882
+ return pulumi.get(self, "knn_memory_circuit_breaker_limit")
14883
+
14806
14884
  @property
14807
14885
  @pulumi.getter(name="overrideMainResponseVersion")
14808
14886
  def override_main_response_version(self) -> Optional[bool]:
@@ -17026,7 +17104,7 @@ class PgPgUserConfigPg(dict):
17026
17104
  :param bool jit: Controls system-wide use of Just-in-Time Compilation (JIT).
17027
17105
  :param int log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
17028
17106
  :param str log_error_verbosity: Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
17029
- :param str log_line_prefix: Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
17107
+ :param str log_line_prefix: Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
17030
17108
  :param int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
17031
17109
  :param int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
17032
17110
  :param int max_files_per_process: PostgreSQL maximum number of files that can be open per process.
@@ -17312,7 +17390,7 @@ class PgPgUserConfigPg(dict):
17312
17390
  @pulumi.getter(name="logLinePrefix")
17313
17391
  def log_line_prefix(self) -> Optional[str]:
17314
17392
  """
17315
- Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
17393
+ Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
17316
17394
  """
17317
17395
  return pulumi.get(self, "log_line_prefix")
17318
17396
 
@@ -23099,204 +23177,470 @@ class ThanosThanosUserConfigQueryFrontend(dict):
23099
23177
 
23100
23178
 
23101
23179
  @pulumi.output_type
23102
- class GetAccountAuthenticationSamlFieldMappingResult(dict):
23180
+ class ValkeyComponent(dict):
23181
+ @staticmethod
23182
+ def __key_warning(key: str):
23183
+ suggest = None
23184
+ if key == "connectionUri":
23185
+ suggest = "connection_uri"
23186
+ elif key == "kafkaAuthenticationMethod":
23187
+ suggest = "kafka_authentication_method"
23188
+
23189
+ if suggest:
23190
+ pulumi.log.warn(f"Key '{key}' not found in ValkeyComponent. Access the value via the '{suggest}' property getter instead.")
23191
+
23192
+ def __getitem__(self, key: str) -> Any:
23193
+ ValkeyComponent.__key_warning(key)
23194
+ return super().__getitem__(key)
23195
+
23196
+ def get(self, key: str, default = None) -> Any:
23197
+ ValkeyComponent.__key_warning(key)
23198
+ return super().get(key, default)
23199
+
23103
23200
  def __init__(__self__, *,
23104
- email: Optional[str] = None,
23105
- first_name: Optional[str] = None,
23106
- identity: Optional[str] = None,
23107
- last_name: Optional[str] = None,
23108
- real_name: Optional[str] = None):
23201
+ component: Optional[str] = None,
23202
+ connection_uri: Optional[str] = None,
23203
+ host: Optional[str] = None,
23204
+ kafka_authentication_method: Optional[str] = None,
23205
+ port: Optional[int] = None,
23206
+ route: Optional[str] = None,
23207
+ ssl: Optional[bool] = None,
23208
+ usage: Optional[str] = None):
23109
23209
  """
23110
- :param str email: Field name for user email
23111
- :param str first_name: Field name for user's first name
23112
- :param str identity: Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
23113
- :param str last_name: Field name for user's last name
23114
- :param str real_name: Field name for user's full name. If specified, first_name and last_name mappings are ignored
23210
+ :param str component: Service component name
23211
+ :param str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
23212
+ :param str host: Host name for connecting to the service component
23213
+ :param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
23214
+ :param int port: Port number for connecting to the service component
23215
+ :param str route: Network access route
23216
+ :param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
23217
+ :param str usage: DNS usage name
23115
23218
  """
23116
- if email is not None:
23117
- pulumi.set(__self__, "email", email)
23118
- if first_name is not None:
23119
- pulumi.set(__self__, "first_name", first_name)
23120
- if identity is not None:
23121
- pulumi.set(__self__, "identity", identity)
23122
- if last_name is not None:
23123
- pulumi.set(__self__, "last_name", last_name)
23124
- if real_name is not None:
23125
- pulumi.set(__self__, "real_name", real_name)
23219
+ if component is not None:
23220
+ pulumi.set(__self__, "component", component)
23221
+ if connection_uri is not None:
23222
+ pulumi.set(__self__, "connection_uri", connection_uri)
23223
+ if host is not None:
23224
+ pulumi.set(__self__, "host", host)
23225
+ if kafka_authentication_method is not None:
23226
+ pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
23227
+ if port is not None:
23228
+ pulumi.set(__self__, "port", port)
23229
+ if route is not None:
23230
+ pulumi.set(__self__, "route", route)
23231
+ if ssl is not None:
23232
+ pulumi.set(__self__, "ssl", ssl)
23233
+ if usage is not None:
23234
+ pulumi.set(__self__, "usage", usage)
23126
23235
 
23127
23236
  @property
23128
23237
  @pulumi.getter
23129
- def email(self) -> Optional[str]:
23238
+ def component(self) -> Optional[str]:
23130
23239
  """
23131
- Field name for user email
23240
+ Service component name
23132
23241
  """
23133
- return pulumi.get(self, "email")
23242
+ return pulumi.get(self, "component")
23134
23243
 
23135
23244
  @property
23136
- @pulumi.getter(name="firstName")
23137
- def first_name(self) -> Optional[str]:
23245
+ @pulumi.getter(name="connectionUri")
23246
+ def connection_uri(self) -> Optional[str]:
23138
23247
  """
23139
- Field name for user's first name
23248
+ Connection info for connecting to the service component. This is a combination of host and port.
23140
23249
  """
23141
- return pulumi.get(self, "first_name")
23250
+ return pulumi.get(self, "connection_uri")
23142
23251
 
23143
23252
  @property
23144
23253
  @pulumi.getter
23145
- def identity(self) -> Optional[str]:
23254
+ def host(self) -> Optional[str]:
23146
23255
  """
23147
- Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
23256
+ Host name for connecting to the service component
23148
23257
  """
23149
- return pulumi.get(self, "identity")
23258
+ return pulumi.get(self, "host")
23150
23259
 
23151
23260
  @property
23152
- @pulumi.getter(name="lastName")
23153
- def last_name(self) -> Optional[str]:
23261
+ @pulumi.getter(name="kafkaAuthenticationMethod")
23262
+ def kafka_authentication_method(self) -> Optional[str]:
23154
23263
  """
23155
- Field name for user's last name
23264
+ Kafka authentication method. This is a value specific to the 'kafka' service component
23156
23265
  """
23157
- return pulumi.get(self, "last_name")
23266
+ return pulumi.get(self, "kafka_authentication_method")
23158
23267
 
23159
23268
  @property
23160
- @pulumi.getter(name="realName")
23161
- def real_name(self) -> Optional[str]:
23269
+ @pulumi.getter
23270
+ def port(self) -> Optional[int]:
23162
23271
  """
23163
- Field name for user's full name. If specified, first_name and last_name mappings are ignored
23272
+ Port number for connecting to the service component
23164
23273
  """
23165
- return pulumi.get(self, "real_name")
23274
+ return pulumi.get(self, "port")
23275
+
23276
+ @property
23277
+ @pulumi.getter
23278
+ def route(self) -> Optional[str]:
23279
+ """
23280
+ Network access route
23281
+ """
23282
+ return pulumi.get(self, "route")
23283
+
23284
+ @property
23285
+ @pulumi.getter
23286
+ def ssl(self) -> Optional[bool]:
23287
+ """
23288
+ Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
23289
+ """
23290
+ return pulumi.get(self, "ssl")
23291
+
23292
+ @property
23293
+ @pulumi.getter
23294
+ def usage(self) -> Optional[str]:
23295
+ """
23296
+ DNS usage name
23297
+ """
23298
+ return pulumi.get(self, "usage")
23166
23299
 
23167
23300
 
23168
23301
  @pulumi.output_type
23169
- class GetCassandaCassandraResult(dict):
23302
+ class ValkeyServiceIntegration(dict):
23303
+ @staticmethod
23304
+ def __key_warning(key: str):
23305
+ suggest = None
23306
+ if key == "integrationType":
23307
+ suggest = "integration_type"
23308
+ elif key == "sourceServiceName":
23309
+ suggest = "source_service_name"
23310
+
23311
+ if suggest:
23312
+ pulumi.log.warn(f"Key '{key}' not found in ValkeyServiceIntegration. Access the value via the '{suggest}' property getter instead.")
23313
+
23314
+ def __getitem__(self, key: str) -> Any:
23315
+ ValkeyServiceIntegration.__key_warning(key)
23316
+ return super().__getitem__(key)
23317
+
23318
+ def get(self, key: str, default = None) -> Any:
23319
+ ValkeyServiceIntegration.__key_warning(key)
23320
+ return super().get(key, default)
23321
+
23170
23322
  def __init__(__self__, *,
23171
- uris: Sequence[str]):
23323
+ integration_type: str,
23324
+ source_service_name: str):
23172
23325
  """
23173
- :param Sequence[str] uris: Cassandra server URIs.
23326
+ :param str integration_type: Type of the service integration. The only supported value at the moment is `read_replica`
23327
+ :param str source_service_name: Name of the source service
23174
23328
  """
23175
- pulumi.set(__self__, "uris", uris)
23329
+ pulumi.set(__self__, "integration_type", integration_type)
23330
+ pulumi.set(__self__, "source_service_name", source_service_name)
23331
+
23332
+ @property
23333
+ @pulumi.getter(name="integrationType")
23334
+ def integration_type(self) -> str:
23335
+ """
23336
+ Type of the service integration. The only supported value at the moment is `read_replica`
23337
+ """
23338
+ return pulumi.get(self, "integration_type")
23339
+
23340
+ @property
23341
+ @pulumi.getter(name="sourceServiceName")
23342
+ def source_service_name(self) -> str:
23343
+ """
23344
+ Name of the source service
23345
+ """
23346
+ return pulumi.get(self, "source_service_name")
23347
+
23348
+
23349
+ @pulumi.output_type
23350
+ class ValkeyTag(dict):
23351
+ def __init__(__self__, *,
23352
+ key: str,
23353
+ value: str):
23354
+ """
23355
+ :param str key: Service tag key
23356
+ :param str value: Service tag value
23357
+ """
23358
+ pulumi.set(__self__, "key", key)
23359
+ pulumi.set(__self__, "value", value)
23176
23360
 
23177
23361
  @property
23178
23362
  @pulumi.getter
23179
- def uris(self) -> Sequence[str]:
23363
+ def key(self) -> str:
23180
23364
  """
23181
- Cassandra server URIs.
23365
+ Service tag key
23366
+ """
23367
+ return pulumi.get(self, "key")
23368
+
23369
+ @property
23370
+ @pulumi.getter
23371
+ def value(self) -> str:
23372
+ """
23373
+ Service tag value
23374
+ """
23375
+ return pulumi.get(self, "value")
23376
+
23377
+
23378
+ @pulumi.output_type
23379
+ class ValkeyTechEmail(dict):
23380
+ def __init__(__self__, *,
23381
+ email: str):
23382
+ """
23383
+ :param str email: An email address to contact for technical issues
23384
+ """
23385
+ pulumi.set(__self__, "email", email)
23386
+
23387
+ @property
23388
+ @pulumi.getter
23389
+ def email(self) -> str:
23390
+ """
23391
+ An email address to contact for technical issues
23392
+ """
23393
+ return pulumi.get(self, "email")
23394
+
23395
+
23396
+ @pulumi.output_type
23397
+ class ValkeyValkey(dict):
23398
+ @staticmethod
23399
+ def __key_warning(key: str):
23400
+ suggest = None
23401
+ if key == "replicaUri":
23402
+ suggest = "replica_uri"
23403
+ elif key == "slaveUris":
23404
+ suggest = "slave_uris"
23405
+
23406
+ if suggest:
23407
+ pulumi.log.warn(f"Key '{key}' not found in ValkeyValkey. Access the value via the '{suggest}' property getter instead.")
23408
+
23409
+ def __getitem__(self, key: str) -> Any:
23410
+ ValkeyValkey.__key_warning(key)
23411
+ return super().__getitem__(key)
23412
+
23413
+ def get(self, key: str, default = None) -> Any:
23414
+ ValkeyValkey.__key_warning(key)
23415
+ return super().get(key, default)
23416
+
23417
+ def __init__(__self__, *,
23418
+ password: Optional[str] = None,
23419
+ replica_uri: Optional[str] = None,
23420
+ slave_uris: Optional[Sequence[str]] = None,
23421
+ uris: Optional[Sequence[str]] = None):
23422
+ """
23423
+ :param str password: Valkey password.
23424
+ :param str replica_uri: Valkey replica server URI.
23425
+ :param Sequence[str] slave_uris: Valkey slave server URIs.
23426
+ :param Sequence[str] uris: Valkey server URIs.
23427
+ """
23428
+ if password is not None:
23429
+ pulumi.set(__self__, "password", password)
23430
+ if replica_uri is not None:
23431
+ pulumi.set(__self__, "replica_uri", replica_uri)
23432
+ if slave_uris is not None:
23433
+ pulumi.set(__self__, "slave_uris", slave_uris)
23434
+ if uris is not None:
23435
+ pulumi.set(__self__, "uris", uris)
23436
+
23437
+ @property
23438
+ @pulumi.getter
23439
+ def password(self) -> Optional[str]:
23440
+ """
23441
+ Valkey password.
23442
+ """
23443
+ return pulumi.get(self, "password")
23444
+
23445
+ @property
23446
+ @pulumi.getter(name="replicaUri")
23447
+ def replica_uri(self) -> Optional[str]:
23448
+ """
23449
+ Valkey replica server URI.
23450
+ """
23451
+ return pulumi.get(self, "replica_uri")
23452
+
23453
+ @property
23454
+ @pulumi.getter(name="slaveUris")
23455
+ def slave_uris(self) -> Optional[Sequence[str]]:
23456
+ """
23457
+ Valkey slave server URIs.
23458
+ """
23459
+ return pulumi.get(self, "slave_uris")
23460
+
23461
+ @property
23462
+ @pulumi.getter
23463
+ def uris(self) -> Optional[Sequence[str]]:
23464
+ """
23465
+ Valkey server URIs.
23182
23466
  """
23183
23467
  return pulumi.get(self, "uris")
23184
23468
 
23185
23469
 
23186
23470
  @pulumi.output_type
23187
- class GetCassandaCassandraUserConfigResult(dict):
23471
+ class ValkeyValkeyUserConfig(dict):
23472
+ @staticmethod
23473
+ def __key_warning(key: str):
23474
+ suggest = None
23475
+ if key == "additionalBackupRegions":
23476
+ suggest = "additional_backup_regions"
23477
+ elif key == "ipFilterObjects":
23478
+ suggest = "ip_filter_objects"
23479
+ elif key == "ipFilterStrings":
23480
+ suggest = "ip_filter_strings"
23481
+ elif key == "ipFilters":
23482
+ suggest = "ip_filters"
23483
+ elif key == "privateAccess":
23484
+ suggest = "private_access"
23485
+ elif key == "privatelinkAccess":
23486
+ suggest = "privatelink_access"
23487
+ elif key == "projectToForkFrom":
23488
+ suggest = "project_to_fork_from"
23489
+ elif key == "publicAccess":
23490
+ suggest = "public_access"
23491
+ elif key == "recoveryBasebackupName":
23492
+ suggest = "recovery_basebackup_name"
23493
+ elif key == "serviceLog":
23494
+ suggest = "service_log"
23495
+ elif key == "serviceToForkFrom":
23496
+ suggest = "service_to_fork_from"
23497
+ elif key == "staticIps":
23498
+ suggest = "static_ips"
23499
+ elif key == "valkeyAclChannelsDefault":
23500
+ suggest = "valkey_acl_channels_default"
23501
+ elif key == "valkeyIoThreads":
23502
+ suggest = "valkey_io_threads"
23503
+ elif key == "valkeyLfuDecayTime":
23504
+ suggest = "valkey_lfu_decay_time"
23505
+ elif key == "valkeyLfuLogFactor":
23506
+ suggest = "valkey_lfu_log_factor"
23507
+ elif key == "valkeyMaxmemoryPolicy":
23508
+ suggest = "valkey_maxmemory_policy"
23509
+ elif key == "valkeyNotifyKeyspaceEvents":
23510
+ suggest = "valkey_notify_keyspace_events"
23511
+ elif key == "valkeyNumberOfDatabases":
23512
+ suggest = "valkey_number_of_databases"
23513
+ elif key == "valkeyPersistence":
23514
+ suggest = "valkey_persistence"
23515
+ elif key == "valkeyPubsubClientOutputBufferLimit":
23516
+ suggest = "valkey_pubsub_client_output_buffer_limit"
23517
+ elif key == "valkeySsl":
23518
+ suggest = "valkey_ssl"
23519
+ elif key == "valkeyTimeout":
23520
+ suggest = "valkey_timeout"
23521
+
23522
+ if suggest:
23523
+ pulumi.log.warn(f"Key '{key}' not found in ValkeyValkeyUserConfig. Access the value via the '{suggest}' property getter instead.")
23524
+
23525
+ def __getitem__(self, key: str) -> Any:
23526
+ ValkeyValkeyUserConfig.__key_warning(key)
23527
+ return super().__getitem__(key)
23528
+
23529
+ def get(self, key: str, default = None) -> Any:
23530
+ ValkeyValkeyUserConfig.__key_warning(key)
23531
+ return super().get(key, default)
23532
+
23188
23533
  def __init__(__self__, *,
23189
23534
  additional_backup_regions: Optional[str] = None,
23190
- backup_hour: Optional[int] = None,
23191
- backup_minute: Optional[int] = None,
23192
- cassandra: Optional['outputs.GetCassandaCassandraUserConfigCassandraResult'] = None,
23193
- cassandra_version: Optional[str] = None,
23194
- ip_filter_objects: Optional[Sequence['outputs.GetCassandaCassandraUserConfigIpFilterObjectResult']] = None,
23535
+ ip_filter_objects: Optional[Sequence['outputs.ValkeyValkeyUserConfigIpFilterObject']] = None,
23195
23536
  ip_filter_strings: Optional[Sequence[str]] = None,
23196
23537
  ip_filters: Optional[Sequence[str]] = None,
23197
- migrate_sstableloader: Optional[bool] = None,
23198
- private_access: Optional['outputs.GetCassandaCassandraUserConfigPrivateAccessResult'] = None,
23538
+ migration: Optional['outputs.ValkeyValkeyUserConfigMigration'] = None,
23539
+ private_access: Optional['outputs.ValkeyValkeyUserConfigPrivateAccess'] = None,
23540
+ privatelink_access: Optional['outputs.ValkeyValkeyUserConfigPrivatelinkAccess'] = None,
23199
23541
  project_to_fork_from: Optional[str] = None,
23200
- public_access: Optional['outputs.GetCassandaCassandraUserConfigPublicAccessResult'] = None,
23542
+ public_access: Optional['outputs.ValkeyValkeyUserConfigPublicAccess'] = None,
23543
+ recovery_basebackup_name: Optional[str] = None,
23201
23544
  service_log: Optional[bool] = None,
23202
23545
  service_to_fork_from: Optional[str] = None,
23203
- service_to_join_with: Optional[str] = None,
23204
- static_ips: Optional[bool] = None):
23546
+ static_ips: Optional[bool] = None,
23547
+ valkey_acl_channels_default: Optional[str] = None,
23548
+ valkey_io_threads: Optional[int] = None,
23549
+ valkey_lfu_decay_time: Optional[int] = None,
23550
+ valkey_lfu_log_factor: Optional[int] = None,
23551
+ valkey_maxmemory_policy: Optional[str] = None,
23552
+ valkey_notify_keyspace_events: Optional[str] = None,
23553
+ valkey_number_of_databases: Optional[int] = None,
23554
+ valkey_persistence: Optional[str] = None,
23555
+ valkey_pubsub_client_output_buffer_limit: Optional[int] = None,
23556
+ valkey_ssl: Optional[bool] = None,
23557
+ valkey_timeout: Optional[int] = None):
23205
23558
  """
23206
23559
  :param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
23207
- :param int backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Example: `3`.
23208
- :param int backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
23209
- :param 'GetCassandaCassandraUserConfigCassandraArgs' cassandra: Cassandra configuration values
23210
- :param str cassandra_version: Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
23211
- :param Sequence['GetCassandaCassandraUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
23560
+ :param Sequence['ValkeyValkeyUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
23212
23561
  :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
23213
23562
  :param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
23214
- :param bool migrate_sstableloader: Sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
23215
- :param 'GetCassandaCassandraUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
23563
+ :param 'ValkeyValkeyUserConfigMigrationArgs' migration: Migrate data from existing server
23564
+ :param 'ValkeyValkeyUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
23565
+ :param 'ValkeyValkeyUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
23216
23566
  :param str project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
23217
- :param 'GetCassandaCassandraUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
23567
+ :param 'ValkeyValkeyUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
23568
+ :param str recovery_basebackup_name: Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
23218
23569
  :param bool service_log: Store logs for the service so that they are available in the HTTP API and console.
23219
23570
  :param str service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
23220
- :param str service_to_join_with: When bootstrapping, instead of creating a new Cassandra cluster try to join an existing one from another service. Can only be set on service creation. Example: `my-test-cassandra`.
23221
23571
  :param bool static_ips: Use static public IP addresses.
23572
+ :param str valkey_acl_channels_default: Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Valkey configuration acl-pubsub-default.
23573
+ :param int valkey_io_threads: Set Valkey IO thread count. Changing this will cause a restart of the Valkey service. Example: `1`.
23574
+ :param int valkey_lfu_decay_time: LFU maxmemory-policy counter decay time in minutes. Default: `1`.
23575
+ :param int valkey_lfu_log_factor: Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. Default: `10`.
23576
+ :param str valkey_maxmemory_policy: Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Valkey maxmemory-policy. Default: `noeviction`.
23577
+ :param str valkey_notify_keyspace_events: Set notify-keyspace-events option.
23578
+ :param int valkey_number_of_databases: Set number of Valkey databases. Changing this will cause a restart of the Valkey service. Example: `16`.
23579
+ :param str valkey_persistence: Enum: `off`, `rdb`. When persistence is `rdb`, Valkey does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is `off`, no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
23580
+ :param int valkey_pubsub_client_output_buffer_limit: Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan. Example: `64`.
23581
+ :param bool valkey_ssl: Require SSL to access Valkey. Default: `true`.
23582
+ :param int valkey_timeout: Valkey idle connection timeout in seconds. Default: `300`.
23222
23583
  """
23223
23584
  if additional_backup_regions is not None:
23224
23585
  pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
23225
- if backup_hour is not None:
23226
- pulumi.set(__self__, "backup_hour", backup_hour)
23227
- if backup_minute is not None:
23228
- pulumi.set(__self__, "backup_minute", backup_minute)
23229
- if cassandra is not None:
23230
- pulumi.set(__self__, "cassandra", cassandra)
23231
- if cassandra_version is not None:
23232
- pulumi.set(__self__, "cassandra_version", cassandra_version)
23233
23586
  if ip_filter_objects is not None:
23234
23587
  pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
23235
23588
  if ip_filter_strings is not None:
23236
23589
  pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
23237
23590
  if ip_filters is not None:
23238
23591
  pulumi.set(__self__, "ip_filters", ip_filters)
23239
- if migrate_sstableloader is not None:
23240
- pulumi.set(__self__, "migrate_sstableloader", migrate_sstableloader)
23592
+ if migration is not None:
23593
+ pulumi.set(__self__, "migration", migration)
23241
23594
  if private_access is not None:
23242
23595
  pulumi.set(__self__, "private_access", private_access)
23596
+ if privatelink_access is not None:
23597
+ pulumi.set(__self__, "privatelink_access", privatelink_access)
23243
23598
  if project_to_fork_from is not None:
23244
23599
  pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
23245
23600
  if public_access is not None:
23246
23601
  pulumi.set(__self__, "public_access", public_access)
23602
+ if recovery_basebackup_name is not None:
23603
+ pulumi.set(__self__, "recovery_basebackup_name", recovery_basebackup_name)
23247
23604
  if service_log is not None:
23248
23605
  pulumi.set(__self__, "service_log", service_log)
23249
23606
  if service_to_fork_from is not None:
23250
23607
  pulumi.set(__self__, "service_to_fork_from", service_to_fork_from)
23251
- if service_to_join_with is not None:
23252
- pulumi.set(__self__, "service_to_join_with", service_to_join_with)
23253
23608
  if static_ips is not None:
23254
23609
  pulumi.set(__self__, "static_ips", static_ips)
23610
+ if valkey_acl_channels_default is not None:
23611
+ pulumi.set(__self__, "valkey_acl_channels_default", valkey_acl_channels_default)
23612
+ if valkey_io_threads is not None:
23613
+ pulumi.set(__self__, "valkey_io_threads", valkey_io_threads)
23614
+ if valkey_lfu_decay_time is not None:
23615
+ pulumi.set(__self__, "valkey_lfu_decay_time", valkey_lfu_decay_time)
23616
+ if valkey_lfu_log_factor is not None:
23617
+ pulumi.set(__self__, "valkey_lfu_log_factor", valkey_lfu_log_factor)
23618
+ if valkey_maxmemory_policy is not None:
23619
+ pulumi.set(__self__, "valkey_maxmemory_policy", valkey_maxmemory_policy)
23620
+ if valkey_notify_keyspace_events is not None:
23621
+ pulumi.set(__self__, "valkey_notify_keyspace_events", valkey_notify_keyspace_events)
23622
+ if valkey_number_of_databases is not None:
23623
+ pulumi.set(__self__, "valkey_number_of_databases", valkey_number_of_databases)
23624
+ if valkey_persistence is not None:
23625
+ pulumi.set(__self__, "valkey_persistence", valkey_persistence)
23626
+ if valkey_pubsub_client_output_buffer_limit is not None:
23627
+ pulumi.set(__self__, "valkey_pubsub_client_output_buffer_limit", valkey_pubsub_client_output_buffer_limit)
23628
+ if valkey_ssl is not None:
23629
+ pulumi.set(__self__, "valkey_ssl", valkey_ssl)
23630
+ if valkey_timeout is not None:
23631
+ pulumi.set(__self__, "valkey_timeout", valkey_timeout)
23255
23632
 
23256
23633
  @property
23257
23634
  @pulumi.getter(name="additionalBackupRegions")
23258
- @_utilities.deprecated("""This property is deprecated.""")
23259
23635
  def additional_backup_regions(self) -> Optional[str]:
23260
23636
  """
23261
23637
  Additional Cloud Regions for Backup Replication.
23262
23638
  """
23263
23639
  return pulumi.get(self, "additional_backup_regions")
23264
23640
 
23265
- @property
23266
- @pulumi.getter(name="backupHour")
23267
- def backup_hour(self) -> Optional[int]:
23268
- """
23269
- The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Example: `3`.
23270
- """
23271
- return pulumi.get(self, "backup_hour")
23272
-
23273
- @property
23274
- @pulumi.getter(name="backupMinute")
23275
- def backup_minute(self) -> Optional[int]:
23276
- """
23277
- The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
23278
- """
23279
- return pulumi.get(self, "backup_minute")
23280
-
23281
- @property
23282
- @pulumi.getter
23283
- def cassandra(self) -> Optional['outputs.GetCassandaCassandraUserConfigCassandraResult']:
23284
- """
23285
- Cassandra configuration values
23286
- """
23287
- return pulumi.get(self, "cassandra")
23288
-
23289
- @property
23290
- @pulumi.getter(name="cassandraVersion")
23291
- def cassandra_version(self) -> Optional[str]:
23292
- """
23293
- Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
23294
- """
23295
- return pulumi.get(self, "cassandra_version")
23296
-
23297
23641
  @property
23298
23642
  @pulumi.getter(name="ipFilterObjects")
23299
- def ip_filter_objects(self) -> Optional[Sequence['outputs.GetCassandaCassandraUserConfigIpFilterObjectResult']]:
23643
+ def ip_filter_objects(self) -> Optional[Sequence['outputs.ValkeyValkeyUserConfigIpFilterObject']]:
23300
23644
  """
23301
23645
  Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
23302
23646
  """
@@ -23320,21 +23664,29 @@ class GetCassandaCassandraUserConfigResult(dict):
23320
23664
  return pulumi.get(self, "ip_filters")
23321
23665
 
23322
23666
  @property
23323
- @pulumi.getter(name="migrateSstableloader")
23324
- def migrate_sstableloader(self) -> Optional[bool]:
23667
+ @pulumi.getter
23668
+ def migration(self) -> Optional['outputs.ValkeyValkeyUserConfigMigration']:
23325
23669
  """
23326
- Sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
23670
+ Migrate data from existing server
23327
23671
  """
23328
- return pulumi.get(self, "migrate_sstableloader")
23672
+ return pulumi.get(self, "migration")
23329
23673
 
23330
23674
  @property
23331
23675
  @pulumi.getter(name="privateAccess")
23332
- def private_access(self) -> Optional['outputs.GetCassandaCassandraUserConfigPrivateAccessResult']:
23676
+ def private_access(self) -> Optional['outputs.ValkeyValkeyUserConfigPrivateAccess']:
23333
23677
  """
23334
23678
  Allow access to selected service ports from private networks
23335
23679
  """
23336
23680
  return pulumi.get(self, "private_access")
23337
23681
 
23682
+ @property
23683
+ @pulumi.getter(name="privatelinkAccess")
23684
+ def privatelink_access(self) -> Optional['outputs.ValkeyValkeyUserConfigPrivatelinkAccess']:
23685
+ """
23686
+ Allow access to selected service components through Privatelink
23687
+ """
23688
+ return pulumi.get(self, "privatelink_access")
23689
+
23338
23690
  @property
23339
23691
  @pulumi.getter(name="projectToForkFrom")
23340
23692
  def project_to_fork_from(self) -> Optional[str]:
@@ -23345,12 +23697,20 @@ class GetCassandaCassandraUserConfigResult(dict):
23345
23697
 
23346
23698
  @property
23347
23699
  @pulumi.getter(name="publicAccess")
23348
- def public_access(self) -> Optional['outputs.GetCassandaCassandraUserConfigPublicAccessResult']:
23700
+ def public_access(self) -> Optional['outputs.ValkeyValkeyUserConfigPublicAccess']:
23349
23701
  """
23350
23702
  Allow access to selected service ports from the public Internet
23351
23703
  """
23352
23704
  return pulumi.get(self, "public_access")
23353
23705
 
23706
+ @property
23707
+ @pulumi.getter(name="recoveryBasebackupName")
23708
+ def recovery_basebackup_name(self) -> Optional[str]:
23709
+ """
23710
+ Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
23711
+ """
23712
+ return pulumi.get(self, "recovery_basebackup_name")
23713
+
23354
23714
  @property
23355
23715
  @pulumi.getter(name="serviceLog")
23356
23716
  def service_log(self) -> Optional[bool]:
@@ -23367,14 +23727,6 @@ class GetCassandaCassandraUserConfigResult(dict):
23367
23727
  """
23368
23728
  return pulumi.get(self, "service_to_fork_from")
23369
23729
 
23370
- @property
23371
- @pulumi.getter(name="serviceToJoinWith")
23372
- def service_to_join_with(self) -> Optional[str]:
23373
- """
23374
- When bootstrapping, instead of creating a new Cassandra cluster try to join an existing one from another service. Can only be set on service creation. Example: `my-test-cassandra`.
23375
- """
23376
- return pulumi.get(self, "service_to_join_with")
23377
-
23378
23730
  @property
23379
23731
  @pulumi.getter(name="staticIps")
23380
23732
  def static_ips(self) -> Optional[bool]:
@@ -23383,52 +23735,97 @@ class GetCassandaCassandraUserConfigResult(dict):
23383
23735
  """
23384
23736
  return pulumi.get(self, "static_ips")
23385
23737
 
23738
+ @property
23739
+ @pulumi.getter(name="valkeyAclChannelsDefault")
23740
+ def valkey_acl_channels_default(self) -> Optional[str]:
23741
+ """
23742
+ Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Valkey configuration acl-pubsub-default.
23743
+ """
23744
+ return pulumi.get(self, "valkey_acl_channels_default")
23386
23745
 
23387
- @pulumi.output_type
23388
- class GetCassandaCassandraUserConfigCassandraResult(dict):
23389
- def __init__(__self__, *,
23390
- batch_size_fail_threshold_in_kb: Optional[int] = None,
23391
- batch_size_warn_threshold_in_kb: Optional[int] = None,
23392
- datacenter: Optional[str] = None):
23746
+ @property
23747
+ @pulumi.getter(name="valkeyIoThreads")
23748
+ def valkey_io_threads(self) -> Optional[int]:
23393
23749
  """
23394
- :param int batch_size_fail_threshold_in_kb: Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default. Example: `50`.
23395
- :param int batch_size_warn_threshold_in_kb: Log a warning message on any multiple-partition batch size exceeding this value.5kb per batch by default.Caution should be taken on increasing the size of this thresholdas it can lead to node instability. Example: `5`.
23396
- :param str datacenter: Name of the datacenter to which nodes of this service belong. Can be set only when creating the service. Example: `my-service-google-west1`.
23750
+ Set Valkey IO thread count. Changing this will cause a restart of the Valkey service. Example: `1`.
23397
23751
  """
23398
- if batch_size_fail_threshold_in_kb is not None:
23399
- pulumi.set(__self__, "batch_size_fail_threshold_in_kb", batch_size_fail_threshold_in_kb)
23400
- if batch_size_warn_threshold_in_kb is not None:
23401
- pulumi.set(__self__, "batch_size_warn_threshold_in_kb", batch_size_warn_threshold_in_kb)
23402
- if datacenter is not None:
23403
- pulumi.set(__self__, "datacenter", datacenter)
23752
+ return pulumi.get(self, "valkey_io_threads")
23404
23753
 
23405
23754
  @property
23406
- @pulumi.getter(name="batchSizeFailThresholdInKb")
23407
- def batch_size_fail_threshold_in_kb(self) -> Optional[int]:
23755
+ @pulumi.getter(name="valkeyLfuDecayTime")
23756
+ def valkey_lfu_decay_time(self) -> Optional[int]:
23408
23757
  """
23409
- Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default. Example: `50`.
23758
+ LFU maxmemory-policy counter decay time in minutes. Default: `1`.
23410
23759
  """
23411
- return pulumi.get(self, "batch_size_fail_threshold_in_kb")
23760
+ return pulumi.get(self, "valkey_lfu_decay_time")
23412
23761
 
23413
23762
  @property
23414
- @pulumi.getter(name="batchSizeWarnThresholdInKb")
23415
- def batch_size_warn_threshold_in_kb(self) -> Optional[int]:
23763
+ @pulumi.getter(name="valkeyLfuLogFactor")
23764
+ def valkey_lfu_log_factor(self) -> Optional[int]:
23416
23765
  """
23417
- Log a warning message on any multiple-partition batch size exceeding this value.5kb per batch by default.Caution should be taken on increasing the size of this thresholdas it can lead to node instability. Example: `5`.
23766
+ Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. Default: `10`.
23418
23767
  """
23419
- return pulumi.get(self, "batch_size_warn_threshold_in_kb")
23768
+ return pulumi.get(self, "valkey_lfu_log_factor")
23420
23769
 
23421
23770
  @property
23422
- @pulumi.getter
23423
- def datacenter(self) -> Optional[str]:
23771
+ @pulumi.getter(name="valkeyMaxmemoryPolicy")
23772
+ def valkey_maxmemory_policy(self) -> Optional[str]:
23424
23773
  """
23425
- Name of the datacenter to which nodes of this service belong. Can be set only when creating the service. Example: `my-service-google-west1`.
23774
+ Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Valkey maxmemory-policy. Default: `noeviction`.
23426
23775
  """
23427
- return pulumi.get(self, "datacenter")
23776
+ return pulumi.get(self, "valkey_maxmemory_policy")
23777
+
23778
+ @property
23779
+ @pulumi.getter(name="valkeyNotifyKeyspaceEvents")
23780
+ def valkey_notify_keyspace_events(self) -> Optional[str]:
23781
+ """
23782
+ Set notify-keyspace-events option.
23783
+ """
23784
+ return pulumi.get(self, "valkey_notify_keyspace_events")
23785
+
23786
+ @property
23787
+ @pulumi.getter(name="valkeyNumberOfDatabases")
23788
+ def valkey_number_of_databases(self) -> Optional[int]:
23789
+ """
23790
+ Set number of Valkey databases. Changing this will cause a restart of the Valkey service. Example: `16`.
23791
+ """
23792
+ return pulumi.get(self, "valkey_number_of_databases")
23793
+
23794
+ @property
23795
+ @pulumi.getter(name="valkeyPersistence")
23796
+ def valkey_persistence(self) -> Optional[str]:
23797
+ """
23798
+ Enum: `off`, `rdb`. When persistence is `rdb`, Valkey does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is `off`, no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
23799
+ """
23800
+ return pulumi.get(self, "valkey_persistence")
23801
+
23802
+ @property
23803
+ @pulumi.getter(name="valkeyPubsubClientOutputBufferLimit")
23804
+ def valkey_pubsub_client_output_buffer_limit(self) -> Optional[int]:
23805
+ """
23806
+ Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan. Example: `64`.
23807
+ """
23808
+ return pulumi.get(self, "valkey_pubsub_client_output_buffer_limit")
23809
+
23810
+ @property
23811
+ @pulumi.getter(name="valkeySsl")
23812
+ def valkey_ssl(self) -> Optional[bool]:
23813
+ """
23814
+ Require SSL to access Valkey. Default: `true`.
23815
+ """
23816
+ return pulumi.get(self, "valkey_ssl")
23817
+
23818
+ @property
23819
+ @pulumi.getter(name="valkeyTimeout")
23820
+ def valkey_timeout(self) -> Optional[int]:
23821
+ """
23822
+ Valkey idle connection timeout in seconds. Default: `300`.
23823
+ """
23824
+ return pulumi.get(self, "valkey_timeout")
23428
23825
 
23429
23826
 
23430
23827
  @pulumi.output_type
23431
- class GetCassandaCassandraUserConfigIpFilterObjectResult(dict):
23828
+ class ValkeyValkeyUserConfigIpFilterObject(dict):
23432
23829
  def __init__(__self__, *,
23433
23830
  network: str,
23434
23831
  description: Optional[str] = None):
@@ -23458,216 +23855,285 @@ class GetCassandaCassandraUserConfigIpFilterObjectResult(dict):
23458
23855
 
23459
23856
 
23460
23857
  @pulumi.output_type
23461
- class GetCassandaCassandraUserConfigPrivateAccessResult(dict):
23462
- def __init__(__self__, *,
23463
- prometheus: Optional[bool] = None):
23464
- """
23465
- :param bool prometheus: Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
23466
- """
23467
- if prometheus is not None:
23468
- pulumi.set(__self__, "prometheus", prometheus)
23858
+ class ValkeyValkeyUserConfigMigration(dict):
23859
+ @staticmethod
23860
+ def __key_warning(key: str):
23861
+ suggest = None
23862
+ if key == "ignoreDbs":
23863
+ suggest = "ignore_dbs"
23469
23864
 
23470
- @property
23471
- @pulumi.getter
23472
- def prometheus(self) -> Optional[bool]:
23473
- """
23474
- Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
23475
- """
23476
- return pulumi.get(self, "prometheus")
23865
+ if suggest:
23866
+ pulumi.log.warn(f"Key '{key}' not found in ValkeyValkeyUserConfigMigration. Access the value via the '{suggest}' property getter instead.")
23477
23867
 
23868
+ def __getitem__(self, key: str) -> Any:
23869
+ ValkeyValkeyUserConfigMigration.__key_warning(key)
23870
+ return super().__getitem__(key)
23871
+
23872
+ def get(self, key: str, default = None) -> Any:
23873
+ ValkeyValkeyUserConfigMigration.__key_warning(key)
23874
+ return super().get(key, default)
23478
23875
 
23479
- @pulumi.output_type
23480
- class GetCassandaCassandraUserConfigPublicAccessResult(dict):
23481
23876
  def __init__(__self__, *,
23482
- prometheus: Optional[bool] = None):
23877
+ host: str,
23878
+ port: int,
23879
+ dbname: Optional[str] = None,
23880
+ ignore_dbs: Optional[str] = None,
23881
+ method: Optional[str] = None,
23882
+ password: Optional[str] = None,
23883
+ ssl: Optional[bool] = None,
23884
+ username: Optional[str] = None):
23483
23885
  """
23484
- :param bool prometheus: Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
23886
+ :param str host: Hostname or IP address of the server where to migrate data from. Example: `my.server.com`.
23887
+ :param int port: Port number of the server where to migrate data from. Example: `1234`.
23888
+ :param str dbname: Database name for bootstrapping the initial connection. Example: `defaultdb`.
23889
+ :param str ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). Example: `db1,db2`.
23890
+ :param str method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
23891
+ :param str password: Password for authentication with the server where to migrate data from. Example: `jjKk45Nnd`.
23892
+ :param bool ssl: The server where to migrate data from is secured with SSL. Default: `true`.
23893
+ :param str username: User name for authentication with the server where to migrate data from. Example: `myname`.
23485
23894
  """
23486
- if prometheus is not None:
23487
- pulumi.set(__self__, "prometheus", prometheus)
23895
+ pulumi.set(__self__, "host", host)
23896
+ pulumi.set(__self__, "port", port)
23897
+ if dbname is not None:
23898
+ pulumi.set(__self__, "dbname", dbname)
23899
+ if ignore_dbs is not None:
23900
+ pulumi.set(__self__, "ignore_dbs", ignore_dbs)
23901
+ if method is not None:
23902
+ pulumi.set(__self__, "method", method)
23903
+ if password is not None:
23904
+ pulumi.set(__self__, "password", password)
23905
+ if ssl is not None:
23906
+ pulumi.set(__self__, "ssl", ssl)
23907
+ if username is not None:
23908
+ pulumi.set(__self__, "username", username)
23488
23909
 
23489
23910
  @property
23490
23911
  @pulumi.getter
23491
- def prometheus(self) -> Optional[bool]:
23912
+ def host(self) -> str:
23492
23913
  """
23493
- Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
23914
+ Hostname or IP address of the server where to migrate data from. Example: `my.server.com`.
23494
23915
  """
23495
- return pulumi.get(self, "prometheus")
23496
-
23916
+ return pulumi.get(self, "host")
23497
23917
 
23498
- @pulumi.output_type
23499
- class GetCassandaComponentResult(dict):
23500
- def __init__(__self__, *,
23501
- component: str,
23502
- connection_uri: str,
23503
- host: str,
23504
- kafka_authentication_method: str,
23505
- port: int,
23506
- route: str,
23507
- ssl: bool,
23508
- usage: str):
23918
+ @property
23919
+ @pulumi.getter
23920
+ def port(self) -> int:
23509
23921
  """
23510
- :param str component: Service component name
23511
- :param str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
23512
- :param str host: Host name for connecting to the service component
23513
- :param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
23514
- :param int port: Port number for connecting to the service component
23515
- :param str route: Network access route
23516
- :param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
23517
- :param str usage: DNS usage name
23922
+ Port number of the server where to migrate data from. Example: `1234`.
23518
23923
  """
23519
- pulumi.set(__self__, "component", component)
23520
- pulumi.set(__self__, "connection_uri", connection_uri)
23521
- pulumi.set(__self__, "host", host)
23522
- pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
23523
- pulumi.set(__self__, "port", port)
23524
- pulumi.set(__self__, "route", route)
23525
- pulumi.set(__self__, "ssl", ssl)
23526
- pulumi.set(__self__, "usage", usage)
23924
+ return pulumi.get(self, "port")
23527
23925
 
23528
23926
  @property
23529
23927
  @pulumi.getter
23530
- def component(self) -> str:
23928
+ def dbname(self) -> Optional[str]:
23531
23929
  """
23532
- Service component name
23930
+ Database name for bootstrapping the initial connection. Example: `defaultdb`.
23533
23931
  """
23534
- return pulumi.get(self, "component")
23932
+ return pulumi.get(self, "dbname")
23535
23933
 
23536
23934
  @property
23537
- @pulumi.getter(name="connectionUri")
23538
- def connection_uri(self) -> str:
23935
+ @pulumi.getter(name="ignoreDbs")
23936
+ def ignore_dbs(self) -> Optional[str]:
23539
23937
  """
23540
- Connection info for connecting to the service component. This is a combination of host and port.
23938
+ Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). Example: `db1,db2`.
23541
23939
  """
23542
- return pulumi.get(self, "connection_uri")
23940
+ return pulumi.get(self, "ignore_dbs")
23543
23941
 
23544
23942
  @property
23545
23943
  @pulumi.getter
23546
- def host(self) -> str:
23944
+ def method(self) -> Optional[str]:
23547
23945
  """
23548
- Host name for connecting to the service component
23946
+ Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
23549
23947
  """
23550
- return pulumi.get(self, "host")
23948
+ return pulumi.get(self, "method")
23551
23949
 
23552
23950
  @property
23553
- @pulumi.getter(name="kafkaAuthenticationMethod")
23554
- def kafka_authentication_method(self) -> str:
23951
+ @pulumi.getter
23952
+ def password(self) -> Optional[str]:
23555
23953
  """
23556
- Kafka authentication method. This is a value specific to the 'kafka' service component
23954
+ Password for authentication with the server where to migrate data from. Example: `jjKk45Nnd`.
23557
23955
  """
23558
- return pulumi.get(self, "kafka_authentication_method")
23956
+ return pulumi.get(self, "password")
23559
23957
 
23560
23958
  @property
23561
23959
  @pulumi.getter
23562
- def port(self) -> int:
23960
+ def ssl(self) -> Optional[bool]:
23563
23961
  """
23564
- Port number for connecting to the service component
23962
+ The server where to migrate data from is secured with SSL. Default: `true`.
23565
23963
  """
23566
- return pulumi.get(self, "port")
23964
+ return pulumi.get(self, "ssl")
23567
23965
 
23568
23966
  @property
23569
23967
  @pulumi.getter
23570
- def route(self) -> str:
23968
+ def username(self) -> Optional[str]:
23571
23969
  """
23572
- Network access route
23970
+ User name for authentication with the server where to migrate data from. Example: `myname`.
23573
23971
  """
23574
- return pulumi.get(self, "route")
23972
+ return pulumi.get(self, "username")
23973
+
23974
+
23975
+ @pulumi.output_type
23976
+ class ValkeyValkeyUserConfigPrivateAccess(dict):
23977
+ def __init__(__self__, *,
23978
+ prometheus: Optional[bool] = None,
23979
+ valkey: Optional[bool] = None):
23980
+ """
23981
+ :param bool prometheus: Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
23982
+ :param bool valkey: Allow clients to connect to valkey with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
23983
+ """
23984
+ if prometheus is not None:
23985
+ pulumi.set(__self__, "prometheus", prometheus)
23986
+ if valkey is not None:
23987
+ pulumi.set(__self__, "valkey", valkey)
23575
23988
 
23576
23989
  @property
23577
23990
  @pulumi.getter
23578
- def ssl(self) -> bool:
23991
+ def prometheus(self) -> Optional[bool]:
23579
23992
  """
23580
- Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
23993
+ Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
23581
23994
  """
23582
- return pulumi.get(self, "ssl")
23995
+ return pulumi.get(self, "prometheus")
23583
23996
 
23584
23997
  @property
23585
23998
  @pulumi.getter
23586
- def usage(self) -> str:
23999
+ def valkey(self) -> Optional[bool]:
23587
24000
  """
23588
- DNS usage name
24001
+ Allow clients to connect to valkey with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
23589
24002
  """
23590
- return pulumi.get(self, "usage")
24003
+ return pulumi.get(self, "valkey")
23591
24004
 
23592
24005
 
23593
24006
  @pulumi.output_type
23594
- class GetCassandaServiceIntegrationResult(dict):
24007
+ class ValkeyValkeyUserConfigPrivatelinkAccess(dict):
23595
24008
  def __init__(__self__, *,
23596
- integration_type: str,
23597
- source_service_name: str):
24009
+ prometheus: Optional[bool] = None,
24010
+ valkey: Optional[bool] = None):
23598
24011
  """
23599
- :param str integration_type: Type of the service integration. The only supported value at the moment is `read_replica`
23600
- :param str source_service_name: Name of the source service
24012
+ :param bool prometheus: Enable prometheus.
24013
+ :param bool valkey: Enable valkey.
23601
24014
  """
23602
- pulumi.set(__self__, "integration_type", integration_type)
23603
- pulumi.set(__self__, "source_service_name", source_service_name)
24015
+ if prometheus is not None:
24016
+ pulumi.set(__self__, "prometheus", prometheus)
24017
+ if valkey is not None:
24018
+ pulumi.set(__self__, "valkey", valkey)
23604
24019
 
23605
24020
  @property
23606
- @pulumi.getter(name="integrationType")
23607
- def integration_type(self) -> str:
24021
+ @pulumi.getter
24022
+ def prometheus(self) -> Optional[bool]:
23608
24023
  """
23609
- Type of the service integration. The only supported value at the moment is `read_replica`
24024
+ Enable prometheus.
23610
24025
  """
23611
- return pulumi.get(self, "integration_type")
24026
+ return pulumi.get(self, "prometheus")
23612
24027
 
23613
24028
  @property
23614
- @pulumi.getter(name="sourceServiceName")
23615
- def source_service_name(self) -> str:
24029
+ @pulumi.getter
24030
+ def valkey(self) -> Optional[bool]:
23616
24031
  """
23617
- Name of the source service
24032
+ Enable valkey.
23618
24033
  """
23619
- return pulumi.get(self, "source_service_name")
24034
+ return pulumi.get(self, "valkey")
23620
24035
 
23621
24036
 
23622
24037
  @pulumi.output_type
23623
- class GetCassandaTagResult(dict):
24038
+ class ValkeyValkeyUserConfigPublicAccess(dict):
23624
24039
  def __init__(__self__, *,
23625
- key: str,
23626
- value: str):
24040
+ prometheus: Optional[bool] = None,
24041
+ valkey: Optional[bool] = None):
23627
24042
  """
23628
- :param str key: Service tag key
23629
- :param str value: Service tag value
24043
+ :param bool prometheus: Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
24044
+ :param bool valkey: Allow clients to connect to valkey from the public internet for service nodes that are in a project VPC or another type of private network.
23630
24045
  """
23631
- pulumi.set(__self__, "key", key)
23632
- pulumi.set(__self__, "value", value)
24046
+ if prometheus is not None:
24047
+ pulumi.set(__self__, "prometheus", prometheus)
24048
+ if valkey is not None:
24049
+ pulumi.set(__self__, "valkey", valkey)
23633
24050
 
23634
24051
  @property
23635
24052
  @pulumi.getter
23636
- def key(self) -> str:
24053
+ def prometheus(self) -> Optional[bool]:
23637
24054
  """
23638
- Service tag key
24055
+ Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
23639
24056
  """
23640
- return pulumi.get(self, "key")
24057
+ return pulumi.get(self, "prometheus")
23641
24058
 
23642
24059
  @property
23643
24060
  @pulumi.getter
23644
- def value(self) -> str:
24061
+ def valkey(self) -> Optional[bool]:
23645
24062
  """
23646
- Service tag value
24063
+ Allow clients to connect to valkey from the public internet for service nodes that are in a project VPC or another type of private network.
23647
24064
  """
23648
- return pulumi.get(self, "value")
24065
+ return pulumi.get(self, "valkey")
23649
24066
 
23650
24067
 
23651
24068
  @pulumi.output_type
23652
- class GetCassandaTechEmailResult(dict):
24069
+ class GetAccountAuthenticationSamlFieldMappingResult(dict):
23653
24070
  def __init__(__self__, *,
23654
- email: str):
24071
+ email: Optional[str] = None,
24072
+ first_name: Optional[str] = None,
24073
+ identity: Optional[str] = None,
24074
+ last_name: Optional[str] = None,
24075
+ real_name: Optional[str] = None):
23655
24076
  """
23656
- :param str email: An email address to contact for technical issues
24077
+ :param str email: Field name for user email
24078
+ :param str first_name: Field name for user's first name
24079
+ :param str identity: Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
24080
+ :param str last_name: Field name for user's last name
24081
+ :param str real_name: Field name for user's full name. If specified, first_name and last_name mappings are ignored
23657
24082
  """
23658
- pulumi.set(__self__, "email", email)
24083
+ if email is not None:
24084
+ pulumi.set(__self__, "email", email)
24085
+ if first_name is not None:
24086
+ pulumi.set(__self__, "first_name", first_name)
24087
+ if identity is not None:
24088
+ pulumi.set(__self__, "identity", identity)
24089
+ if last_name is not None:
24090
+ pulumi.set(__self__, "last_name", last_name)
24091
+ if real_name is not None:
24092
+ pulumi.set(__self__, "real_name", real_name)
23659
24093
 
23660
24094
  @property
23661
24095
  @pulumi.getter
23662
- def email(self) -> str:
24096
+ def email(self) -> Optional[str]:
23663
24097
  """
23664
- An email address to contact for technical issues
24098
+ Field name for user email
23665
24099
  """
23666
24100
  return pulumi.get(self, "email")
23667
24101
 
24102
+ @property
24103
+ @pulumi.getter(name="firstName")
24104
+ def first_name(self) -> Optional[str]:
24105
+ """
24106
+ Field name for user's first name
24107
+ """
24108
+ return pulumi.get(self, "first_name")
24109
+
24110
+ @property
24111
+ @pulumi.getter
24112
+ def identity(self) -> Optional[str]:
24113
+ """
24114
+ Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
24115
+ """
24116
+ return pulumi.get(self, "identity")
24117
+
24118
+ @property
24119
+ @pulumi.getter(name="lastName")
24120
+ def last_name(self) -> Optional[str]:
24121
+ """
24122
+ Field name for user's last name
24123
+ """
24124
+ return pulumi.get(self, "last_name")
24125
+
24126
+ @property
24127
+ @pulumi.getter(name="realName")
24128
+ def real_name(self) -> Optional[str]:
24129
+ """
24130
+ Field name for user's full name. If specified, first_name and last_name mappings are ignored
24131
+ """
24132
+ return pulumi.get(self, "real_name")
24133
+
23668
24134
 
23669
24135
  @pulumi.output_type
23670
- class GetCassandraCassandraResult(dict):
24136
+ class GetCassandaCassandraResult(dict):
23671
24137
  def __init__(__self__, *,
23672
24138
  uris: Sequence[str]):
23673
24139
  """
@@ -23685,20 +24151,20 @@ class GetCassandraCassandraResult(dict):
23685
24151
 
23686
24152
 
23687
24153
  @pulumi.output_type
23688
- class GetCassandraCassandraUserConfigResult(dict):
24154
+ class GetCassandaCassandraUserConfigResult(dict):
23689
24155
  def __init__(__self__, *,
23690
24156
  additional_backup_regions: Optional[str] = None,
23691
24157
  backup_hour: Optional[int] = None,
23692
24158
  backup_minute: Optional[int] = None,
23693
- cassandra: Optional['outputs.GetCassandraCassandraUserConfigCassandraResult'] = None,
24159
+ cassandra: Optional['outputs.GetCassandaCassandraUserConfigCassandraResult'] = None,
23694
24160
  cassandra_version: Optional[str] = None,
23695
- ip_filter_objects: Optional[Sequence['outputs.GetCassandraCassandraUserConfigIpFilterObjectResult']] = None,
24161
+ ip_filter_objects: Optional[Sequence['outputs.GetCassandaCassandraUserConfigIpFilterObjectResult']] = None,
23696
24162
  ip_filter_strings: Optional[Sequence[str]] = None,
23697
24163
  ip_filters: Optional[Sequence[str]] = None,
23698
24164
  migrate_sstableloader: Optional[bool] = None,
23699
- private_access: Optional['outputs.GetCassandraCassandraUserConfigPrivateAccessResult'] = None,
24165
+ private_access: Optional['outputs.GetCassandaCassandraUserConfigPrivateAccessResult'] = None,
23700
24166
  project_to_fork_from: Optional[str] = None,
23701
- public_access: Optional['outputs.GetCassandraCassandraUserConfigPublicAccessResult'] = None,
24167
+ public_access: Optional['outputs.GetCassandaCassandraUserConfigPublicAccessResult'] = None,
23702
24168
  service_log: Optional[bool] = None,
23703
24169
  service_to_fork_from: Optional[str] = None,
23704
24170
  service_to_join_with: Optional[str] = None,
@@ -23707,15 +24173,15 @@ class GetCassandraCassandraUserConfigResult(dict):
23707
24173
  :param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
23708
24174
  :param int backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Example: `3`.
23709
24175
  :param int backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
23710
- :param 'GetCassandraCassandraUserConfigCassandraArgs' cassandra: Cassandra configuration values
24176
+ :param 'GetCassandaCassandraUserConfigCassandraArgs' cassandra: Cassandra configuration values
23711
24177
  :param str cassandra_version: Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
23712
- :param Sequence['GetCassandraCassandraUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
24178
+ :param Sequence['GetCassandaCassandraUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
23713
24179
  :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
23714
24180
  :param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
23715
24181
  :param bool migrate_sstableloader: Sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
23716
- :param 'GetCassandraCassandraUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
24182
+ :param 'GetCassandaCassandraUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
23717
24183
  :param str project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
23718
- :param 'GetCassandraCassandraUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
24184
+ :param 'GetCassandaCassandraUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
23719
24185
  :param bool service_log: Store logs for the service so that they are available in the HTTP API and console.
23720
24186
  :param str service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
23721
24187
  :param str service_to_join_with: When bootstrapping, instead of creating a new Cassandra cluster try to join an existing one from another service. Can only be set on service creation. Example: `my-test-cassandra`.
@@ -23781,7 +24247,7 @@ class GetCassandraCassandraUserConfigResult(dict):
23781
24247
 
23782
24248
  @property
23783
24249
  @pulumi.getter
23784
- def cassandra(self) -> Optional['outputs.GetCassandraCassandraUserConfigCassandraResult']:
24250
+ def cassandra(self) -> Optional['outputs.GetCassandaCassandraUserConfigCassandraResult']:
23785
24251
  """
23786
24252
  Cassandra configuration values
23787
24253
  """
@@ -23797,7 +24263,7 @@ class GetCassandraCassandraUserConfigResult(dict):
23797
24263
 
23798
24264
  @property
23799
24265
  @pulumi.getter(name="ipFilterObjects")
23800
- def ip_filter_objects(self) -> Optional[Sequence['outputs.GetCassandraCassandraUserConfigIpFilterObjectResult']]:
24266
+ def ip_filter_objects(self) -> Optional[Sequence['outputs.GetCassandaCassandraUserConfigIpFilterObjectResult']]:
23801
24267
  """
23802
24268
  Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
23803
24269
  """
@@ -23830,7 +24296,7 @@ class GetCassandraCassandraUserConfigResult(dict):
23830
24296
 
23831
24297
  @property
23832
24298
  @pulumi.getter(name="privateAccess")
23833
- def private_access(self) -> Optional['outputs.GetCassandraCassandraUserConfigPrivateAccessResult']:
24299
+ def private_access(self) -> Optional['outputs.GetCassandaCassandraUserConfigPrivateAccessResult']:
23834
24300
  """
23835
24301
  Allow access to selected service ports from private networks
23836
24302
  """
@@ -23846,7 +24312,7 @@ class GetCassandraCassandraUserConfigResult(dict):
23846
24312
 
23847
24313
  @property
23848
24314
  @pulumi.getter(name="publicAccess")
23849
- def public_access(self) -> Optional['outputs.GetCassandraCassandraUserConfigPublicAccessResult']:
24315
+ def public_access(self) -> Optional['outputs.GetCassandaCassandraUserConfigPublicAccessResult']:
23850
24316
  """
23851
24317
  Allow access to selected service ports from the public Internet
23852
24318
  """
@@ -23886,15 +24352,19 @@ class GetCassandraCassandraUserConfigResult(dict):
23886
24352
 
23887
24353
 
23888
24354
  @pulumi.output_type
23889
- class GetCassandraCassandraUserConfigCassandraResult(dict):
24355
+ class GetCassandaCassandraUserConfigCassandraResult(dict):
23890
24356
  def __init__(__self__, *,
23891
24357
  batch_size_fail_threshold_in_kb: Optional[int] = None,
23892
24358
  batch_size_warn_threshold_in_kb: Optional[int] = None,
23893
- datacenter: Optional[str] = None):
24359
+ datacenter: Optional[str] = None,
24360
+ read_request_timeout_in_ms: Optional[int] = None,
24361
+ write_request_timeout_in_ms: Optional[int] = None):
23894
24362
  """
23895
24363
  :param int batch_size_fail_threshold_in_kb: Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default. Example: `50`.
23896
24364
  :param int batch_size_warn_threshold_in_kb: Log a warning message on any multiple-partition batch size exceeding this value.5kb per batch by default.Caution should be taken on increasing the size of this thresholdas it can lead to node instability. Example: `5`.
23897
24365
  :param str datacenter: Name of the datacenter to which nodes of this service belong. Can be set only when creating the service. Example: `my-service-google-west1`.
24366
+ :param int read_request_timeout_in_ms: How long the coordinator waits for read operations to complete before timing it out. 5 seconds by default. Example: `5000`.
24367
+ :param int write_request_timeout_in_ms: How long the coordinator waits for write requests to complete with at least one node in the local datacenter. 2 seconds by default. Example: `2000`.
23898
24368
  """
23899
24369
  if batch_size_fail_threshold_in_kb is not None:
23900
24370
  pulumi.set(__self__, "batch_size_fail_threshold_in_kb", batch_size_fail_threshold_in_kb)
@@ -23902,6 +24372,10 @@ class GetCassandraCassandraUserConfigCassandraResult(dict):
23902
24372
  pulumi.set(__self__, "batch_size_warn_threshold_in_kb", batch_size_warn_threshold_in_kb)
23903
24373
  if datacenter is not None:
23904
24374
  pulumi.set(__self__, "datacenter", datacenter)
24375
+ if read_request_timeout_in_ms is not None:
24376
+ pulumi.set(__self__, "read_request_timeout_in_ms", read_request_timeout_in_ms)
24377
+ if write_request_timeout_in_ms is not None:
24378
+ pulumi.set(__self__, "write_request_timeout_in_ms", write_request_timeout_in_ms)
23905
24379
 
23906
24380
  @property
23907
24381
  @pulumi.getter(name="batchSizeFailThresholdInKb")
@@ -23927,9 +24401,25 @@ class GetCassandraCassandraUserConfigCassandraResult(dict):
23927
24401
  """
23928
24402
  return pulumi.get(self, "datacenter")
23929
24403
 
24404
+ @property
24405
+ @pulumi.getter(name="readRequestTimeoutInMs")
24406
+ def read_request_timeout_in_ms(self) -> Optional[int]:
24407
+ """
24408
+ How long the coordinator waits for read operations to complete before timing it out. 5 seconds by default. Example: `5000`.
24409
+ """
24410
+ return pulumi.get(self, "read_request_timeout_in_ms")
24411
+
24412
+ @property
24413
+ @pulumi.getter(name="writeRequestTimeoutInMs")
24414
+ def write_request_timeout_in_ms(self) -> Optional[int]:
24415
+ """
24416
+ How long the coordinator waits for write requests to complete with at least one node in the local datacenter. 2 seconds by default. Example: `2000`.
24417
+ """
24418
+ return pulumi.get(self, "write_request_timeout_in_ms")
24419
+
23930
24420
 
23931
24421
  @pulumi.output_type
23932
- class GetCassandraCassandraUserConfigIpFilterObjectResult(dict):
24422
+ class GetCassandaCassandraUserConfigIpFilterObjectResult(dict):
23933
24423
  def __init__(__self__, *,
23934
24424
  network: str,
23935
24425
  description: Optional[str] = None):
@@ -23959,7 +24449,7 @@ class GetCassandraCassandraUserConfigIpFilterObjectResult(dict):
23959
24449
 
23960
24450
 
23961
24451
  @pulumi.output_type
23962
- class GetCassandraCassandraUserConfigPrivateAccessResult(dict):
24452
+ class GetCassandaCassandraUserConfigPrivateAccessResult(dict):
23963
24453
  def __init__(__self__, *,
23964
24454
  prometheus: Optional[bool] = None):
23965
24455
  """
@@ -23978,7 +24468,7 @@ class GetCassandraCassandraUserConfigPrivateAccessResult(dict):
23978
24468
 
23979
24469
 
23980
24470
  @pulumi.output_type
23981
- class GetCassandraCassandraUserConfigPublicAccessResult(dict):
24471
+ class GetCassandaCassandraUserConfigPublicAccessResult(dict):
23982
24472
  def __init__(__self__, *,
23983
24473
  prometheus: Optional[bool] = None):
23984
24474
  """
@@ -23997,7 +24487,7 @@ class GetCassandraCassandraUserConfigPublicAccessResult(dict):
23997
24487
 
23998
24488
 
23999
24489
  @pulumi.output_type
24000
- class GetCassandraComponentResult(dict):
24490
+ class GetCassandaComponentResult(dict):
24001
24491
  def __init__(__self__, *,
24002
24492
  component: str,
24003
24493
  connection_uri: str,
@@ -24092,7 +24582,7 @@ class GetCassandraComponentResult(dict):
24092
24582
 
24093
24583
 
24094
24584
  @pulumi.output_type
24095
- class GetCassandraServiceIntegrationResult(dict):
24585
+ class GetCassandaServiceIntegrationResult(dict):
24096
24586
  def __init__(__self__, *,
24097
24587
  integration_type: str,
24098
24588
  source_service_name: str):
@@ -24121,7 +24611,532 @@ class GetCassandraServiceIntegrationResult(dict):
24121
24611
 
24122
24612
 
24123
24613
  @pulumi.output_type
24124
- class GetCassandraTagResult(dict):
24614
+ class GetCassandaTagResult(dict):
24615
+ def __init__(__self__, *,
24616
+ key: str,
24617
+ value: str):
24618
+ """
24619
+ :param str key: Service tag key
24620
+ :param str value: Service tag value
24621
+ """
24622
+ pulumi.set(__self__, "key", key)
24623
+ pulumi.set(__self__, "value", value)
24624
+
24625
+ @property
24626
+ @pulumi.getter
24627
+ def key(self) -> str:
24628
+ """
24629
+ Service tag key
24630
+ """
24631
+ return pulumi.get(self, "key")
24632
+
24633
+ @property
24634
+ @pulumi.getter
24635
+ def value(self) -> str:
24636
+ """
24637
+ Service tag value
24638
+ """
24639
+ return pulumi.get(self, "value")
24640
+
24641
+
24642
+ @pulumi.output_type
24643
+ class GetCassandaTechEmailResult(dict):
24644
+ def __init__(__self__, *,
24645
+ email: str):
24646
+ """
24647
+ :param str email: An email address to contact for technical issues
24648
+ """
24649
+ pulumi.set(__self__, "email", email)
24650
+
24651
+ @property
24652
+ @pulumi.getter
24653
+ def email(self) -> str:
24654
+ """
24655
+ An email address to contact for technical issues
24656
+ """
24657
+ return pulumi.get(self, "email")
24658
+
24659
+
24660
+ @pulumi.output_type
24661
+ class GetCassandraCassandraResult(dict):
24662
+ def __init__(__self__, *,
24663
+ uris: Sequence[str]):
24664
+ """
24665
+ :param Sequence[str] uris: Cassandra server URIs.
24666
+ """
24667
+ pulumi.set(__self__, "uris", uris)
24668
+
24669
+ @property
24670
+ @pulumi.getter
24671
+ def uris(self) -> Sequence[str]:
24672
+ """
24673
+ Cassandra server URIs.
24674
+ """
24675
+ return pulumi.get(self, "uris")
24676
+
24677
+
24678
+ @pulumi.output_type
24679
+ class GetCassandraCassandraUserConfigResult(dict):
24680
+ def __init__(__self__, *,
24681
+ additional_backup_regions: Optional[str] = None,
24682
+ backup_hour: Optional[int] = None,
24683
+ backup_minute: Optional[int] = None,
24684
+ cassandra: Optional['outputs.GetCassandraCassandraUserConfigCassandraResult'] = None,
24685
+ cassandra_version: Optional[str] = None,
24686
+ ip_filter_objects: Optional[Sequence['outputs.GetCassandraCassandraUserConfigIpFilterObjectResult']] = None,
24687
+ ip_filter_strings: Optional[Sequence[str]] = None,
24688
+ ip_filters: Optional[Sequence[str]] = None,
24689
+ migrate_sstableloader: Optional[bool] = None,
24690
+ private_access: Optional['outputs.GetCassandraCassandraUserConfigPrivateAccessResult'] = None,
24691
+ project_to_fork_from: Optional[str] = None,
24692
+ public_access: Optional['outputs.GetCassandraCassandraUserConfigPublicAccessResult'] = None,
24693
+ service_log: Optional[bool] = None,
24694
+ service_to_fork_from: Optional[str] = None,
24695
+ service_to_join_with: Optional[str] = None,
24696
+ static_ips: Optional[bool] = None):
24697
+ """
24698
+ :param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
24699
+ :param int backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Example: `3`.
24700
+ :param int backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
24701
+ :param 'GetCassandraCassandraUserConfigCassandraArgs' cassandra: Cassandra configuration values
24702
+ :param str cassandra_version: Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
24703
+ :param Sequence['GetCassandraCassandraUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
24704
+ :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
24705
+ :param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
24706
+ :param bool migrate_sstableloader: Sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
24707
+ :param 'GetCassandraCassandraUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
24708
+ :param str project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
24709
+ :param 'GetCassandraCassandraUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
24710
+ :param bool service_log: Store logs for the service so that they are available in the HTTP API and console.
24711
+ :param str service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
24712
+ :param str service_to_join_with: When bootstrapping, instead of creating a new Cassandra cluster try to join an existing one from another service. Can only be set on service creation. Example: `my-test-cassandra`.
24713
+ :param bool static_ips: Use static public IP addresses.
24714
+ """
24715
+ if additional_backup_regions is not None:
24716
+ pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
24717
+ if backup_hour is not None:
24718
+ pulumi.set(__self__, "backup_hour", backup_hour)
24719
+ if backup_minute is not None:
24720
+ pulumi.set(__self__, "backup_minute", backup_minute)
24721
+ if cassandra is not None:
24722
+ pulumi.set(__self__, "cassandra", cassandra)
24723
+ if cassandra_version is not None:
24724
+ pulumi.set(__self__, "cassandra_version", cassandra_version)
24725
+ if ip_filter_objects is not None:
24726
+ pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
24727
+ if ip_filter_strings is not None:
24728
+ pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
24729
+ if ip_filters is not None:
24730
+ pulumi.set(__self__, "ip_filters", ip_filters)
24731
+ if migrate_sstableloader is not None:
24732
+ pulumi.set(__self__, "migrate_sstableloader", migrate_sstableloader)
24733
+ if private_access is not None:
24734
+ pulumi.set(__self__, "private_access", private_access)
24735
+ if project_to_fork_from is not None:
24736
+ pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
24737
+ if public_access is not None:
24738
+ pulumi.set(__self__, "public_access", public_access)
24739
+ if service_log is not None:
24740
+ pulumi.set(__self__, "service_log", service_log)
24741
+ if service_to_fork_from is not None:
24742
+ pulumi.set(__self__, "service_to_fork_from", service_to_fork_from)
24743
+ if service_to_join_with is not None:
24744
+ pulumi.set(__self__, "service_to_join_with", service_to_join_with)
24745
+ if static_ips is not None:
24746
+ pulumi.set(__self__, "static_ips", static_ips)
24747
+
24748
+ @property
24749
+ @pulumi.getter(name="additionalBackupRegions")
24750
+ @_utilities.deprecated("""This property is deprecated.""")
24751
+ def additional_backup_regions(self) -> Optional[str]:
24752
+ """
24753
+ Additional Cloud Regions for Backup Replication.
24754
+ """
24755
+ return pulumi.get(self, "additional_backup_regions")
24756
+
24757
+ @property
24758
+ @pulumi.getter(name="backupHour")
24759
+ def backup_hour(self) -> Optional[int]:
24760
+ """
24761
+ The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Example: `3`.
24762
+ """
24763
+ return pulumi.get(self, "backup_hour")
24764
+
24765
+ @property
24766
+ @pulumi.getter(name="backupMinute")
24767
+ def backup_minute(self) -> Optional[int]:
24768
+ """
24769
+ The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
24770
+ """
24771
+ return pulumi.get(self, "backup_minute")
24772
+
24773
+ @property
24774
+ @pulumi.getter
24775
+ def cassandra(self) -> Optional['outputs.GetCassandraCassandraUserConfigCassandraResult']:
24776
+ """
24777
+ Cassandra configuration values
24778
+ """
24779
+ return pulumi.get(self, "cassandra")
24780
+
24781
+ @property
24782
+ @pulumi.getter(name="cassandraVersion")
24783
+ def cassandra_version(self) -> Optional[str]:
24784
+ """
24785
+ Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
24786
+ """
24787
+ return pulumi.get(self, "cassandra_version")
24788
+
24789
+ @property
24790
+ @pulumi.getter(name="ipFilterObjects")
24791
+ def ip_filter_objects(self) -> Optional[Sequence['outputs.GetCassandraCassandraUserConfigIpFilterObjectResult']]:
24792
+ """
24793
+ Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
24794
+ """
24795
+ return pulumi.get(self, "ip_filter_objects")
24796
+
24797
+ @property
24798
+ @pulumi.getter(name="ipFilterStrings")
24799
+ def ip_filter_strings(self) -> Optional[Sequence[str]]:
24800
+ """
24801
+ Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
24802
+ """
24803
+ return pulumi.get(self, "ip_filter_strings")
24804
+
24805
+ @property
24806
+ @pulumi.getter(name="ipFilters")
24807
+ @_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
24808
+ def ip_filters(self) -> Optional[Sequence[str]]:
24809
+ """
24810
+ Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
24811
+ """
24812
+ return pulumi.get(self, "ip_filters")
24813
+
24814
+ @property
24815
+ @pulumi.getter(name="migrateSstableloader")
24816
+ def migrate_sstableloader(self) -> Optional[bool]:
24817
+ """
24818
+ Sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
24819
+ """
24820
+ return pulumi.get(self, "migrate_sstableloader")
24821
+
24822
+ @property
24823
+ @pulumi.getter(name="privateAccess")
24824
+ def private_access(self) -> Optional['outputs.GetCassandraCassandraUserConfigPrivateAccessResult']:
24825
+ """
24826
+ Allow access to selected service ports from private networks
24827
+ """
24828
+ return pulumi.get(self, "private_access")
24829
+
24830
+ @property
24831
+ @pulumi.getter(name="projectToForkFrom")
24832
+ def project_to_fork_from(self) -> Optional[str]:
24833
+ """
24834
+ Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
24835
+ """
24836
+ return pulumi.get(self, "project_to_fork_from")
24837
+
24838
+ @property
24839
+ @pulumi.getter(name="publicAccess")
24840
+ def public_access(self) -> Optional['outputs.GetCassandraCassandraUserConfigPublicAccessResult']:
24841
+ """
24842
+ Allow access to selected service ports from the public Internet
24843
+ """
24844
+ return pulumi.get(self, "public_access")
24845
+
24846
+ @property
24847
+ @pulumi.getter(name="serviceLog")
24848
+ def service_log(self) -> Optional[bool]:
24849
+ """
24850
+ Store logs for the service so that they are available in the HTTP API and console.
24851
+ """
24852
+ return pulumi.get(self, "service_log")
24853
+
24854
+ @property
24855
+ @pulumi.getter(name="serviceToForkFrom")
24856
+ def service_to_fork_from(self) -> Optional[str]:
24857
+ """
24858
+ Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
24859
+ """
24860
+ return pulumi.get(self, "service_to_fork_from")
24861
+
24862
+ @property
24863
+ @pulumi.getter(name="serviceToJoinWith")
24864
+ def service_to_join_with(self) -> Optional[str]:
24865
+ """
24866
+ When bootstrapping, instead of creating a new Cassandra cluster try to join an existing one from another service. Can only be set on service creation. Example: `my-test-cassandra`.
24867
+ """
24868
+ return pulumi.get(self, "service_to_join_with")
24869
+
24870
+ @property
24871
+ @pulumi.getter(name="staticIps")
24872
+ def static_ips(self) -> Optional[bool]:
24873
+ """
24874
+ Use static public IP addresses.
24875
+ """
24876
+ return pulumi.get(self, "static_ips")
24877
+
24878
+
24879
+ @pulumi.output_type
24880
+ class GetCassandraCassandraUserConfigCassandraResult(dict):
24881
+ def __init__(__self__, *,
24882
+ batch_size_fail_threshold_in_kb: Optional[int] = None,
24883
+ batch_size_warn_threshold_in_kb: Optional[int] = None,
24884
+ datacenter: Optional[str] = None,
24885
+ read_request_timeout_in_ms: Optional[int] = None,
24886
+ write_request_timeout_in_ms: Optional[int] = None):
24887
+ """
24888
+ :param int batch_size_fail_threshold_in_kb: Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default. Example: `50`.
24889
+ :param int batch_size_warn_threshold_in_kb: Log a warning message on any multiple-partition batch size exceeding this value.5kb per batch by default.Caution should be taken on increasing the size of this thresholdas it can lead to node instability. Example: `5`.
24890
+ :param str datacenter: Name of the datacenter to which nodes of this service belong. Can be set only when creating the service. Example: `my-service-google-west1`.
24891
+ :param int read_request_timeout_in_ms: How long the coordinator waits for read operations to complete before timing it out. 5 seconds by default. Example: `5000`.
24892
+ :param int write_request_timeout_in_ms: How long the coordinator waits for write requests to complete with at least one node in the local datacenter. 2 seconds by default. Example: `2000`.
24893
+ """
24894
+ if batch_size_fail_threshold_in_kb is not None:
24895
+ pulumi.set(__self__, "batch_size_fail_threshold_in_kb", batch_size_fail_threshold_in_kb)
24896
+ if batch_size_warn_threshold_in_kb is not None:
24897
+ pulumi.set(__self__, "batch_size_warn_threshold_in_kb", batch_size_warn_threshold_in_kb)
24898
+ if datacenter is not None:
24899
+ pulumi.set(__self__, "datacenter", datacenter)
24900
+ if read_request_timeout_in_ms is not None:
24901
+ pulumi.set(__self__, "read_request_timeout_in_ms", read_request_timeout_in_ms)
24902
+ if write_request_timeout_in_ms is not None:
24903
+ pulumi.set(__self__, "write_request_timeout_in_ms", write_request_timeout_in_ms)
24904
+
24905
+ @property
24906
+ @pulumi.getter(name="batchSizeFailThresholdInKb")
24907
+ def batch_size_fail_threshold_in_kb(self) -> Optional[int]:
24908
+ """
24909
+ Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default. Example: `50`.
24910
+ """
24911
+ return pulumi.get(self, "batch_size_fail_threshold_in_kb")
24912
+
24913
+ @property
24914
+ @pulumi.getter(name="batchSizeWarnThresholdInKb")
24915
+ def batch_size_warn_threshold_in_kb(self) -> Optional[int]:
24916
+ """
24917
+ Log a warning message on any multiple-partition batch size exceeding this value.5kb per batch by default.Caution should be taken on increasing the size of this thresholdas it can lead to node instability. Example: `5`.
24918
+ """
24919
+ return pulumi.get(self, "batch_size_warn_threshold_in_kb")
24920
+
24921
+ @property
24922
+ @pulumi.getter
24923
+ def datacenter(self) -> Optional[str]:
24924
+ """
24925
+ Name of the datacenter to which nodes of this service belong. Can be set only when creating the service. Example: `my-service-google-west1`.
24926
+ """
24927
+ return pulumi.get(self, "datacenter")
24928
+
24929
+ @property
24930
+ @pulumi.getter(name="readRequestTimeoutInMs")
24931
+ def read_request_timeout_in_ms(self) -> Optional[int]:
24932
+ """
24933
+ How long the coordinator waits for read operations to complete before timing it out. 5 seconds by default. Example: `5000`.
24934
+ """
24935
+ return pulumi.get(self, "read_request_timeout_in_ms")
24936
+
24937
+ @property
24938
+ @pulumi.getter(name="writeRequestTimeoutInMs")
24939
+ def write_request_timeout_in_ms(self) -> Optional[int]:
24940
+ """
24941
+ How long the coordinator waits for write requests to complete with at least one node in the local datacenter. 2 seconds by default. Example: `2000`.
24942
+ """
24943
+ return pulumi.get(self, "write_request_timeout_in_ms")
24944
+
24945
+
24946
+ @pulumi.output_type
24947
+ class GetCassandraCassandraUserConfigIpFilterObjectResult(dict):
24948
+ def __init__(__self__, *,
24949
+ network: str,
24950
+ description: Optional[str] = None):
24951
+ """
24952
+ :param str network: CIDR address block. Example: `10.20.0.0/16`.
24953
+ :param str description: Description for IP filter list entry. Example: `Production service IP range`.
24954
+ """
24955
+ pulumi.set(__self__, "network", network)
24956
+ if description is not None:
24957
+ pulumi.set(__self__, "description", description)
24958
+
24959
+ @property
24960
+ @pulumi.getter
24961
+ def network(self) -> str:
24962
+ """
24963
+ CIDR address block. Example: `10.20.0.0/16`.
24964
+ """
24965
+ return pulumi.get(self, "network")
24966
+
24967
+ @property
24968
+ @pulumi.getter
24969
+ def description(self) -> Optional[str]:
24970
+ """
24971
+ Description for IP filter list entry. Example: `Production service IP range`.
24972
+ """
24973
+ return pulumi.get(self, "description")
24974
+
24975
+
24976
+ @pulumi.output_type
24977
+ class GetCassandraCassandraUserConfigPrivateAccessResult(dict):
24978
+ def __init__(__self__, *,
24979
+ prometheus: Optional[bool] = None):
24980
+ """
24981
+ :param bool prometheus: Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
24982
+ """
24983
+ if prometheus is not None:
24984
+ pulumi.set(__self__, "prometheus", prometheus)
24985
+
24986
+ @property
24987
+ @pulumi.getter
24988
+ def prometheus(self) -> Optional[bool]:
24989
+ """
24990
+ Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
24991
+ """
24992
+ return pulumi.get(self, "prometheus")
24993
+
24994
+
24995
+ @pulumi.output_type
24996
+ class GetCassandraCassandraUserConfigPublicAccessResult(dict):
24997
+ def __init__(__self__, *,
24998
+ prometheus: Optional[bool] = None):
24999
+ """
25000
+ :param bool prometheus: Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
25001
+ """
25002
+ if prometheus is not None:
25003
+ pulumi.set(__self__, "prometheus", prometheus)
25004
+
25005
+ @property
25006
+ @pulumi.getter
25007
+ def prometheus(self) -> Optional[bool]:
25008
+ """
25009
+ Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
25010
+ """
25011
+ return pulumi.get(self, "prometheus")
25012
+
25013
+
25014
+ @pulumi.output_type
25015
+ class GetCassandraComponentResult(dict):
25016
+ def __init__(__self__, *,
25017
+ component: str,
25018
+ connection_uri: str,
25019
+ host: str,
25020
+ kafka_authentication_method: str,
25021
+ port: int,
25022
+ route: str,
25023
+ ssl: bool,
25024
+ usage: str):
25025
+ """
25026
+ :param str component: Service component name
25027
+ :param str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
25028
+ :param str host: Host name for connecting to the service component
25029
+ :param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
25030
+ :param int port: Port number for connecting to the service component
25031
+ :param str route: Network access route
25032
+ :param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
25033
+ :param str usage: DNS usage name
25034
+ """
25035
+ pulumi.set(__self__, "component", component)
25036
+ pulumi.set(__self__, "connection_uri", connection_uri)
25037
+ pulumi.set(__self__, "host", host)
25038
+ pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
25039
+ pulumi.set(__self__, "port", port)
25040
+ pulumi.set(__self__, "route", route)
25041
+ pulumi.set(__self__, "ssl", ssl)
25042
+ pulumi.set(__self__, "usage", usage)
25043
+
25044
+ @property
25045
+ @pulumi.getter
25046
+ def component(self) -> str:
25047
+ """
25048
+ Service component name
25049
+ """
25050
+ return pulumi.get(self, "component")
25051
+
25052
+ @property
25053
+ @pulumi.getter(name="connectionUri")
25054
+ def connection_uri(self) -> str:
25055
+ """
25056
+ Connection info for connecting to the service component. This is a combination of host and port.
25057
+ """
25058
+ return pulumi.get(self, "connection_uri")
25059
+
25060
+ @property
25061
+ @pulumi.getter
25062
+ def host(self) -> str:
25063
+ """
25064
+ Host name for connecting to the service component
25065
+ """
25066
+ return pulumi.get(self, "host")
25067
+
25068
+ @property
25069
+ @pulumi.getter(name="kafkaAuthenticationMethod")
25070
+ def kafka_authentication_method(self) -> str:
25071
+ """
25072
+ Kafka authentication method. This is a value specific to the 'kafka' service component
25073
+ """
25074
+ return pulumi.get(self, "kafka_authentication_method")
25075
+
25076
+ @property
25077
+ @pulumi.getter
25078
+ def port(self) -> int:
25079
+ """
25080
+ Port number for connecting to the service component
25081
+ """
25082
+ return pulumi.get(self, "port")
25083
+
25084
+ @property
25085
+ @pulumi.getter
25086
+ def route(self) -> str:
25087
+ """
25088
+ Network access route
25089
+ """
25090
+ return pulumi.get(self, "route")
25091
+
25092
+ @property
25093
+ @pulumi.getter
25094
+ def ssl(self) -> bool:
25095
+ """
25096
+ Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
25097
+ """
25098
+ return pulumi.get(self, "ssl")
25099
+
25100
+ @property
25101
+ @pulumi.getter
25102
+ def usage(self) -> str:
25103
+ """
25104
+ DNS usage name
25105
+ """
25106
+ return pulumi.get(self, "usage")
25107
+
25108
+
25109
+ @pulumi.output_type
25110
+ class GetCassandraServiceIntegrationResult(dict):
25111
+ def __init__(__self__, *,
25112
+ integration_type: str,
25113
+ source_service_name: str):
25114
+ """
25115
+ :param str integration_type: Type of the service integration. The only supported value at the moment is `read_replica`
25116
+ :param str source_service_name: Name of the source service
25117
+ """
25118
+ pulumi.set(__self__, "integration_type", integration_type)
25119
+ pulumi.set(__self__, "source_service_name", source_service_name)
25120
+
25121
+ @property
25122
+ @pulumi.getter(name="integrationType")
25123
+ def integration_type(self) -> str:
25124
+ """
25125
+ Type of the service integration. The only supported value at the moment is `read_replica`
25126
+ """
25127
+ return pulumi.get(self, "integration_type")
25128
+
25129
+ @property
25130
+ @pulumi.getter(name="sourceServiceName")
25131
+ def source_service_name(self) -> str:
25132
+ """
25133
+ Name of the source service
25134
+ """
25135
+ return pulumi.get(self, "source_service_name")
25136
+
25137
+
25138
+ @pulumi.output_type
25139
+ class GetCassandraTagResult(dict):
24125
25140
  def __init__(__self__, *,
24126
25141
  key: str,
24127
25142
  value: str):
@@ -24172,7 +25187,7 @@ class GetClickhouseClickhouseResult(dict):
24172
25187
  def __init__(__self__, *,
24173
25188
  uris: Sequence[str]):
24174
25189
  """
24175
- :param Sequence[str] uris: Clickhouse server URIs.
25190
+ :param Sequence[str] uris: ClickHouse server URIs.
24176
25191
  """
24177
25192
  pulumi.set(__self__, "uris", uris)
24178
25193
 
@@ -24180,7 +25195,7 @@ class GetClickhouseClickhouseResult(dict):
24180
25195
  @pulumi.getter
24181
25196
  def uris(self) -> Sequence[str]:
24182
25197
  """
24183
- Clickhouse server URIs.
25198
+ ClickHouse server URIs.
24184
25199
  """
24185
25200
  return pulumi.get(self, "uris")
24186
25201
 
@@ -24622,8 +25637,8 @@ class GetClickhouseServiceIntegrationResult(dict):
24622
25637
  integration_type: str,
24623
25638
  source_service_name: str):
24624
25639
  """
24625
- :param str integration_type: Type of the service integration. The only supported values at the moment are `clickhouse_kafka` and `clickhouse_postgresql`.
24626
- :param str source_service_name: Name of the source service
25640
+ :param str integration_type: Type of the service integration. Supported integrations are `clickhouse_kafka` and `clickhouse_postgresql`.
25641
+ :param str source_service_name: Name of the source service.
24627
25642
  """
24628
25643
  pulumi.set(__self__, "integration_type", integration_type)
24629
25644
  pulumi.set(__self__, "source_service_name", source_service_name)
@@ -24632,7 +25647,7 @@ class GetClickhouseServiceIntegrationResult(dict):
24632
25647
  @pulumi.getter(name="integrationType")
24633
25648
  def integration_type(self) -> str:
24634
25649
  """
24635
- Type of the service integration. The only supported values at the moment are `clickhouse_kafka` and `clickhouse_postgresql`.
25650
+ Type of the service integration. Supported integrations are `clickhouse_kafka` and `clickhouse_postgresql`.
24636
25651
  """
24637
25652
  return pulumi.get(self, "integration_type")
24638
25653
 
@@ -24640,7 +25655,7 @@ class GetClickhouseServiceIntegrationResult(dict):
24640
25655
  @pulumi.getter(name="sourceServiceName")
24641
25656
  def source_service_name(self) -> str:
24642
25657
  """
24643
- Name of the source service
25658
+ Name of the source service.
24644
25659
  """
24645
25660
  return pulumi.get(self, "source_service_name")
24646
25661
 
@@ -25486,7 +26501,7 @@ class GetFlinkFlinkResult(dict):
25486
26501
  def __init__(__self__, *,
25487
26502
  host_ports: Sequence[str]):
25488
26503
  """
25489
- :param Sequence[str] host_ports: Host and Port of a Flink server
26504
+ :param Sequence[str] host_ports: The host and port of a Flink server.
25490
26505
  """
25491
26506
  pulumi.set(__self__, "host_ports", host_ports)
25492
26507
 
@@ -25494,7 +26509,7 @@ class GetFlinkFlinkResult(dict):
25494
26509
  @pulumi.getter(name="hostPorts")
25495
26510
  def host_ports(self) -> Sequence[str]:
25496
26511
  """
25497
- Host and Port of a Flink server
26512
+ The host and port of a Flink server.
25498
26513
  """
25499
26514
  return pulumi.get(self, "host_ports")
25500
26515
 
@@ -28714,7 +29729,7 @@ class GetKafkaConnectorTaskResult(dict):
28714
29729
  task: int):
28715
29730
  """
28716
29731
  :param str connector: The name of the related connector.
28717
- :param int task: The task id of the task.
29732
+ :param int task: The task ID of the task.
28718
29733
  """
28719
29734
  pulumi.set(__self__, "connector", connector)
28720
29735
  pulumi.set(__self__, "task", task)
@@ -28731,7 +29746,7 @@ class GetKafkaConnectorTaskResult(dict):
28731
29746
  @pulumi.getter
28732
29747
  def task(self) -> int:
28733
29748
  """
28734
- The task id of the task.
29749
+ The task ID of the task.
28735
29750
  """
28736
29751
  return pulumi.get(self, "task")
28737
29752
 
@@ -31363,8 +32378,8 @@ class GetKafkaTopicTagResult(dict):
31363
32378
  key: str,
31364
32379
  value: Optional[str] = None):
31365
32380
  """
31366
- :param str key: Topic tag key. Maximum length: `64`.
31367
- :param str value: Topic tag value. Maximum length: `256`.
32381
+ :param str key: Tag key. Maximum length: `64`.
32382
+ :param str value: Tag value. Maximum length: `256`.
31368
32383
  """
31369
32384
  pulumi.set(__self__, "key", key)
31370
32385
  if value is not None:
@@ -31374,7 +32389,7 @@ class GetKafkaTopicTagResult(dict):
31374
32389
  @pulumi.getter
31375
32390
  def key(self) -> str:
31376
32391
  """
31377
- Topic tag key. Maximum length: `64`.
32392
+ Tag key. Maximum length: `64`.
31378
32393
  """
31379
32394
  return pulumi.get(self, "key")
31380
32395
 
@@ -31382,7 +32397,7 @@ class GetKafkaTopicTagResult(dict):
31382
32397
  @pulumi.getter
31383
32398
  def value(self) -> Optional[str]:
31384
32399
  """
31385
- Topic tag value. Maximum length: `256`.
32400
+ Tag value. Maximum length: `256`.
31386
32401
  """
31387
32402
  return pulumi.get(self, "value")
31388
32403
 
@@ -34641,6 +35656,8 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
34641
35656
  ism_history_max_docs: Optional[int] = None,
34642
35657
  ism_history_rollover_check_period: Optional[int] = None,
34643
35658
  ism_history_rollover_retention_period: Optional[int] = None,
35659
+ knn_memory_circuit_breaker_enabled: Optional[bool] = None,
35660
+ knn_memory_circuit_breaker_limit: Optional[int] = None,
34644
35661
  override_main_response_version: Optional[bool] = None,
34645
35662
  plugins_alerting_filter_by_backend_roles: Optional[bool] = None,
34646
35663
  reindex_remote_whitelists: Optional[Sequence[str]] = None,
@@ -34684,6 +35701,8 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
34684
35701
  :param int ism_history_max_docs: The maximum number of documents before rolling over the audit history index. Default: `2500000`.
34685
35702
  :param int ism_history_rollover_check_period: The time between rollover checks for the audit history index in hours. Default: `8`.
34686
35703
  :param int ism_history_rollover_retention_period: How long audit history indices are kept in days. Default: `30`.
35704
+ :param bool knn_memory_circuit_breaker_enabled: Enable or disable KNN memory circuit breaker. Defaults to true. Default: `true`.
35705
+ :param int knn_memory_circuit_breaker_limit: Maximum amount of memory that can be used for KNN index. Defaults to 50% of the JVM heap size. Default: `50`.
34687
35706
  :param bool override_main_response_version: Compatibility mode sets OpenSearch to report its version as 7.10 so clients continue to work. Default is false.
34688
35707
  :param bool plugins_alerting_filter_by_backend_roles: Enable or disable filtering of alerting by backend roles. Requires Security plugin. Defaults to false.
34689
35708
  :param Sequence[str] reindex_remote_whitelists: Whitelisted addresses for reindexing. Changing this value will cause all OpenSearch instances to restart.
@@ -34753,6 +35772,10 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
34753
35772
  pulumi.set(__self__, "ism_history_rollover_check_period", ism_history_rollover_check_period)
34754
35773
  if ism_history_rollover_retention_period is not None:
34755
35774
  pulumi.set(__self__, "ism_history_rollover_retention_period", ism_history_rollover_retention_period)
35775
+ if knn_memory_circuit_breaker_enabled is not None:
35776
+ pulumi.set(__self__, "knn_memory_circuit_breaker_enabled", knn_memory_circuit_breaker_enabled)
35777
+ if knn_memory_circuit_breaker_limit is not None:
35778
+ pulumi.set(__self__, "knn_memory_circuit_breaker_limit", knn_memory_circuit_breaker_limit)
34756
35779
  if override_main_response_version is not None:
34757
35780
  pulumi.set(__self__, "override_main_response_version", override_main_response_version)
34758
35781
  if plugins_alerting_filter_by_backend_roles is not None:
@@ -34994,6 +36017,22 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
34994
36017
  """
34995
36018
  return pulumi.get(self, "ism_history_rollover_retention_period")
34996
36019
 
36020
+ @property
36021
+ @pulumi.getter(name="knnMemoryCircuitBreakerEnabled")
36022
+ def knn_memory_circuit_breaker_enabled(self) -> Optional[bool]:
36023
+ """
36024
+ Enable or disable KNN memory circuit breaker. Defaults to true. Default: `true`.
36025
+ """
36026
+ return pulumi.get(self, "knn_memory_circuit_breaker_enabled")
36027
+
36028
+ @property
36029
+ @pulumi.getter(name="knnMemoryCircuitBreakerLimit")
36030
+ def knn_memory_circuit_breaker_limit(self) -> Optional[int]:
36031
+ """
36032
+ Maximum amount of memory that can be used for KNN index. Defaults to 50% of the JVM heap size. Default: `50`.
36033
+ """
36034
+ return pulumi.get(self, "knn_memory_circuit_breaker_limit")
36035
+
34997
36036
  @property
34998
36037
  @pulumi.getter(name="overrideMainResponseVersion")
34999
36038
  def override_main_response_version(self) -> Optional[bool]:
@@ -36587,7 +37626,7 @@ class GetPgPgUserConfigPgResult(dict):
36587
37626
  :param bool jit: Controls system-wide use of Just-in-Time Compilation (JIT).
36588
37627
  :param int log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
36589
37628
  :param str log_error_verbosity: Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
36590
- :param str log_line_prefix: Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
37629
+ :param str log_line_prefix: Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
36591
37630
  :param int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
36592
37631
  :param int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
36593
37632
  :param int max_files_per_process: PostgreSQL maximum number of files that can be open per process.
@@ -36873,7 +37912,7 @@ class GetPgPgUserConfigPgResult(dict):
36873
37912
  @pulumi.getter(name="logLinePrefix")
36874
37913
  def log_line_prefix(self) -> Optional[str]:
36875
37914
  """
36876
- Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
37915
+ Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
36877
37916
  """
36878
37917
  return pulumi.get(self, "log_line_prefix")
36879
37918
 
@@ -41465,3 +42504,745 @@ class GetThanosThanosUserConfigQueryFrontendResult(dict):
41465
42504
  return pulumi.get(self, "query_range_align_range_with_step")
41466
42505
 
41467
42506
 
42507
+ @pulumi.output_type
42508
+ class GetValkeyComponentResult(dict):
42509
+ def __init__(__self__, *,
42510
+ component: str,
42511
+ connection_uri: str,
42512
+ host: str,
42513
+ kafka_authentication_method: str,
42514
+ port: int,
42515
+ route: str,
42516
+ ssl: bool,
42517
+ usage: str):
42518
+ """
42519
+ :param str component: Service component name
42520
+ :param str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
42521
+ :param str host: Host name for connecting to the service component
42522
+ :param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
42523
+ :param int port: Port number for connecting to the service component
42524
+ :param str route: Network access route
42525
+ :param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
42526
+ :param str usage: DNS usage name
42527
+ """
42528
+ pulumi.set(__self__, "component", component)
42529
+ pulumi.set(__self__, "connection_uri", connection_uri)
42530
+ pulumi.set(__self__, "host", host)
42531
+ pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
42532
+ pulumi.set(__self__, "port", port)
42533
+ pulumi.set(__self__, "route", route)
42534
+ pulumi.set(__self__, "ssl", ssl)
42535
+ pulumi.set(__self__, "usage", usage)
42536
+
42537
+ @property
42538
+ @pulumi.getter
42539
+ def component(self) -> str:
42540
+ """
42541
+ Service component name
42542
+ """
42543
+ return pulumi.get(self, "component")
42544
+
42545
+ @property
42546
+ @pulumi.getter(name="connectionUri")
42547
+ def connection_uri(self) -> str:
42548
+ """
42549
+ Connection info for connecting to the service component. This is a combination of host and port.
42550
+ """
42551
+ return pulumi.get(self, "connection_uri")
42552
+
42553
+ @property
42554
+ @pulumi.getter
42555
+ def host(self) -> str:
42556
+ """
42557
+ Host name for connecting to the service component
42558
+ """
42559
+ return pulumi.get(self, "host")
42560
+
42561
+ @property
42562
+ @pulumi.getter(name="kafkaAuthenticationMethod")
42563
+ def kafka_authentication_method(self) -> str:
42564
+ """
42565
+ Kafka authentication method. This is a value specific to the 'kafka' service component
42566
+ """
42567
+ return pulumi.get(self, "kafka_authentication_method")
42568
+
42569
+ @property
42570
+ @pulumi.getter
42571
+ def port(self) -> int:
42572
+ """
42573
+ Port number for connecting to the service component
42574
+ """
42575
+ return pulumi.get(self, "port")
42576
+
42577
+ @property
42578
+ @pulumi.getter
42579
+ def route(self) -> str:
42580
+ """
42581
+ Network access route
42582
+ """
42583
+ return pulumi.get(self, "route")
42584
+
42585
+ @property
42586
+ @pulumi.getter
42587
+ def ssl(self) -> bool:
42588
+ """
42589
+ Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
42590
+ """
42591
+ return pulumi.get(self, "ssl")
42592
+
42593
+ @property
42594
+ @pulumi.getter
42595
+ def usage(self) -> str:
42596
+ """
42597
+ DNS usage name
42598
+ """
42599
+ return pulumi.get(self, "usage")
42600
+
42601
+
42602
+ @pulumi.output_type
42603
+ class GetValkeyServiceIntegrationResult(dict):
42604
+ def __init__(__self__, *,
42605
+ integration_type: str,
42606
+ source_service_name: str):
42607
+ """
42608
+ :param str integration_type: Type of the service integration. The only supported value at the moment is `read_replica`
42609
+ :param str source_service_name: Name of the source service
42610
+ """
42611
+ pulumi.set(__self__, "integration_type", integration_type)
42612
+ pulumi.set(__self__, "source_service_name", source_service_name)
42613
+
42614
+ @property
42615
+ @pulumi.getter(name="integrationType")
42616
+ def integration_type(self) -> str:
42617
+ """
42618
+ Type of the service integration. The only supported value at the moment is `read_replica`
42619
+ """
42620
+ return pulumi.get(self, "integration_type")
42621
+
42622
+ @property
42623
+ @pulumi.getter(name="sourceServiceName")
42624
+ def source_service_name(self) -> str:
42625
+ """
42626
+ Name of the source service
42627
+ """
42628
+ return pulumi.get(self, "source_service_name")
42629
+
42630
+
42631
+ @pulumi.output_type
42632
+ class GetValkeyTagResult(dict):
42633
+ def __init__(__self__, *,
42634
+ key: str,
42635
+ value: str):
42636
+ """
42637
+ :param str key: Service tag key
42638
+ :param str value: Service tag value
42639
+ """
42640
+ pulumi.set(__self__, "key", key)
42641
+ pulumi.set(__self__, "value", value)
42642
+
42643
+ @property
42644
+ @pulumi.getter
42645
+ def key(self) -> str:
42646
+ """
42647
+ Service tag key
42648
+ """
42649
+ return pulumi.get(self, "key")
42650
+
42651
+ @property
42652
+ @pulumi.getter
42653
+ def value(self) -> str:
42654
+ """
42655
+ Service tag value
42656
+ """
42657
+ return pulumi.get(self, "value")
42658
+
42659
+
42660
+ @pulumi.output_type
42661
+ class GetValkeyTechEmailResult(dict):
42662
+ def __init__(__self__, *,
42663
+ email: str):
42664
+ """
42665
+ :param str email: An email address to contact for technical issues
42666
+ """
42667
+ pulumi.set(__self__, "email", email)
42668
+
42669
+ @property
42670
+ @pulumi.getter
42671
+ def email(self) -> str:
42672
+ """
42673
+ An email address to contact for technical issues
42674
+ """
42675
+ return pulumi.get(self, "email")
42676
+
42677
+
42678
+ @pulumi.output_type
42679
+ class GetValkeyValkeyResult(dict):
42680
+ def __init__(__self__, *,
42681
+ password: str,
42682
+ replica_uri: str,
42683
+ slave_uris: Sequence[str],
42684
+ uris: Sequence[str]):
42685
+ """
42686
+ :param str password: Valkey password.
42687
+ :param str replica_uri: Valkey replica server URI.
42688
+ :param Sequence[str] slave_uris: Valkey slave server URIs.
42689
+ :param Sequence[str] uris: Valkey server URIs.
42690
+ """
42691
+ pulumi.set(__self__, "password", password)
42692
+ pulumi.set(__self__, "replica_uri", replica_uri)
42693
+ pulumi.set(__self__, "slave_uris", slave_uris)
42694
+ pulumi.set(__self__, "uris", uris)
42695
+
42696
+ @property
42697
+ @pulumi.getter
42698
+ def password(self) -> str:
42699
+ """
42700
+ Valkey password.
42701
+ """
42702
+ return pulumi.get(self, "password")
42703
+
42704
+ @property
42705
+ @pulumi.getter(name="replicaUri")
42706
+ def replica_uri(self) -> str:
42707
+ """
42708
+ Valkey replica server URI.
42709
+ """
42710
+ return pulumi.get(self, "replica_uri")
42711
+
42712
+ @property
42713
+ @pulumi.getter(name="slaveUris")
42714
+ def slave_uris(self) -> Sequence[str]:
42715
+ """
42716
+ Valkey slave server URIs.
42717
+ """
42718
+ return pulumi.get(self, "slave_uris")
42719
+
42720
+ @property
42721
+ @pulumi.getter
42722
+ def uris(self) -> Sequence[str]:
42723
+ """
42724
+ Valkey server URIs.
42725
+ """
42726
+ return pulumi.get(self, "uris")
42727
+
42728
+
42729
+ @pulumi.output_type
42730
+ class GetValkeyValkeyUserConfigResult(dict):
42731
+ def __init__(__self__, *,
42732
+ additional_backup_regions: Optional[str] = None,
42733
+ ip_filter_objects: Optional[Sequence['outputs.GetValkeyValkeyUserConfigIpFilterObjectResult']] = None,
42734
+ ip_filter_strings: Optional[Sequence[str]] = None,
42735
+ ip_filters: Optional[Sequence[str]] = None,
42736
+ migration: Optional['outputs.GetValkeyValkeyUserConfigMigrationResult'] = None,
42737
+ private_access: Optional['outputs.GetValkeyValkeyUserConfigPrivateAccessResult'] = None,
42738
+ privatelink_access: Optional['outputs.GetValkeyValkeyUserConfigPrivatelinkAccessResult'] = None,
42739
+ project_to_fork_from: Optional[str] = None,
42740
+ public_access: Optional['outputs.GetValkeyValkeyUserConfigPublicAccessResult'] = None,
42741
+ recovery_basebackup_name: Optional[str] = None,
42742
+ service_log: Optional[bool] = None,
42743
+ service_to_fork_from: Optional[str] = None,
42744
+ static_ips: Optional[bool] = None,
42745
+ valkey_acl_channels_default: Optional[str] = None,
42746
+ valkey_io_threads: Optional[int] = None,
42747
+ valkey_lfu_decay_time: Optional[int] = None,
42748
+ valkey_lfu_log_factor: Optional[int] = None,
42749
+ valkey_maxmemory_policy: Optional[str] = None,
42750
+ valkey_notify_keyspace_events: Optional[str] = None,
42751
+ valkey_number_of_databases: Optional[int] = None,
42752
+ valkey_persistence: Optional[str] = None,
42753
+ valkey_pubsub_client_output_buffer_limit: Optional[int] = None,
42754
+ valkey_ssl: Optional[bool] = None,
42755
+ valkey_timeout: Optional[int] = None):
42756
+ """
42757
+ :param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
42758
+ :param Sequence['GetValkeyValkeyUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
42759
+ :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
42760
+ :param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
42761
+ :param 'GetValkeyValkeyUserConfigMigrationArgs' migration: Migrate data from existing server
42762
+ :param 'GetValkeyValkeyUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
42763
+ :param 'GetValkeyValkeyUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
42764
+ :param str project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
42765
+ :param 'GetValkeyValkeyUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
42766
+ :param str recovery_basebackup_name: Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
42767
+ :param bool service_log: Store logs for the service so that they are available in the HTTP API and console.
42768
+ :param str service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
42769
+ :param bool static_ips: Use static public IP addresses.
42770
+ :param str valkey_acl_channels_default: Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Valkey configuration acl-pubsub-default.
42771
+ :param int valkey_io_threads: Set Valkey IO thread count. Changing this will cause a restart of the Valkey service. Example: `1`.
42772
+ :param int valkey_lfu_decay_time: LFU maxmemory-policy counter decay time in minutes. Default: `1`.
42773
+ :param int valkey_lfu_log_factor: Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. Default: `10`.
42774
+ :param str valkey_maxmemory_policy: Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Valkey maxmemory-policy. Default: `noeviction`.
42775
+ :param str valkey_notify_keyspace_events: Set notify-keyspace-events option.
42776
+ :param int valkey_number_of_databases: Set number of Valkey databases. Changing this will cause a restart of the Valkey service. Example: `16`.
42777
+ :param str valkey_persistence: Enum: `off`, `rdb`. When persistence is `rdb`, Valkey does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is `off`, no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
42778
+ :param int valkey_pubsub_client_output_buffer_limit: Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan. Example: `64`.
42779
+ :param bool valkey_ssl: Require SSL to access Valkey. Default: `true`.
42780
+ :param int valkey_timeout: Valkey idle connection timeout in seconds. Default: `300`.
42781
+ """
42782
+ if additional_backup_regions is not None:
42783
+ pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
42784
+ if ip_filter_objects is not None:
42785
+ pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
42786
+ if ip_filter_strings is not None:
42787
+ pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
42788
+ if ip_filters is not None:
42789
+ pulumi.set(__self__, "ip_filters", ip_filters)
42790
+ if migration is not None:
42791
+ pulumi.set(__self__, "migration", migration)
42792
+ if private_access is not None:
42793
+ pulumi.set(__self__, "private_access", private_access)
42794
+ if privatelink_access is not None:
42795
+ pulumi.set(__self__, "privatelink_access", privatelink_access)
42796
+ if project_to_fork_from is not None:
42797
+ pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
42798
+ if public_access is not None:
42799
+ pulumi.set(__self__, "public_access", public_access)
42800
+ if recovery_basebackup_name is not None:
42801
+ pulumi.set(__self__, "recovery_basebackup_name", recovery_basebackup_name)
42802
+ if service_log is not None:
42803
+ pulumi.set(__self__, "service_log", service_log)
42804
+ if service_to_fork_from is not None:
42805
+ pulumi.set(__self__, "service_to_fork_from", service_to_fork_from)
42806
+ if static_ips is not None:
42807
+ pulumi.set(__self__, "static_ips", static_ips)
42808
+ if valkey_acl_channels_default is not None:
42809
+ pulumi.set(__self__, "valkey_acl_channels_default", valkey_acl_channels_default)
42810
+ if valkey_io_threads is not None:
42811
+ pulumi.set(__self__, "valkey_io_threads", valkey_io_threads)
42812
+ if valkey_lfu_decay_time is not None:
42813
+ pulumi.set(__self__, "valkey_lfu_decay_time", valkey_lfu_decay_time)
42814
+ if valkey_lfu_log_factor is not None:
42815
+ pulumi.set(__self__, "valkey_lfu_log_factor", valkey_lfu_log_factor)
42816
+ if valkey_maxmemory_policy is not None:
42817
+ pulumi.set(__self__, "valkey_maxmemory_policy", valkey_maxmemory_policy)
42818
+ if valkey_notify_keyspace_events is not None:
42819
+ pulumi.set(__self__, "valkey_notify_keyspace_events", valkey_notify_keyspace_events)
42820
+ if valkey_number_of_databases is not None:
42821
+ pulumi.set(__self__, "valkey_number_of_databases", valkey_number_of_databases)
42822
+ if valkey_persistence is not None:
42823
+ pulumi.set(__self__, "valkey_persistence", valkey_persistence)
42824
+ if valkey_pubsub_client_output_buffer_limit is not None:
42825
+ pulumi.set(__self__, "valkey_pubsub_client_output_buffer_limit", valkey_pubsub_client_output_buffer_limit)
42826
+ if valkey_ssl is not None:
42827
+ pulumi.set(__self__, "valkey_ssl", valkey_ssl)
42828
+ if valkey_timeout is not None:
42829
+ pulumi.set(__self__, "valkey_timeout", valkey_timeout)
42830
+
42831
+ @property
42832
+ @pulumi.getter(name="additionalBackupRegions")
42833
+ def additional_backup_regions(self) -> Optional[str]:
42834
+ """
42835
+ Additional Cloud Regions for Backup Replication.
42836
+ """
42837
+ return pulumi.get(self, "additional_backup_regions")
42838
+
42839
+ @property
42840
+ @pulumi.getter(name="ipFilterObjects")
42841
+ def ip_filter_objects(self) -> Optional[Sequence['outputs.GetValkeyValkeyUserConfigIpFilterObjectResult']]:
42842
+ """
42843
+ Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
42844
+ """
42845
+ return pulumi.get(self, "ip_filter_objects")
42846
+
42847
+ @property
42848
+ @pulumi.getter(name="ipFilterStrings")
42849
+ def ip_filter_strings(self) -> Optional[Sequence[str]]:
42850
+ """
42851
+ Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
42852
+ """
42853
+ return pulumi.get(self, "ip_filter_strings")
42854
+
42855
+ @property
42856
+ @pulumi.getter(name="ipFilters")
42857
+ @_utilities.deprecated("""Deprecated. Use `ip_filter_string` instead.""")
42858
+ def ip_filters(self) -> Optional[Sequence[str]]:
42859
+ """
42860
+ Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
42861
+ """
42862
+ return pulumi.get(self, "ip_filters")
42863
+
42864
+ @property
42865
+ @pulumi.getter
42866
+ def migration(self) -> Optional['outputs.GetValkeyValkeyUserConfigMigrationResult']:
42867
+ """
42868
+ Migrate data from existing server
42869
+ """
42870
+ return pulumi.get(self, "migration")
42871
+
42872
+ @property
42873
+ @pulumi.getter(name="privateAccess")
42874
+ def private_access(self) -> Optional['outputs.GetValkeyValkeyUserConfigPrivateAccessResult']:
42875
+ """
42876
+ Allow access to selected service ports from private networks
42877
+ """
42878
+ return pulumi.get(self, "private_access")
42879
+
42880
+ @property
42881
+ @pulumi.getter(name="privatelinkAccess")
42882
+ def privatelink_access(self) -> Optional['outputs.GetValkeyValkeyUserConfigPrivatelinkAccessResult']:
42883
+ """
42884
+ Allow access to selected service components through Privatelink
42885
+ """
42886
+ return pulumi.get(self, "privatelink_access")
42887
+
42888
+ @property
42889
+ @pulumi.getter(name="projectToForkFrom")
42890
+ def project_to_fork_from(self) -> Optional[str]:
42891
+ """
42892
+ Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
42893
+ """
42894
+ return pulumi.get(self, "project_to_fork_from")
42895
+
42896
+ @property
42897
+ @pulumi.getter(name="publicAccess")
42898
+ def public_access(self) -> Optional['outputs.GetValkeyValkeyUserConfigPublicAccessResult']:
42899
+ """
42900
+ Allow access to selected service ports from the public Internet
42901
+ """
42902
+ return pulumi.get(self, "public_access")
42903
+
42904
+ @property
42905
+ @pulumi.getter(name="recoveryBasebackupName")
42906
+ def recovery_basebackup_name(self) -> Optional[str]:
42907
+ """
42908
+ Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
42909
+ """
42910
+ return pulumi.get(self, "recovery_basebackup_name")
42911
+
42912
+ @property
42913
+ @pulumi.getter(name="serviceLog")
42914
+ def service_log(self) -> Optional[bool]:
42915
+ """
42916
+ Store logs for the service so that they are available in the HTTP API and console.
42917
+ """
42918
+ return pulumi.get(self, "service_log")
42919
+
42920
+ @property
42921
+ @pulumi.getter(name="serviceToForkFrom")
42922
+ def service_to_fork_from(self) -> Optional[str]:
42923
+ """
42924
+ Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
42925
+ """
42926
+ return pulumi.get(self, "service_to_fork_from")
42927
+
42928
+ @property
42929
+ @pulumi.getter(name="staticIps")
42930
+ def static_ips(self) -> Optional[bool]:
42931
+ """
42932
+ Use static public IP addresses.
42933
+ """
42934
+ return pulumi.get(self, "static_ips")
42935
+
42936
+ @property
42937
+ @pulumi.getter(name="valkeyAclChannelsDefault")
42938
+ def valkey_acl_channels_default(self) -> Optional[str]:
42939
+ """
42940
+ Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Valkey configuration acl-pubsub-default.
42941
+ """
42942
+ return pulumi.get(self, "valkey_acl_channels_default")
42943
+
42944
+ @property
42945
+ @pulumi.getter(name="valkeyIoThreads")
42946
+ def valkey_io_threads(self) -> Optional[int]:
42947
+ """
42948
+ Set Valkey IO thread count. Changing this will cause a restart of the Valkey service. Example: `1`.
42949
+ """
42950
+ return pulumi.get(self, "valkey_io_threads")
42951
+
42952
+ @property
42953
+ @pulumi.getter(name="valkeyLfuDecayTime")
42954
+ def valkey_lfu_decay_time(self) -> Optional[int]:
42955
+ """
42956
+ LFU maxmemory-policy counter decay time in minutes. Default: `1`.
42957
+ """
42958
+ return pulumi.get(self, "valkey_lfu_decay_time")
42959
+
42960
+ @property
42961
+ @pulumi.getter(name="valkeyLfuLogFactor")
42962
+ def valkey_lfu_log_factor(self) -> Optional[int]:
42963
+ """
42964
+ Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. Default: `10`.
42965
+ """
42966
+ return pulumi.get(self, "valkey_lfu_log_factor")
42967
+
42968
+ @property
42969
+ @pulumi.getter(name="valkeyMaxmemoryPolicy")
42970
+ def valkey_maxmemory_policy(self) -> Optional[str]:
42971
+ """
42972
+ Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Valkey maxmemory-policy. Default: `noeviction`.
42973
+ """
42974
+ return pulumi.get(self, "valkey_maxmemory_policy")
42975
+
42976
+ @property
42977
+ @pulumi.getter(name="valkeyNotifyKeyspaceEvents")
42978
+ def valkey_notify_keyspace_events(self) -> Optional[str]:
42979
+ """
42980
+ Set notify-keyspace-events option.
42981
+ """
42982
+ return pulumi.get(self, "valkey_notify_keyspace_events")
42983
+
42984
+ @property
42985
+ @pulumi.getter(name="valkeyNumberOfDatabases")
42986
+ def valkey_number_of_databases(self) -> Optional[int]:
42987
+ """
42988
+ Set number of Valkey databases. Changing this will cause a restart of the Valkey service. Example: `16`.
42989
+ """
42990
+ return pulumi.get(self, "valkey_number_of_databases")
42991
+
42992
+ @property
42993
+ @pulumi.getter(name="valkeyPersistence")
42994
+ def valkey_persistence(self) -> Optional[str]:
42995
+ """
42996
+ Enum: `off`, `rdb`. When persistence is `rdb`, Valkey does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is `off`, no RDB dumps and backups are done, so data can be lost at any moment if service is restarted for any reason, or if service is powered off. Also service can't be forked.
42997
+ """
42998
+ return pulumi.get(self, "valkey_persistence")
42999
+
43000
+ @property
43001
+ @pulumi.getter(name="valkeyPubsubClientOutputBufferLimit")
43002
+ def valkey_pubsub_client_output_buffer_limit(self) -> Optional[int]:
43003
+ """
43004
+ Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan. Example: `64`.
43005
+ """
43006
+ return pulumi.get(self, "valkey_pubsub_client_output_buffer_limit")
43007
+
43008
+ @property
43009
+ @pulumi.getter(name="valkeySsl")
43010
+ def valkey_ssl(self) -> Optional[bool]:
43011
+ """
43012
+ Require SSL to access Valkey. Default: `true`.
43013
+ """
43014
+ return pulumi.get(self, "valkey_ssl")
43015
+
43016
+ @property
43017
+ @pulumi.getter(name="valkeyTimeout")
43018
+ def valkey_timeout(self) -> Optional[int]:
43019
+ """
43020
+ Valkey idle connection timeout in seconds. Default: `300`.
43021
+ """
43022
+ return pulumi.get(self, "valkey_timeout")
43023
+
43024
+
43025
+ @pulumi.output_type
43026
+ class GetValkeyValkeyUserConfigIpFilterObjectResult(dict):
43027
+ def __init__(__self__, *,
43028
+ network: str,
43029
+ description: Optional[str] = None):
43030
+ """
43031
+ :param str network: CIDR address block. Example: `10.20.0.0/16`.
43032
+ :param str description: Description for IP filter list entry. Example: `Production service IP range`.
43033
+ """
43034
+ pulumi.set(__self__, "network", network)
43035
+ if description is not None:
43036
+ pulumi.set(__self__, "description", description)
43037
+
43038
+ @property
43039
+ @pulumi.getter
43040
+ def network(self) -> str:
43041
+ """
43042
+ CIDR address block. Example: `10.20.0.0/16`.
43043
+ """
43044
+ return pulumi.get(self, "network")
43045
+
43046
+ @property
43047
+ @pulumi.getter
43048
+ def description(self) -> Optional[str]:
43049
+ """
43050
+ Description for IP filter list entry. Example: `Production service IP range`.
43051
+ """
43052
+ return pulumi.get(self, "description")
43053
+
43054
+
43055
+ @pulumi.output_type
43056
+ class GetValkeyValkeyUserConfigMigrationResult(dict):
43057
+ def __init__(__self__, *,
43058
+ host: str,
43059
+ port: int,
43060
+ dbname: Optional[str] = None,
43061
+ ignore_dbs: Optional[str] = None,
43062
+ method: Optional[str] = None,
43063
+ password: Optional[str] = None,
43064
+ ssl: Optional[bool] = None,
43065
+ username: Optional[str] = None):
43066
+ """
43067
+ :param str host: Hostname or IP address of the server where to migrate data from. Example: `my.server.com`.
43068
+ :param int port: Port number of the server where to migrate data from. Example: `1234`.
43069
+ :param str dbname: Database name for bootstrapping the initial connection. Example: `defaultdb`.
43070
+ :param str ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). Example: `db1,db2`.
43071
+ :param str method: Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
43072
+ :param str password: Password for authentication with the server where to migrate data from. Example: `jjKk45Nnd`.
43073
+ :param bool ssl: The server where to migrate data from is secured with SSL. Default: `true`.
43074
+ :param str username: User name for authentication with the server where to migrate data from. Example: `myname`.
43075
+ """
43076
+ pulumi.set(__self__, "host", host)
43077
+ pulumi.set(__self__, "port", port)
43078
+ if dbname is not None:
43079
+ pulumi.set(__self__, "dbname", dbname)
43080
+ if ignore_dbs is not None:
43081
+ pulumi.set(__self__, "ignore_dbs", ignore_dbs)
43082
+ if method is not None:
43083
+ pulumi.set(__self__, "method", method)
43084
+ if password is not None:
43085
+ pulumi.set(__self__, "password", password)
43086
+ if ssl is not None:
43087
+ pulumi.set(__self__, "ssl", ssl)
43088
+ if username is not None:
43089
+ pulumi.set(__self__, "username", username)
43090
+
43091
+ @property
43092
+ @pulumi.getter
43093
+ def host(self) -> str:
43094
+ """
43095
+ Hostname or IP address of the server where to migrate data from. Example: `my.server.com`.
43096
+ """
43097
+ return pulumi.get(self, "host")
43098
+
43099
+ @property
43100
+ @pulumi.getter
43101
+ def port(self) -> int:
43102
+ """
43103
+ Port number of the server where to migrate data from. Example: `1234`.
43104
+ """
43105
+ return pulumi.get(self, "port")
43106
+
43107
+ @property
43108
+ @pulumi.getter
43109
+ def dbname(self) -> Optional[str]:
43110
+ """
43111
+ Database name for bootstrapping the initial connection. Example: `defaultdb`.
43112
+ """
43113
+ return pulumi.get(self, "dbname")
43114
+
43115
+ @property
43116
+ @pulumi.getter(name="ignoreDbs")
43117
+ def ignore_dbs(self) -> Optional[str]:
43118
+ """
43119
+ Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). Example: `db1,db2`.
43120
+ """
43121
+ return pulumi.get(self, "ignore_dbs")
43122
+
43123
+ @property
43124
+ @pulumi.getter
43125
+ def method(self) -> Optional[str]:
43126
+ """
43127
+ Enum: `dump`, `replication`. The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
43128
+ """
43129
+ return pulumi.get(self, "method")
43130
+
43131
+ @property
43132
+ @pulumi.getter
43133
+ def password(self) -> Optional[str]:
43134
+ """
43135
+ Password for authentication with the server where to migrate data from. Example: `jjKk45Nnd`.
43136
+ """
43137
+ return pulumi.get(self, "password")
43138
+
43139
+ @property
43140
+ @pulumi.getter
43141
+ def ssl(self) -> Optional[bool]:
43142
+ """
43143
+ The server where to migrate data from is secured with SSL. Default: `true`.
43144
+ """
43145
+ return pulumi.get(self, "ssl")
43146
+
43147
+ @property
43148
+ @pulumi.getter
43149
+ def username(self) -> Optional[str]:
43150
+ """
43151
+ User name for authentication with the server where to migrate data from. Example: `myname`.
43152
+ """
43153
+ return pulumi.get(self, "username")
43154
+
43155
+
43156
+ @pulumi.output_type
43157
+ class GetValkeyValkeyUserConfigPrivateAccessResult(dict):
43158
+ def __init__(__self__, *,
43159
+ prometheus: Optional[bool] = None,
43160
+ valkey: Optional[bool] = None):
43161
+ """
43162
+ :param bool prometheus: Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
43163
+ :param bool valkey: Allow clients to connect to valkey with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
43164
+ """
43165
+ if prometheus is not None:
43166
+ pulumi.set(__self__, "prometheus", prometheus)
43167
+ if valkey is not None:
43168
+ pulumi.set(__self__, "valkey", valkey)
43169
+
43170
+ @property
43171
+ @pulumi.getter
43172
+ def prometheus(self) -> Optional[bool]:
43173
+ """
43174
+ Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
43175
+ """
43176
+ return pulumi.get(self, "prometheus")
43177
+
43178
+ @property
43179
+ @pulumi.getter
43180
+ def valkey(self) -> Optional[bool]:
43181
+ """
43182
+ Allow clients to connect to valkey with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
43183
+ """
43184
+ return pulumi.get(self, "valkey")
43185
+
43186
+
43187
+ @pulumi.output_type
43188
+ class GetValkeyValkeyUserConfigPrivatelinkAccessResult(dict):
43189
+ def __init__(__self__, *,
43190
+ prometheus: Optional[bool] = None,
43191
+ valkey: Optional[bool] = None):
43192
+ """
43193
+ :param bool prometheus: Enable prometheus.
43194
+ :param bool valkey: Enable valkey.
43195
+ """
43196
+ if prometheus is not None:
43197
+ pulumi.set(__self__, "prometheus", prometheus)
43198
+ if valkey is not None:
43199
+ pulumi.set(__self__, "valkey", valkey)
43200
+
43201
+ @property
43202
+ @pulumi.getter
43203
+ def prometheus(self) -> Optional[bool]:
43204
+ """
43205
+ Enable prometheus.
43206
+ """
43207
+ return pulumi.get(self, "prometheus")
43208
+
43209
+ @property
43210
+ @pulumi.getter
43211
+ def valkey(self) -> Optional[bool]:
43212
+ """
43213
+ Enable valkey.
43214
+ """
43215
+ return pulumi.get(self, "valkey")
43216
+
43217
+
43218
+ @pulumi.output_type
43219
+ class GetValkeyValkeyUserConfigPublicAccessResult(dict):
43220
+ def __init__(__self__, *,
43221
+ prometheus: Optional[bool] = None,
43222
+ valkey: Optional[bool] = None):
43223
+ """
43224
+ :param bool prometheus: Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
43225
+ :param bool valkey: Allow clients to connect to valkey from the public internet for service nodes that are in a project VPC or another type of private network.
43226
+ """
43227
+ if prometheus is not None:
43228
+ pulumi.set(__self__, "prometheus", prometheus)
43229
+ if valkey is not None:
43230
+ pulumi.set(__self__, "valkey", valkey)
43231
+
43232
+ @property
43233
+ @pulumi.getter
43234
+ def prometheus(self) -> Optional[bool]:
43235
+ """
43236
+ Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
43237
+ """
43238
+ return pulumi.get(self, "prometheus")
43239
+
43240
+ @property
43241
+ @pulumi.getter
43242
+ def valkey(self) -> Optional[bool]:
43243
+ """
43244
+ Allow clients to connect to valkey from the public internet for service nodes that are in a project VPC or another type of private network.
43245
+ """
43246
+ return pulumi.get(self, "valkey")
43247
+
43248
+