You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/dist/service_types.yml
+142-1Lines changed: 142 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,9 @@ alloydbomni:
34
34
title: PostgreSQL major version
35
35
type: string
36
36
enum:
37
-
- value: "15"
37
+
- is_deprecated: true
38
+
deprecation_notice: This value is deprecated.
39
+
value: "15"
38
40
backup_hour:
39
41
title: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
40
42
type: integer
@@ -2395,6 +2397,16 @@ kafka:
2395
2397
description: 'This configuration controls whether down-conversion of message formats is enabled to satisfy consume requests. (Default: true)'
2396
2398
type: boolean
2397
2399
example: true
2400
+
log_message_timestamp_after_max_ms:
2401
+
title: log.message.timestamp.after.max.ms
2402
+
description: 'The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. Applies only for messages with timestamps later than the broker''s timestamp. (Default: 9223372036854775807 (Long.MAX_VALUE))'
2403
+
type: integer
2404
+
minimum: 0
2405
+
log_message_timestamp_before_max_ms:
2406
+
title: log.message.timestamp.before.max.ms
2407
+
description: 'The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. Applies only for messages with timestamps earlier than the broker''s timestamp. (Default: 9223372036854775807 (Long.MAX_VALUE))'
2408
+
type: integer
2409
+
minimum: 0
2398
2410
log_message_timestamp_difference_max_ms:
2399
2411
title: log.message.timestamp.difference.max.ms
2400
2412
description: 'The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message (Default: 9223372036854775807 (Long.MAX_VALUE))'
@@ -4521,6 +4533,134 @@ opensearch:
4521
4533
type: string
4522
4534
max_length: 255
4523
4535
example: grafana.example.org
4536
+
custom_keystores:
4537
+
title: OpenSearch custom keystores
4538
+
description: Allow to register custom keystores in OpenSearch
4539
+
type: array
4540
+
items:
4541
+
type: object
4542
+
required:
4543
+
- name
4544
+
- settings
4545
+
- type
4546
+
properties:
4547
+
name:
4548
+
type: string
4549
+
pattern: ^[^\r\n]*$
4550
+
settings:
4551
+
one_of:
4552
+
- type: object
4553
+
required:
4554
+
- account
4555
+
properties:
4556
+
account:
4557
+
title: Account name
4558
+
type: string
4559
+
pattern: ^[^\r\n]*$
4560
+
key:
4561
+
title: Account secret key
4562
+
description: Azure account secret key. One of key or sas_token should be specified
4563
+
type: string
4564
+
pattern: ^[^\r\n]*$
4565
+
_secure: true
4566
+
sas_token:
4567
+
title: SAS token
4568
+
description: A shared access signatures (SAS) token. One of key or sas_token should be specified
description: '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.'
@@ -5618,6 +5758,7 @@ opensearch:
5618
5758
enum:
5619
5759
- value: "1"
5620
5760
- value: "2"
5761
+
- value: "2.19"
5621
5762
private_access:
5622
5763
title: Allow access to selected service ports from private networks
0 commit comments