Skip to main content

AddHosts

Creates new hosts for a cluster.

import {
cloudApi,
serviceClients,
Session,
waitForOperation,
} from "@yandex-cloud/nodejs-sdk";

const AddClusterHostsRequest =
cloudApi.mdb.clickhouse_cluster_service.AddClusterHostsRequest;
const Host_Type = cloudApi.mdb.clickhouse_cluster.Host_Type;

(async () => {
const authToken = process.env["YC_OAUTH_TOKEN"];
const session = new Session({ oauthToken: authToken });
const client = session.client(serviceClients.ClusterServiceClient);

const operation = await client.addHosts(
AddClusterHostsRequest.fromPartial({
clusterId: "clusterId",
// hostSpecs: [{
// zoneId: "zoneId",
// type: Host_Type.CLICKHOUSE,
// subnetId: "subnetId",
// assignPublicIp: true,
// shardName: "shardName"
// }],
// copySchema: {
// value: true
// }
})
);
await waitForOperation(operation, session);
})();

AddClusterHostsRequest

clusterId : string

ID of the PostgreSQL cluster to add hosts to. To get the PostgreSQL cluster ID, use a ClusterService.List request.

hostSpecs : HostSpec

Configurations for PostgreSQL hosts that should be added to the cluster.

HostSpec

zoneId : string

ID of the availability zone where the host resides. To get a list of available zones, use the yandex.cloud.compute.v1.ZoneService.List request.

subnetId : string

ID of the subnet that the host should belong to. This subnet should be a part of the network that the cluster belongs to. The ID of the network is set in the field Cluster.network_id.

assignPublicIp : bool

Whether the host should get a public IP address on creation.

After a host has been created, this setting cannot be changed. To remove an assigned public IP, or to assign a public IP to a host without one, recreate the host with assign_public_ip set as needed.

Possible values:

  • false - don't assign a public IP to the host.
  • true - the host should have a public IP address.
replicationSource : string

Host.name of the host to be used as the replication source (for cascading replication).

priority : google.protobuf.Int64Value

Priority of the host as a replica. A higher value corresponds to higher priority.

The host with the highest priority is the synchronous replica. All others are asynchronous. The synchronous replica replaces the master when needed.

When a replica becomes the master, its priority is ignored.

configSpec : ConfigHostSpec

Configuration of a PostgreSQL server for the host.

ConfigHostSpec

One of postgresqlConfig

  • postgresqlConfig_9_6 : config.PostgresqlHostConfig9_6

    Configuration for a host with PostgreSQL 9.6 server deployed.

  • postgresqlConfig_10_1c : config.PostgresqlHostConfig10_1C

    Configuration for a host with PostgreSQL 10 1C server deployed.

  • postgresqlConfig_10 : config.PostgresqlHostConfig10

    Configuration for a host with PostgreSQL 10 server deployed.

  • postgresqlConfig_11 : config.PostgresqlHostConfig11

    Configuration for a host with PostgreSQL 11 server deployed.

  • postgresqlConfig_11_1c : config.PostgresqlHostConfig11_1C

    Configuration for a host with PostgreSQL 11 1C server deployed.

  • postgresqlConfig_12 : config.PostgresqlHostConfig12

    Configuration for a host with PostgreSQL 12 server deployed.

  • postgresqlConfig_12_1c : config.PostgresqlHostConfig12_1C

    Configuration for a host with PostgreSQL 12 1C server deployed.

  • postgresqlConfig_13 : config.PostgresqlHostConfig13

    Configuration for a host with PostgreSQL 13 server deployed.

  • postgresqlConfig_13_1c : config.PostgresqlHostConfig13_1C

    Configuration for a host with PostgreSQL 13 1C server deployed.

  • postgresqlConfig_14 : config.PostgresqlHostConfig14

    Configuration for a host with PostgreSQL 14 server deployed.

  • postgresqlConfig_14_1c : config.PostgresqlHostConfig14_1C

    Configuration for a host with PostgreSQL 14 1C server deployed.

  • postgresqlConfig_15 : config.PostgresqlHostConfig15

    Configuration for a host with PostgreSQL 15 server deployed.

  • postgresqlConfig_15_1c : config.PostgresqlHostConfig15_1C

    Configuration for a host with PostgreSQL 15 1C server deployed.

  • postgresqlConfig_16 : config.PostgresqlHostConfig16

    Configuration for a host with PostgreSQL 16 server deployed.

  • postgresqlConfig_16_1c : config.PostgresqlHostConfig16_1C

    Configuration for a host with PostgreSQL 16 1C server deployed.

PostgresqlHostConfig9_6

Options and structure of PostgresqlHostConfig reflects parameters of a PostgreSQL configuration file. Detailed description is available in PostgreSQL documentation.

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

replacementSortTuples : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
sqlInheritance : google.protobuf.BoolValue

This option has been removed in PostgreSQL 10.

effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig10_1C

Options and structure of PostgresqlHostConfig reflects PostgreSQL configuration file parameters whose detailed description is available in PostgreSQL documentation.

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

replacementSortTuples : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig10

Options and structure of PostgresqlHostConfig reflects PostgreSQL configuration file parameters whose detailed description is available in PostgreSQL documentation.

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

replacementSortTuples : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig11

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig11_1C

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig12

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig12_1C

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig13

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig13_1C

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig14

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig14_1C

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig15

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig15_1C

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig16

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

DebugParallelQuery
  • DEBUG_PARALLEL_QUERY_UNSPECIFIED

  • DEBUG_PARALLEL_QUERY_ON

  • DEBUG_PARALLEL_QUERY_OFF

  • DEBUG_PARALLEL_QUERY_REGRESS

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_INFO

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
debugParallelQuery : DebugParallelQuery
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

PostgresqlHostConfig16_1C

Options and structure of PostgresqlConfig reflects PostgreSQL configuration file parameters which detailed description is available in PostgreSQL documentation.

BackslashQuote
  • BACKSLASH_QUOTE_UNSPECIFIED

  • BACKSLASH_QUOTE

  • BACKSLASH_QUOTE_ON

  • BACKSLASH_QUOTE_OFF

  • BACKSLASH_QUOTE_SAFE_ENCODING

ByteaOutput
  • BYTEA_OUTPUT_UNSPECIFIED

  • BYTEA_OUTPUT_HEX

  • BYTEA_OUTPUT_ESCAPED

ConstraintExclusion
  • CONSTRAINT_EXCLUSION_UNSPECIFIED

  • CONSTRAINT_EXCLUSION_ON

  • CONSTRAINT_EXCLUSION_OFF

  • CONSTRAINT_EXCLUSION_PARTITION

DebugParallelQuery
  • DEBUG_PARALLEL_QUERY_UNSPECIFIED

  • DEBUG_PARALLEL_QUERY_ON

  • DEBUG_PARALLEL_QUERY_OFF

  • DEBUG_PARALLEL_QUERY_REGRESS

ForceParallelMode
  • FORCE_PARALLEL_MODE_UNSPECIFIED

  • FORCE_PARALLEL_MODE_ON

  • FORCE_PARALLEL_MODE_OFF

  • FORCE_PARALLEL_MODE_REGRESS

LogErrorVerbosity
  • LOG_ERROR_VERBOSITY_UNSPECIFIED

  • LOG_ERROR_VERBOSITY_TERSE

  • LOG_ERROR_VERBOSITY_DEFAULT

  • LOG_ERROR_VERBOSITY_VERBOSE

LogLevel
  • LOG_LEVEL_UNSPECIFIED

  • LOG_LEVEL_DEBUG5

  • LOG_LEVEL_DEBUG4

  • LOG_LEVEL_DEBUG3

  • LOG_LEVEL_DEBUG2

  • LOG_LEVEL_DEBUG1

  • LOG_LEVEL_INFO

  • LOG_LEVEL_LOG

  • LOG_LEVEL_NOTICE

  • LOG_LEVEL_WARNING

  • LOG_LEVEL_ERROR

  • LOG_LEVEL_FATAL

  • LOG_LEVEL_PANIC

LogStatement
  • LOG_STATEMENT_UNSPECIFIED

  • LOG_STATEMENT_NONE

  • LOG_STATEMENT_DDL

  • LOG_STATEMENT_MOD

  • LOG_STATEMENT_ALL

TransactionIsolation
  • TRANSACTION_ISOLATION_UNSPECIFIED

  • TRANSACTION_ISOLATION_READ_UNCOMMITTED

  • TRANSACTION_ISOLATION_READ_COMMITTED

  • TRANSACTION_ISOLATION_REPEATABLE_READ

  • TRANSACTION_ISOLATION_SERIALIZABLE

XmlBinary
  • XML_BINARY_UNSPECIFIED

  • XML_BINARY_BASE64

  • XML_BINARY_HEX

XmlOption
  • XML_OPTION_UNSPECIFIED

  • XML_OPTION_DOCUMENT

  • XML_OPTION_CONTENT

recoveryMinApplyDelay : google.protobuf.Int64Value

in milliseconds.

sharedBuffers : google.protobuf.Int64Value

in bytes.

tempBuffers : google.protobuf.Int64Value

in bytes.

workMem : google.protobuf.Int64Value

in bytes.

tempFileLimit : google.protobuf.Int64Value

in bytes.

backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value

in milliseconds.

constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
debugParallelQuery : DebugParallelQuery
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value

in milliseconds.

logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value

in milliseconds.

lockTimeout : google.protobuf.Int64Value

in milliseconds.

idleInTransactionSessionTimeout : google.protobuf.Int64Value

in milliseconds.

byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value

in bytes.

deadlockTimeout : google.protobuf.Int64Value

in milliseconds.

maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value

Operation

An Operation resource. For more information, see Operation.

id : string

ID of the operation.

description : string

Description of the operation. 0-256 characters long.

createdAt : google.protobuf.Timestamp

Creation timestamp.

createdBy : string

ID of the user or service account who initiated the operation.

modifiedAt : google.protobuf.Timestamp

The time when the Operation resource was last modified.

done : bool

If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.

metadata : google.protobuf.Any

Service-specific metadata associated with the operation. It typically contains the ID of the target resource that the operation is performed on. Any method that returns a long-running operation should document the metadata type, if any.

One of result

The operation result. If done == false and there was no failure detected, neither error nor response is set. If done == false and there was a failure detected, error is set. If done == true, exactly one of error or response is set.

  • error : google.rpc.Status

    The error result of the operation in case of failure or cancellation.

  • response : google.protobuf.Any
    The normal response of the operation in case of success.

    If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is the standard Create/Update, the response should be the target resource of the operation. Any method that returns a long-running operation should document the response type, if any.