aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/postgresql/v1/config/host11.proto
blob: 26c9f7b16364301d4c2949d8a2130e6c2ac324c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
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 PostgresqlHostConfig11 {
  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"];
}