pulumi-aiven 6.42.0a1755234555__py3-none-any.whl → 6.42.0a1755315469__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 +235 -75
- pulumi_aiven/m3_aggregator.py +9 -0
- pulumi_aiven/m3_db.py +9 -0
- pulumi_aiven/outputs.py +270 -62
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.42.0a1755234555.dist-info → pulumi_aiven-6.42.0a1755315469.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.42.0a1755234555.dist-info → pulumi_aiven-6.42.0a1755315469.dist-info}/RECORD +9 -9
- {pulumi_aiven-6.42.0a1755234555.dist-info → pulumi_aiven-6.42.0a1755315469.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.42.0a1755234555.dist-info → pulumi_aiven-6.42.0a1755315469.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py
CHANGED
|
@@ -1759,7 +1759,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1759
1759
|
:param _builtins.int max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
|
|
1760
1760
|
:param _builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
1761
1761
|
:param _builtins.int max_worker_processes: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
|
|
1762
|
-
:param _builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
1762
|
+
:param _builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
1763
1763
|
:param _builtins.int pg_partman_bgw_dot_interval: Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
|
|
1764
1764
|
:param _builtins.str pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
|
|
1765
1765
|
:param _builtins.str pg_stat_statements_dot_track: Enum: `all`, `none`, `top`. Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default is `top`.
|
|
@@ -2171,7 +2171,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2171
2171
|
@pulumi.getter(name="passwordEncryption")
|
|
2172
2172
|
def password_encryption(self) -> Optional[_builtins.str]:
|
|
2173
2173
|
"""
|
|
2174
|
-
Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
2174
|
+
Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
2175
2175
|
"""
|
|
2176
2176
|
return pulumi.get(self, "password_encryption")
|
|
2177
2177
|
|
|
@@ -2322,17 +2322,17 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
|
|
|
2322
2322
|
role: Optional[_builtins.str] = None):
|
|
2323
2323
|
"""
|
|
2324
2324
|
:param _builtins.bool feature_enabled: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved. Default: `false`.
|
|
2325
|
-
:param _builtins.bool log_catalog: Specifies that session logging should be enabled in the case where all
|
|
2325
|
+
:param _builtins.bool log_catalog: Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog. Default: `true`.
|
|
2326
2326
|
:param _builtins.bool log_client: Specifies whether log messages will be visible to a client process such as psql. Default: `false`.
|
|
2327
2327
|
:param _builtins.str log_level: Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `log`, `notice`, `warning`. Specifies the log level that will be used for log entries. Default: `log`.
|
|
2328
|
-
:param _builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
|
|
2329
|
-
:param _builtins.bool log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that
|
|
2328
|
+
:param _builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
|
|
2329
|
+
:param _builtins.bool log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
|
|
2330
2330
|
:param _builtins.bool log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. Default: `false`.
|
|
2331
|
-
:param _builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
|
|
2332
|
-
:param _builtins.bool log_relation: Specifies whether session audit logging should create a separate log
|
|
2331
|
+
:param _builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
|
|
2332
|
+
:param _builtins.bool log_relation: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
|
|
2333
2333
|
:param _builtins.bool log_rows: Log Rows. Default: `false`.
|
|
2334
2334
|
:param _builtins.bool log_statement: Specifies whether logging will include the statement text and parameters (if enabled). Default: `true`.
|
|
2335
|
-
:param _builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters
|
|
2335
|
+
:param _builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
|
|
2336
2336
|
:param Sequence[_builtins.str] logs: Specifies which classes of statements will be logged by session audit logging.
|
|
2337
2337
|
:param _builtins.str role: Specifies the master role to use for object audit logging.
|
|
2338
2338
|
"""
|
|
@@ -2377,7 +2377,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
|
|
|
2377
2377
|
@pulumi.getter(name="logCatalog")
|
|
2378
2378
|
def log_catalog(self) -> Optional[_builtins.bool]:
|
|
2379
2379
|
"""
|
|
2380
|
-
Specifies that session logging should be enabled in the case where all
|
|
2380
|
+
Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog. Default: `true`.
|
|
2381
2381
|
"""
|
|
2382
2382
|
return pulumi.get(self, "log_catalog")
|
|
2383
2383
|
|
|
@@ -2401,7 +2401,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
|
|
|
2401
2401
|
@pulumi.getter(name="logMaxStringLength")
|
|
2402
2402
|
def log_max_string_length(self) -> Optional[_builtins.int]:
|
|
2403
2403
|
"""
|
|
2404
|
-
Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
|
|
2404
|
+
Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
|
|
2405
2405
|
"""
|
|
2406
2406
|
return pulumi.get(self, "log_max_string_length")
|
|
2407
2407
|
|
|
@@ -2409,7 +2409,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
|
|
|
2409
2409
|
@pulumi.getter(name="logNestedStatements")
|
|
2410
2410
|
def log_nested_statements(self) -> Optional[_builtins.bool]:
|
|
2411
2411
|
"""
|
|
2412
|
-
This GUC allows to turn off logging nested statements, that is, statements that
|
|
2412
|
+
This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
|
|
2413
2413
|
"""
|
|
2414
2414
|
return pulumi.get(self, "log_nested_statements")
|
|
2415
2415
|
|
|
@@ -2425,7 +2425,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
|
|
|
2425
2425
|
@pulumi.getter(name="logParameterMaxSize")
|
|
2426
2426
|
def log_parameter_max_size(self) -> Optional[_builtins.int]:
|
|
2427
2427
|
"""
|
|
2428
|
-
Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
|
|
2428
|
+
Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
|
|
2429
2429
|
"""
|
|
2430
2430
|
return pulumi.get(self, "log_parameter_max_size")
|
|
2431
2431
|
|
|
@@ -2433,7 +2433,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
|
|
|
2433
2433
|
@pulumi.getter(name="logRelation")
|
|
2434
2434
|
def log_relation(self) -> Optional[_builtins.bool]:
|
|
2435
2435
|
"""
|
|
2436
|
-
Specifies whether session audit logging should create a separate log
|
|
2436
|
+
Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
|
|
2437
2437
|
"""
|
|
2438
2438
|
return pulumi.get(self, "log_relation")
|
|
2439
2439
|
|
|
@@ -2457,7 +2457,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
|
|
|
2457
2457
|
@pulumi.getter(name="logStatementOnce")
|
|
2458
2458
|
def log_statement_once(self) -> Optional[_builtins.bool]:
|
|
2459
2459
|
"""
|
|
2460
|
-
Specifies whether logging will include the statement text and parameters
|
|
2460
|
+
Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
|
|
2461
2461
|
"""
|
|
2462
2462
|
return pulumi.get(self, "log_statement_once")
|
|
2463
2463
|
|
|
@@ -18668,9 +18668,9 @@ class OpenSearchOpensearchUserConfigIndexTemplate(dict):
|
|
|
18668
18668
|
number_of_replicas: Optional[_builtins.int] = None,
|
|
18669
18669
|
number_of_shards: Optional[_builtins.int] = None):
|
|
18670
18670
|
"""
|
|
18671
|
-
:param _builtins.int mapping_nested_objects_limit: The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000. Example: `10000`.
|
|
18672
|
-
:param _builtins.int number_of_replicas: The number of replicas each primary shard has. Example: `1`.
|
|
18673
|
-
:param _builtins.int number_of_shards: The number of primary shards that an index should have. Example: `1`.
|
|
18671
|
+
:param _builtins.int mapping_nested_objects_limit: The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000. Deprecated, use an index template instead. Example: `10000`.
|
|
18672
|
+
:param _builtins.int number_of_replicas: The number of replicas each primary shard has. Deprecated, use an index template instead. Example: `1`.
|
|
18673
|
+
:param _builtins.int number_of_shards: The number of primary shards that an index should have. Deprecated, use an index template instead. Example: `1`.
|
|
18674
18674
|
"""
|
|
18675
18675
|
if mapping_nested_objects_limit is not None:
|
|
18676
18676
|
pulumi.set(__self__, "mapping_nested_objects_limit", mapping_nested_objects_limit)
|
|
@@ -18683,7 +18683,7 @@ class OpenSearchOpensearchUserConfigIndexTemplate(dict):
|
|
|
18683
18683
|
@pulumi.getter(name="mappingNestedObjectsLimit")
|
|
18684
18684
|
def mapping_nested_objects_limit(self) -> Optional[_builtins.int]:
|
|
18685
18685
|
"""
|
|
18686
|
-
The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000. Example: `10000`.
|
|
18686
|
+
The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000. Deprecated, use an index template instead. Example: `10000`.
|
|
18687
18687
|
"""
|
|
18688
18688
|
return pulumi.get(self, "mapping_nested_objects_limit")
|
|
18689
18689
|
|
|
@@ -18691,7 +18691,7 @@ class OpenSearchOpensearchUserConfigIndexTemplate(dict):
|
|
|
18691
18691
|
@pulumi.getter(name="numberOfReplicas")
|
|
18692
18692
|
def number_of_replicas(self) -> Optional[_builtins.int]:
|
|
18693
18693
|
"""
|
|
18694
|
-
The number of replicas each primary shard has. Example: `1`.
|
|
18694
|
+
The number of replicas each primary shard has. Deprecated, use an index template instead. Example: `1`.
|
|
18695
18695
|
"""
|
|
18696
18696
|
return pulumi.get(self, "number_of_replicas")
|
|
18697
18697
|
|
|
@@ -18699,7 +18699,7 @@ class OpenSearchOpensearchUserConfigIndexTemplate(dict):
|
|
|
18699
18699
|
@pulumi.getter(name="numberOfShards")
|
|
18700
18700
|
def number_of_shards(self) -> Optional[_builtins.int]:
|
|
18701
18701
|
"""
|
|
18702
|
-
The number of primary shards that an index should have. Example: `1`.
|
|
18702
|
+
The number of primary shards that an index should have. Deprecated, use an index template instead. Example: `1`.
|
|
18703
18703
|
"""
|
|
18704
18704
|
return pulumi.get(self, "number_of_shards")
|
|
18705
18705
|
|
|
@@ -21141,7 +21141,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressure(dict):
|
|
|
21141
21141
|
primary_parameter: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameter'] = None):
|
|
21142
21142
|
"""
|
|
21143
21143
|
:param _builtins.bool enabled: Enable or disable shard indexing backpressure. Default is false.
|
|
21144
|
-
:param _builtins.bool enforced: Run shard indexing backpressure in shadow mode or enforced mode.
|
|
21144
|
+
:param _builtins.bool enforced: Run shard indexing backpressure in shadow mode or enforced mode. In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics, but it doesn’t actually reject any indexing requests. In enforced mode (value set as true), shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance. Default is false.
|
|
21145
21145
|
:param 'OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactorArgs' operating_factor: Operating factor
|
|
21146
21146
|
:param 'OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterArgs' primary_parameter: Primary parameter
|
|
21147
21147
|
"""
|
|
@@ -21166,7 +21166,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressure(dict):
|
|
|
21166
21166
|
@pulumi.getter
|
|
21167
21167
|
def enforced(self) -> Optional[_builtins.bool]:
|
|
21168
21168
|
"""
|
|
21169
|
-
Run shard indexing backpressure in shadow mode or enforced mode.
|
|
21169
|
+
Run shard indexing backpressure in shadow mode or enforced mode. In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics, but it doesn’t actually reject any indexing requests. In enforced mode (value set as true), shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance. Default is false.
|
|
21170
21170
|
"""
|
|
21171
21171
|
return pulumi.get(self, "enforced")
|
|
21172
21172
|
|
|
@@ -21194,9 +21194,9 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
|
|
|
21194
21194
|
optimal: Optional[_builtins.float] = None,
|
|
21195
21195
|
upper: Optional[_builtins.float] = None):
|
|
21196
21196
|
"""
|
|
21197
|
-
:param _builtins.float lower: Specify the lower occupancy limit of the allocated quota of memory for the shard.
|
|
21198
|
-
:param _builtins.float optimal: Specify the optimal occupancy of the allocated quota of memory for the shard.
|
|
21199
|
-
:param _builtins.float upper: Specify the upper occupancy limit of the allocated quota of memory for the shard.
|
|
21197
|
+
:param _builtins.float lower: Specify the lower occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is below this limit, shard indexing backpressure decreases the current allocated memory for that shard. Default is 0.75.
|
|
21198
|
+
:param _builtins.float optimal: Specify the optimal occupancy of the allocated quota of memory for the shard. If the total memory usage of a shard is at this level, shard indexing backpressure doesn’t change the current allocated memory for that shard. Default is 0.85.
|
|
21199
|
+
:param _builtins.float upper: Specify the upper occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is above this limit, shard indexing backpressure increases the current allocated memory for that shard. Default is 0.95.
|
|
21200
21200
|
"""
|
|
21201
21201
|
if lower is not None:
|
|
21202
21202
|
pulumi.set(__self__, "lower", lower)
|
|
@@ -21209,7 +21209,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
|
|
|
21209
21209
|
@pulumi.getter
|
|
21210
21210
|
def lower(self) -> Optional[_builtins.float]:
|
|
21211
21211
|
"""
|
|
21212
|
-
Specify the lower occupancy limit of the allocated quota of memory for the shard.
|
|
21212
|
+
Specify the lower occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is below this limit, shard indexing backpressure decreases the current allocated memory for that shard. Default is 0.75.
|
|
21213
21213
|
"""
|
|
21214
21214
|
return pulumi.get(self, "lower")
|
|
21215
21215
|
|
|
@@ -21217,7 +21217,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
|
|
|
21217
21217
|
@pulumi.getter
|
|
21218
21218
|
def optimal(self) -> Optional[_builtins.float]:
|
|
21219
21219
|
"""
|
|
21220
|
-
Specify the optimal occupancy of the allocated quota of memory for the shard.
|
|
21220
|
+
Specify the optimal occupancy of the allocated quota of memory for the shard. If the total memory usage of a shard is at this level, shard indexing backpressure doesn’t change the current allocated memory for that shard. Default is 0.85.
|
|
21221
21221
|
"""
|
|
21222
21222
|
return pulumi.get(self, "optimal")
|
|
21223
21223
|
|
|
@@ -21225,7 +21225,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
|
|
|
21225
21225
|
@pulumi.getter
|
|
21226
21226
|
def upper(self) -> Optional[_builtins.float]:
|
|
21227
21227
|
"""
|
|
21228
|
-
Specify the upper occupancy limit of the allocated quota of memory for the shard.
|
|
21228
|
+
Specify the upper occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is above this limit, shard indexing backpressure increases the current allocated memory for that shard. Default is 0.95.
|
|
21229
21229
|
"""
|
|
21230
21230
|
return pulumi.get(self, "upper")
|
|
21231
21231
|
|
|
@@ -21273,7 +21273,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
|
|
|
21273
21273
|
def __init__(__self__, *,
|
|
21274
21274
|
soft_limit: Optional[_builtins.float] = None):
|
|
21275
21275
|
"""
|
|
21276
|
-
:param _builtins.float soft_limit: Define the percentage of the node-level memory
|
|
21276
|
+
:param _builtins.float soft_limit: Define the percentage of the node-level memory threshold that acts as a soft indicator for strain on a node. Default is 0.7.
|
|
21277
21277
|
"""
|
|
21278
21278
|
if soft_limit is not None:
|
|
21279
21279
|
pulumi.set(__self__, "soft_limit", soft_limit)
|
|
@@ -21282,7 +21282,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
|
|
|
21282
21282
|
@pulumi.getter(name="softLimit")
|
|
21283
21283
|
def soft_limit(self) -> Optional[_builtins.float]:
|
|
21284
21284
|
"""
|
|
21285
|
-
Define the percentage of the node-level memory
|
|
21285
|
+
Define the percentage of the node-level memory threshold that acts as a soft indicator for strain on a node. Default is 0.7.
|
|
21286
21286
|
"""
|
|
21287
21287
|
return pulumi.get(self, "soft_limit")
|
|
21288
21288
|
|
|
@@ -21309,7 +21309,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
|
|
|
21309
21309
|
def __init__(__self__, *,
|
|
21310
21310
|
min_limit: Optional[_builtins.float] = None):
|
|
21311
21311
|
"""
|
|
21312
|
-
:param _builtins.float min_limit: Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
|
|
21312
|
+
:param _builtins.float min_limit: Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica). Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard. Default is 0.001.
|
|
21313
21313
|
"""
|
|
21314
21314
|
if min_limit is not None:
|
|
21315
21315
|
pulumi.set(__self__, "min_limit", min_limit)
|
|
@@ -21318,7 +21318,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
|
|
|
21318
21318
|
@pulumi.getter(name="minLimit")
|
|
21319
21319
|
def min_limit(self) -> Optional[_builtins.float]:
|
|
21320
21320
|
"""
|
|
21321
|
-
Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
|
|
21321
|
+
Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica). Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard. Default is 0.001.
|
|
21322
21322
|
"""
|
|
21323
21323
|
return pulumi.get(self, "min_limit")
|
|
21324
21324
|
|
|
@@ -23607,7 +23607,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23607
23607
|
:param _builtins.str log_line_prefix: Enum: `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
|
|
23608
23608
|
:param _builtins.int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
23609
23609
|
:param _builtins.int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
23610
|
-
:param _builtins.int max_connections: PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
|
|
23610
|
+
:param _builtins.int max_connections: Sets the PostgreSQL maximum number of concurrent connections to the database server. This is a limited-release parameter. Contact your account team to confirm your eligibility. You cannot decrease this parameter value when set. For services with a read replica, first increase the read replica's value. After the change is applied to the replica, you can increase the primary service's value. Changing this parameter causes a service restart.
|
|
23611
23611
|
:param _builtins.int max_files_per_process: PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
|
|
23612
23612
|
:param _builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
23613
23613
|
:param _builtins.int max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
|
|
@@ -23623,7 +23623,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23623
23623
|
:param _builtins.int max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
|
|
23624
23624
|
:param _builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
23625
23625
|
:param _builtins.int max_worker_processes: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
|
|
23626
|
-
:param _builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
23626
|
+
:param _builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
23627
23627
|
:param _builtins.int pg_partman_bgw_dot_interval: Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
|
|
23628
23628
|
:param _builtins.str pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
|
|
23629
23629
|
:param _builtins.bool pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring. Changing this parameter causes a service restart. Only available for PostgreSQL 13+.
|
|
@@ -23923,7 +23923,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23923
23923
|
@pulumi.getter(name="maxConnections")
|
|
23924
23924
|
def max_connections(self) -> Optional[_builtins.int]:
|
|
23925
23925
|
"""
|
|
23926
|
-
PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
|
|
23926
|
+
Sets the PostgreSQL maximum number of concurrent connections to the database server. This is a limited-release parameter. Contact your account team to confirm your eligibility. You cannot decrease this parameter value when set. For services with a read replica, first increase the read replica's value. After the change is applied to the replica, you can increase the primary service's value. Changing this parameter causes a service restart.
|
|
23927
23927
|
"""
|
|
23928
23928
|
return pulumi.get(self, "max_connections")
|
|
23929
23929
|
|
|
@@ -24051,7 +24051,7 @@ class PgPgUserConfigPg(dict):
|
|
|
24051
24051
|
@pulumi.getter(name="passwordEncryption")
|
|
24052
24052
|
def password_encryption(self) -> Optional[_builtins.str]:
|
|
24053
24053
|
"""
|
|
24054
|
-
Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
24054
|
+
Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
24055
24055
|
"""
|
|
24056
24056
|
return pulumi.get(self, "password_encryption")
|
|
24057
24057
|
|
|
@@ -24313,17 +24313,17 @@ class PgPgUserConfigPgaudit(dict):
|
|
|
24313
24313
|
role: Optional[_builtins.str] = None):
|
|
24314
24314
|
"""
|
|
24315
24315
|
:param _builtins.bool feature_enabled: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved. Default: `false`.
|
|
24316
|
-
:param _builtins.bool log_catalog: Specifies that session logging should be enabled in the case where all
|
|
24316
|
+
:param _builtins.bool log_catalog: Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog. Default: `true`.
|
|
24317
24317
|
:param _builtins.bool log_client: Specifies whether log messages will be visible to a client process such as psql. Default: `false`.
|
|
24318
24318
|
:param _builtins.str log_level: Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `log`, `notice`, `warning`. Specifies the log level that will be used for log entries. Default: `log`.
|
|
24319
|
-
:param _builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
|
|
24320
|
-
:param _builtins.bool log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that
|
|
24319
|
+
:param _builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
|
|
24320
|
+
:param _builtins.bool log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
|
|
24321
24321
|
:param _builtins.bool log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. Default: `false`.
|
|
24322
|
-
:param _builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
|
|
24323
|
-
:param _builtins.bool log_relation: Specifies whether session audit logging should create a separate log
|
|
24322
|
+
:param _builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
|
|
24323
|
+
:param _builtins.bool log_relation: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
|
|
24324
24324
|
:param _builtins.bool log_rows: Log Rows. Default: `false`.
|
|
24325
24325
|
:param _builtins.bool log_statement: Specifies whether logging will include the statement text and parameters (if enabled). Default: `true`.
|
|
24326
|
-
:param _builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters
|
|
24326
|
+
:param _builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
|
|
24327
24327
|
:param Sequence[_builtins.str] logs: Specifies which classes of statements will be logged by session audit logging.
|
|
24328
24328
|
:param _builtins.str role: Specifies the master role to use for object audit logging.
|
|
24329
24329
|
"""
|
|
@@ -24368,7 +24368,7 @@ class PgPgUserConfigPgaudit(dict):
|
|
|
24368
24368
|
@pulumi.getter(name="logCatalog")
|
|
24369
24369
|
def log_catalog(self) -> Optional[_builtins.bool]:
|
|
24370
24370
|
"""
|
|
24371
|
-
Specifies that session logging should be enabled in the case where all
|
|
24371
|
+
Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog. Default: `true`.
|
|
24372
24372
|
"""
|
|
24373
24373
|
return pulumi.get(self, "log_catalog")
|
|
24374
24374
|
|
|
@@ -24392,7 +24392,7 @@ class PgPgUserConfigPgaudit(dict):
|
|
|
24392
24392
|
@pulumi.getter(name="logMaxStringLength")
|
|
24393
24393
|
def log_max_string_length(self) -> Optional[_builtins.int]:
|
|
24394
24394
|
"""
|
|
24395
|
-
Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
|
|
24395
|
+
Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
|
|
24396
24396
|
"""
|
|
24397
24397
|
return pulumi.get(self, "log_max_string_length")
|
|
24398
24398
|
|
|
@@ -24400,7 +24400,7 @@ class PgPgUserConfigPgaudit(dict):
|
|
|
24400
24400
|
@pulumi.getter(name="logNestedStatements")
|
|
24401
24401
|
def log_nested_statements(self) -> Optional[_builtins.bool]:
|
|
24402
24402
|
"""
|
|
24403
|
-
This GUC allows to turn off logging nested statements, that is, statements that
|
|
24403
|
+
This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
|
|
24404
24404
|
"""
|
|
24405
24405
|
return pulumi.get(self, "log_nested_statements")
|
|
24406
24406
|
|
|
@@ -24416,7 +24416,7 @@ class PgPgUserConfigPgaudit(dict):
|
|
|
24416
24416
|
@pulumi.getter(name="logParameterMaxSize")
|
|
24417
24417
|
def log_parameter_max_size(self) -> Optional[_builtins.int]:
|
|
24418
24418
|
"""
|
|
24419
|
-
Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
|
|
24419
|
+
Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
|
|
24420
24420
|
"""
|
|
24421
24421
|
return pulumi.get(self, "log_parameter_max_size")
|
|
24422
24422
|
|
|
@@ -24424,7 +24424,7 @@ class PgPgUserConfigPgaudit(dict):
|
|
|
24424
24424
|
@pulumi.getter(name="logRelation")
|
|
24425
24425
|
def log_relation(self) -> Optional[_builtins.bool]:
|
|
24426
24426
|
"""
|
|
24427
|
-
Specifies whether session audit logging should create a separate log
|
|
24427
|
+
Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
|
|
24428
24428
|
"""
|
|
24429
24429
|
return pulumi.get(self, "log_relation")
|
|
24430
24430
|
|
|
@@ -24448,7 +24448,7 @@ class PgPgUserConfigPgaudit(dict):
|
|
|
24448
24448
|
@pulumi.getter(name="logStatementOnce")
|
|
24449
24449
|
def log_statement_once(self) -> Optional[_builtins.bool]:
|
|
24450
24450
|
"""
|
|
24451
|
-
Specifies whether logging will include the statement text and parameters
|
|
24451
|
+
Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
|
|
24452
24452
|
"""
|
|
24453
24453
|
return pulumi.get(self, "log_statement_once")
|
|
24454
24454
|
|
|
@@ -25996,6 +25996,22 @@ class ServiceIntegrationClickhouseKafkaUserConfigTable(dict):
|
|
|
25996
25996
|
suggest = "poll_max_batch_size"
|
|
25997
25997
|
elif key == "pollMaxTimeoutMs":
|
|
25998
25998
|
suggest = "poll_max_timeout_ms"
|
|
25999
|
+
elif key == "producerBatchNumMessages":
|
|
26000
|
+
suggest = "producer_batch_num_messages"
|
|
26001
|
+
elif key == "producerBatchSize":
|
|
26002
|
+
suggest = "producer_batch_size"
|
|
26003
|
+
elif key == "producerCompressionCodec":
|
|
26004
|
+
suggest = "producer_compression_codec"
|
|
26005
|
+
elif key == "producerCompressionLevel":
|
|
26006
|
+
suggest = "producer_compression_level"
|
|
26007
|
+
elif key == "producerLingerMs":
|
|
26008
|
+
suggest = "producer_linger_ms"
|
|
26009
|
+
elif key == "producerQueueBufferingMaxKbytes":
|
|
26010
|
+
suggest = "producer_queue_buffering_max_kbytes"
|
|
26011
|
+
elif key == "producerQueueBufferingMaxMessages":
|
|
26012
|
+
suggest = "producer_queue_buffering_max_messages"
|
|
26013
|
+
elif key == "producerRequestRequiredAcks":
|
|
26014
|
+
suggest = "producer_request_required_acks"
|
|
25999
26015
|
elif key == "skipBrokenMessages":
|
|
26000
26016
|
suggest = "skip_broken_messages"
|
|
26001
26017
|
elif key == "threadPerConsumer":
|
|
@@ -26026,6 +26042,14 @@ class ServiceIntegrationClickhouseKafkaUserConfigTable(dict):
|
|
|
26026
26042
|
num_consumers: Optional[_builtins.int] = None,
|
|
26027
26043
|
poll_max_batch_size: Optional[_builtins.int] = None,
|
|
26028
26044
|
poll_max_timeout_ms: Optional[_builtins.int] = None,
|
|
26045
|
+
producer_batch_num_messages: Optional[_builtins.int] = None,
|
|
26046
|
+
producer_batch_size: Optional[_builtins.int] = None,
|
|
26047
|
+
producer_compression_codec: Optional[_builtins.str] = None,
|
|
26048
|
+
producer_compression_level: Optional[_builtins.int] = None,
|
|
26049
|
+
producer_linger_ms: Optional[_builtins.int] = None,
|
|
26050
|
+
producer_queue_buffering_max_kbytes: Optional[_builtins.int] = None,
|
|
26051
|
+
producer_queue_buffering_max_messages: Optional[_builtins.int] = None,
|
|
26052
|
+
producer_request_required_acks: Optional[_builtins.int] = None,
|
|
26029
26053
|
skip_broken_messages: Optional[_builtins.int] = None,
|
|
26030
26054
|
thread_per_consumer: Optional[_builtins.bool] = None):
|
|
26031
26055
|
"""
|
|
@@ -26042,6 +26066,14 @@ class ServiceIntegrationClickhouseKafkaUserConfigTable(dict):
|
|
|
26042
26066
|
:param _builtins.int num_consumers: The number of consumers per table per replica. Default: `1`.
|
|
26043
26067
|
:param _builtins.int poll_max_batch_size: Maximum amount of messages to be polled in a single Kafka poll. Default: `0`.
|
|
26044
26068
|
:param _builtins.int poll_max_timeout_ms: Timeout in milliseconds for a single poll from Kafka. Takes the value of the stream*flush*interval_ms server setting by default (500ms). Default: `0`.
|
|
26069
|
+
:param _builtins.int producer_batch_num_messages: The maximum number of messages in a batch sent to Kafka. If the number of messages exceeds this value, the batch is sent. Default: `10000`.
|
|
26070
|
+
:param _builtins.int producer_batch_size: The maximum size in bytes of a batch of messages sent to Kafka. If the batch size is exceeded, the batch is sent. Default: `1000000`.
|
|
26071
|
+
:param _builtins.str producer_compression_codec: Enum: `gzip`, `lz4`, `none`, `snappy`, `zstd`. The compression codec to use when sending a batch of messages to Kafka. Default: `none`.
|
|
26072
|
+
:param _builtins.int producer_compression_level: The compression level to use when sending a batch of messages to Kafka. Usable range is algorithm-dependent: [0-9] for gzip; [0-12] for lz4; only 0 for snappy; -1 = codec-dependent default compression level. Default: `-1`.
|
|
26073
|
+
:param _builtins.int producer_linger_ms: The time in milliseconds to wait for additional messages before sending a batch. If the time is exceeded, the batch is sent. Default: `5`.
|
|
26074
|
+
:param _builtins.int producer_queue_buffering_max_kbytes: The maximum size of the buffer in kilobytes before sending. Default: `1048576`.
|
|
26075
|
+
:param _builtins.int producer_queue_buffering_max_messages: The maximum number of messages to buffer before sending. Default: `100000`.
|
|
26076
|
+
:param _builtins.int producer_request_required_acks: The number of acknowledgements the leader broker must receive from ISR brokers before responding to the request: 0=Broker does not send any response/ack to client, -1 will block until message is committed by all in sync replicas (ISRs). Default: `-1`.
|
|
26045
26077
|
:param _builtins.int skip_broken_messages: Skip at least this number of broken messages from Kafka topic per block. Default: `0`.
|
|
26046
26078
|
:param _builtins.bool thread_per_consumer: Provide an independent thread for each consumer. All consumers run in the same thread by default. Default: `false`.
|
|
26047
26079
|
"""
|
|
@@ -26066,6 +26098,22 @@ class ServiceIntegrationClickhouseKafkaUserConfigTable(dict):
|
|
|
26066
26098
|
pulumi.set(__self__, "poll_max_batch_size", poll_max_batch_size)
|
|
26067
26099
|
if poll_max_timeout_ms is not None:
|
|
26068
26100
|
pulumi.set(__self__, "poll_max_timeout_ms", poll_max_timeout_ms)
|
|
26101
|
+
if producer_batch_num_messages is not None:
|
|
26102
|
+
pulumi.set(__self__, "producer_batch_num_messages", producer_batch_num_messages)
|
|
26103
|
+
if producer_batch_size is not None:
|
|
26104
|
+
pulumi.set(__self__, "producer_batch_size", producer_batch_size)
|
|
26105
|
+
if producer_compression_codec is not None:
|
|
26106
|
+
pulumi.set(__self__, "producer_compression_codec", producer_compression_codec)
|
|
26107
|
+
if producer_compression_level is not None:
|
|
26108
|
+
pulumi.set(__self__, "producer_compression_level", producer_compression_level)
|
|
26109
|
+
if producer_linger_ms is not None:
|
|
26110
|
+
pulumi.set(__self__, "producer_linger_ms", producer_linger_ms)
|
|
26111
|
+
if producer_queue_buffering_max_kbytes is not None:
|
|
26112
|
+
pulumi.set(__self__, "producer_queue_buffering_max_kbytes", producer_queue_buffering_max_kbytes)
|
|
26113
|
+
if producer_queue_buffering_max_messages is not None:
|
|
26114
|
+
pulumi.set(__self__, "producer_queue_buffering_max_messages", producer_queue_buffering_max_messages)
|
|
26115
|
+
if producer_request_required_acks is not None:
|
|
26116
|
+
pulumi.set(__self__, "producer_request_required_acks", producer_request_required_acks)
|
|
26069
26117
|
if skip_broken_messages is not None:
|
|
26070
26118
|
pulumi.set(__self__, "skip_broken_messages", skip_broken_messages)
|
|
26071
26119
|
if thread_per_consumer is not None:
|
|
@@ -26175,6 +26223,70 @@ class ServiceIntegrationClickhouseKafkaUserConfigTable(dict):
|
|
|
26175
26223
|
"""
|
|
26176
26224
|
return pulumi.get(self, "poll_max_timeout_ms")
|
|
26177
26225
|
|
|
26226
|
+
@_builtins.property
|
|
26227
|
+
@pulumi.getter(name="producerBatchNumMessages")
|
|
26228
|
+
def producer_batch_num_messages(self) -> Optional[_builtins.int]:
|
|
26229
|
+
"""
|
|
26230
|
+
The maximum number of messages in a batch sent to Kafka. If the number of messages exceeds this value, the batch is sent. Default: `10000`.
|
|
26231
|
+
"""
|
|
26232
|
+
return pulumi.get(self, "producer_batch_num_messages")
|
|
26233
|
+
|
|
26234
|
+
@_builtins.property
|
|
26235
|
+
@pulumi.getter(name="producerBatchSize")
|
|
26236
|
+
def producer_batch_size(self) -> Optional[_builtins.int]:
|
|
26237
|
+
"""
|
|
26238
|
+
The maximum size in bytes of a batch of messages sent to Kafka. If the batch size is exceeded, the batch is sent. Default: `1000000`.
|
|
26239
|
+
"""
|
|
26240
|
+
return pulumi.get(self, "producer_batch_size")
|
|
26241
|
+
|
|
26242
|
+
@_builtins.property
|
|
26243
|
+
@pulumi.getter(name="producerCompressionCodec")
|
|
26244
|
+
def producer_compression_codec(self) -> Optional[_builtins.str]:
|
|
26245
|
+
"""
|
|
26246
|
+
Enum: `gzip`, `lz4`, `none`, `snappy`, `zstd`. The compression codec to use when sending a batch of messages to Kafka. Default: `none`.
|
|
26247
|
+
"""
|
|
26248
|
+
return pulumi.get(self, "producer_compression_codec")
|
|
26249
|
+
|
|
26250
|
+
@_builtins.property
|
|
26251
|
+
@pulumi.getter(name="producerCompressionLevel")
|
|
26252
|
+
def producer_compression_level(self) -> Optional[_builtins.int]:
|
|
26253
|
+
"""
|
|
26254
|
+
The compression level to use when sending a batch of messages to Kafka. Usable range is algorithm-dependent: [0-9] for gzip; [0-12] for lz4; only 0 for snappy; -1 = codec-dependent default compression level. Default: `-1`.
|
|
26255
|
+
"""
|
|
26256
|
+
return pulumi.get(self, "producer_compression_level")
|
|
26257
|
+
|
|
26258
|
+
@_builtins.property
|
|
26259
|
+
@pulumi.getter(name="producerLingerMs")
|
|
26260
|
+
def producer_linger_ms(self) -> Optional[_builtins.int]:
|
|
26261
|
+
"""
|
|
26262
|
+
The time in milliseconds to wait for additional messages before sending a batch. If the time is exceeded, the batch is sent. Default: `5`.
|
|
26263
|
+
"""
|
|
26264
|
+
return pulumi.get(self, "producer_linger_ms")
|
|
26265
|
+
|
|
26266
|
+
@_builtins.property
|
|
26267
|
+
@pulumi.getter(name="producerQueueBufferingMaxKbytes")
|
|
26268
|
+
def producer_queue_buffering_max_kbytes(self) -> Optional[_builtins.int]:
|
|
26269
|
+
"""
|
|
26270
|
+
The maximum size of the buffer in kilobytes before sending. Default: `1048576`.
|
|
26271
|
+
"""
|
|
26272
|
+
return pulumi.get(self, "producer_queue_buffering_max_kbytes")
|
|
26273
|
+
|
|
26274
|
+
@_builtins.property
|
|
26275
|
+
@pulumi.getter(name="producerQueueBufferingMaxMessages")
|
|
26276
|
+
def producer_queue_buffering_max_messages(self) -> Optional[_builtins.int]:
|
|
26277
|
+
"""
|
|
26278
|
+
The maximum number of messages to buffer before sending. Default: `100000`.
|
|
26279
|
+
"""
|
|
26280
|
+
return pulumi.get(self, "producer_queue_buffering_max_messages")
|
|
26281
|
+
|
|
26282
|
+
@_builtins.property
|
|
26283
|
+
@pulumi.getter(name="producerRequestRequiredAcks")
|
|
26284
|
+
def producer_request_required_acks(self) -> Optional[_builtins.int]:
|
|
26285
|
+
"""
|
|
26286
|
+
The number of acknowledgements the leader broker must receive from ISR brokers before responding to the request: 0=Broker does not send any response/ack to client, -1 will block until message is committed by all in sync replicas (ISRs). Default: `-1`.
|
|
26287
|
+
"""
|
|
26288
|
+
return pulumi.get(self, "producer_request_required_acks")
|
|
26289
|
+
|
|
26178
26290
|
@_builtins.property
|
|
26179
26291
|
@pulumi.getter(name="skipBrokenMessages")
|
|
26180
26292
|
def skip_broken_messages(self) -> Optional[_builtins.int]:
|
|
@@ -27760,7 +27872,7 @@ class ServiceIntegrationEndpointExternalPostgresql(dict):
|
|
|
27760
27872
|
:param _builtins.str ssl_client_key: Client key. Example: `-----BEGIN PRIVATE KEY-----
|
|
27761
27873
|
...
|
|
27762
27874
|
-----END PRIVATE KEY-----`.
|
|
27763
|
-
:param _builtins.str ssl_mode: Enum: `allow`, `disable`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL mode to use for the connection.
|
|
27875
|
+
:param _builtins.str ssl_mode: Enum: `allow`, `disable`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL mode to use for the connection. Please note that Aiven requires TLS for all connections to external PostgreSQL services. Default: `verify-full`.
|
|
27764
27876
|
:param _builtins.str ssl_root_cert: SSL Root Cert. Example: `-----BEGIN CERTIFICATE-----
|
|
27765
27877
|
...
|
|
27766
27878
|
-----END CERTIFICATE-----
|
|
@@ -27847,7 +27959,7 @@ class ServiceIntegrationEndpointExternalPostgresql(dict):
|
|
|
27847
27959
|
@pulumi.getter(name="sslMode")
|
|
27848
27960
|
def ssl_mode(self) -> Optional[_builtins.str]:
|
|
27849
27961
|
"""
|
|
27850
|
-
Enum: `allow`, `disable`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL mode to use for the connection.
|
|
27962
|
+
Enum: `allow`, `disable`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL mode to use for the connection. Please note that Aiven requires TLS for all connections to external PostgreSQL services. Default: `verify-full`.
|
|
27851
27963
|
"""
|
|
27852
27964
|
return pulumi.get(self, "ssl_mode")
|
|
27853
27965
|
|
|
@@ -32269,7 +32381,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32269
32381
|
:param _builtins.int max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
|
|
32270
32382
|
:param _builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
32271
32383
|
:param _builtins.int max_worker_processes: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
|
|
32272
|
-
:param _builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
32384
|
+
:param _builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
32273
32385
|
:param _builtins.int pg_partman_bgw_dot_interval: Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
|
|
32274
32386
|
:param _builtins.str pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
|
|
32275
32387
|
:param _builtins.str pg_stat_statements_dot_track: Enum: `all`, `none`, `top`. Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default is `top`.
|
|
@@ -32681,7 +32793,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32681
32793
|
@pulumi.getter(name="passwordEncryption")
|
|
32682
32794
|
def password_encryption(self) -> Optional[_builtins.str]:
|
|
32683
32795
|
"""
|
|
32684
|
-
Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
32796
|
+
Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
32685
32797
|
"""
|
|
32686
32798
|
return pulumi.get(self, "password_encryption")
|
|
32687
32799
|
|
|
@@ -45807,9 +45919,9 @@ class GetOpenSearchOpensearchUserConfigIndexTemplateResult(dict):
|
|
|
45807
45919
|
number_of_replicas: Optional[_builtins.int] = None,
|
|
45808
45920
|
number_of_shards: Optional[_builtins.int] = None):
|
|
45809
45921
|
"""
|
|
45810
|
-
:param _builtins.int mapping_nested_objects_limit: The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000. Example: `10000`.
|
|
45811
|
-
:param _builtins.int number_of_replicas: The number of replicas each primary shard has. Example: `1`.
|
|
45812
|
-
:param _builtins.int number_of_shards: The number of primary shards that an index should have. Example: `1`.
|
|
45922
|
+
:param _builtins.int mapping_nested_objects_limit: The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000. Deprecated, use an index template instead. Example: `10000`.
|
|
45923
|
+
:param _builtins.int number_of_replicas: The number of replicas each primary shard has. Deprecated, use an index template instead. Example: `1`.
|
|
45924
|
+
:param _builtins.int number_of_shards: The number of primary shards that an index should have. Deprecated, use an index template instead. Example: `1`.
|
|
45813
45925
|
"""
|
|
45814
45926
|
if mapping_nested_objects_limit is not None:
|
|
45815
45927
|
pulumi.set(__self__, "mapping_nested_objects_limit", mapping_nested_objects_limit)
|
|
@@ -45822,7 +45934,7 @@ class GetOpenSearchOpensearchUserConfigIndexTemplateResult(dict):
|
|
|
45822
45934
|
@pulumi.getter(name="mappingNestedObjectsLimit")
|
|
45823
45935
|
def mapping_nested_objects_limit(self) -> Optional[_builtins.int]:
|
|
45824
45936
|
"""
|
|
45825
|
-
The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000. Example: `10000`.
|
|
45937
|
+
The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000. Deprecated, use an index template instead. Example: `10000`.
|
|
45826
45938
|
"""
|
|
45827
45939
|
return pulumi.get(self, "mapping_nested_objects_limit")
|
|
45828
45940
|
|
|
@@ -45830,7 +45942,7 @@ class GetOpenSearchOpensearchUserConfigIndexTemplateResult(dict):
|
|
|
45830
45942
|
@pulumi.getter(name="numberOfReplicas")
|
|
45831
45943
|
def number_of_replicas(self) -> Optional[_builtins.int]:
|
|
45832
45944
|
"""
|
|
45833
|
-
The number of replicas each primary shard has. Example: `1`.
|
|
45945
|
+
The number of replicas each primary shard has. Deprecated, use an index template instead. Example: `1`.
|
|
45834
45946
|
"""
|
|
45835
45947
|
return pulumi.get(self, "number_of_replicas")
|
|
45836
45948
|
|
|
@@ -45838,7 +45950,7 @@ class GetOpenSearchOpensearchUserConfigIndexTemplateResult(dict):
|
|
|
45838
45950
|
@pulumi.getter(name="numberOfShards")
|
|
45839
45951
|
def number_of_shards(self) -> Optional[_builtins.int]:
|
|
45840
45952
|
"""
|
|
45841
|
-
The number of primary shards that an index should have. Example: `1`.
|
|
45953
|
+
The number of primary shards that an index should have. Deprecated, use an index template instead. Example: `1`.
|
|
45842
45954
|
"""
|
|
45843
45955
|
return pulumi.get(self, "number_of_shards")
|
|
45844
45956
|
|
|
@@ -49763,7 +49875,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49763
49875
|
:param _builtins.str log_line_prefix: Enum: `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
|
|
49764
49876
|
:param _builtins.int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
49765
49877
|
:param _builtins.int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
49766
|
-
:param _builtins.int max_connections: PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
|
|
49878
|
+
:param _builtins.int max_connections: Sets the PostgreSQL maximum number of concurrent connections to the database server. This is a limited-release parameter. Contact your account team to confirm your eligibility. You cannot decrease this parameter value when set. For services with a read replica, first increase the read replica's value. After the change is applied to the replica, you can increase the primary service's value. Changing this parameter causes a service restart.
|
|
49767
49879
|
:param _builtins.int max_files_per_process: PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
|
|
49768
49880
|
:param _builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
49769
49881
|
:param _builtins.int max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
|
|
@@ -49779,7 +49891,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49779
49891
|
:param _builtins.int max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
|
|
49780
49892
|
:param _builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
49781
49893
|
:param _builtins.int max_worker_processes: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
|
|
49782
|
-
:param _builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
49894
|
+
:param _builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
49783
49895
|
:param _builtins.int pg_partman_bgw_dot_interval: Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
|
|
49784
49896
|
:param _builtins.str pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
|
|
49785
49897
|
:param _builtins.bool pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring. Changing this parameter causes a service restart. Only available for PostgreSQL 13+.
|
|
@@ -50079,7 +50191,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
50079
50191
|
@pulumi.getter(name="maxConnections")
|
|
50080
50192
|
def max_connections(self) -> Optional[_builtins.int]:
|
|
50081
50193
|
"""
|
|
50082
|
-
PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
|
|
50194
|
+
Sets the PostgreSQL maximum number of concurrent connections to the database server. This is a limited-release parameter. Contact your account team to confirm your eligibility. You cannot decrease this parameter value when set. For services with a read replica, first increase the read replica's value. After the change is applied to the replica, you can increase the primary service's value. Changing this parameter causes a service restart.
|
|
50083
50195
|
"""
|
|
50084
50196
|
return pulumi.get(self, "max_connections")
|
|
50085
50197
|
|
|
@@ -50207,7 +50319,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
50207
50319
|
@pulumi.getter(name="passwordEncryption")
|
|
50208
50320
|
def password_encryption(self) -> Optional[_builtins.str]:
|
|
50209
50321
|
"""
|
|
50210
|
-
Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
50322
|
+
Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords.
|
|
50211
50323
|
"""
|
|
50212
50324
|
return pulumi.get(self, "password_encryption")
|
|
50213
50325
|
|
|
@@ -51835,6 +51947,14 @@ class GetServiceIntegrationClickhouseKafkaUserConfigTableResult(dict):
|
|
|
51835
51947
|
num_consumers: Optional[_builtins.int] = None,
|
|
51836
51948
|
poll_max_batch_size: Optional[_builtins.int] = None,
|
|
51837
51949
|
poll_max_timeout_ms: Optional[_builtins.int] = None,
|
|
51950
|
+
producer_batch_num_messages: Optional[_builtins.int] = None,
|
|
51951
|
+
producer_batch_size: Optional[_builtins.int] = None,
|
|
51952
|
+
producer_compression_codec: Optional[_builtins.str] = None,
|
|
51953
|
+
producer_compression_level: Optional[_builtins.int] = None,
|
|
51954
|
+
producer_linger_ms: Optional[_builtins.int] = None,
|
|
51955
|
+
producer_queue_buffering_max_kbytes: Optional[_builtins.int] = None,
|
|
51956
|
+
producer_queue_buffering_max_messages: Optional[_builtins.int] = None,
|
|
51957
|
+
producer_request_required_acks: Optional[_builtins.int] = None,
|
|
51838
51958
|
skip_broken_messages: Optional[_builtins.int] = None,
|
|
51839
51959
|
thread_per_consumer: Optional[_builtins.bool] = None):
|
|
51840
51960
|
"""
|
|
@@ -51851,6 +51971,14 @@ class GetServiceIntegrationClickhouseKafkaUserConfigTableResult(dict):
|
|
|
51851
51971
|
:param _builtins.int num_consumers: The number of consumers per table per replica. Default: `1`.
|
|
51852
51972
|
:param _builtins.int poll_max_batch_size: Maximum amount of messages to be polled in a single Kafka poll. Default: `0`.
|
|
51853
51973
|
:param _builtins.int poll_max_timeout_ms: Timeout in milliseconds for a single poll from Kafka. Takes the value of the stream_flush_interval_ms server setting by default (500ms). Default: `0`.
|
|
51974
|
+
:param _builtins.int producer_batch_num_messages: The maximum number of messages in a batch sent to Kafka. If the number of messages exceeds this value, the batch is sent. Default: `10000`.
|
|
51975
|
+
:param _builtins.int producer_batch_size: The maximum size in bytes of a batch of messages sent to Kafka. If the batch size is exceeded, the batch is sent. Default: `1000000`.
|
|
51976
|
+
:param _builtins.str producer_compression_codec: Enum: `gzip`, `lz4`, `none`, `snappy`, `zstd`. The compression codec to use when sending a batch of messages to Kafka. Default: `none`.
|
|
51977
|
+
:param _builtins.int producer_compression_level: The compression level to use when sending a batch of messages to Kafka. Usable range is algorithm-dependent: [0-9] for gzip; [0-12] for lz4; only 0 for snappy; -1 = codec-dependent default compression level. Default: `-1`.
|
|
51978
|
+
:param _builtins.int producer_linger_ms: The time in milliseconds to wait for additional messages before sending a batch. If the time is exceeded, the batch is sent. Default: `5`.
|
|
51979
|
+
:param _builtins.int producer_queue_buffering_max_kbytes: The maximum size of the buffer in kilobytes before sending. Default: `1048576`.
|
|
51980
|
+
:param _builtins.int producer_queue_buffering_max_messages: The maximum number of messages to buffer before sending. Default: `100000`.
|
|
51981
|
+
:param _builtins.int producer_request_required_acks: The number of acknowledgements the leader broker must receive from ISR brokers before responding to the request: 0=Broker does not send any response/ack to client, -1 will block until message is committed by all in sync replicas (ISRs). Default: `-1`.
|
|
51854
51982
|
:param _builtins.int skip_broken_messages: Skip at least this number of broken messages from Kafka topic per block. Default: `0`.
|
|
51855
51983
|
:param _builtins.bool thread_per_consumer: Provide an independent thread for each consumer. All consumers run in the same thread by default. Default: `false`.
|
|
51856
51984
|
"""
|
|
@@ -51875,6 +52003,22 @@ class GetServiceIntegrationClickhouseKafkaUserConfigTableResult(dict):
|
|
|
51875
52003
|
pulumi.set(__self__, "poll_max_batch_size", poll_max_batch_size)
|
|
51876
52004
|
if poll_max_timeout_ms is not None:
|
|
51877
52005
|
pulumi.set(__self__, "poll_max_timeout_ms", poll_max_timeout_ms)
|
|
52006
|
+
if producer_batch_num_messages is not None:
|
|
52007
|
+
pulumi.set(__self__, "producer_batch_num_messages", producer_batch_num_messages)
|
|
52008
|
+
if producer_batch_size is not None:
|
|
52009
|
+
pulumi.set(__self__, "producer_batch_size", producer_batch_size)
|
|
52010
|
+
if producer_compression_codec is not None:
|
|
52011
|
+
pulumi.set(__self__, "producer_compression_codec", producer_compression_codec)
|
|
52012
|
+
if producer_compression_level is not None:
|
|
52013
|
+
pulumi.set(__self__, "producer_compression_level", producer_compression_level)
|
|
52014
|
+
if producer_linger_ms is not None:
|
|
52015
|
+
pulumi.set(__self__, "producer_linger_ms", producer_linger_ms)
|
|
52016
|
+
if producer_queue_buffering_max_kbytes is not None:
|
|
52017
|
+
pulumi.set(__self__, "producer_queue_buffering_max_kbytes", producer_queue_buffering_max_kbytes)
|
|
52018
|
+
if producer_queue_buffering_max_messages is not None:
|
|
52019
|
+
pulumi.set(__self__, "producer_queue_buffering_max_messages", producer_queue_buffering_max_messages)
|
|
52020
|
+
if producer_request_required_acks is not None:
|
|
52021
|
+
pulumi.set(__self__, "producer_request_required_acks", producer_request_required_acks)
|
|
51878
52022
|
if skip_broken_messages is not None:
|
|
51879
52023
|
pulumi.set(__self__, "skip_broken_messages", skip_broken_messages)
|
|
51880
52024
|
if thread_per_consumer is not None:
|
|
@@ -51984,6 +52128,70 @@ class GetServiceIntegrationClickhouseKafkaUserConfigTableResult(dict):
|
|
|
51984
52128
|
"""
|
|
51985
52129
|
return pulumi.get(self, "poll_max_timeout_ms")
|
|
51986
52130
|
|
|
52131
|
+
@_builtins.property
|
|
52132
|
+
@pulumi.getter(name="producerBatchNumMessages")
|
|
52133
|
+
def producer_batch_num_messages(self) -> Optional[_builtins.int]:
|
|
52134
|
+
"""
|
|
52135
|
+
The maximum number of messages in a batch sent to Kafka. If the number of messages exceeds this value, the batch is sent. Default: `10000`.
|
|
52136
|
+
"""
|
|
52137
|
+
return pulumi.get(self, "producer_batch_num_messages")
|
|
52138
|
+
|
|
52139
|
+
@_builtins.property
|
|
52140
|
+
@pulumi.getter(name="producerBatchSize")
|
|
52141
|
+
def producer_batch_size(self) -> Optional[_builtins.int]:
|
|
52142
|
+
"""
|
|
52143
|
+
The maximum size in bytes of a batch of messages sent to Kafka. If the batch size is exceeded, the batch is sent. Default: `1000000`.
|
|
52144
|
+
"""
|
|
52145
|
+
return pulumi.get(self, "producer_batch_size")
|
|
52146
|
+
|
|
52147
|
+
@_builtins.property
|
|
52148
|
+
@pulumi.getter(name="producerCompressionCodec")
|
|
52149
|
+
def producer_compression_codec(self) -> Optional[_builtins.str]:
|
|
52150
|
+
"""
|
|
52151
|
+
Enum: `gzip`, `lz4`, `none`, `snappy`, `zstd`. The compression codec to use when sending a batch of messages to Kafka. Default: `none`.
|
|
52152
|
+
"""
|
|
52153
|
+
return pulumi.get(self, "producer_compression_codec")
|
|
52154
|
+
|
|
52155
|
+
@_builtins.property
|
|
52156
|
+
@pulumi.getter(name="producerCompressionLevel")
|
|
52157
|
+
def producer_compression_level(self) -> Optional[_builtins.int]:
|
|
52158
|
+
"""
|
|
52159
|
+
The compression level to use when sending a batch of messages to Kafka. Usable range is algorithm-dependent: [0-9] for gzip; [0-12] for lz4; only 0 for snappy; -1 = codec-dependent default compression level. Default: `-1`.
|
|
52160
|
+
"""
|
|
52161
|
+
return pulumi.get(self, "producer_compression_level")
|
|
52162
|
+
|
|
52163
|
+
@_builtins.property
|
|
52164
|
+
@pulumi.getter(name="producerLingerMs")
|
|
52165
|
+
def producer_linger_ms(self) -> Optional[_builtins.int]:
|
|
52166
|
+
"""
|
|
52167
|
+
The time in milliseconds to wait for additional messages before sending a batch. If the time is exceeded, the batch is sent. Default: `5`.
|
|
52168
|
+
"""
|
|
52169
|
+
return pulumi.get(self, "producer_linger_ms")
|
|
52170
|
+
|
|
52171
|
+
@_builtins.property
|
|
52172
|
+
@pulumi.getter(name="producerQueueBufferingMaxKbytes")
|
|
52173
|
+
def producer_queue_buffering_max_kbytes(self) -> Optional[_builtins.int]:
|
|
52174
|
+
"""
|
|
52175
|
+
The maximum size of the buffer in kilobytes before sending. Default: `1048576`.
|
|
52176
|
+
"""
|
|
52177
|
+
return pulumi.get(self, "producer_queue_buffering_max_kbytes")
|
|
52178
|
+
|
|
52179
|
+
@_builtins.property
|
|
52180
|
+
@pulumi.getter(name="producerQueueBufferingMaxMessages")
|
|
52181
|
+
def producer_queue_buffering_max_messages(self) -> Optional[_builtins.int]:
|
|
52182
|
+
"""
|
|
52183
|
+
The maximum number of messages to buffer before sending. Default: `100000`.
|
|
52184
|
+
"""
|
|
52185
|
+
return pulumi.get(self, "producer_queue_buffering_max_messages")
|
|
52186
|
+
|
|
52187
|
+
@_builtins.property
|
|
52188
|
+
@pulumi.getter(name="producerRequestRequiredAcks")
|
|
52189
|
+
def producer_request_required_acks(self) -> Optional[_builtins.int]:
|
|
52190
|
+
"""
|
|
52191
|
+
The number of acknowledgements the leader broker must receive from ISR brokers before responding to the request: 0=Broker does not send any response/ack to client, -1 will block until message is committed by all in sync replicas (ISRs). Default: `-1`.
|
|
52192
|
+
"""
|
|
52193
|
+
return pulumi.get(self, "producer_request_required_acks")
|
|
52194
|
+
|
|
51987
52195
|
@_builtins.property
|
|
51988
52196
|
@pulumi.getter(name="skipBrokenMessages")
|
|
51989
52197
|
def skip_broken_messages(self) -> Optional[_builtins.int]:
|