Skip to content

Commit 53250b1

Browse files
chore(updater): bump pkg/dist/*.yml (2025-04-10) (#300)
Co-authored-by: GitHub <[email protected]>
1 parent 50c3bf3 commit 53250b1

File tree

1 file changed

+120
-57
lines changed

1 file changed

+120
-57
lines changed

pkg/dist/service_types.yml

Lines changed: 120 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,92 @@ alloydbomni:
432432
type: string
433433
enum:
434434
- value: "15"
435+
pgaudit:
436+
title: PGAudit settings
437+
description: System-wide settings for the pgaudit extension
438+
type: object
439+
properties:
440+
feature_enabled:
441+
title: Enable pgaudit extension.
442+
description: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved.
443+
type: boolean
444+
default: false
445+
log:
446+
title: Specifies which classes of statements will be logged by session audit logging.
447+
type: array
448+
items:
449+
type: string
450+
enum:
451+
- value: all
452+
- value: ddl
453+
- value: function
454+
- value: misc
455+
- value: misc_set
456+
- value: read
457+
- value: role
458+
- value: write
459+
log_catalog:
460+
title: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog.
461+
type: boolean
462+
default: true
463+
log_client:
464+
title: Specifies whether log messages will be visible to a client process such as psql.
465+
type: boolean
466+
default: false
467+
log_level:
468+
title: Specifies the log level that will be used for log entries.
469+
type: string
470+
default: log
471+
enum:
472+
- value: debug1
473+
- value: debug2
474+
- value: debug3
475+
- value: debug4
476+
- value: debug5
477+
- value: info
478+
- value: notice
479+
- value: warning
480+
- value: log
481+
log_max_string_length:
482+
title: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation.
483+
type: integer
484+
default: "-1"
485+
minimum: -1
486+
maximum: 102400
487+
log_nested_statements:
488+
title: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun.
489+
type: boolean
490+
default: true
491+
log_parameter:
492+
title: Specifies that audit logging should include the parameters that were passed with the statement.
493+
type: boolean
494+
default: false
495+
log_parameter_max_size:
496+
title: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with <long param suppressed>.
497+
type: integer
498+
default: "0"
499+
log_relation:
500+
title: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement.
501+
type: boolean
502+
default: false
503+
log_rows:
504+
title: Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field.
505+
type: boolean
506+
default: false
507+
log_statement:
508+
title: Specifies whether logging will include the statement text and parameters (if enabled).
509+
type: boolean
510+
default: true
511+
log_statement_once:
512+
title: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry.
513+
type: boolean
514+
default: false
515+
role:
516+
title: Specifies the master role to use for object audit logging.
517+
type: string
518+
max_length: 64
519+
pattern: ^[_A-Za-z0-9][-._A-Za-z0-9]{0,63}$
520+
user_error: Must consist of alpha-numeric characters, dots, underscores or dashes, may not start with dash or dot, max 64 characters
435521
pgbouncer:
436522
title: PGBouncer connection pooling settings
437523
description: System-wide settings for pgbouncer.
@@ -2584,6 +2670,31 @@ kafka:
25842670
minimum: 1
25852671
maximum: 2.147483647e+09
25862672
example: "10000"
2673+
kafka_connect_plugin_versions:
2674+
title: Kafka Connect plugins
2675+
description: The plugin selected by the user
2676+
type: array
2677+
items:
2678+
title: A Kafka Connect plugin
2679+
type: object
2680+
required:
2681+
- plugin_name
2682+
- version
2683+
properties:
2684+
plugin_name:
2685+
title: Plugin name
2686+
description: The name of the plugin
2687+
type: string
2688+
max_length: 128
2689+
pattern: ^[^\r\n]*$
2690+
example: debezium-connector
2691+
version:
2692+
title: Plugin version
2693+
description: The version of the plugin
2694+
type: string
2695+
max_length: 128
2696+
pattern: ^[^\r\n]*$
2697+
example: 2.5.0
25872698
kafka_connect_secret_providers:
25882699
title: Kafka Connect secret providers
25892700
description: 'Configure external secret providers in order to reference external secrets in connector configuration. Currently Hashicorp Vault (provider: vault, auth_method: token) and AWS Secrets Manager (provider: aws, auth_method: credentials) are supported. Secrets can be referenced in connector config with ${<provider_name>:<secret_path>:<key_name>}'
@@ -6168,22 +6279,16 @@ pg:
61686279
- value: "16"
61696280
- value: "17"
61706281
pgaudit:
6171-
is_deprecated: true
6172-
deprecation_notice: This property is deprecated.
61736282
title: PGAudit settings
61746283
description: System-wide settings for the pgaudit extension
61756284
type: object
61766285
properties:
61776286
feature_enabled:
6178-
is_deprecated: true
6179-
deprecation_notice: This property is deprecated.
61806287
title: Enable pgaudit extension.
61816288
description: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved.
61826289
type: boolean
61836290
default: false
61846291
log:
6185-
is_deprecated: true
6186-
deprecation_notice: This property is deprecated.
61876292
title: Specifies which classes of statements will be logged by session audit logging.
61886293
type: array
61896294
items:
@@ -6198,104 +6303,62 @@ pg:
61986303
- value: role
61996304
- value: write
62006305
log_catalog:
6201-
is_deprecated: true
6202-
deprecation_notice: This property is deprecated.
62036306
title: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog.
62046307
type: boolean
62056308
default: true
62066309
log_client:
6207-
is_deprecated: true
6208-
deprecation_notice: This property is deprecated.
62096310
title: Specifies whether log messages will be visible to a client process such as psql.
62106311
type: boolean
62116312
default: false
62126313
log_level:
6213-
is_deprecated: true
6214-
deprecation_notice: This property is deprecated.
62156314
title: Specifies the log level that will be used for log entries.
62166315
type: string
62176316
default: log
62186317
enum:
6219-
- is_deprecated: true
6220-
deprecation_notice: This value is deprecated.
6221-
value: debug1
6222-
- is_deprecated: true
6223-
deprecation_notice: This value is deprecated.
6224-
value: debug2
6225-
- is_deprecated: true
6226-
deprecation_notice: This value is deprecated.
6227-
value: debug3
6228-
- is_deprecated: true
6229-
deprecation_notice: This value is deprecated.
6230-
value: debug4
6231-
- is_deprecated: true
6232-
deprecation_notice: This value is deprecated.
6233-
value: debug5
6234-
- is_deprecated: true
6235-
deprecation_notice: This value is deprecated.
6236-
value: info
6237-
- is_deprecated: true
6238-
deprecation_notice: This value is deprecated.
6239-
value: notice
6240-
- is_deprecated: true
6241-
deprecation_notice: This value is deprecated.
6242-
value: warning
6243-
- is_deprecated: true
6244-
deprecation_notice: This value is deprecated.
6245-
value: log
6318+
- value: debug1
6319+
- value: debug2
6320+
- value: debug3
6321+
- value: debug4
6322+
- value: debug5
6323+
- value: info
6324+
- value: log
6325+
- value: notice
6326+
- value: warning
62466327
log_max_string_length:
6247-
is_deprecated: true
6248-
deprecation_notice: This property is deprecated.
62496328
title: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation.
62506329
type: integer
62516330
default: "-1"
62526331
minimum: -1
62536332
maximum: 102400
62546333
log_nested_statements:
6255-
is_deprecated: true
6256-
deprecation_notice: This property is deprecated.
62576334
title: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun.
62586335
type: boolean
62596336
default: true
62606337
log_parameter:
6261-
is_deprecated: true
6262-
deprecation_notice: This property is deprecated.
62636338
title: Specifies that audit logging should include the parameters that were passed with the statement.
62646339
type: boolean
62656340
default: false
62666341
log_parameter_max_size:
6267-
is_deprecated: true
6268-
deprecation_notice: This property is deprecated.
62696342
title: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with <long param suppressed>.
62706343
type: integer
62716344
default: "0"
62726345
log_relation:
6273-
is_deprecated: true
6274-
deprecation_notice: This property is deprecated.
62756346
title: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement.
62766347
type: boolean
62776348
default: false
62786349
log_rows:
6279-
is_deprecated: true
6280-
deprecation_notice: This property is deprecated.
62816350
title: Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field.
62826351
type: boolean
62836352
default: false
62846353
log_statement:
6285-
is_deprecated: true
6286-
deprecation_notice: This property is deprecated.
62876354
title: Specifies whether logging will include the statement text and parameters (if enabled).
62886355
type: boolean
62896356
default: true
62906357
log_statement_once:
6291-
is_deprecated: true
6292-
deprecation_notice: This property is deprecated.
62936358
title: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry.
62946359
type: boolean
62956360
default: false
62966361
role:
6297-
is_deprecated: true
6298-
deprecation_notice: This property is deprecated.
62996362
title: Specifies the master role to use for object audit logging.
63006363
type: string
63016364
max_length: 64

0 commit comments

Comments
 (0)