ListHosts
Retrieves a list of hosts for the specified cluster.
- TypeScript
- Python
import { cloudApi, serviceClients, Session } from "@yandex-cloud/nodejs-sdk";
const ListClusterHostsRequest =
cloudApi.dataproc.cluster_service.ListClusterHostsRequest;
(async () => {
const authToken = process.env["YC_OAUTH_TOKEN"];
const session = new Session({ oauthToken: authToken });
const client = session.client(serviceClients.ClusterServiceClient);
const result = await client.listHosts(
ListClusterHostsRequest.fromPartial({
// clusterId: "clusterId",
// pageSize: 0,
// pageToken: "pageToken",
// filter: "filter"
})
);
console.log(result);
})();
import os
import grpc
import yandexcloud
from yandex.cloud.dataproc.v1.cluster_service_pb2_grpc import ClusterServiceStub
from yandex.cloud.dataproc.v1.cluster_service_pb2 import ListClusterHostsRequest
token = os.getenv("YC_OAUTH_TOKEN")
sdk = yandexcloud.SDK(token=token)
service = sdk.client(ClusterServiceStub)
response = service.ListHosts(
ListClusterHostsRequest(
# cluster_id = "clusterId",
# page_size = 0,
# page_token = "pageToken",
# filter = "filter"
)
)
print(response)
ListClusterHostsRequest
clusterId
: string
ID of the PostgreSQL cluster. To get the PostgreSQL cluster ID use a ClusterService.List request.
pageSize
: int64
The maximum number of results per page to return. If the number of available results is larger than page_size, the service returns a ListClusterHostsResponse.next_page_token that can be used to get the next page of results in subsequent list requests.
pageToken
: string
Page token. To get the next page of results, set page_token to the ListClusterHostsResponse.next_page_token returned by the previous list request.
ListClusterHostsResponse
hosts
: Host
List of Host resources.
nextPageToken
: string
This token allows you to get the next page of results for list requests. If the number of results is larger than ListClusterHostsRequest.page_size, use the next_page_token as the value for the ListClusterHostsRequest.page_token query parameter in the next list request. Each subsequent list request will have its own next_page_token to continue paging through the results.
Host
Role
ROLE_UNKNOWN
Role of the host in the cluster is unknown. Default value.
MASTER
Host is the master PostgreSQL server in the cluster.
REPLICA
Host is a replica (standby) PostgreSQL server in the cluster.
ReplicaType
REPLICA_TYPE_UNKNOWN
Replica type is unknown (we have no data) or it's master
ASYNC
SYNC
QUORUM
Health
HEALTH_UNKNOWN
Health of the host is unknown. Default value.
ALIVE
The host is performing all its functions normally.
DEAD
The host is inoperable, and cannot perform any of its essential functions.
DEGRADED
The host is degraded, and can perform only some of its essential functions.
READONLY
The host is alive, but in read-only mode.
name
: string
Name of the PostgreSQL host. The host name is assigned by MDB at creation time, and cannot be changed. 1-63 characters long.
The name is unique across all MDB hosts that exist on the platform, as it defines the FQDN of the host.
clusterId
: string
ID of the PostgreSQL host. The ID is assigned by MDB at creation time.
zoneId
: string
ID of the availability zone where the PostgreSQL host resides.
resources
: Resources
Resources allocated to the PostgreSQL host.
role
: Role
Role of the host in the cluster. If the field has default value, it is not returned in the response.
health
: Health
Aggregated health of the host. If the field has default value, it is not returned in the response.
services
: Service
Services provided by the host.
subnetId
: string
ID of the subnet that the host belongs to.
replicationSource
: string
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. Higher value means 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.
config
: HostConfig
Configuration of a PostgreSQL server for the host.
assignPublicIp
: bool
Flag showing public IP assignment status to this host.
replicaType
: ReplicaType
Resources
resourcePresetId
: string
ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.
diskSize
: int64
Volume of the storage available to a host, in bytes.
diskTypeId
: string
Type of the storage environment for the host. Possible values:
- network-hdd - network HDD drive,
- network-ssd - network SSD drive,
- local-ssd - local SSD storage.
Service
Type
TYPE_UNSPECIFIED
Service type of the host is unspecified. Default value.
POSTGRESQL
The host is a PostgreSQL server.
POOLER
The host is a PgBouncer server.
Health
HEALTH_UNKNOWN
Health of the server is unknown. Default value.
ALIVE
The server is working normally.
DEAD
The server is dead or unresponsive.
READONLY
The server is in read-only mode.
type
: Type
Type of the service provided by the host. If the field has default value, it is not returned in the response.
health
: Health
Aggregated health of the service. If the field has default value, it is not returned in the response.
HostConfig
One of postgresqlConfig
Configuration of a PostgreSQL server for the host.
postgresqlConfig_9_6
: config.PostgresqlHostConfig9_6Configuration for a host with PostgreSQL 9.6 server deployed.
postgresqlConfig_10_1c
: config.PostgresqlHostConfig10_1CConfiguration for a host with PostgreSQL 10 1C server deployed.
postgresqlConfig_10
: config.PostgresqlHostConfig10Configuration for a host with PostgreSQL 10 server deployed.
postgresqlConfig_11
: config.PostgresqlHostConfig11Configuration for a host with PostgreSQL 11 server deployed.
postgresqlConfig_11_1c
: config.PostgresqlHostConfig11_1CConfiguration for a host with PostgreSQL 11 1C server deployed.
postgresqlConfig_12
: config.PostgresqlHostConfig12Configuration for a host with PostgreSQL 12 server deployed.
postgresqlConfig_12_1c
: config.PostgresqlHostConfig12_1CConfiguration for a host with PostgreSQL 12 1C server deployed.
postgresqlConfig_13
: config.PostgresqlHostConfig13Configuration for a host with PostgreSQL 13 server deployed.
postgresqlConfig_13_1c
: config.PostgresqlHostConfig13_1CConfiguration for a host with PostgreSQL 13 1C server deployed.
postgresqlConfig_14
: config.PostgresqlHostConfig14Configuration for a host with PostgreSQL 14 server deployed.
postgresqlConfig_14_1c
: config.PostgresqlHostConfig14_1CConfiguration for a host with PostgreSQL 14 1C server deployed.
postgresqlConfig_15
: config.PostgresqlHostConfig15Configuration for a host with PostgreSQL 15 server deployed.
postgresqlConfig_15_1c
: config.PostgresqlHostConfig15_1CConfiguration for a host with PostgreSQL 15 1C server deployed.
postgresqlConfig_16
: config.PostgresqlHostConfig16Configuration for a host with PostgreSQL 16 server deployed.
postgresqlConfig_16_1c
: config.PostgresqlHostConfig16_1CConfiguration 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.