diff options
author | iddqd <iddqd@yandex-team.com> | 2024-06-11 10:12:13 +0300 |
---|---|---|
committer | iddqd <iddqd@yandex-team.com> | 2024-06-11 10:22:43 +0300 |
commit | 07f57e35443ab7f09471caf2dbf1afbcced4d9f7 (patch) | |
tree | a4a7b66ead62e83fa988a2ec2ce6576311c1f4b1 /contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/postgresql/v1/config/host13.proto | |
parent | 6db3b8ca95e44179e48306a58656fb1f9317d9c3 (diff) | |
download | ydb-07f57e35443ab7f09471caf2dbf1afbcced4d9f7.tar.gz |
add contrib/python/yandexcloud to import
03b7d3cad2237366b55b393e18d4dc5eb222798c
Diffstat (limited to 'contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/postgresql/v1/config/host13.proto')
-rw-r--r-- | contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/postgresql/v1/config/host13.proto | 265 |
1 files changed, 265 insertions, 0 deletions
diff --git a/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/postgresql/v1/config/host13.proto b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/postgresql/v1/config/host13.proto new file mode 100644 index 0000000000..f97831ef0d --- /dev/null +++ b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/postgresql/v1/config/host13.proto @@ -0,0 +1,265 @@ +syntax = "proto3"; + +package yandex.cloud.mdb.postgresql.v1.config; + +import "google/protobuf/wrappers.proto"; +import "yandex/cloud/validation.proto"; + +option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/mdb/postgresql/v1/config;postgresql"; +option java_package = "yandex.cloud.api.mdb.postgresql.v1.config"; + +// Options and structure of `PostgresqlConfig` reflects PostgreSQL configuration file +// parameters which detailed description is available in +// [PostgreSQL documentation](https://www.postgresql.org/docs/11/runtime-config.html). +message PostgresqlHostConfig13 { + reserved 52 to 53; + enum BackslashQuote { + BACKSLASH_QUOTE_UNSPECIFIED = 0; + + BACKSLASH_QUOTE = 1; + + BACKSLASH_QUOTE_ON = 2; + + BACKSLASH_QUOTE_OFF = 3; + + BACKSLASH_QUOTE_SAFE_ENCODING = 4; + } + + enum ByteaOutput { + BYTEA_OUTPUT_UNSPECIFIED = 0; + + BYTEA_OUTPUT_HEX = 1; + + BYTEA_OUTPUT_ESCAPED = 2; + } + + enum ConstraintExclusion { + CONSTRAINT_EXCLUSION_UNSPECIFIED = 0; + + CONSTRAINT_EXCLUSION_ON = 1; + + CONSTRAINT_EXCLUSION_OFF = 2; + + CONSTRAINT_EXCLUSION_PARTITION = 3; + } + + enum ForceParallelMode { + FORCE_PARALLEL_MODE_UNSPECIFIED = 0; + + FORCE_PARALLEL_MODE_ON = 1; + + FORCE_PARALLEL_MODE_OFF = 2; + + FORCE_PARALLEL_MODE_REGRESS = 3; + } + + enum LogErrorVerbosity { + LOG_ERROR_VERBOSITY_UNSPECIFIED = 0; + + LOG_ERROR_VERBOSITY_TERSE = 1; + + LOG_ERROR_VERBOSITY_DEFAULT = 2; + + LOG_ERROR_VERBOSITY_VERBOSE = 3; + } + + enum LogLevel { + LOG_LEVEL_UNSPECIFIED = 0; + + LOG_LEVEL_DEBUG5 = 1; + + LOG_LEVEL_DEBUG4 = 2; + + LOG_LEVEL_DEBUG3 = 3; + + LOG_LEVEL_DEBUG2 = 4; + + LOG_LEVEL_DEBUG1 = 5; + + LOG_LEVEL_LOG = 6; + + LOG_LEVEL_NOTICE = 7; + + LOG_LEVEL_WARNING = 8; + + LOG_LEVEL_ERROR = 9; + + LOG_LEVEL_FATAL = 10; + + LOG_LEVEL_PANIC = 11; + } + + enum LogStatement { + LOG_STATEMENT_UNSPECIFIED = 0; + + LOG_STATEMENT_NONE = 1; + + LOG_STATEMENT_DDL = 2; + + LOG_STATEMENT_MOD = 3; + + LOG_STATEMENT_ALL = 4; + } + + enum TransactionIsolation { + TRANSACTION_ISOLATION_UNSPECIFIED = 0; + + TRANSACTION_ISOLATION_READ_UNCOMMITTED = 1; + + TRANSACTION_ISOLATION_READ_COMMITTED = 2; + + TRANSACTION_ISOLATION_REPEATABLE_READ = 3; + + TRANSACTION_ISOLATION_SERIALIZABLE = 4; + } + + enum XmlBinary { + XML_BINARY_UNSPECIFIED = 0; + + XML_BINARY_BASE64 = 1; + + XML_BINARY_HEX = 2; + } + + enum XmlOption { + XML_OPTION_UNSPECIFIED = 0; + + XML_OPTION_DOCUMENT = 1; + + XML_OPTION_CONTENT = 2; + } + + google.protobuf.Int64Value recovery_min_apply_delay = 1; // in milliseconds. + + google.protobuf.Int64Value shared_buffers = 2; // in bytes. + + google.protobuf.Int64Value temp_buffers = 3; // in bytes. + + google.protobuf.Int64Value work_mem = 4; // in bytes. + + google.protobuf.Int64Value temp_file_limit = 5; // in bytes. + + google.protobuf.Int64Value backend_flush_after = 6 [(value) = "0-2048"]; + + google.protobuf.Int64Value old_snapshot_threshold = 7 [(value) = "-1-86400"]; + + google.protobuf.Int64Value max_standby_streaming_delay = 8; // in milliseconds. + + ConstraintExclusion constraint_exclusion = 9; + + google.protobuf.DoubleValue cursor_tuple_fraction = 10; + + google.protobuf.Int64Value from_collapse_limit = 11 [(value) = "1-2147483647"]; + + google.protobuf.Int64Value join_collapse_limit = 12 [(value) = "1-2147483647"]; + + ForceParallelMode force_parallel_mode = 13; + + LogLevel client_min_messages = 14; + + LogLevel log_min_messages = 15; + + LogLevel log_min_error_statement = 16; + + google.protobuf.Int64Value log_min_duration_statement = 17; // in milliseconds. + + google.protobuf.BoolValue log_checkpoints = 18; + + google.protobuf.BoolValue log_connections = 19; + + google.protobuf.BoolValue log_disconnections = 20; + + google.protobuf.BoolValue log_duration = 21; + + LogErrorVerbosity log_error_verbosity = 22; + + google.protobuf.BoolValue log_lock_waits = 23; + + LogStatement log_statement = 24; + + google.protobuf.Int64Value log_temp_files = 25; + + string search_path = 26; + + google.protobuf.BoolValue row_security = 27; + + TransactionIsolation default_transaction_isolation = 28; + + google.protobuf.Int64Value statement_timeout = 29; // in milliseconds. + + google.protobuf.Int64Value lock_timeout = 30; // in milliseconds. + + google.protobuf.Int64Value idle_in_transaction_session_timeout = 31 [(value) = "0-2147483647"]; // in milliseconds. + + ByteaOutput bytea_output = 32; + + XmlBinary xmlbinary = 33; + + XmlOption xmloption = 34; + + google.protobuf.Int64Value gin_pending_list_limit = 35; // in bytes. + + google.protobuf.Int64Value deadlock_timeout = 36; // in milliseconds. + + google.protobuf.Int64Value max_locks_per_transaction = 37; + + google.protobuf.Int64Value max_pred_locks_per_transaction = 38; + + google.protobuf.BoolValue array_nulls = 39; + + BackslashQuote backslash_quote = 40; + + google.protobuf.BoolValue default_with_oids = 41; + + google.protobuf.BoolValue escape_string_warning = 42; + + google.protobuf.BoolValue lo_compat_privileges = 43; + + google.protobuf.BoolValue operator_precedence_warning = 44; + + google.protobuf.BoolValue quote_all_identifiers = 45; + + google.protobuf.BoolValue standard_conforming_strings = 46; + + google.protobuf.BoolValue synchronize_seqscans = 47; + + google.protobuf.BoolValue transform_null_equals = 48; + + google.protobuf.BoolValue exit_on_error = 49; + + google.protobuf.DoubleValue seq_page_cost = 50; + + google.protobuf.DoubleValue random_page_cost = 51; + + google.protobuf.BoolValue enable_bitmapscan = 54; + + google.protobuf.BoolValue enable_hashagg = 55; + + google.protobuf.BoolValue enable_hashjoin = 56; + + google.protobuf.BoolValue enable_indexscan = 57; + + google.protobuf.BoolValue enable_indexonlyscan = 58; + + google.protobuf.BoolValue enable_material = 59; + + google.protobuf.BoolValue enable_mergejoin = 60; + + google.protobuf.BoolValue enable_nestloop = 61; + + google.protobuf.BoolValue enable_seqscan = 62; + + google.protobuf.BoolValue enable_sort = 63; + + google.protobuf.BoolValue enable_tidscan = 64; + + google.protobuf.Int64Value max_parallel_workers = 65 [(value) = "0-1024"]; + + google.protobuf.Int64Value max_parallel_workers_per_gather = 66 [(value) = "0-1024"]; + + string timezone = 67; + + google.protobuf.Int64Value effective_io_concurrency = 68 [(value) = "0-1000"]; + + google.protobuf.Int64Value effective_cache_size = 69 [(value) = "0-549755813888"]; +} |