Skip to content

Commit a5b7fa3

Browse files
chore(updater): bump pkg/dist/*.yml (2025-07-22) (#340)
Co-authored-by: GitHub <[email protected]>
1 parent 8b58c94 commit a5b7fa3

File tree

1 file changed

+78
-30
lines changed

1 file changed

+78
-30
lines changed

pkg/dist/service_types.yml

Lines changed: 78 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ alloydbomni:
440440
- value: "15"
441441
pgaudit:
442442
title: PGAudit settings
443-
description: System-wide settings for the pgaudit extension
443+
description: System-wide settings for the pgaudit extension.
444444
type: object
445445
properties:
446446
feature_enabled:
@@ -449,7 +449,8 @@ alloydbomni:
449449
type: boolean
450450
default: false
451451
log:
452-
title: Specifies which classes of statements will be logged by session audit logging.
452+
title: Log
453+
description: Specifies which classes of statements will be logged by session audit logging.
453454
type: array
454455
items:
455456
type: string
@@ -463,15 +464,20 @@ alloydbomni:
463464
- value: role
464465
- value: write
465466
log_catalog:
466-
title: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog.
467+
title: Log Catalog
468+
description: |-
469+
Specifies that session logging should be enabled in the case where all relations
470+
in a statement are in pg_catalog.
467471
type: boolean
468472
default: true
469473
log_client:
470-
title: Specifies whether log messages will be visible to a client process such as psql.
474+
title: Log Client
475+
description: Specifies whether log messages will be visible to a client process such as psql.
471476
type: boolean
472477
default: false
473478
log_level:
474-
title: Specifies the log level that will be used for log entries.
479+
title: Log level
480+
description: Specifies the log level that will be used for log entries.
475481
type: string
476482
default: log
477483
enum:
@@ -485,41 +491,59 @@ alloydbomni:
485491
- value: notice
486492
- value: warning
487493
log_max_string_length:
488-
title: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation.
494+
title: Log Max String Length
495+
description: |-
496+
Crop parameters representation and whole statements if they exceed this threshold.
497+
A (default) value of -1 disable the truncation.
489498
type: integer
490499
default: "-1"
491500
minimum: -1
492501
maximum: 102400
493502
log_nested_statements:
494-
title: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun.
503+
title: Log Nested Statements
504+
description: |-
505+
This GUC allows to turn off logging nested statements, that is, statements that are
506+
executed as part of another ExecutorRun.
495507
type: boolean
496508
default: true
497509
log_parameter:
498-
title: Specifies that audit logging should include the parameters that were passed with the statement.
510+
title: Log Parameter
511+
description: Specifies that audit logging should include the parameters that were passed with the statement.
499512
type: boolean
500513
default: false
501514
log_parameter_max_size:
502-
title: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with <long param suppressed>.
515+
title: Log Parameter Max Size
516+
description: |-
517+
Specifies that parameter values longer than this setting (in bytes) should not be logged,
518+
but replaced with <long param suppressed>.
503519
type: integer
504520
default: "0"
505521
log_relation:
506-
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.
522+
title: Log Relation
523+
description: |-
524+
Specifies whether session audit logging should create a separate log entry
525+
for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement.
507526
type: boolean
508527
default: false
509528
log_rows:
510-
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.
529+
title: Log Rows
511530
type: boolean
512531
default: false
513532
log_statement:
514-
title: Specifies whether logging will include the statement text and parameters (if enabled).
533+
title: Log Statement
534+
description: Specifies whether logging will include the statement text and parameters (if enabled).
515535
type: boolean
516536
default: true
517537
log_statement_once:
518-
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.
538+
title: Log Statement Once
539+
description: |-
540+
Specifies whether logging will include the statement text and parameters with
541+
the first log entry for a statement/substatement combination or with every entry.
519542
type: boolean
520543
default: false
521544
role:
522-
title: Specifies the master role to use for object audit logging.
545+
title: Role
546+
description: Specifies the master role to use for object audit logging.
523547
type: string
524548
max_length: 64
525549
pattern: ^[_A-Za-z0-9][-._A-Za-z0-9]{0,63}$
@@ -611,7 +635,7 @@ alloydbomni:
611635
max_failover_replication_time_lag: 60
612636
properties:
613637
max_failover_replication_time_lag:
614-
title: max_failover_replication_time_lag
638+
title: Max Failover Replication Time Lag
615639
description: Number of seconds of master unavailability before triggering database failover to standby
616640
type: integer
617641
default: "60"
@@ -6403,7 +6427,7 @@ pg:
64036427
- value: "17"
64046428
pgaudit:
64056429
title: PGAudit settings
6406-
description: System-wide settings for the pgaudit extension
6430+
description: System-wide settings for the pgaudit extension.
64076431
type: object
64086432
properties:
64096433
feature_enabled:
@@ -6412,7 +6436,8 @@ pg:
64126436
type: boolean
64136437
default: false
64146438
log:
6415-
title: Specifies which classes of statements will be logged by session audit logging.
6439+
title: Log
6440+
description: Specifies which classes of statements will be logged by session audit logging.
64166441
type: array
64176442
items:
64186443
type: string
@@ -6426,15 +6451,20 @@ pg:
64266451
- value: role
64276452
- value: write
64286453
log_catalog:
6429-
title: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog.
6454+
title: Log Catalog
6455+
description: |-
6456+
Specifies that session logging should be enabled in the case where all relations
6457+
in a statement are in pg_catalog.
64306458
type: boolean
64316459
default: true
64326460
log_client:
6433-
title: Specifies whether log messages will be visible to a client process such as psql.
6461+
title: Log Client
6462+
description: Specifies whether log messages will be visible to a client process such as psql.
64346463
type: boolean
64356464
default: false
64366465
log_level:
6437-
title: Specifies the log level that will be used for log entries.
6466+
title: Log level
6467+
description: Specifies the log level that will be used for log entries.
64386468
type: string
64396469
default: log
64406470
enum:
@@ -6448,41 +6478,59 @@ pg:
64486478
- value: notice
64496479
- value: warning
64506480
log_max_string_length:
6451-
title: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation.
6481+
title: Log Max String Length
6482+
description: |-
6483+
Crop parameters representation and whole statements if they exceed this threshold.
6484+
A (default) value of -1 disable the truncation.
64526485
type: integer
64536486
default: "-1"
64546487
minimum: -1
64556488
maximum: 102400
64566489
log_nested_statements:
6457-
title: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun.
6490+
title: Log Nested Statements
6491+
description: |-
6492+
This GUC allows to turn off logging nested statements, that is, statements that are
6493+
executed as part of another ExecutorRun.
64586494
type: boolean
64596495
default: true
64606496
log_parameter:
6461-
title: Specifies that audit logging should include the parameters that were passed with the statement.
6497+
title: Log Parameter
6498+
description: Specifies that audit logging should include the parameters that were passed with the statement.
64626499
type: boolean
64636500
default: false
64646501
log_parameter_max_size:
6465-
title: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with <long param suppressed>.
6502+
title: Log Parameter Max Size
6503+
description: |-
6504+
Specifies that parameter values longer than this setting (in bytes) should not be logged,
6505+
but replaced with <long param suppressed>.
64666506
type: integer
64676507
default: "0"
64686508
log_relation:
6469-
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.
6509+
title: Log Relation
6510+
description: |-
6511+
Specifies whether session audit logging should create a separate log entry
6512+
for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement.
64706513
type: boolean
64716514
default: false
64726515
log_rows:
6473-
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.
6516+
title: Log Rows
64746517
type: boolean
64756518
default: false
64766519
log_statement:
6477-
title: Specifies whether logging will include the statement text and parameters (if enabled).
6520+
title: Log Statement
6521+
description: Specifies whether logging will include the statement text and parameters (if enabled).
64786522
type: boolean
64796523
default: true
64806524
log_statement_once:
6481-
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.
6525+
title: Log Statement Once
6526+
description: |-
6527+
Specifies whether logging will include the statement text and parameters with
6528+
the first log entry for a statement/substatement combination or with every entry.
64826529
type: boolean
64836530
default: false
64846531
role:
6485-
title: Specifies the master role to use for object audit logging.
6532+
title: Role
6533+
description: Specifies the master role to use for object audit logging.
64866534
type: string
64876535
max_length: 64
64886536
pattern: ^[_A-Za-z0-9][-._A-Za-z0-9]{0,63}$
@@ -6574,7 +6622,7 @@ pg:
65746622
max_failover_replication_time_lag: 60
65756623
properties:
65766624
max_failover_replication_time_lag:
6577-
title: max_failover_replication_time_lag
6625+
title: Max Failover Replication Time Lag
65786626
description: Number of seconds of master unavailability before triggering database failover to standby
65796627
type: integer
65806628
default: "60"

0 commit comments

Comments
 (0)