pulumi-aiven 6.36.0a1741493223__py3-none-any.whl → 6.37.0a1741842447__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.
- pulumi_aiven/_inputs.py +214 -3
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/alloydbomni.py +7 -7
- pulumi_aiven/cassandra.py +7 -7
- pulumi_aiven/clickhouse.py +7 -7
- pulumi_aiven/dragonfly.py +7 -7
- pulumi_aiven/flink.py +7 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_alloydbomni.py +1 -1
- pulumi_aiven/get_billing_group.py +21 -3
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_organization_application_user.py +1 -1
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_project_user.py +3 -3
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +7 -7
- pulumi_aiven/influx_db.py +42 -42
- pulumi_aiven/kafka.py +9 -9
- pulumi_aiven/kafka_connect.py +7 -7
- pulumi_aiven/kafka_mirror_maker.py +7 -7
- pulumi_aiven/m3_aggregator.py +7 -7
- pulumi_aiven/m3_db.py +7 -7
- pulumi_aiven/my_sql.py +7 -7
- pulumi_aiven/open_search.py +7 -7
- pulumi_aiven/organization_application_user.py +13 -15
- pulumi_aiven/organization_application_user_token.py +47 -0
- pulumi_aiven/organization_group_project.py +9 -9
- pulumi_aiven/organization_permission.py +16 -2
- pulumi_aiven/outputs.py +277 -2
- pulumi_aiven/pg.py +7 -7
- pulumi_aiven/project_user.py +9 -9
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -7
- pulumi_aiven/thanos.py +7 -7
- pulumi_aiven/valkey.py +7 -7
- {pulumi_aiven-6.36.0a1741493223.dist-info → pulumi_aiven-6.37.0a1741842447.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.36.0a1741493223.dist-info → pulumi_aiven-6.37.0a1741842447.dist-info}/RECORD +53 -53
- {pulumi_aiven-6.36.0a1741493223.dist-info → pulumi_aiven-6.37.0a1741842447.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.36.0a1741493223.dist-info → pulumi_aiven-6.37.0a1741842447.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py
CHANGED
|
@@ -211,6 +211,7 @@ __all__ = [
|
|
|
211
211
|
'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog',
|
|
212
212
|
'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold',
|
|
213
213
|
'OpenSearchOpensearchUserConfigOpensearchDashboards',
|
|
214
|
+
'OpenSearchOpensearchUserConfigOpensearchDiskWatermarks',
|
|
214
215
|
'OpenSearchOpensearchUserConfigOpensearchSearchBackpressure',
|
|
215
216
|
'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureNodeDuress',
|
|
216
217
|
'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureSearchShardTask',
|
|
@@ -541,6 +542,7 @@ __all__ = [
|
|
|
541
542
|
'GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult',
|
|
542
543
|
'GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdResult',
|
|
543
544
|
'GetOpenSearchOpensearchUserConfigOpensearchDashboardsResult',
|
|
545
|
+
'GetOpenSearchOpensearchUserConfigOpensearchDiskWatermarksResult',
|
|
544
546
|
'GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureResult',
|
|
545
547
|
'GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureNodeDuressResult',
|
|
546
548
|
'GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureSearchShardTaskResult',
|
|
@@ -11719,6 +11721,8 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
|
|
|
11719
11721
|
suggest = None
|
|
11720
11722
|
if key == "consumerEnableAutoCommit":
|
|
11721
11723
|
suggest = "consumer_enable_auto_commit"
|
|
11724
|
+
elif key == "consumerIdleDisconnectTimeout":
|
|
11725
|
+
suggest = "consumer_idle_disconnect_timeout"
|
|
11722
11726
|
elif key == "consumerRequestMaxBytes":
|
|
11723
11727
|
suggest = "consumer_request_max_bytes"
|
|
11724
11728
|
elif key == "consumerRequestTimeoutMs":
|
|
@@ -11751,6 +11755,7 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
|
|
|
11751
11755
|
|
|
11752
11756
|
def __init__(__self__, *,
|
|
11753
11757
|
consumer_enable_auto_commit: Optional[bool] = None,
|
|
11758
|
+
consumer_idle_disconnect_timeout: Optional[int] = None,
|
|
11754
11759
|
consumer_request_max_bytes: Optional[int] = None,
|
|
11755
11760
|
consumer_request_timeout_ms: Optional[int] = None,
|
|
11756
11761
|
name_strategy: Optional[str] = None,
|
|
@@ -11762,6 +11767,7 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
|
|
|
11762
11767
|
simpleconsumer_pool_size_max: Optional[int] = None):
|
|
11763
11768
|
"""
|
|
11764
11769
|
:param bool consumer_enable_auto_commit: If true the consumer's offset will be periodically committed to Kafka in the background. Default: `true`.
|
|
11770
|
+
:param int consumer_idle_disconnect_timeout: Specifies the maximum duration (in seconds) a client can remain idle before it is deleted. If a consumer is inactive, it will exit the consumer group, and its state will be discarded. A value of 0 (default) indicates that the consumer will not be disconnected automatically due to inactivity. Default: `0`.
|
|
11765
11771
|
:param int consumer_request_max_bytes: Maximum number of bytes in unencoded message keys and values by a single request. Default: `67108864`.
|
|
11766
11772
|
:param int consumer_request_timeout_ms: Enum: `1000`, `15000`, `30000`. The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. Default: `1000`.
|
|
11767
11773
|
:param str name_strategy: Enum: `record_name`, `topic_name`, `topic_record_name`. Name strategy to use when selecting subject for storing schemas. Default: `topic_name`.
|
|
@@ -11774,6 +11780,8 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
|
|
|
11774
11780
|
"""
|
|
11775
11781
|
if consumer_enable_auto_commit is not None:
|
|
11776
11782
|
pulumi.set(__self__, "consumer_enable_auto_commit", consumer_enable_auto_commit)
|
|
11783
|
+
if consumer_idle_disconnect_timeout is not None:
|
|
11784
|
+
pulumi.set(__self__, "consumer_idle_disconnect_timeout", consumer_idle_disconnect_timeout)
|
|
11777
11785
|
if consumer_request_max_bytes is not None:
|
|
11778
11786
|
pulumi.set(__self__, "consumer_request_max_bytes", consumer_request_max_bytes)
|
|
11779
11787
|
if consumer_request_timeout_ms is not None:
|
|
@@ -11801,6 +11809,14 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
|
|
|
11801
11809
|
"""
|
|
11802
11810
|
return pulumi.get(self, "consumer_enable_auto_commit")
|
|
11803
11811
|
|
|
11812
|
+
@property
|
|
11813
|
+
@pulumi.getter(name="consumerIdleDisconnectTimeout")
|
|
11814
|
+
def consumer_idle_disconnect_timeout(self) -> Optional[int]:
|
|
11815
|
+
"""
|
|
11816
|
+
Specifies the maximum duration (in seconds) a client can remain idle before it is deleted. If a consumer is inactive, it will exit the consumer group, and its state will be discarded. A value of 0 (default) indicates that the consumer will not be disconnected automatically due to inactivity. Default: `0`.
|
|
11817
|
+
"""
|
|
11818
|
+
return pulumi.get(self, "consumer_idle_disconnect_timeout")
|
|
11819
|
+
|
|
11804
11820
|
@property
|
|
11805
11821
|
@pulumi.getter(name="consumerRequestMaxBytes")
|
|
11806
11822
|
def consumer_request_max_bytes(self) -> Optional[int]:
|
|
@@ -17266,6 +17282,7 @@ class OpenSearchOpensearchUserConfigAzureMigration(dict):
|
|
|
17266
17282
|
endpoint_suffix: Optional[str] = None,
|
|
17267
17283
|
include_aliases: Optional[bool] = None,
|
|
17268
17284
|
key: Optional[str] = None,
|
|
17285
|
+
readonly: Optional[bool] = None,
|
|
17269
17286
|
restore_global_state: Optional[bool] = None,
|
|
17270
17287
|
sas_token: Optional[str] = None):
|
|
17271
17288
|
"""
|
|
@@ -17279,6 +17296,7 @@ class OpenSearchOpensearchUserConfigAzureMigration(dict):
|
|
|
17279
17296
|
:param str endpoint_suffix: Defines the DNS suffix for Azure Storage endpoints.
|
|
17280
17297
|
:param bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
|
|
17281
17298
|
:param str key: Azure account secret key. One of key or sas_token should be specified.
|
|
17299
|
+
:param bool readonly: Whether the repository is read-only. Default: `false`.
|
|
17282
17300
|
:param bool restore_global_state: If true, restore the cluster state. Defaults to false.
|
|
17283
17301
|
:param str sas_token: A shared access signatures (SAS) token. One of key or sas_token should be specified.
|
|
17284
17302
|
"""
|
|
@@ -17297,6 +17315,8 @@ class OpenSearchOpensearchUserConfigAzureMigration(dict):
|
|
|
17297
17315
|
pulumi.set(__self__, "include_aliases", include_aliases)
|
|
17298
17316
|
if key is not None:
|
|
17299
17317
|
pulumi.set(__self__, "key", key)
|
|
17318
|
+
if readonly is not None:
|
|
17319
|
+
pulumi.set(__self__, "readonly", readonly)
|
|
17300
17320
|
if restore_global_state is not None:
|
|
17301
17321
|
pulumi.set(__self__, "restore_global_state", restore_global_state)
|
|
17302
17322
|
if sas_token is not None:
|
|
@@ -17382,6 +17402,14 @@ class OpenSearchOpensearchUserConfigAzureMigration(dict):
|
|
|
17382
17402
|
"""
|
|
17383
17403
|
return pulumi.get(self, "key")
|
|
17384
17404
|
|
|
17405
|
+
@property
|
|
17406
|
+
@pulumi.getter
|
|
17407
|
+
def readonly(self) -> Optional[bool]:
|
|
17408
|
+
"""
|
|
17409
|
+
Whether the repository is read-only. Default: `false`.
|
|
17410
|
+
"""
|
|
17411
|
+
return pulumi.get(self, "readonly")
|
|
17412
|
+
|
|
17385
17413
|
@property
|
|
17386
17414
|
@pulumi.getter(name="restoreGlobalState")
|
|
17387
17415
|
def restore_global_state(self) -> Optional[bool]:
|
|
@@ -17435,6 +17463,7 @@ class OpenSearchOpensearchUserConfigGcsMigration(dict):
|
|
|
17435
17463
|
chunk_size: Optional[str] = None,
|
|
17436
17464
|
compress: Optional[bool] = None,
|
|
17437
17465
|
include_aliases: Optional[bool] = None,
|
|
17466
|
+
readonly: Optional[bool] = None,
|
|
17438
17467
|
restore_global_state: Optional[bool] = None):
|
|
17439
17468
|
"""
|
|
17440
17469
|
:param str base_path: The path to the repository data within its container. The value of this setting should not start or end with a /.
|
|
@@ -17445,6 +17474,7 @@ class OpenSearchOpensearchUserConfigGcsMigration(dict):
|
|
|
17445
17474
|
:param str chunk_size: Big files can be broken down into chunks during snapshotting if needed. Should be the same as for the 3rd party repository.
|
|
17446
17475
|
:param bool compress: When set to true metadata files are stored in compressed format.
|
|
17447
17476
|
:param bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
|
|
17477
|
+
:param bool readonly: Whether the repository is read-only. Default: `false`.
|
|
17448
17478
|
:param bool restore_global_state: If true, restore the cluster state. Defaults to false.
|
|
17449
17479
|
"""
|
|
17450
17480
|
pulumi.set(__self__, "base_path", base_path)
|
|
@@ -17458,6 +17488,8 @@ class OpenSearchOpensearchUserConfigGcsMigration(dict):
|
|
|
17458
17488
|
pulumi.set(__self__, "compress", compress)
|
|
17459
17489
|
if include_aliases is not None:
|
|
17460
17490
|
pulumi.set(__self__, "include_aliases", include_aliases)
|
|
17491
|
+
if readonly is not None:
|
|
17492
|
+
pulumi.set(__self__, "readonly", readonly)
|
|
17461
17493
|
if restore_global_state is not None:
|
|
17462
17494
|
pulumi.set(__self__, "restore_global_state", restore_global_state)
|
|
17463
17495
|
|
|
@@ -17525,6 +17557,14 @@ class OpenSearchOpensearchUserConfigGcsMigration(dict):
|
|
|
17525
17557
|
"""
|
|
17526
17558
|
return pulumi.get(self, "include_aliases")
|
|
17527
17559
|
|
|
17560
|
+
@property
|
|
17561
|
+
@pulumi.getter
|
|
17562
|
+
def readonly(self) -> Optional[bool]:
|
|
17563
|
+
"""
|
|
17564
|
+
Whether the repository is read-only. Default: `false`.
|
|
17565
|
+
"""
|
|
17566
|
+
return pulumi.get(self, "readonly")
|
|
17567
|
+
|
|
17528
17568
|
@property
|
|
17529
17569
|
@pulumi.getter(name="restoreGlobalState")
|
|
17530
17570
|
def restore_global_state(self) -> Optional[bool]:
|
|
@@ -17979,6 +18019,8 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17979
18019
|
suggest = "cluster_routing_allocation_node_concurrent_recoveries"
|
|
17980
18020
|
elif key == "clusterSearchRequestSlowlog":
|
|
17981
18021
|
suggest = "cluster_search_request_slowlog"
|
|
18022
|
+
elif key == "diskWatermarks":
|
|
18023
|
+
suggest = "disk_watermarks"
|
|
17982
18024
|
elif key == "emailSenderName":
|
|
17983
18025
|
suggest = "email_sender_name"
|
|
17984
18026
|
elif key == "emailSenderPassword":
|
|
@@ -18085,6 +18127,7 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
18085
18127
|
cluster_routing_allocation_balance_prefer_primary: Optional[bool] = None,
|
|
18086
18128
|
cluster_routing_allocation_node_concurrent_recoveries: Optional[int] = None,
|
|
18087
18129
|
cluster_search_request_slowlog: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog'] = None,
|
|
18130
|
+
disk_watermarks: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchDiskWatermarks'] = None,
|
|
18088
18131
|
email_sender_name: Optional[str] = None,
|
|
18089
18132
|
email_sender_password: Optional[str] = None,
|
|
18090
18133
|
email_sender_username: Optional[str] = None,
|
|
@@ -18136,6 +18179,7 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
18136
18179
|
:param int cluster_max_shards_per_node: Controls the number of shards allowed in the cluster per data node. Example: `1000`.
|
|
18137
18180
|
:param bool cluster_routing_allocation_balance_prefer_primary: When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
|
|
18138
18181
|
:param int cluster_routing_allocation_node_concurrent_recoveries: How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
|
|
18182
|
+
:param 'OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs' disk_watermarks: Watermark settings
|
|
18139
18183
|
:param str email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
18140
18184
|
:param str email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
|
|
18141
18185
|
:param str email_sender_username: Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
@@ -18194,6 +18238,8 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
18194
18238
|
pulumi.set(__self__, "cluster_routing_allocation_node_concurrent_recoveries", cluster_routing_allocation_node_concurrent_recoveries)
|
|
18195
18239
|
if cluster_search_request_slowlog is not None:
|
|
18196
18240
|
pulumi.set(__self__, "cluster_search_request_slowlog", cluster_search_request_slowlog)
|
|
18241
|
+
if disk_watermarks is not None:
|
|
18242
|
+
pulumi.set(__self__, "disk_watermarks", disk_watermarks)
|
|
18197
18243
|
if email_sender_name is not None:
|
|
18198
18244
|
pulumi.set(__self__, "email_sender_name", email_sender_name)
|
|
18199
18245
|
if email_sender_password is not None:
|
|
@@ -18336,6 +18382,14 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
18336
18382
|
def cluster_search_request_slowlog(self) -> Optional['outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog']:
|
|
18337
18383
|
return pulumi.get(self, "cluster_search_request_slowlog")
|
|
18338
18384
|
|
|
18385
|
+
@property
|
|
18386
|
+
@pulumi.getter(name="diskWatermarks")
|
|
18387
|
+
def disk_watermarks(self) -> Optional['outputs.OpenSearchOpensearchUserConfigOpensearchDiskWatermarks']:
|
|
18388
|
+
"""
|
|
18389
|
+
Watermark settings
|
|
18390
|
+
"""
|
|
18391
|
+
return pulumi.get(self, "disk_watermarks")
|
|
18392
|
+
|
|
18339
18393
|
@property
|
|
18340
18394
|
@pulumi.getter(name="emailSenderName")
|
|
18341
18395
|
def email_sender_name(self) -> Optional[str]:
|
|
@@ -19113,6 +19167,63 @@ class OpenSearchOpensearchUserConfigOpensearchDashboards(dict):
|
|
|
19113
19167
|
return pulumi.get(self, "opensearch_request_timeout")
|
|
19114
19168
|
|
|
19115
19169
|
|
|
19170
|
+
@pulumi.output_type
|
|
19171
|
+
class OpenSearchOpensearchUserConfigOpensearchDiskWatermarks(dict):
|
|
19172
|
+
@staticmethod
|
|
19173
|
+
def __key_warning(key: str):
|
|
19174
|
+
suggest = None
|
|
19175
|
+
if key == "floodStage":
|
|
19176
|
+
suggest = "flood_stage"
|
|
19177
|
+
|
|
19178
|
+
if suggest:
|
|
19179
|
+
pulumi.log.warn(f"Key '{key}' not found in OpenSearchOpensearchUserConfigOpensearchDiskWatermarks. Access the value via the '{suggest}' property getter instead.")
|
|
19180
|
+
|
|
19181
|
+
def __getitem__(self, key: str) -> Any:
|
|
19182
|
+
OpenSearchOpensearchUserConfigOpensearchDiskWatermarks.__key_warning(key)
|
|
19183
|
+
return super().__getitem__(key)
|
|
19184
|
+
|
|
19185
|
+
def get(self, key: str, default = None) -> Any:
|
|
19186
|
+
OpenSearchOpensearchUserConfigOpensearchDiskWatermarks.__key_warning(key)
|
|
19187
|
+
return super().get(key, default)
|
|
19188
|
+
|
|
19189
|
+
def __init__(__self__, *,
|
|
19190
|
+
flood_stage: int,
|
|
19191
|
+
high: int,
|
|
19192
|
+
low: int):
|
|
19193
|
+
"""
|
|
19194
|
+
:param int flood_stage: The flood stage watermark for disk usage. Example: `95`.
|
|
19195
|
+
:param int high: The high watermark for disk usage. Example: `90`.
|
|
19196
|
+
:param int low: The low watermark for disk usage. Example: `85`.
|
|
19197
|
+
"""
|
|
19198
|
+
pulumi.set(__self__, "flood_stage", flood_stage)
|
|
19199
|
+
pulumi.set(__self__, "high", high)
|
|
19200
|
+
pulumi.set(__self__, "low", low)
|
|
19201
|
+
|
|
19202
|
+
@property
|
|
19203
|
+
@pulumi.getter(name="floodStage")
|
|
19204
|
+
def flood_stage(self) -> int:
|
|
19205
|
+
"""
|
|
19206
|
+
The flood stage watermark for disk usage. Example: `95`.
|
|
19207
|
+
"""
|
|
19208
|
+
return pulumi.get(self, "flood_stage")
|
|
19209
|
+
|
|
19210
|
+
@property
|
|
19211
|
+
@pulumi.getter
|
|
19212
|
+
def high(self) -> int:
|
|
19213
|
+
"""
|
|
19214
|
+
The high watermark for disk usage. Example: `90`.
|
|
19215
|
+
"""
|
|
19216
|
+
return pulumi.get(self, "high")
|
|
19217
|
+
|
|
19218
|
+
@property
|
|
19219
|
+
@pulumi.getter
|
|
19220
|
+
def low(self) -> int:
|
|
19221
|
+
"""
|
|
19222
|
+
The low watermark for disk usage. Example: `85`.
|
|
19223
|
+
"""
|
|
19224
|
+
return pulumi.get(self, "low")
|
|
19225
|
+
|
|
19226
|
+
|
|
19116
19227
|
@pulumi.output_type
|
|
19117
19228
|
class OpenSearchOpensearchUserConfigOpensearchSearchBackpressure(dict):
|
|
19118
19229
|
@staticmethod
|
|
@@ -20327,6 +20438,7 @@ class OpenSearchOpensearchUserConfigS3Migration(dict):
|
|
|
20327
20438
|
compress: Optional[bool] = None,
|
|
20328
20439
|
endpoint: Optional[str] = None,
|
|
20329
20440
|
include_aliases: Optional[bool] = None,
|
|
20441
|
+
readonly: Optional[bool] = None,
|
|
20330
20442
|
restore_global_state: Optional[bool] = None,
|
|
20331
20443
|
server_side_encryption: Optional[bool] = None):
|
|
20332
20444
|
"""
|
|
@@ -20341,6 +20453,7 @@ class OpenSearchOpensearchUserConfigS3Migration(dict):
|
|
|
20341
20453
|
:param bool compress: When set to true metadata files are stored in compressed format.
|
|
20342
20454
|
:param str endpoint: The S3 service endpoint to connect to. If you are using an S3-compatible service then you should set this to the service’s endpoint.
|
|
20343
20455
|
:param bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
|
|
20456
|
+
:param bool readonly: Whether the repository is read-only. Default: `false`.
|
|
20344
20457
|
:param bool restore_global_state: If true, restore the cluster state. Defaults to false.
|
|
20345
20458
|
:param bool server_side_encryption: When set to true files are encrypted on server side.
|
|
20346
20459
|
"""
|
|
@@ -20359,6 +20472,8 @@ class OpenSearchOpensearchUserConfigS3Migration(dict):
|
|
|
20359
20472
|
pulumi.set(__self__, "endpoint", endpoint)
|
|
20360
20473
|
if include_aliases is not None:
|
|
20361
20474
|
pulumi.set(__self__, "include_aliases", include_aliases)
|
|
20475
|
+
if readonly is not None:
|
|
20476
|
+
pulumi.set(__self__, "readonly", readonly)
|
|
20362
20477
|
if restore_global_state is not None:
|
|
20363
20478
|
pulumi.set(__self__, "restore_global_state", restore_global_state)
|
|
20364
20479
|
if server_side_encryption is not None:
|
|
@@ -20452,6 +20567,14 @@ class OpenSearchOpensearchUserConfigS3Migration(dict):
|
|
|
20452
20567
|
"""
|
|
20453
20568
|
return pulumi.get(self, "include_aliases")
|
|
20454
20569
|
|
|
20570
|
+
@property
|
|
20571
|
+
@pulumi.getter
|
|
20572
|
+
def readonly(self) -> Optional[bool]:
|
|
20573
|
+
"""
|
|
20574
|
+
Whether the repository is read-only. Default: `false`.
|
|
20575
|
+
"""
|
|
20576
|
+
return pulumi.get(self, "readonly")
|
|
20577
|
+
|
|
20455
20578
|
@property
|
|
20456
20579
|
@pulumi.getter(name="restoreGlobalState")
|
|
20457
20580
|
def restore_global_state(self) -> Optional[bool]:
|
|
@@ -20771,7 +20894,7 @@ class OrganizationPermissionPermission(dict):
|
|
|
20771
20894
|
create_time: Optional[str] = None,
|
|
20772
20895
|
update_time: Optional[str] = None):
|
|
20773
20896
|
"""
|
|
20774
|
-
:param Sequence[str] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
20897
|
+
:param Sequence[str] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
20775
20898
|
:param str principal_id: ID of the user or group to grant permissions to. Only active users who have accepted an [invite](https://aiven.io/docs/platform/howto/manage-org-users) to join the organization can be granted permissions.
|
|
20776
20899
|
:param str principal_type: The type of principal. The possible values are `user` and `user_group`.
|
|
20777
20900
|
:param str create_time: Time created.
|
|
@@ -20789,7 +20912,7 @@ class OrganizationPermissionPermission(dict):
|
|
|
20789
20912
|
@pulumi.getter
|
|
20790
20913
|
def permissions(self) -> Sequence[str]:
|
|
20791
20914
|
"""
|
|
20792
|
-
List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
20915
|
+
List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
20793
20916
|
"""
|
|
20794
20917
|
return pulumi.get(self, "permissions")
|
|
20795
20918
|
|
|
@@ -29292,6 +29415,8 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29292
29415
|
suggest = "backup_hour"
|
|
29293
29416
|
elif key == "backupMinute":
|
|
29294
29417
|
suggest = "backup_minute"
|
|
29418
|
+
elif key == "enableIpv6":
|
|
29419
|
+
suggest = "enable_ipv6"
|
|
29295
29420
|
elif key == "frequentSnapshots":
|
|
29296
29421
|
suggest = "frequent_snapshots"
|
|
29297
29422
|
elif key == "ipFilterObjects":
|
|
@@ -29318,6 +29443,8 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29318
29443
|
suggest = "static_ips"
|
|
29319
29444
|
elif key == "valkeyAclChannelsDefault":
|
|
29320
29445
|
suggest = "valkey_acl_channels_default"
|
|
29446
|
+
elif key == "valkeyActiveExpireEffort":
|
|
29447
|
+
suggest = "valkey_active_expire_effort"
|
|
29321
29448
|
elif key == "valkeyIoThreads":
|
|
29322
29449
|
suggest = "valkey_io_threads"
|
|
29323
29450
|
elif key == "valkeyLfuDecayTime":
|
|
@@ -29354,6 +29481,7 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29354
29481
|
additional_backup_regions: Optional[str] = None,
|
|
29355
29482
|
backup_hour: Optional[int] = None,
|
|
29356
29483
|
backup_minute: Optional[int] = None,
|
|
29484
|
+
enable_ipv6: Optional[bool] = None,
|
|
29357
29485
|
frequent_snapshots: Optional[bool] = None,
|
|
29358
29486
|
ip_filter_objects: Optional[Sequence['outputs.ValkeyValkeyUserConfigIpFilterObject']] = None,
|
|
29359
29487
|
ip_filter_strings: Optional[Sequence[str]] = None,
|
|
@@ -29368,6 +29496,7 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29368
29496
|
service_to_fork_from: Optional[str] = None,
|
|
29369
29497
|
static_ips: Optional[bool] = None,
|
|
29370
29498
|
valkey_acl_channels_default: Optional[str] = None,
|
|
29499
|
+
valkey_active_expire_effort: Optional[int] = None,
|
|
29371
29500
|
valkey_io_threads: Optional[int] = None,
|
|
29372
29501
|
valkey_lfu_decay_time: Optional[int] = None,
|
|
29373
29502
|
valkey_lfu_log_factor: Optional[int] = None,
|
|
@@ -29382,6 +29511,7 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29382
29511
|
:param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
29383
29512
|
: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`.
|
|
29384
29513
|
: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`.
|
|
29514
|
+
:param bool enable_ipv6: Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
|
|
29385
29515
|
:param bool frequent_snapshots: When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkey_persistence` is set to `off`. Default: `true`.
|
|
29386
29516
|
:param Sequence['ValkeyValkeyUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
29387
29517
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
@@ -29396,6 +29526,7 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29396
29526
|
: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`.
|
|
29397
29527
|
:param bool static_ips: Use static public IP addresses.
|
|
29398
29528
|
: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.
|
|
29529
|
+
:param int valkey_active_expire_effort: Valkey reclaims expired keys both when accessed and in the background. The background process scans for expired keys to free memory. Increasing the active-expire-effort setting (default 1, max 10) uses more CPU to reclaim expired keys faster, reducing memory usage but potentially increasing latency. Default: `1`.
|
|
29399
29530
|
:param int valkey_io_threads: Set Valkey IO thread count. Changing this will cause a restart of the Valkey service. Example: `1`.
|
|
29400
29531
|
:param int valkey_lfu_decay_time: LFU maxmemory-policy counter decay time in minutes. Default: `1`.
|
|
29401
29532
|
:param int valkey_lfu_log_factor: Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. Default: `10`.
|
|
@@ -29413,6 +29544,8 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29413
29544
|
pulumi.set(__self__, "backup_hour", backup_hour)
|
|
29414
29545
|
if backup_minute is not None:
|
|
29415
29546
|
pulumi.set(__self__, "backup_minute", backup_minute)
|
|
29547
|
+
if enable_ipv6 is not None:
|
|
29548
|
+
pulumi.set(__self__, "enable_ipv6", enable_ipv6)
|
|
29416
29549
|
if frequent_snapshots is not None:
|
|
29417
29550
|
pulumi.set(__self__, "frequent_snapshots", frequent_snapshots)
|
|
29418
29551
|
if ip_filter_objects is not None:
|
|
@@ -29441,6 +29574,8 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29441
29574
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
29442
29575
|
if valkey_acl_channels_default is not None:
|
|
29443
29576
|
pulumi.set(__self__, "valkey_acl_channels_default", valkey_acl_channels_default)
|
|
29577
|
+
if valkey_active_expire_effort is not None:
|
|
29578
|
+
pulumi.set(__self__, "valkey_active_expire_effort", valkey_active_expire_effort)
|
|
29444
29579
|
if valkey_io_threads is not None:
|
|
29445
29580
|
pulumi.set(__self__, "valkey_io_threads", valkey_io_threads)
|
|
29446
29581
|
if valkey_lfu_decay_time is not None:
|
|
@@ -29486,6 +29621,14 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29486
29621
|
"""
|
|
29487
29622
|
return pulumi.get(self, "backup_minute")
|
|
29488
29623
|
|
|
29624
|
+
@property
|
|
29625
|
+
@pulumi.getter(name="enableIpv6")
|
|
29626
|
+
def enable_ipv6(self) -> Optional[bool]:
|
|
29627
|
+
"""
|
|
29628
|
+
Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
|
|
29629
|
+
"""
|
|
29630
|
+
return pulumi.get(self, "enable_ipv6")
|
|
29631
|
+
|
|
29489
29632
|
@property
|
|
29490
29633
|
@pulumi.getter(name="frequentSnapshots")
|
|
29491
29634
|
def frequent_snapshots(self) -> Optional[bool]:
|
|
@@ -29599,6 +29742,14 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
29599
29742
|
"""
|
|
29600
29743
|
return pulumi.get(self, "valkey_acl_channels_default")
|
|
29601
29744
|
|
|
29745
|
+
@property
|
|
29746
|
+
@pulumi.getter(name="valkeyActiveExpireEffort")
|
|
29747
|
+
def valkey_active_expire_effort(self) -> Optional[int]:
|
|
29748
|
+
"""
|
|
29749
|
+
Valkey reclaims expired keys both when accessed and in the background. The background process scans for expired keys to free memory. Increasing the active-expire-effort setting (default 1, max 10) uses more CPU to reclaim expired keys faster, reducing memory usage but potentially increasing latency. Default: `1`.
|
|
29750
|
+
"""
|
|
29751
|
+
return pulumi.get(self, "valkey_active_expire_effort")
|
|
29752
|
+
|
|
29602
29753
|
@property
|
|
29603
29754
|
@pulumi.getter(name="valkeyIoThreads")
|
|
29604
29755
|
def valkey_io_threads(self) -> Optional[int]:
|
|
@@ -38913,6 +39064,7 @@ class GetKafkaKafkaUserConfigKafkaConnectSecretProviderVaultResult(dict):
|
|
|
38913
39064
|
class GetKafkaKafkaUserConfigKafkaRestConfigResult(dict):
|
|
38914
39065
|
def __init__(__self__, *,
|
|
38915
39066
|
consumer_enable_auto_commit: Optional[bool] = None,
|
|
39067
|
+
consumer_idle_disconnect_timeout: Optional[int] = None,
|
|
38916
39068
|
consumer_request_max_bytes: Optional[int] = None,
|
|
38917
39069
|
consumer_request_timeout_ms: Optional[int] = None,
|
|
38918
39070
|
name_strategy: Optional[str] = None,
|
|
@@ -38924,6 +39076,7 @@ class GetKafkaKafkaUserConfigKafkaRestConfigResult(dict):
|
|
|
38924
39076
|
simpleconsumer_pool_size_max: Optional[int] = None):
|
|
38925
39077
|
"""
|
|
38926
39078
|
:param bool consumer_enable_auto_commit: If true the consumer's offset will be periodically committed to Kafka in the background. Default: `true`.
|
|
39079
|
+
:param int consumer_idle_disconnect_timeout: Specifies the maximum duration (in seconds) a client can remain idle before it is deleted. If a consumer is inactive, it will exit the consumer group, and its state will be discarded. A value of 0 (default) indicates that the consumer will not be disconnected automatically due to inactivity. Default: `0`.
|
|
38927
39080
|
:param int consumer_request_max_bytes: Maximum number of bytes in unencoded message keys and values by a single request. Default: `67108864`.
|
|
38928
39081
|
:param int consumer_request_timeout_ms: Enum: `1000`, `15000`, `30000`. The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. Default: `1000`.
|
|
38929
39082
|
:param str name_strategy: Enum: `record_name`, `topic_name`, `topic_record_name`. Name strategy to use when selecting subject for storing schemas. Default: `topic_name`.
|
|
@@ -38936,6 +39089,8 @@ class GetKafkaKafkaUserConfigKafkaRestConfigResult(dict):
|
|
|
38936
39089
|
"""
|
|
38937
39090
|
if consumer_enable_auto_commit is not None:
|
|
38938
39091
|
pulumi.set(__self__, "consumer_enable_auto_commit", consumer_enable_auto_commit)
|
|
39092
|
+
if consumer_idle_disconnect_timeout is not None:
|
|
39093
|
+
pulumi.set(__self__, "consumer_idle_disconnect_timeout", consumer_idle_disconnect_timeout)
|
|
38939
39094
|
if consumer_request_max_bytes is not None:
|
|
38940
39095
|
pulumi.set(__self__, "consumer_request_max_bytes", consumer_request_max_bytes)
|
|
38941
39096
|
if consumer_request_timeout_ms is not None:
|
|
@@ -38963,6 +39118,14 @@ class GetKafkaKafkaUserConfigKafkaRestConfigResult(dict):
|
|
|
38963
39118
|
"""
|
|
38964
39119
|
return pulumi.get(self, "consumer_enable_auto_commit")
|
|
38965
39120
|
|
|
39121
|
+
@property
|
|
39122
|
+
@pulumi.getter(name="consumerIdleDisconnectTimeout")
|
|
39123
|
+
def consumer_idle_disconnect_timeout(self) -> Optional[int]:
|
|
39124
|
+
"""
|
|
39125
|
+
Specifies the maximum duration (in seconds) a client can remain idle before it is deleted. If a consumer is inactive, it will exit the consumer group, and its state will be discarded. A value of 0 (default) indicates that the consumer will not be disconnected automatically due to inactivity. Default: `0`.
|
|
39126
|
+
"""
|
|
39127
|
+
return pulumi.get(self, "consumer_idle_disconnect_timeout")
|
|
39128
|
+
|
|
38966
39129
|
@property
|
|
38967
39130
|
@pulumi.getter(name="consumerRequestMaxBytes")
|
|
38968
39131
|
def consumer_request_max_bytes(self) -> Optional[int]:
|
|
@@ -43375,6 +43538,7 @@ class GetOpenSearchOpensearchUserConfigAzureMigrationResult(dict):
|
|
|
43375
43538
|
endpoint_suffix: Optional[str] = None,
|
|
43376
43539
|
include_aliases: Optional[bool] = None,
|
|
43377
43540
|
key: Optional[str] = None,
|
|
43541
|
+
readonly: Optional[bool] = None,
|
|
43378
43542
|
restore_global_state: Optional[bool] = None,
|
|
43379
43543
|
sas_token: Optional[str] = None):
|
|
43380
43544
|
"""
|
|
@@ -43388,6 +43552,7 @@ class GetOpenSearchOpensearchUserConfigAzureMigrationResult(dict):
|
|
|
43388
43552
|
:param str endpoint_suffix: Defines the DNS suffix for Azure Storage endpoints.
|
|
43389
43553
|
:param bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
|
|
43390
43554
|
:param str key: Azure account secret key. One of key or sas_token should be specified.
|
|
43555
|
+
:param bool readonly: Whether the repository is read-only. Default: `false`.
|
|
43391
43556
|
:param bool restore_global_state: If true, restore the cluster state. Defaults to false.
|
|
43392
43557
|
:param str sas_token: A shared access signatures (SAS) token. One of key or sas_token should be specified.
|
|
43393
43558
|
"""
|
|
@@ -43406,6 +43571,8 @@ class GetOpenSearchOpensearchUserConfigAzureMigrationResult(dict):
|
|
|
43406
43571
|
pulumi.set(__self__, "include_aliases", include_aliases)
|
|
43407
43572
|
if key is not None:
|
|
43408
43573
|
pulumi.set(__self__, "key", key)
|
|
43574
|
+
if readonly is not None:
|
|
43575
|
+
pulumi.set(__self__, "readonly", readonly)
|
|
43409
43576
|
if restore_global_state is not None:
|
|
43410
43577
|
pulumi.set(__self__, "restore_global_state", restore_global_state)
|
|
43411
43578
|
if sas_token is not None:
|
|
@@ -43491,6 +43658,14 @@ class GetOpenSearchOpensearchUserConfigAzureMigrationResult(dict):
|
|
|
43491
43658
|
"""
|
|
43492
43659
|
return pulumi.get(self, "key")
|
|
43493
43660
|
|
|
43661
|
+
@property
|
|
43662
|
+
@pulumi.getter
|
|
43663
|
+
def readonly(self) -> Optional[bool]:
|
|
43664
|
+
"""
|
|
43665
|
+
Whether the repository is read-only. Default: `false`.
|
|
43666
|
+
"""
|
|
43667
|
+
return pulumi.get(self, "readonly")
|
|
43668
|
+
|
|
43494
43669
|
@property
|
|
43495
43670
|
@pulumi.getter(name="restoreGlobalState")
|
|
43496
43671
|
def restore_global_state(self) -> Optional[bool]:
|
|
@@ -43519,6 +43694,7 @@ class GetOpenSearchOpensearchUserConfigGcsMigrationResult(dict):
|
|
|
43519
43694
|
chunk_size: Optional[str] = None,
|
|
43520
43695
|
compress: Optional[bool] = None,
|
|
43521
43696
|
include_aliases: Optional[bool] = None,
|
|
43697
|
+
readonly: Optional[bool] = None,
|
|
43522
43698
|
restore_global_state: Optional[bool] = None):
|
|
43523
43699
|
"""
|
|
43524
43700
|
:param str base_path: The path to the repository data within its container. The value of this setting should not start or end with a /.
|
|
@@ -43529,6 +43705,7 @@ class GetOpenSearchOpensearchUserConfigGcsMigrationResult(dict):
|
|
|
43529
43705
|
:param str chunk_size: Big files can be broken down into chunks during snapshotting if needed. Should be the same as for the 3rd party repository.
|
|
43530
43706
|
:param bool compress: When set to true metadata files are stored in compressed format.
|
|
43531
43707
|
:param bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
|
|
43708
|
+
:param bool readonly: Whether the repository is read-only. Default: `false`.
|
|
43532
43709
|
:param bool restore_global_state: If true, restore the cluster state. Defaults to false.
|
|
43533
43710
|
"""
|
|
43534
43711
|
pulumi.set(__self__, "base_path", base_path)
|
|
@@ -43542,6 +43719,8 @@ class GetOpenSearchOpensearchUserConfigGcsMigrationResult(dict):
|
|
|
43542
43719
|
pulumi.set(__self__, "compress", compress)
|
|
43543
43720
|
if include_aliases is not None:
|
|
43544
43721
|
pulumi.set(__self__, "include_aliases", include_aliases)
|
|
43722
|
+
if readonly is not None:
|
|
43723
|
+
pulumi.set(__self__, "readonly", readonly)
|
|
43545
43724
|
if restore_global_state is not None:
|
|
43546
43725
|
pulumi.set(__self__, "restore_global_state", restore_global_state)
|
|
43547
43726
|
|
|
@@ -43609,6 +43788,14 @@ class GetOpenSearchOpensearchUserConfigGcsMigrationResult(dict):
|
|
|
43609
43788
|
"""
|
|
43610
43789
|
return pulumi.get(self, "include_aliases")
|
|
43611
43790
|
|
|
43791
|
+
@property
|
|
43792
|
+
@pulumi.getter
|
|
43793
|
+
def readonly(self) -> Optional[bool]:
|
|
43794
|
+
"""
|
|
43795
|
+
Whether the repository is read-only. Default: `false`.
|
|
43796
|
+
"""
|
|
43797
|
+
return pulumi.get(self, "readonly")
|
|
43798
|
+
|
|
43612
43799
|
@property
|
|
43613
43800
|
@pulumi.getter(name="restoreGlobalState")
|
|
43614
43801
|
def restore_global_state(self) -> Optional[bool]:
|
|
@@ -43956,6 +44143,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43956
44143
|
cluster_routing_allocation_balance_prefer_primary: Optional[bool] = None,
|
|
43957
44144
|
cluster_routing_allocation_node_concurrent_recoveries: Optional[int] = None,
|
|
43958
44145
|
cluster_search_request_slowlog: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult'] = None,
|
|
44146
|
+
disk_watermarks: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchDiskWatermarksResult'] = None,
|
|
43959
44147
|
email_sender_name: Optional[str] = None,
|
|
43960
44148
|
email_sender_password: Optional[str] = None,
|
|
43961
44149
|
email_sender_username: Optional[str] = None,
|
|
@@ -44007,6 +44195,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
44007
44195
|
:param int cluster_max_shards_per_node: Controls the number of shards allowed in the cluster per data node. Example: `1000`.
|
|
44008
44196
|
:param bool cluster_routing_allocation_balance_prefer_primary: When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
|
|
44009
44197
|
:param int cluster_routing_allocation_node_concurrent_recoveries: How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
|
|
44198
|
+
:param 'GetOpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs' disk_watermarks: Watermark settings
|
|
44010
44199
|
:param str email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
44011
44200
|
:param str email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
|
|
44012
44201
|
:param str email_sender_username: Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
@@ -44065,6 +44254,8 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
44065
44254
|
pulumi.set(__self__, "cluster_routing_allocation_node_concurrent_recoveries", cluster_routing_allocation_node_concurrent_recoveries)
|
|
44066
44255
|
if cluster_search_request_slowlog is not None:
|
|
44067
44256
|
pulumi.set(__self__, "cluster_search_request_slowlog", cluster_search_request_slowlog)
|
|
44257
|
+
if disk_watermarks is not None:
|
|
44258
|
+
pulumi.set(__self__, "disk_watermarks", disk_watermarks)
|
|
44068
44259
|
if email_sender_name is not None:
|
|
44069
44260
|
pulumi.set(__self__, "email_sender_name", email_sender_name)
|
|
44070
44261
|
if email_sender_password is not None:
|
|
@@ -44207,6 +44398,14 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
44207
44398
|
def cluster_search_request_slowlog(self) -> Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult']:
|
|
44208
44399
|
return pulumi.get(self, "cluster_search_request_slowlog")
|
|
44209
44400
|
|
|
44401
|
+
@property
|
|
44402
|
+
@pulumi.getter(name="diskWatermarks")
|
|
44403
|
+
def disk_watermarks(self) -> Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchDiskWatermarksResult']:
|
|
44404
|
+
"""
|
|
44405
|
+
Watermark settings
|
|
44406
|
+
"""
|
|
44407
|
+
return pulumi.get(self, "disk_watermarks")
|
|
44408
|
+
|
|
44210
44409
|
@property
|
|
44211
44410
|
@pulumi.getter(name="emailSenderName")
|
|
44212
44411
|
def email_sender_name(self) -> Optional[str]:
|
|
@@ -44892,6 +45091,46 @@ class GetOpenSearchOpensearchUserConfigOpensearchDashboardsResult(dict):
|
|
|
44892
45091
|
return pulumi.get(self, "opensearch_request_timeout")
|
|
44893
45092
|
|
|
44894
45093
|
|
|
45094
|
+
@pulumi.output_type
|
|
45095
|
+
class GetOpenSearchOpensearchUserConfigOpensearchDiskWatermarksResult(dict):
|
|
45096
|
+
def __init__(__self__, *,
|
|
45097
|
+
flood_stage: int,
|
|
45098
|
+
high: int,
|
|
45099
|
+
low: int):
|
|
45100
|
+
"""
|
|
45101
|
+
:param int flood_stage: The flood stage watermark for disk usage. Example: `95`.
|
|
45102
|
+
:param int high: The high watermark for disk usage. Example: `90`.
|
|
45103
|
+
:param int low: The low watermark for disk usage. Example: `85`.
|
|
45104
|
+
"""
|
|
45105
|
+
pulumi.set(__self__, "flood_stage", flood_stage)
|
|
45106
|
+
pulumi.set(__self__, "high", high)
|
|
45107
|
+
pulumi.set(__self__, "low", low)
|
|
45108
|
+
|
|
45109
|
+
@property
|
|
45110
|
+
@pulumi.getter(name="floodStage")
|
|
45111
|
+
def flood_stage(self) -> int:
|
|
45112
|
+
"""
|
|
45113
|
+
The flood stage watermark for disk usage. Example: `95`.
|
|
45114
|
+
"""
|
|
45115
|
+
return pulumi.get(self, "flood_stage")
|
|
45116
|
+
|
|
45117
|
+
@property
|
|
45118
|
+
@pulumi.getter
|
|
45119
|
+
def high(self) -> int:
|
|
45120
|
+
"""
|
|
45121
|
+
The high watermark for disk usage. Example: `90`.
|
|
45122
|
+
"""
|
|
45123
|
+
return pulumi.get(self, "high")
|
|
45124
|
+
|
|
45125
|
+
@property
|
|
45126
|
+
@pulumi.getter
|
|
45127
|
+
def low(self) -> int:
|
|
45128
|
+
"""
|
|
45129
|
+
The low watermark for disk usage. Example: `85`.
|
|
45130
|
+
"""
|
|
45131
|
+
return pulumi.get(self, "low")
|
|
45132
|
+
|
|
45133
|
+
|
|
44895
45134
|
@pulumi.output_type
|
|
44896
45135
|
class GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureResult(dict):
|
|
44897
45136
|
def __init__(__self__, *,
|
|
@@ -45783,6 +46022,7 @@ class GetOpenSearchOpensearchUserConfigS3MigrationResult(dict):
|
|
|
45783
46022
|
compress: Optional[bool] = None,
|
|
45784
46023
|
endpoint: Optional[str] = None,
|
|
45785
46024
|
include_aliases: Optional[bool] = None,
|
|
46025
|
+
readonly: Optional[bool] = None,
|
|
45786
46026
|
restore_global_state: Optional[bool] = None,
|
|
45787
46027
|
server_side_encryption: Optional[bool] = None):
|
|
45788
46028
|
"""
|
|
@@ -45797,6 +46037,7 @@ class GetOpenSearchOpensearchUserConfigS3MigrationResult(dict):
|
|
|
45797
46037
|
:param bool compress: When set to true metadata files are stored in compressed format.
|
|
45798
46038
|
:param str endpoint: The S3 service endpoint to connect to. If you are using an S3-compatible service then you should set this to the service’s endpoint.
|
|
45799
46039
|
:param bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
|
|
46040
|
+
:param bool readonly: Whether the repository is read-only. Default: `false`.
|
|
45800
46041
|
:param bool restore_global_state: If true, restore the cluster state. Defaults to false.
|
|
45801
46042
|
:param bool server_side_encryption: When set to true files are encrypted on server side.
|
|
45802
46043
|
"""
|
|
@@ -45815,6 +46056,8 @@ class GetOpenSearchOpensearchUserConfigS3MigrationResult(dict):
|
|
|
45815
46056
|
pulumi.set(__self__, "endpoint", endpoint)
|
|
45816
46057
|
if include_aliases is not None:
|
|
45817
46058
|
pulumi.set(__self__, "include_aliases", include_aliases)
|
|
46059
|
+
if readonly is not None:
|
|
46060
|
+
pulumi.set(__self__, "readonly", readonly)
|
|
45818
46061
|
if restore_global_state is not None:
|
|
45819
46062
|
pulumi.set(__self__, "restore_global_state", restore_global_state)
|
|
45820
46063
|
if server_side_encryption is not None:
|
|
@@ -45908,6 +46151,14 @@ class GetOpenSearchOpensearchUserConfigS3MigrationResult(dict):
|
|
|
45908
46151
|
"""
|
|
45909
46152
|
return pulumi.get(self, "include_aliases")
|
|
45910
46153
|
|
|
46154
|
+
@property
|
|
46155
|
+
@pulumi.getter
|
|
46156
|
+
def readonly(self) -> Optional[bool]:
|
|
46157
|
+
"""
|
|
46158
|
+
Whether the repository is read-only. Default: `false`.
|
|
46159
|
+
"""
|
|
46160
|
+
return pulumi.get(self, "readonly")
|
|
46161
|
+
|
|
45911
46162
|
@property
|
|
45912
46163
|
@pulumi.getter(name="restoreGlobalState")
|
|
45913
46164
|
def restore_global_state(self) -> Optional[bool]:
|
|
@@ -52933,6 +53184,7 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52933
53184
|
additional_backup_regions: Optional[str] = None,
|
|
52934
53185
|
backup_hour: Optional[int] = None,
|
|
52935
53186
|
backup_minute: Optional[int] = None,
|
|
53187
|
+
enable_ipv6: Optional[bool] = None,
|
|
52936
53188
|
frequent_snapshots: Optional[bool] = None,
|
|
52937
53189
|
ip_filter_objects: Optional[Sequence['outputs.GetValkeyValkeyUserConfigIpFilterObjectResult']] = None,
|
|
52938
53190
|
ip_filter_strings: Optional[Sequence[str]] = None,
|
|
@@ -52947,6 +53199,7 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52947
53199
|
service_to_fork_from: Optional[str] = None,
|
|
52948
53200
|
static_ips: Optional[bool] = None,
|
|
52949
53201
|
valkey_acl_channels_default: Optional[str] = None,
|
|
53202
|
+
valkey_active_expire_effort: Optional[int] = None,
|
|
52950
53203
|
valkey_io_threads: Optional[int] = None,
|
|
52951
53204
|
valkey_lfu_decay_time: Optional[int] = None,
|
|
52952
53205
|
valkey_lfu_log_factor: Optional[int] = None,
|
|
@@ -52961,6 +53214,7 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52961
53214
|
:param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
52962
53215
|
: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`.
|
|
52963
53216
|
: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`.
|
|
53217
|
+
:param bool enable_ipv6: Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
|
|
52964
53218
|
:param bool frequent_snapshots: When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkey_persistence` is set to `off`. Default: `true`.
|
|
52965
53219
|
:param Sequence['GetValkeyValkeyUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
52966
53220
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
@@ -52975,6 +53229,7 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52975
53229
|
: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`.
|
|
52976
53230
|
:param bool static_ips: Use static public IP addresses.
|
|
52977
53231
|
: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.
|
|
53232
|
+
:param int valkey_active_expire_effort: Valkey reclaims expired keys both when accessed and in the background. The background process scans for expired keys to free memory. Increasing the active-expire-effort setting (default 1, max 10) uses more CPU to reclaim expired keys faster, reducing memory usage but potentially increasing latency. Default: `1`.
|
|
52978
53233
|
:param int valkey_io_threads: Set Valkey IO thread count. Changing this will cause a restart of the Valkey service. Example: `1`.
|
|
52979
53234
|
:param int valkey_lfu_decay_time: LFU maxmemory-policy counter decay time in minutes. Default: `1`.
|
|
52980
53235
|
:param int valkey_lfu_log_factor: Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. Default: `10`.
|
|
@@ -52992,6 +53247,8 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52992
53247
|
pulumi.set(__self__, "backup_hour", backup_hour)
|
|
52993
53248
|
if backup_minute is not None:
|
|
52994
53249
|
pulumi.set(__self__, "backup_minute", backup_minute)
|
|
53250
|
+
if enable_ipv6 is not None:
|
|
53251
|
+
pulumi.set(__self__, "enable_ipv6", enable_ipv6)
|
|
52995
53252
|
if frequent_snapshots is not None:
|
|
52996
53253
|
pulumi.set(__self__, "frequent_snapshots", frequent_snapshots)
|
|
52997
53254
|
if ip_filter_objects is not None:
|
|
@@ -53020,6 +53277,8 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
53020
53277
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
53021
53278
|
if valkey_acl_channels_default is not None:
|
|
53022
53279
|
pulumi.set(__self__, "valkey_acl_channels_default", valkey_acl_channels_default)
|
|
53280
|
+
if valkey_active_expire_effort is not None:
|
|
53281
|
+
pulumi.set(__self__, "valkey_active_expire_effort", valkey_active_expire_effort)
|
|
53023
53282
|
if valkey_io_threads is not None:
|
|
53024
53283
|
pulumi.set(__self__, "valkey_io_threads", valkey_io_threads)
|
|
53025
53284
|
if valkey_lfu_decay_time is not None:
|
|
@@ -53065,6 +53324,14 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
53065
53324
|
"""
|
|
53066
53325
|
return pulumi.get(self, "backup_minute")
|
|
53067
53326
|
|
|
53327
|
+
@property
|
|
53328
|
+
@pulumi.getter(name="enableIpv6")
|
|
53329
|
+
def enable_ipv6(self) -> Optional[bool]:
|
|
53330
|
+
"""
|
|
53331
|
+
Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
|
|
53332
|
+
"""
|
|
53333
|
+
return pulumi.get(self, "enable_ipv6")
|
|
53334
|
+
|
|
53068
53335
|
@property
|
|
53069
53336
|
@pulumi.getter(name="frequentSnapshots")
|
|
53070
53337
|
def frequent_snapshots(self) -> Optional[bool]:
|
|
@@ -53178,6 +53445,14 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
53178
53445
|
"""
|
|
53179
53446
|
return pulumi.get(self, "valkey_acl_channels_default")
|
|
53180
53447
|
|
|
53448
|
+
@property
|
|
53449
|
+
@pulumi.getter(name="valkeyActiveExpireEffort")
|
|
53450
|
+
def valkey_active_expire_effort(self) -> Optional[int]:
|
|
53451
|
+
"""
|
|
53452
|
+
Valkey reclaims expired keys both when accessed and in the background. The background process scans for expired keys to free memory. Increasing the active-expire-effort setting (default 1, max 10) uses more CPU to reclaim expired keys faster, reducing memory usage but potentially increasing latency. Default: `1`.
|
|
53453
|
+
"""
|
|
53454
|
+
return pulumi.get(self, "valkey_active_expire_effort")
|
|
53455
|
+
|
|
53181
53456
|
@property
|
|
53182
53457
|
@pulumi.getter(name="valkeyIoThreads")
|
|
53183
53458
|
def valkey_io_threads(self) -> Optional[int]:
|