pulumi-aiven 6.43.1__py3-none-any.whl → 6.45.0a1762405690__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 +60 -85
- pulumi_aiven/alloydbomni.py +28 -0
- pulumi_aiven/cassandra.py +28 -0
- pulumi_aiven/clickhouse.py +28 -0
- pulumi_aiven/dragonfly.py +28 -0
- pulumi_aiven/flink.py +28 -0
- pulumi_aiven/get_alloydbomni.py +15 -1
- pulumi_aiven/get_cassanda.py +15 -1
- pulumi_aiven/get_cassandra.py +15 -1
- pulumi_aiven/get_clickhouse.py +15 -1
- pulumi_aiven/get_dragonfly.py +15 -1
- pulumi_aiven/get_flink.py +15 -1
- pulumi_aiven/get_grafana.py +15 -1
- pulumi_aiven/get_influx_db.py +12 -1
- pulumi_aiven/get_kafka.py +15 -1
- pulumi_aiven/get_kafka_connect.py +15 -1
- pulumi_aiven/get_kafka_mirror_maker.py +15 -1
- pulumi_aiven/get_m3_aggregator.py +12 -1
- pulumi_aiven/get_m3_db.py +12 -1
- pulumi_aiven/get_my_sql.py +15 -1
- pulumi_aiven/get_open_search.py +15 -1
- pulumi_aiven/get_organizational_unit.py +4 -0
- pulumi_aiven/get_pg.py +15 -1
- pulumi_aiven/get_redis.py +15 -1
- pulumi_aiven/get_thanos.py +15 -1
- pulumi_aiven/get_valkey.py +15 -1
- pulumi_aiven/grafana.py +28 -0
- pulumi_aiven/influx_db.py +28 -0
- pulumi_aiven/kafka.py +28 -0
- pulumi_aiven/kafka_connect.py +28 -0
- pulumi_aiven/kafka_mirror_maker.py +28 -0
- pulumi_aiven/kafka_schema.py +20 -20
- pulumi_aiven/m3_aggregator.py +28 -0
- pulumi_aiven/m3_db.py +28 -0
- pulumi_aiven/my_sql.py +28 -0
- pulumi_aiven/open_search.py +28 -0
- pulumi_aiven/outputs.py +78 -104
- pulumi_aiven/pg.py +28 -0
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +28 -0
- pulumi_aiven/thanos.py +28 -0
- pulumi_aiven/valkey.py +28 -0
- {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/RECORD +46 -46
- {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py
CHANGED
|
@@ -205,7 +205,6 @@ __all__ = [
|
|
|
205
205
|
'OpenSearchOpensearch',
|
|
206
206
|
'OpenSearchOpensearchUserConfig',
|
|
207
207
|
'OpenSearchOpensearchUserConfigAzureMigration',
|
|
208
|
-
'OpenSearchOpensearchUserConfigCustomKeystore',
|
|
209
208
|
'OpenSearchOpensearchUserConfigGcsMigration',
|
|
210
209
|
'OpenSearchOpensearchUserConfigIndexPattern',
|
|
211
210
|
'OpenSearchOpensearchUserConfigIndexRollup',
|
|
@@ -551,7 +550,6 @@ __all__ = [
|
|
|
551
550
|
'GetOpenSearchOpensearchResult',
|
|
552
551
|
'GetOpenSearchOpensearchUserConfigResult',
|
|
553
552
|
'GetOpenSearchOpensearchUserConfigAzureMigrationResult',
|
|
554
|
-
'GetOpenSearchOpensearchUserConfigCustomKeystoreResult',
|
|
555
553
|
'GetOpenSearchOpensearchUserConfigGcsMigrationResult',
|
|
556
554
|
'GetOpenSearchOpensearchUserConfigIndexPatternResult',
|
|
557
555
|
'GetOpenSearchOpensearchUserConfigIndexRollupResult',
|
|
@@ -1120,6 +1118,8 @@ class AlloydbomniAlloydbomniUserConfig(dict):
|
|
|
1120
1118
|
suggest = "ip_filter_strings"
|
|
1121
1119
|
elif key == "ipFilters":
|
|
1122
1120
|
suggest = "ip_filters"
|
|
1121
|
+
elif key == "nodeCount":
|
|
1122
|
+
suggest = "node_count"
|
|
1123
1123
|
elif key == "pgReadReplica":
|
|
1124
1124
|
suggest = "pg_read_replica"
|
|
1125
1125
|
elif key == "pgServiceToForkFrom":
|
|
@@ -1173,6 +1173,7 @@ class AlloydbomniAlloydbomniUserConfig(dict):
|
|
|
1173
1173
|
ip_filter_objects: Optional[Sequence['outputs.AlloydbomniAlloydbomniUserConfigIpFilterObject']] = None,
|
|
1174
1174
|
ip_filter_strings: Optional[Sequence[_builtins.str]] = None,
|
|
1175
1175
|
ip_filters: Optional[Sequence[_builtins.str]] = None,
|
|
1176
|
+
node_count: Optional[_builtins.int] = None,
|
|
1176
1177
|
pg: Optional['outputs.AlloydbomniAlloydbomniUserConfigPg'] = None,
|
|
1177
1178
|
pg_read_replica: Optional[_builtins.bool] = None,
|
|
1178
1179
|
pg_service_to_fork_from: Optional[_builtins.str] = None,
|
|
@@ -1205,6 +1206,7 @@ class AlloydbomniAlloydbomniUserConfig(dict):
|
|
|
1205
1206
|
:param Sequence['AlloydbomniAlloydbomniUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
1206
1207
|
:param Sequence[_builtins.str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
1207
1208
|
:param Sequence[_builtins.str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
1209
|
+
:param _builtins.int node_count: Number of nodes for the service. Example: `3`.
|
|
1208
1210
|
:param 'AlloydbomniAlloydbomniUserConfigPgArgs' pg: postgresql.conf configuration values
|
|
1209
1211
|
:param _builtins.bool pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
1210
1212
|
:param _builtins.str pg_service_to_fork_from: Name of the PG Service from which to fork (deprecated, use service*to*fork_from). This has effect only when a new service is being created. Example: `anotherservicename`.
|
|
@@ -1249,6 +1251,8 @@ class AlloydbomniAlloydbomniUserConfig(dict):
|
|
|
1249
1251
|
pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
|
|
1250
1252
|
if ip_filters is not None:
|
|
1251
1253
|
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
1254
|
+
if node_count is not None:
|
|
1255
|
+
pulumi.set(__self__, "node_count", node_count)
|
|
1252
1256
|
if pg is not None:
|
|
1253
1257
|
pulumi.set(__self__, "pg", pg)
|
|
1254
1258
|
if pg_read_replica is not None:
|
|
@@ -1385,6 +1389,14 @@ class AlloydbomniAlloydbomniUserConfig(dict):
|
|
|
1385
1389
|
"""
|
|
1386
1390
|
return pulumi.get(self, "ip_filters")
|
|
1387
1391
|
|
|
1392
|
+
@_builtins.property
|
|
1393
|
+
@pulumi.getter(name="nodeCount")
|
|
1394
|
+
def node_count(self) -> Optional[_builtins.int]:
|
|
1395
|
+
"""
|
|
1396
|
+
Number of nodes for the service. Example: `3`.
|
|
1397
|
+
"""
|
|
1398
|
+
return pulumi.get(self, "node_count")
|
|
1399
|
+
|
|
1388
1400
|
@_builtins.property
|
|
1389
1401
|
@pulumi.getter
|
|
1390
1402
|
def pg(self) -> Optional['outputs.AlloydbomniAlloydbomniUserConfigPg']:
|
|
@@ -13937,6 +13949,8 @@ class KafkaTopicConfig(dict):
|
|
|
13937
13949
|
suggest = "compression_type"
|
|
13938
13950
|
elif key == "deleteRetentionMs":
|
|
13939
13951
|
suggest = "delete_retention_ms"
|
|
13952
|
+
elif key == "disklessEnable":
|
|
13953
|
+
suggest = "diskless_enable"
|
|
13940
13954
|
elif key == "fileDeleteDelayMs":
|
|
13941
13955
|
suggest = "file_delete_delay_ms"
|
|
13942
13956
|
elif key == "flushMessages":
|
|
@@ -13945,8 +13959,6 @@ class KafkaTopicConfig(dict):
|
|
|
13945
13959
|
suggest = "flush_ms"
|
|
13946
13960
|
elif key == "indexIntervalBytes":
|
|
13947
13961
|
suggest = "index_interval_bytes"
|
|
13948
|
-
elif key == "inklessEnable":
|
|
13949
|
-
suggest = "inkless_enable"
|
|
13950
13962
|
elif key == "localRetentionBytes":
|
|
13951
13963
|
suggest = "local_retention_bytes"
|
|
13952
13964
|
elif key == "localRetentionMs":
|
|
@@ -14001,11 +14013,11 @@ class KafkaTopicConfig(dict):
|
|
|
14001
14013
|
cleanup_policy: Optional[_builtins.str] = None,
|
|
14002
14014
|
compression_type: Optional[_builtins.str] = None,
|
|
14003
14015
|
delete_retention_ms: Optional[_builtins.str] = None,
|
|
14016
|
+
diskless_enable: Optional[_builtins.bool] = None,
|
|
14004
14017
|
file_delete_delay_ms: Optional[_builtins.str] = None,
|
|
14005
14018
|
flush_messages: Optional[_builtins.str] = None,
|
|
14006
14019
|
flush_ms: Optional[_builtins.str] = None,
|
|
14007
14020
|
index_interval_bytes: Optional[_builtins.str] = None,
|
|
14008
|
-
inkless_enable: Optional[_builtins.bool] = None,
|
|
14009
14021
|
local_retention_bytes: Optional[_builtins.str] = None,
|
|
14010
14022
|
local_retention_ms: Optional[_builtins.str] = None,
|
|
14011
14023
|
max_compaction_lag_ms: Optional[_builtins.str] = None,
|
|
@@ -14030,11 +14042,11 @@ class KafkaTopicConfig(dict):
|
|
|
14030
14042
|
:param _builtins.str cleanup_policy: The retention policy to use on old segments. Possible values include 'delete', 'compact', or a comma-separated list of them. The default policy ('delete') will discard old segments when their retention time or size limit has been reached. The 'compact' setting will enable log compaction on the topic. The possible values are `compact`, `compact,delete` and `delete`.
|
|
14031
14043
|
:param _builtins.str compression_type: Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
14032
14044
|
:param _builtins.str delete_retention_ms: The amount of time to retain delete tombstone markers for log compacted topics. This setting also gives a bound on the time in which a consumer must complete a read if they begin from offset 0 to ensure that they get a valid snapshot of the final stage (otherwise delete tombstones may be collected before they complete their scan).
|
|
14045
|
+
:param _builtins.bool diskless_enable: Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
|
|
14033
14046
|
:param _builtins.str file_delete_delay_ms: The time to wait before deleting a file from the filesystem.
|
|
14034
14047
|
:param _builtins.str flush_messages: This setting allows specifying an interval at which we will force an fsync of data written to the log. For example if this was set to 1 we would fsync after every message; if it were 5 we would fsync after every five messages. In general we recommend you not set this and use replication for durability and allow the operating system's background flush capabilities as it is more efficient.
|
|
14035
14048
|
:param _builtins.str flush_ms: This setting allows specifying a time interval at which we will force an fsync of data written to the log. For example if this was set to 1000 we would fsync after 1000 ms had passed. In general we recommend you not set this and use replication for durability and allow the operating system's background flush capabilities as it is more efficient.
|
|
14036
14049
|
:param _builtins.str index_interval_bytes: This setting controls how frequently Kafka adds an index entry to its offset index. The default setting ensures that we index a message roughly every 4096 bytes. More indexing allows reads to jump closer to the exact position in the log but makes the index larger. You probably don't need to change this.
|
|
14037
|
-
:param _builtins.bool inkless_enable: Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
|
|
14038
14050
|
:param _builtins.str local_retention_bytes: This configuration controls the maximum bytes tiered storage will retain segment files locally before it will discard old log segments to free up space. If set to -2, the limit is equal to overall retention time. If set to -1, no limit is applied but it's possible only if overall retention is also -1.
|
|
14039
14051
|
:param _builtins.str local_retention_ms: This configuration controls the maximum time tiered storage will retain segment files locally before it will discard old log segments to free up space. If set to -2, the time limit is equal to overall retention time. If set to -1, no time limit is applied but it's possible only if overall retention is also -1.
|
|
14040
14052
|
:param _builtins.str max_compaction_lag_ms: The maximum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
|
|
@@ -14062,6 +14074,8 @@ class KafkaTopicConfig(dict):
|
|
|
14062
14074
|
pulumi.set(__self__, "compression_type", compression_type)
|
|
14063
14075
|
if delete_retention_ms is not None:
|
|
14064
14076
|
pulumi.set(__self__, "delete_retention_ms", delete_retention_ms)
|
|
14077
|
+
if diskless_enable is not None:
|
|
14078
|
+
pulumi.set(__self__, "diskless_enable", diskless_enable)
|
|
14065
14079
|
if file_delete_delay_ms is not None:
|
|
14066
14080
|
pulumi.set(__self__, "file_delete_delay_ms", file_delete_delay_ms)
|
|
14067
14081
|
if flush_messages is not None:
|
|
@@ -14070,8 +14084,6 @@ class KafkaTopicConfig(dict):
|
|
|
14070
14084
|
pulumi.set(__self__, "flush_ms", flush_ms)
|
|
14071
14085
|
if index_interval_bytes is not None:
|
|
14072
14086
|
pulumi.set(__self__, "index_interval_bytes", index_interval_bytes)
|
|
14073
|
-
if inkless_enable is not None:
|
|
14074
|
-
pulumi.set(__self__, "inkless_enable", inkless_enable)
|
|
14075
14087
|
if local_retention_bytes is not None:
|
|
14076
14088
|
pulumi.set(__self__, "local_retention_bytes", local_retention_bytes)
|
|
14077
14089
|
if local_retention_ms is not None:
|
|
@@ -14137,6 +14149,14 @@ class KafkaTopicConfig(dict):
|
|
|
14137
14149
|
"""
|
|
14138
14150
|
return pulumi.get(self, "delete_retention_ms")
|
|
14139
14151
|
|
|
14152
|
+
@_builtins.property
|
|
14153
|
+
@pulumi.getter(name="disklessEnable")
|
|
14154
|
+
def diskless_enable(self) -> Optional[_builtins.bool]:
|
|
14155
|
+
"""
|
|
14156
|
+
Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
|
|
14157
|
+
"""
|
|
14158
|
+
return pulumi.get(self, "diskless_enable")
|
|
14159
|
+
|
|
14140
14160
|
@_builtins.property
|
|
14141
14161
|
@pulumi.getter(name="fileDeleteDelayMs")
|
|
14142
14162
|
def file_delete_delay_ms(self) -> Optional[_builtins.str]:
|
|
@@ -14169,14 +14189,6 @@ class KafkaTopicConfig(dict):
|
|
|
14169
14189
|
"""
|
|
14170
14190
|
return pulumi.get(self, "index_interval_bytes")
|
|
14171
14191
|
|
|
14172
|
-
@_builtins.property
|
|
14173
|
-
@pulumi.getter(name="inklessEnable")
|
|
14174
|
-
def inkless_enable(self) -> Optional[_builtins.bool]:
|
|
14175
|
-
"""
|
|
14176
|
-
Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
|
|
14177
|
-
"""
|
|
14178
|
-
return pulumi.get(self, "inkless_enable")
|
|
14179
|
-
|
|
14180
14192
|
@_builtins.property
|
|
14181
14193
|
@pulumi.getter(name="localRetentionBytes")
|
|
14182
14194
|
def local_retention_bytes(self) -> Optional[_builtins.str]:
|
|
@@ -17838,8 +17850,6 @@ class OpenSearchOpensearchUserConfig(dict):
|
|
|
17838
17850
|
suggest = "azure_migration"
|
|
17839
17851
|
elif key == "customDomain":
|
|
17840
17852
|
suggest = "custom_domain"
|
|
17841
|
-
elif key == "customKeystores":
|
|
17842
|
-
suggest = "custom_keystores"
|
|
17843
17853
|
elif key == "disableReplicationFactorAdjustment":
|
|
17844
17854
|
suggest = "disable_replication_factor_adjustment"
|
|
17845
17855
|
elif key == "gcsMigration":
|
|
@@ -17898,7 +17908,6 @@ class OpenSearchOpensearchUserConfig(dict):
|
|
|
17898
17908
|
additional_backup_regions: Optional[_builtins.str] = None,
|
|
17899
17909
|
azure_migration: Optional['outputs.OpenSearchOpensearchUserConfigAzureMigration'] = None,
|
|
17900
17910
|
custom_domain: Optional[_builtins.str] = None,
|
|
17901
|
-
custom_keystores: Optional[Sequence['outputs.OpenSearchOpensearchUserConfigCustomKeystore']] = None,
|
|
17902
17911
|
disable_replication_factor_adjustment: Optional[_builtins.bool] = None,
|
|
17903
17912
|
gcs_migration: Optional['outputs.OpenSearchOpensearchUserConfigGcsMigration'] = None,
|
|
17904
17913
|
index_patterns: Optional[Sequence['outputs.OpenSearchOpensearchUserConfigIndexPattern']] = None,
|
|
@@ -17927,7 +17936,6 @@ class OpenSearchOpensearchUserConfig(dict):
|
|
|
17927
17936
|
:param _builtins.str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
17928
17937
|
:param 'OpenSearchOpensearchUserConfigAzureMigrationArgs' azure_migration: Azure migration settings
|
|
17929
17938
|
:param _builtins.str custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
|
|
17930
|
-
:param Sequence['OpenSearchOpensearchUserConfigCustomKeystoreArgs'] custom_keystores: Allow to register custom keystores in OpenSearch
|
|
17931
17939
|
:param _builtins.bool disable_replication_factor_adjustment: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can not be activated unless specifically allowed for the project.
|
|
17932
17940
|
:param 'OpenSearchOpensearchUserConfigGcsMigrationArgs' gcs_migration: Google Cloud Storage migration settings
|
|
17933
17941
|
:param Sequence['OpenSearchOpensearchUserConfigIndexPatternArgs'] index_patterns: Index patterns
|
|
@@ -17959,8 +17967,6 @@ class OpenSearchOpensearchUserConfig(dict):
|
|
|
17959
17967
|
pulumi.set(__self__, "azure_migration", azure_migration)
|
|
17960
17968
|
if custom_domain is not None:
|
|
17961
17969
|
pulumi.set(__self__, "custom_domain", custom_domain)
|
|
17962
|
-
if custom_keystores is not None:
|
|
17963
|
-
pulumi.set(__self__, "custom_keystores", custom_keystores)
|
|
17964
17970
|
if disable_replication_factor_adjustment is not None:
|
|
17965
17971
|
pulumi.set(__self__, "disable_replication_factor_adjustment", disable_replication_factor_adjustment)
|
|
17966
17972
|
if gcs_migration is not None:
|
|
@@ -18034,14 +18040,6 @@ class OpenSearchOpensearchUserConfig(dict):
|
|
|
18034
18040
|
"""
|
|
18035
18041
|
return pulumi.get(self, "custom_domain")
|
|
18036
18042
|
|
|
18037
|
-
@_builtins.property
|
|
18038
|
-
@pulumi.getter(name="customKeystores")
|
|
18039
|
-
def custom_keystores(self) -> Optional[Sequence['outputs.OpenSearchOpensearchUserConfigCustomKeystore']]:
|
|
18040
|
-
"""
|
|
18041
|
-
Allow to register custom keystores in OpenSearch
|
|
18042
|
-
"""
|
|
18043
|
-
return pulumi.get(self, "custom_keystores")
|
|
18044
|
-
|
|
18045
18043
|
@_builtins.property
|
|
18046
18044
|
@pulumi.getter(name="disableReplicationFactorAdjustment")
|
|
18047
18045
|
def disable_replication_factor_adjustment(self) -> Optional[_builtins.bool]:
|
|
@@ -18423,31 +18421,6 @@ class OpenSearchOpensearchUserConfigAzureMigration(dict):
|
|
|
18423
18421
|
return pulumi.get(self, "sas_token")
|
|
18424
18422
|
|
|
18425
18423
|
|
|
18426
|
-
@pulumi.output_type
|
|
18427
|
-
class OpenSearchOpensearchUserConfigCustomKeystore(dict):
|
|
18428
|
-
def __init__(__self__, *,
|
|
18429
|
-
name: _builtins.str,
|
|
18430
|
-
type: _builtins.str):
|
|
18431
|
-
"""
|
|
18432
|
-
:param _builtins.str type: Enum: `azure`, `gcs`, `s3`.
|
|
18433
|
-
"""
|
|
18434
|
-
pulumi.set(__self__, "name", name)
|
|
18435
|
-
pulumi.set(__self__, "type", type)
|
|
18436
|
-
|
|
18437
|
-
@_builtins.property
|
|
18438
|
-
@pulumi.getter
|
|
18439
|
-
def name(self) -> _builtins.str:
|
|
18440
|
-
return pulumi.get(self, "name")
|
|
18441
|
-
|
|
18442
|
-
@_builtins.property
|
|
18443
|
-
@pulumi.getter
|
|
18444
|
-
def type(self) -> _builtins.str:
|
|
18445
|
-
"""
|
|
18446
|
-
Enum: `azure`, `gcs`, `s3`.
|
|
18447
|
-
"""
|
|
18448
|
-
return pulumi.get(self, "type")
|
|
18449
|
-
|
|
18450
|
-
|
|
18451
18424
|
@pulumi.output_type
|
|
18452
18425
|
class OpenSearchOpensearchUserConfigGcsMigration(dict):
|
|
18453
18426
|
@staticmethod
|
|
@@ -23089,6 +23062,8 @@ class PgPgUserConfig(dict):
|
|
|
23089
23062
|
suggest = "ip_filter_strings"
|
|
23090
23063
|
elif key == "ipFilters":
|
|
23091
23064
|
suggest = "ip_filters"
|
|
23065
|
+
elif key == "nodeCount":
|
|
23066
|
+
suggest = "node_count"
|
|
23092
23067
|
elif key == "pgQualstats":
|
|
23093
23068
|
suggest = "pg_qualstats"
|
|
23094
23069
|
elif key == "pgReadReplica":
|
|
@@ -23144,6 +23119,7 @@ class PgPgUserConfig(dict):
|
|
|
23144
23119
|
ip_filter_strings: Optional[Sequence[_builtins.str]] = None,
|
|
23145
23120
|
ip_filters: Optional[Sequence[_builtins.str]] = None,
|
|
23146
23121
|
migration: Optional['outputs.PgPgUserConfigMigration'] = None,
|
|
23122
|
+
node_count: Optional[_builtins.int] = None,
|
|
23147
23123
|
pg: Optional['outputs.PgPgUserConfigPg'] = None,
|
|
23148
23124
|
pg_qualstats: Optional['outputs.PgPgUserConfigPgQualstats'] = None,
|
|
23149
23125
|
pg_read_replica: Optional[_builtins.bool] = None,
|
|
@@ -23177,6 +23153,7 @@ class PgPgUserConfig(dict):
|
|
|
23177
23153
|
:param Sequence[_builtins.str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
23178
23154
|
:param Sequence[_builtins.str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
23179
23155
|
:param 'PgPgUserConfigMigrationArgs' migration: Migrate data from existing server
|
|
23156
|
+
:param _builtins.int node_count: Number of nodes for the service. Example: `3`.
|
|
23180
23157
|
:param 'PgPgUserConfigPgArgs' pg: postgresql.conf configuration values
|
|
23181
23158
|
:param 'PgPgUserConfigPgQualstatsArgs' pg_qualstats: System-wide settings for the pg*qualstats extension
|
|
23182
23159
|
:param _builtins.bool pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
@@ -23220,6 +23197,8 @@ class PgPgUserConfig(dict):
|
|
|
23220
23197
|
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
23221
23198
|
if migration is not None:
|
|
23222
23199
|
pulumi.set(__self__, "migration", migration)
|
|
23200
|
+
if node_count is not None:
|
|
23201
|
+
pulumi.set(__self__, "node_count", node_count)
|
|
23223
23202
|
if pg is not None:
|
|
23224
23203
|
pulumi.set(__self__, "pg", pg)
|
|
23225
23204
|
if pg_qualstats is not None:
|
|
@@ -23346,6 +23325,14 @@ class PgPgUserConfig(dict):
|
|
|
23346
23325
|
"""
|
|
23347
23326
|
return pulumi.get(self, "migration")
|
|
23348
23327
|
|
|
23328
|
+
@_builtins.property
|
|
23329
|
+
@pulumi.getter(name="nodeCount")
|
|
23330
|
+
def node_count(self) -> Optional[_builtins.int]:
|
|
23331
|
+
"""
|
|
23332
|
+
Number of nodes for the service. Example: `3`.
|
|
23333
|
+
"""
|
|
23334
|
+
return pulumi.get(self, "node_count")
|
|
23335
|
+
|
|
23349
23336
|
@_builtins.property
|
|
23350
23337
|
@pulumi.getter
|
|
23351
23338
|
def pg(self) -> Optional['outputs.PgPgUserConfigPg']:
|
|
@@ -32168,6 +32155,7 @@ class GetAlloydbomniAlloydbomniUserConfigResult(dict):
|
|
|
32168
32155
|
ip_filter_objects: Optional[Sequence['outputs.GetAlloydbomniAlloydbomniUserConfigIpFilterObjectResult']] = None,
|
|
32169
32156
|
ip_filter_strings: Optional[Sequence[_builtins.str]] = None,
|
|
32170
32157
|
ip_filters: Optional[Sequence[_builtins.str]] = None,
|
|
32158
|
+
node_count: Optional[_builtins.int] = None,
|
|
32171
32159
|
pg: Optional['outputs.GetAlloydbomniAlloydbomniUserConfigPgResult'] = None,
|
|
32172
32160
|
pg_read_replica: Optional[_builtins.bool] = None,
|
|
32173
32161
|
pg_service_to_fork_from: Optional[_builtins.str] = None,
|
|
@@ -32200,6 +32188,7 @@ class GetAlloydbomniAlloydbomniUserConfigResult(dict):
|
|
|
32200
32188
|
:param Sequence['GetAlloydbomniAlloydbomniUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
32201
32189
|
:param Sequence[_builtins.str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
32202
32190
|
:param Sequence[_builtins.str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
32191
|
+
:param _builtins.int node_count: Number of nodes for the service. Example: `3`.
|
|
32203
32192
|
:param 'GetAlloydbomniAlloydbomniUserConfigPgArgs' pg: postgresql.conf configuration values
|
|
32204
32193
|
:param _builtins.bool pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
32205
32194
|
:param _builtins.str pg_service_to_fork_from: Name of the PG Service from which to fork (deprecated, use service_to_fork_from). This has effect only when a new service is being created. Example: `anotherservicename`.
|
|
@@ -32244,6 +32233,8 @@ class GetAlloydbomniAlloydbomniUserConfigResult(dict):
|
|
|
32244
32233
|
pulumi.set(__self__, "ip_filter_strings", ip_filter_strings)
|
|
32245
32234
|
if ip_filters is not None:
|
|
32246
32235
|
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
32236
|
+
if node_count is not None:
|
|
32237
|
+
pulumi.set(__self__, "node_count", node_count)
|
|
32247
32238
|
if pg is not None:
|
|
32248
32239
|
pulumi.set(__self__, "pg", pg)
|
|
32249
32240
|
if pg_read_replica is not None:
|
|
@@ -32380,6 +32371,14 @@ class GetAlloydbomniAlloydbomniUserConfigResult(dict):
|
|
|
32380
32371
|
"""
|
|
32381
32372
|
return pulumi.get(self, "ip_filters")
|
|
32382
32373
|
|
|
32374
|
+
@_builtins.property
|
|
32375
|
+
@pulumi.getter(name="nodeCount")
|
|
32376
|
+
def node_count(self) -> Optional[_builtins.int]:
|
|
32377
|
+
"""
|
|
32378
|
+
Number of nodes for the service. Example: `3`.
|
|
32379
|
+
"""
|
|
32380
|
+
return pulumi.get(self, "node_count")
|
|
32381
|
+
|
|
32383
32382
|
@_builtins.property
|
|
32384
32383
|
@pulumi.getter
|
|
32385
32384
|
def pg(self) -> Optional['outputs.GetAlloydbomniAlloydbomniUserConfigPgResult']:
|
|
@@ -42360,11 +42359,11 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
42360
42359
|
cleanup_policy: Optional[_builtins.str] = None,
|
|
42361
42360
|
compression_type: Optional[_builtins.str] = None,
|
|
42362
42361
|
delete_retention_ms: Optional[_builtins.str] = None,
|
|
42362
|
+
diskless_enable: Optional[_builtins.bool] = None,
|
|
42363
42363
|
file_delete_delay_ms: Optional[_builtins.str] = None,
|
|
42364
42364
|
flush_messages: Optional[_builtins.str] = None,
|
|
42365
42365
|
flush_ms: Optional[_builtins.str] = None,
|
|
42366
42366
|
index_interval_bytes: Optional[_builtins.str] = None,
|
|
42367
|
-
inkless_enable: Optional[_builtins.bool] = None,
|
|
42368
42367
|
local_retention_bytes: Optional[_builtins.str] = None,
|
|
42369
42368
|
local_retention_ms: Optional[_builtins.str] = None,
|
|
42370
42369
|
max_compaction_lag_ms: Optional[_builtins.str] = None,
|
|
@@ -42389,11 +42388,11 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
42389
42388
|
:param _builtins.str cleanup_policy: The retention policy to use on old segments. Possible values include 'delete', 'compact', or a comma-separated list of them. The default policy ('delete') will discard old segments when their retention time or size limit has been reached. The 'compact' setting will enable log compaction on the topic. The possible values are `compact`, `compact,delete` and `delete`.
|
|
42390
42389
|
:param _builtins.str compression_type: Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
42391
42390
|
:param _builtins.str delete_retention_ms: The amount of time to retain delete tombstone markers for log compacted topics. This setting also gives a bound on the time in which a consumer must complete a read if they begin from offset 0 to ensure that they get a valid snapshot of the final stage (otherwise delete tombstones may be collected before they complete their scan).
|
|
42391
|
+
:param _builtins.bool diskless_enable: Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
|
|
42392
42392
|
:param _builtins.str file_delete_delay_ms: The time to wait before deleting a file from the filesystem.
|
|
42393
42393
|
:param _builtins.str flush_messages: This setting allows specifying an interval at which we will force an fsync of data written to the log. For example if this was set to 1 we would fsync after every message; if it were 5 we would fsync after every five messages. In general we recommend you not set this and use replication for durability and allow the operating system's background flush capabilities as it is more efficient.
|
|
42394
42394
|
:param _builtins.str flush_ms: This setting allows specifying a time interval at which we will force an fsync of data written to the log. For example if this was set to 1000 we would fsync after 1000 ms had passed. In general we recommend you not set this and use replication for durability and allow the operating system's background flush capabilities as it is more efficient.
|
|
42395
42395
|
:param _builtins.str index_interval_bytes: This setting controls how frequently Kafka adds an index entry to its offset index. The default setting ensures that we index a message roughly every 4096 bytes. More indexing allows reads to jump closer to the exact position in the log but makes the index larger. You probably don't need to change this.
|
|
42396
|
-
:param _builtins.bool inkless_enable: Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
|
|
42397
42396
|
:param _builtins.str local_retention_bytes: This configuration controls the maximum bytes tiered storage will retain segment files locally before it will discard old log segments to free up space. If set to -2, the limit is equal to overall retention time. If set to -1, no limit is applied but it's possible only if overall retention is also -1.
|
|
42398
42397
|
:param _builtins.str local_retention_ms: This configuration controls the maximum time tiered storage will retain segment files locally before it will discard old log segments to free up space. If set to -2, the time limit is equal to overall retention time. If set to -1, no time limit is applied but it's possible only if overall retention is also -1.
|
|
42399
42398
|
:param _builtins.str max_compaction_lag_ms: The maximum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
|
|
@@ -42421,6 +42420,8 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
42421
42420
|
pulumi.set(__self__, "compression_type", compression_type)
|
|
42422
42421
|
if delete_retention_ms is not None:
|
|
42423
42422
|
pulumi.set(__self__, "delete_retention_ms", delete_retention_ms)
|
|
42423
|
+
if diskless_enable is not None:
|
|
42424
|
+
pulumi.set(__self__, "diskless_enable", diskless_enable)
|
|
42424
42425
|
if file_delete_delay_ms is not None:
|
|
42425
42426
|
pulumi.set(__self__, "file_delete_delay_ms", file_delete_delay_ms)
|
|
42426
42427
|
if flush_messages is not None:
|
|
@@ -42429,8 +42430,6 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
42429
42430
|
pulumi.set(__self__, "flush_ms", flush_ms)
|
|
42430
42431
|
if index_interval_bytes is not None:
|
|
42431
42432
|
pulumi.set(__self__, "index_interval_bytes", index_interval_bytes)
|
|
42432
|
-
if inkless_enable is not None:
|
|
42433
|
-
pulumi.set(__self__, "inkless_enable", inkless_enable)
|
|
42434
42433
|
if local_retention_bytes is not None:
|
|
42435
42434
|
pulumi.set(__self__, "local_retention_bytes", local_retention_bytes)
|
|
42436
42435
|
if local_retention_ms is not None:
|
|
@@ -42496,6 +42495,14 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
42496
42495
|
"""
|
|
42497
42496
|
return pulumi.get(self, "delete_retention_ms")
|
|
42498
42497
|
|
|
42498
|
+
@_builtins.property
|
|
42499
|
+
@pulumi.getter(name="disklessEnable")
|
|
42500
|
+
def diskless_enable(self) -> Optional[_builtins.bool]:
|
|
42501
|
+
"""
|
|
42502
|
+
Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
|
|
42503
|
+
"""
|
|
42504
|
+
return pulumi.get(self, "diskless_enable")
|
|
42505
|
+
|
|
42499
42506
|
@_builtins.property
|
|
42500
42507
|
@pulumi.getter(name="fileDeleteDelayMs")
|
|
42501
42508
|
def file_delete_delay_ms(self) -> Optional[_builtins.str]:
|
|
@@ -42528,14 +42535,6 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
42528
42535
|
"""
|
|
42529
42536
|
return pulumi.get(self, "index_interval_bytes")
|
|
42530
42537
|
|
|
42531
|
-
@_builtins.property
|
|
42532
|
-
@pulumi.getter(name="inklessEnable")
|
|
42533
|
-
def inkless_enable(self) -> Optional[_builtins.bool]:
|
|
42534
|
-
"""
|
|
42535
|
-
Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
|
|
42536
|
-
"""
|
|
42537
|
-
return pulumi.get(self, "inkless_enable")
|
|
42538
|
-
|
|
42539
42538
|
@_builtins.property
|
|
42540
42539
|
@pulumi.getter(name="localRetentionBytes")
|
|
42541
42540
|
def local_retention_bytes(self) -> Optional[_builtins.str]:
|
|
@@ -45524,7 +45523,6 @@ class GetOpenSearchOpensearchUserConfigResult(dict):
|
|
|
45524
45523
|
additional_backup_regions: Optional[_builtins.str] = None,
|
|
45525
45524
|
azure_migration: Optional['outputs.GetOpenSearchOpensearchUserConfigAzureMigrationResult'] = None,
|
|
45526
45525
|
custom_domain: Optional[_builtins.str] = None,
|
|
45527
|
-
custom_keystores: Optional[Sequence['outputs.GetOpenSearchOpensearchUserConfigCustomKeystoreResult']] = None,
|
|
45528
45526
|
disable_replication_factor_adjustment: Optional[_builtins.bool] = None,
|
|
45529
45527
|
gcs_migration: Optional['outputs.GetOpenSearchOpensearchUserConfigGcsMigrationResult'] = None,
|
|
45530
45528
|
index_patterns: Optional[Sequence['outputs.GetOpenSearchOpensearchUserConfigIndexPatternResult']] = None,
|
|
@@ -45553,7 +45551,6 @@ class GetOpenSearchOpensearchUserConfigResult(dict):
|
|
|
45553
45551
|
:param _builtins.str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
45554
45552
|
:param 'GetOpenSearchOpensearchUserConfigAzureMigrationArgs' azure_migration: Azure migration settings
|
|
45555
45553
|
:param _builtins.str custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
|
|
45556
|
-
:param Sequence['GetOpenSearchOpensearchUserConfigCustomKeystoreArgs'] custom_keystores: Allow to register custom keystores in OpenSearch
|
|
45557
45554
|
:param _builtins.bool disable_replication_factor_adjustment: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can not be activated unless specifically allowed for the project.
|
|
45558
45555
|
:param 'GetOpenSearchOpensearchUserConfigGcsMigrationArgs' gcs_migration: Google Cloud Storage migration settings
|
|
45559
45556
|
:param Sequence['GetOpenSearchOpensearchUserConfigIndexPatternArgs'] index_patterns: Index patterns
|
|
@@ -45585,8 +45582,6 @@ class GetOpenSearchOpensearchUserConfigResult(dict):
|
|
|
45585
45582
|
pulumi.set(__self__, "azure_migration", azure_migration)
|
|
45586
45583
|
if custom_domain is not None:
|
|
45587
45584
|
pulumi.set(__self__, "custom_domain", custom_domain)
|
|
45588
|
-
if custom_keystores is not None:
|
|
45589
|
-
pulumi.set(__self__, "custom_keystores", custom_keystores)
|
|
45590
45585
|
if disable_replication_factor_adjustment is not None:
|
|
45591
45586
|
pulumi.set(__self__, "disable_replication_factor_adjustment", disable_replication_factor_adjustment)
|
|
45592
45587
|
if gcs_migration is not None:
|
|
@@ -45660,14 +45655,6 @@ class GetOpenSearchOpensearchUserConfigResult(dict):
|
|
|
45660
45655
|
"""
|
|
45661
45656
|
return pulumi.get(self, "custom_domain")
|
|
45662
45657
|
|
|
45663
|
-
@_builtins.property
|
|
45664
|
-
@pulumi.getter(name="customKeystores")
|
|
45665
|
-
def custom_keystores(self) -> Optional[Sequence['outputs.GetOpenSearchOpensearchUserConfigCustomKeystoreResult']]:
|
|
45666
|
-
"""
|
|
45667
|
-
Allow to register custom keystores in OpenSearch
|
|
45668
|
-
"""
|
|
45669
|
-
return pulumi.get(self, "custom_keystores")
|
|
45670
|
-
|
|
45671
45658
|
@_builtins.property
|
|
45672
45659
|
@pulumi.getter(name="disableReplicationFactorAdjustment")
|
|
45673
45660
|
def disable_replication_factor_adjustment(self) -> Optional[_builtins.bool]:
|
|
@@ -46020,31 +46007,6 @@ class GetOpenSearchOpensearchUserConfigAzureMigrationResult(dict):
|
|
|
46020
46007
|
return pulumi.get(self, "sas_token")
|
|
46021
46008
|
|
|
46022
46009
|
|
|
46023
|
-
@pulumi.output_type
|
|
46024
|
-
class GetOpenSearchOpensearchUserConfigCustomKeystoreResult(dict):
|
|
46025
|
-
def __init__(__self__, *,
|
|
46026
|
-
name: _builtins.str,
|
|
46027
|
-
type: _builtins.str):
|
|
46028
|
-
"""
|
|
46029
|
-
:param _builtins.str type: Enum: `azure`, `gcs`, `s3`.
|
|
46030
|
-
"""
|
|
46031
|
-
pulumi.set(__self__, "name", name)
|
|
46032
|
-
pulumi.set(__self__, "type", type)
|
|
46033
|
-
|
|
46034
|
-
@_builtins.property
|
|
46035
|
-
@pulumi.getter
|
|
46036
|
-
def name(self) -> _builtins.str:
|
|
46037
|
-
return pulumi.get(self, "name")
|
|
46038
|
-
|
|
46039
|
-
@_builtins.property
|
|
46040
|
-
@pulumi.getter
|
|
46041
|
-
def type(self) -> _builtins.str:
|
|
46042
|
-
"""
|
|
46043
|
-
Enum: `azure`, `gcs`, `s3`.
|
|
46044
|
-
"""
|
|
46045
|
-
return pulumi.get(self, "type")
|
|
46046
|
-
|
|
46047
|
-
|
|
46048
46010
|
@pulumi.output_type
|
|
46049
46011
|
class GetOpenSearchOpensearchUserConfigGcsMigrationResult(dict):
|
|
46050
46012
|
def __init__(__self__, *,
|
|
@@ -49656,6 +49618,7 @@ class GetPgPgUserConfigResult(dict):
|
|
|
49656
49618
|
ip_filter_strings: Optional[Sequence[_builtins.str]] = None,
|
|
49657
49619
|
ip_filters: Optional[Sequence[_builtins.str]] = None,
|
|
49658
49620
|
migration: Optional['outputs.GetPgPgUserConfigMigrationResult'] = None,
|
|
49621
|
+
node_count: Optional[_builtins.int] = None,
|
|
49659
49622
|
pg: Optional['outputs.GetPgPgUserConfigPgResult'] = None,
|
|
49660
49623
|
pg_qualstats: Optional['outputs.GetPgPgUserConfigPgQualstatsResult'] = None,
|
|
49661
49624
|
pg_read_replica: Optional[_builtins.bool] = None,
|
|
@@ -49689,6 +49652,7 @@ class GetPgPgUserConfigResult(dict):
|
|
|
49689
49652
|
:param Sequence[_builtins.str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
49690
49653
|
:param Sequence[_builtins.str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
49691
49654
|
:param 'GetPgPgUserConfigMigrationArgs' migration: Migrate data from existing server
|
|
49655
|
+
:param _builtins.int node_count: Number of nodes for the service. Example: `3`.
|
|
49692
49656
|
:param 'GetPgPgUserConfigPgArgs' pg: postgresql.conf configuration values
|
|
49693
49657
|
:param 'GetPgPgUserConfigPgQualstatsArgs' pg_qualstats: System-wide settings for the pg_qualstats extension
|
|
49694
49658
|
:param _builtins.bool pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
@@ -49732,6 +49696,8 @@ class GetPgPgUserConfigResult(dict):
|
|
|
49732
49696
|
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
49733
49697
|
if migration is not None:
|
|
49734
49698
|
pulumi.set(__self__, "migration", migration)
|
|
49699
|
+
if node_count is not None:
|
|
49700
|
+
pulumi.set(__self__, "node_count", node_count)
|
|
49735
49701
|
if pg is not None:
|
|
49736
49702
|
pulumi.set(__self__, "pg", pg)
|
|
49737
49703
|
if pg_qualstats is not None:
|
|
@@ -49858,6 +49824,14 @@ class GetPgPgUserConfigResult(dict):
|
|
|
49858
49824
|
"""
|
|
49859
49825
|
return pulumi.get(self, "migration")
|
|
49860
49826
|
|
|
49827
|
+
@_builtins.property
|
|
49828
|
+
@pulumi.getter(name="nodeCount")
|
|
49829
|
+
def node_count(self) -> Optional[_builtins.int]:
|
|
49830
|
+
"""
|
|
49831
|
+
Number of nodes for the service. Example: `3`.
|
|
49832
|
+
"""
|
|
49833
|
+
return pulumi.get(self, "node_count")
|
|
49834
|
+
|
|
49861
49835
|
@_builtins.property
|
|
49862
49836
|
@pulumi.getter
|
|
49863
49837
|
def pg(self) -> Optional['outputs.GetPgPgUserConfigPgResult']:
|
pulumi_aiven/pg.py
CHANGED
|
@@ -296,6 +296,7 @@ class _PgState:
|
|
|
296
296
|
disk_space_step: Optional[pulumi.Input[_builtins.str]] = None,
|
|
297
297
|
disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
|
|
298
298
|
maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
|
|
299
|
+
maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
299
300
|
maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
300
301
|
pg: Optional[pulumi.Input['PgPgArgs']] = None,
|
|
301
302
|
pg_user_config: Optional[pulumi.Input['PgPgUserConfigArgs']] = None,
|
|
@@ -326,6 +327,7 @@ class _PgState:
|
|
|
326
327
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
327
328
|
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
328
329
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
330
|
+
:param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
|
|
329
331
|
:param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
330
332
|
:param pulumi.Input['PgPgArgs'] pg: Values provided by the PostgreSQL server.
|
|
331
333
|
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -366,6 +368,8 @@ class _PgState:
|
|
|
366
368
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
367
369
|
if maintenance_window_dow is not None:
|
|
368
370
|
pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
|
|
371
|
+
if maintenance_window_enabled is not None:
|
|
372
|
+
pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
|
|
369
373
|
if maintenance_window_time is not None:
|
|
370
374
|
pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
|
|
371
375
|
if pg is not None:
|
|
@@ -514,6 +518,18 @@ class _PgState:
|
|
|
514
518
|
def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
515
519
|
pulumi.set(self, "maintenance_window_dow", value)
|
|
516
520
|
|
|
521
|
+
@_builtins.property
|
|
522
|
+
@pulumi.getter(name="maintenanceWindowEnabled")
|
|
523
|
+
def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
524
|
+
"""
|
|
525
|
+
Indicates whether the maintenance window is currently enabled for this service.
|
|
526
|
+
"""
|
|
527
|
+
return pulumi.get(self, "maintenance_window_enabled")
|
|
528
|
+
|
|
529
|
+
@maintenance_window_enabled.setter
|
|
530
|
+
def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
531
|
+
pulumi.set(self, "maintenance_window_enabled", value)
|
|
532
|
+
|
|
517
533
|
@_builtins.property
|
|
518
534
|
@pulumi.getter(name="maintenanceWindowTime")
|
|
519
535
|
def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -871,6 +887,7 @@ class Pg(pulumi.CustomResource):
|
|
|
871
887
|
__props__.__dict__["disk_space_default"] = None
|
|
872
888
|
__props__.__dict__["disk_space_step"] = None
|
|
873
889
|
__props__.__dict__["disk_space_used"] = None
|
|
890
|
+
__props__.__dict__["maintenance_window_enabled"] = None
|
|
874
891
|
__props__.__dict__["service_host"] = None
|
|
875
892
|
__props__.__dict__["service_password"] = None
|
|
876
893
|
__props__.__dict__["service_port"] = None
|
|
@@ -899,6 +916,7 @@ class Pg(pulumi.CustomResource):
|
|
|
899
916
|
disk_space_step: Optional[pulumi.Input[_builtins.str]] = None,
|
|
900
917
|
disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
|
|
901
918
|
maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
|
|
919
|
+
maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
902
920
|
maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
903
921
|
pg: Optional[pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']]] = None,
|
|
904
922
|
pg_user_config: Optional[pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']]] = None,
|
|
@@ -934,6 +952,7 @@ class Pg(pulumi.CustomResource):
|
|
|
934
952
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
935
953
|
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
936
954
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
955
|
+
:param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
|
|
937
956
|
:param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
938
957
|
:param pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']] pg: Values provided by the PostgreSQL server.
|
|
939
958
|
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -966,6 +985,7 @@ class Pg(pulumi.CustomResource):
|
|
|
966
985
|
__props__.__dict__["disk_space_step"] = disk_space_step
|
|
967
986
|
__props__.__dict__["disk_space_used"] = disk_space_used
|
|
968
987
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
988
|
+
__props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
|
|
969
989
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
970
990
|
__props__.__dict__["pg"] = pg
|
|
971
991
|
__props__.__dict__["pg_user_config"] = pg_user_config
|
|
@@ -1060,6 +1080,14 @@ class Pg(pulumi.CustomResource):
|
|
|
1060
1080
|
"""
|
|
1061
1081
|
return pulumi.get(self, "maintenance_window_dow")
|
|
1062
1082
|
|
|
1083
|
+
@_builtins.property
|
|
1084
|
+
@pulumi.getter(name="maintenanceWindowEnabled")
|
|
1085
|
+
def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
|
|
1086
|
+
"""
|
|
1087
|
+
Indicates whether the maintenance window is currently enabled for this service.
|
|
1088
|
+
"""
|
|
1089
|
+
return pulumi.get(self, "maintenance_window_enabled")
|
|
1090
|
+
|
|
1063
1091
|
@_builtins.property
|
|
1064
1092
|
@pulumi.getter(name="maintenanceWindowTime")
|
|
1065
1093
|
def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]:
|
pulumi_aiven/pulumi-plugin.json
CHANGED