oci-mysql 2.39.0 → 2.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/lib/client.d.ts +50 -50
  2. package/lib/client.js +50 -50
  3. package/lib/model/configuration-variables.d.ts +273 -21
  4. package/lib/model/configuration-variables.js.map +1 -1
  5. package/lib/model/configuration.d.ts +1 -0
  6. package/lib/model/configuration.js +6 -0
  7. package/lib/model/configuration.js.map +1 -1
  8. package/lib/model/create-configuration-details.d.ts +1 -0
  9. package/lib/model/create-configuration-details.js +6 -0
  10. package/lib/model/create-configuration-details.js.map +1 -1
  11. package/lib/model/index.d.ts +2 -0
  12. package/lib/model/index.js +4 -2
  13. package/lib/model/index.js.map +1 -1
  14. package/lib/model/initialization-variables.d.ts +42 -0
  15. package/lib/model/initialization-variables.js +39 -0
  16. package/lib/model/initialization-variables.js.map +1 -0
  17. package/lib/request/add-analytics-cluster-request.d.ts +1 -1
  18. package/lib/request/add-heat-wave-cluster-request.d.ts +1 -1
  19. package/lib/request/change-backup-compartment-request.d.ts +1 -1
  20. package/lib/request/create-backup-request.d.ts +1 -1
  21. package/lib/request/create-channel-request.d.ts +1 -1
  22. package/lib/request/create-configuration-request.d.ts +1 -1
  23. package/lib/request/create-db-system-request.d.ts +1 -1
  24. package/lib/request/delete-analytics-cluster-request.d.ts +1 -1
  25. package/lib/request/delete-backup-request.d.ts +1 -1
  26. package/lib/request/delete-channel-request.d.ts +1 -1
  27. package/lib/request/delete-configuration-request.d.ts +1 -1
  28. package/lib/request/delete-db-system-request.d.ts +1 -1
  29. package/lib/request/delete-heat-wave-cluster-request.d.ts +1 -1
  30. package/lib/request/generate-analytics-cluster-memory-estimate-request.d.ts +1 -1
  31. package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
  32. package/lib/request/get-analytics-cluster-memory-estimate-request.d.ts +1 -1
  33. package/lib/request/get-analytics-cluster-request.d.ts +1 -1
  34. package/lib/request/get-backup-request.d.ts +1 -1
  35. package/lib/request/get-channel-request.d.ts +1 -1
  36. package/lib/request/get-configuration-request.d.ts +1 -1
  37. package/lib/request/get-db-system-request.d.ts +1 -1
  38. package/lib/request/get-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
  39. package/lib/request/get-heat-wave-cluster-request.d.ts +1 -1
  40. package/lib/request/get-work-request-request.d.ts +1 -1
  41. package/lib/request/list-backups-request.d.ts +1 -1
  42. package/lib/request/list-channels-request.d.ts +1 -1
  43. package/lib/request/list-configurations-request.d.ts +1 -1
  44. package/lib/request/list-db-systems-request.d.ts +1 -1
  45. package/lib/request/list-shapes-request.d.ts +1 -1
  46. package/lib/request/list-versions-request.d.ts +1 -1
  47. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  48. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  49. package/lib/request/list-work-requests-request.d.ts +1 -1
  50. package/lib/request/reset-channel-request.d.ts +1 -1
  51. package/lib/request/restart-analytics-cluster-request.d.ts +1 -1
  52. package/lib/request/restart-db-system-request.d.ts +1 -1
  53. package/lib/request/restart-heat-wave-cluster-request.d.ts +1 -1
  54. package/lib/request/resume-channel-request.d.ts +1 -1
  55. package/lib/request/start-analytics-cluster-request.d.ts +1 -1
  56. package/lib/request/start-db-system-request.d.ts +1 -1
  57. package/lib/request/start-heat-wave-cluster-request.d.ts +1 -1
  58. package/lib/request/stop-analytics-cluster-request.d.ts +1 -1
  59. package/lib/request/stop-db-system-request.d.ts +1 -1
  60. package/lib/request/stop-heat-wave-cluster-request.d.ts +1 -1
  61. package/lib/request/update-analytics-cluster-request.d.ts +1 -1
  62. package/lib/request/update-backup-request.d.ts +1 -1
  63. package/lib/request/update-channel-request.d.ts +1 -1
  64. package/lib/request/update-configuration-request.d.ts +1 -1
  65. package/lib/request/update-db-system-request.d.ts +1 -1
  66. package/lib/request/update-heat-wave-cluster-request.d.ts +1 -1
  67. package/package.json +3 -3
@@ -11,17 +11,52 @@
11
11
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
12
  */
13
13
  /**
14
- * User controllable service variables.
14
+ * User-defined service variables.
15
15
  */
16
16
  export interface ConfigurationVariables {
17
17
  /**
18
18
  * (\"completion_type\")
19
19
  */
20
20
  "completionType"?: ConfigurationVariables.CompletionType;
21
+ /**
22
+ * If enabled, the server stores all temporary tables on disk rather than in memory.
23
+ * <p>
24
+ bigTables corresponds to the MySQL server variable [big_tables](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_big_tables).
25
+ *
26
+ */
27
+ "bigTables"?: boolean;
28
+ /**
29
+ * Set the chunking size for updates to the global memory usage counter Global_connection_memory.
30
+ * <p>
31
+ connectionMemoryChunkSize corresponds to the MySQL system variable [connection_memory_chunk_size](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_connection_memory_chunk_size).
32
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
33
+ */
34
+ "connectionMemoryChunkSize"?: number;
35
+ /**
36
+ * Set the maximum amount of memory that can be used by a single user connection.
37
+ * <p>
38
+ connectionMemoryLimit corresponds to the MySQL system variable [connection_memory_limit](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_connection_memory_limit).
39
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
40
+ */
41
+ "connectionMemoryLimit"?: number;
21
42
  /**
22
43
  * (\"default_authentication_plugin\")
23
44
  */
24
45
  "defaultAuthenticationPlugin"?: ConfigurationVariables.DefaultAuthenticationPlugin;
46
+ /**
47
+ * Set the total amount of memory that can be used by all user connections.
48
+ * <p>
49
+ globalConnectionMemoryLimit corresponds to the MySQL system variable [global_connection_memory_limit](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_global_connection_memory_limit).
50
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
51
+ */
52
+ "globalConnectionMemoryLimit"?: number;
53
+ /**
54
+ * Determines whether the MySQL server calculates Global_connection_memory.
55
+ * <p>
56
+ globalConnectionMemoryTracking corresponds to the MySQL system variable [global_connection_memory_tracking](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_global_connection_memory_tracking).
57
+ *
58
+ */
59
+ "globalConnectionMemoryTracking"?: boolean;
25
60
  /**
26
61
  * (\"transaction_isolation\")
27
62
  */
@@ -79,6 +114,13 @@ export interface ConfigurationVariables {
79
114
  * (\"innodb_ft_enable_stopword\")
80
115
  */
81
116
  "innodbFtEnableStopword"?: boolean;
117
+ /**
118
+ * Enables dedicated log writer threads for writing redo log records from the log buffer to the system buffers and flushing the system buffers to the redo log files.
119
+ * <p>
120
+ This is the MySQL variable \"innodb_log_writer_threads\". For more information, please see the [MySQL documentation](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_log_writer_threads)
121
+ *
122
+ */
123
+ "innodbLogWriterThreads"?: boolean;
82
124
  /**
83
125
  * (\"local_infile\")
84
126
  */
@@ -124,13 +166,39 @@ export interface ConfigurationVariables {
124
166
  */
125
167
  "binlogTransactionCompression"?: boolean;
126
168
  /**
127
- * (\"innodb_buffer_pool_size\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
128
- */
169
+ * The size (in bytes) of the buffer pool, that is, the memory area where InnoDB caches table and index data.
170
+ * <p>
171
+ innodbBufferPoolSize corresponds to the MySQL server system variable
172
+ * [innodb_buffer_pool_size](https://dev.mysql.com/doc/refman/en/innodb-parameters.html#sysvar_innodb_buffer_pool_size).
173
+ * <p>
174
+ The default and maximum values depend on the amount of RAM provisioned by the shape.
175
+ * See [Default User Variables](https://docs.cloud.oracle.com/mysql-database/doc/configuring-db-system.html#GUID-B5504C19-F6F4-4DAB-8506-189A4E8F4A6A).
176
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
177
+ */
129
178
  "innodbBufferPoolSize"?: number;
130
179
  /**
131
180
  * (\"innodb_ft_result_cache_limit\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
132
181
  */
133
182
  "innodbFtResultCacheLimit"?: number;
183
+ /**
184
+ * Sets the size of the transaction cache.
185
+ * <p>
186
+ maxBinlogCacheSize corresponds to the MySQL server system variable [max_binlog_cache_size](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_max_binlog_cache_size).
187
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
188
+ */
189
+ "maxBinlogCacheSize"?: number;
190
+ /**
191
+ * (\"max_connect_errors\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
192
+ */
193
+ "maxConnectErrors"?: number;
194
+ /**
195
+ * This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.
196
+ * <p>
197
+ maxHeapTableSize corresponds to the MySQL system variable
198
+ * [max_heap_table_size](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_heap_table_size)
199
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
200
+ */
201
+ "maxHeapTableSize"?: number;
134
202
  /**
135
203
  * (\"max_connections\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
136
204
  */
@@ -140,8 +208,15 @@ export interface ConfigurationVariables {
140
208
  */
141
209
  "maxPreparedStmtCount"?: number;
142
210
  /**
143
- * (\"connect_timeout\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
144
- */
211
+ * The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
212
+ * <p>
213
+ connectTimeout corresponds to the MySQL system variable
214
+ * [connect_timeout](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_connect_timeout)
215
+ * <p>
216
+ Increasing the connect_timeout value might help if clients frequently encounter errors of the form
217
+ * \"Lost connection to MySQL server at 'XXX', system error: errno\".
218
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
219
+ */
145
220
  "connectTimeout"?: number;
146
221
  /**
147
222
  * (\"cte_max_recursion_depth\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
@@ -155,10 +230,33 @@ export interface ConfigurationVariables {
155
230
  * (\"information_schema_stats_expiry\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
156
231
  */
157
232
  "informationSchemaStatsExpiry"?: number;
233
+ /**
234
+ * Specifies the percentage of the most recently used pages for each buffer pool to read out and dump.
235
+ * <p>
236
+ innodbBufferPoolDumpPct corresponds to the MySQL InnoDB system variable
237
+ * [innodb_buffer_pool_dump_pct](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_buffer_pool_dump_pct).
238
+ * <p>
239
+ The range is 1 to 100. The default value is 25.
240
+ * <p>
241
+ For example, if there are 4 buffer pools with 100 pages each, and innodb_buffer_pool_dump_pct is set to 25,
242
+ * the 25 most recently used pages from each buffer pool are dumped.
243
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
244
+ */
245
+ "innodbBufferPoolDumpPct"?: number;
158
246
  /**
159
247
  * (\"innodb_buffer_pool_instances\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
160
248
  */
161
249
  "innodbBufferPoolInstances"?: number;
250
+ /**
251
+ * innodbDdlBufferSize corresponds to the MySQL system variable [innodb_ddl_buffer_size] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_ddl_buffer_size)
252
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
253
+ */
254
+ "innodbDdlBufferSize"?: number;
255
+ /**
256
+ * innodbDdlThreads corresponds to the MySQL system variable [innodb_ddl_threads] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_ddl_threads)
257
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
258
+ */
259
+ "innodbDdlThreads"?: number;
162
260
  /**
163
261
  * (\"innodb_ft_max_token_size\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
164
262
  */
@@ -176,20 +274,83 @@ export interface ConfigurationVariables {
176
274
  */
177
275
  "innodbLockWaitTimeout"?: number;
178
276
  /**
179
- * (\"innodb_max_purge_lag\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
180
- */
277
+ * The desired maximum purge lag in terms of transactions.
278
+ * <p>
279
+ InnoDB maintains a list of transactions that have index records delete-marked by UPDATE or DELETE operations. The length of the list is the purge lag.
280
+ * <p>
281
+ If this value is exceeded, a delay is imposed on INSERT, UPDATE, and DELETE operations to allow time for purge to catch up.
282
+ * <p>
283
+ The default value is 0, which means there is no maximum purge lag and no delay.
284
+ * <p>
285
+ innodbMaxPurgeLag corresponds to the MySQL server system variable
286
+ * [innodb_max_purge_lag](https://dev.mysql.com/doc/refman/en/innodb-parameters.html#sysvar_innodb_max_purge_lag).
287
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
288
+ */
181
289
  "innodbMaxPurgeLag"?: number;
182
290
  /**
183
- * (\"innodb_max_purge_lag_delay\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
184
- */
291
+ * The maximum delay in microseconds for the delay imposed when the innodb_max_purge_lag threshold is exceeded.
292
+ * <p>
293
+ The specified innodb_max_purge_lag_delay value is an upper limit on the delay period.
294
+ * <p>
295
+ innodbMaxPurgeLagDelay corresponds to the MySQL server system variable
296
+ * [innodb_max_purge_lag_delay](https://dev.mysql.com/doc/refman/en/innodb-parameters.html#sysvar_innodb_max_purge_lag_delay).
297
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
298
+ */
185
299
  "innodbMaxPurgeLagDelay"?: number;
300
+ /**
301
+ * The number of seconds the server waits for activity on an interactive connection before closing it.
302
+ * <p>
303
+ interactiveTimeout corresponds to the MySQL system variable.
304
+ * [interactive_timeout](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_interactive_timeout)
305
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
306
+ */
307
+ "interactiveTimeout"?: number;
308
+ /**
309
+ * The number of index pages to sample when estimating cardinality and other statistics for an indexed column,
310
+ * such as those calculated by ANALYZE TABLE.
311
+ * <p>
312
+ innodbStatsPersistentSamplePages corresponds to the MySQL InnoDB system variable
313
+ * [innodb_stats_persistent_sample_pages](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_stats_persistent_sample_pages)
314
+ * <p>
315
+ innodb_stats_persistent_sample_pages only applies when innodb_stats_persistent is enabled for a table;
316
+ * when innodb_stats_persistent is disabled, innodb_stats_transient_sample_pages applies instead.
317
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
318
+ */
319
+ "innodbStatsPersistentSamplePages"?: number;
320
+ /**
321
+ * The number of index pages to sample when estimating cardinality and other statistics for an indexed column,
322
+ * such as those calculated by [ANALYZE TABLE](https://dev.mysql.com/doc/refman/8.0/en/analyze-table.html).
323
+ * <p>
324
+ innodbStatsTransientSamplePages corresponds to the MySQL InnoDB system variable
325
+ * [innodb_stats_transient_sample_pages](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_stats_transient_sample_pages)
326
+ * <p>
327
+ innodb_stats_transient_sample_pages only applies when innodb_stats_persistent is disabled for a table;
328
+ * when innodb_stats_persistent is enabled, innodb_stats_persistent_sample_pages applies instead.
329
+ * <p>
330
+ innodb_stats_persistent is ON by default and cannot be changed. It is possible to override it using the
331
+ * STATS_PERSISTENT clause of the [CREATE TABLE](https://dev.mysql.com/doc/refman/8.0/en/create-table.html) and
332
+ * [ALTER TABLE](https://dev.mysql.com/doc/refman/8.0/en/alter-table.html) statements.
333
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
334
+ */
335
+ "innodbStatsTransientSamplePages"?: number;
336
+ /**
337
+ * The maximum size of one packet or any generated/intermediate string.
338
+ * <p>
339
+ This is the mysql variable \"max_allowed_packet\".
340
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
341
+ */
342
+ "maxAllowedPacket"?: number;
186
343
  /**
187
344
  * (\"max_execution_time\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
188
345
  */
189
346
  "maxExecutionTime"?: number;
190
347
  /**
191
- * (\"mysqlx_connect_timeout\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
192
- */
348
+ * The number of seconds X Plugin waits for the first packet to be received from newly connected clients.
349
+ * <p>
350
+ mysqlxConnectTimeout corresponds to the MySQL X Plugin system variable
351
+ * [mysqlx_connect_timeout](https://dev.mysql.com/doc/refman/8.0/en/x-plugin-options-system-variables.html#sysvar_mysqlx_connect_timeout)
352
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
353
+ */
193
354
  "mysqlxConnectTimeout"?: number;
194
355
  /**
195
356
  * (\"mysqlx_document_id_unique_prefix\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
@@ -200,29 +361,67 @@ export interface ConfigurationVariables {
200
361
  */
201
362
  "mysqlxIdleWorkerThreadTimeout"?: number;
202
363
  /**
203
- * (\"mysqlx_interactive_timeout\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
204
- */
364
+ * The number of seconds to wait for interactive clients to timeout.
365
+ * <p>
366
+ mysqlxInteractiveTimeout corresponds to the MySQL X Plugin system variable.
367
+ * [mysqlx_interactive_timeout](https://dev.mysql.com/doc/refman/8.0/en/x-plugin-options-system-variables.html#sysvar_mysqlx_interactive_timeout)
368
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
369
+ */
205
370
  "mysqlxInteractiveTimeout"?: number;
206
371
  /**
207
- * (\"mysqlx_max_allowed_packet\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
208
- */
372
+ * The maximum size of network packets that can be received by X Plugin.
373
+ * <p>
374
+ This is the mysql variable \"mysqlx_max_allowed_packet\".
375
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
376
+ */
209
377
  "mysqlxMaxAllowedPacket"?: number;
210
378
  /**
211
379
  * (\"mysqlx_min_worker_threads\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
212
380
  */
213
381
  "mysqlxMinWorkerThreads"?: number;
214
382
  /**
215
- * (\"mysqlx_read_timeout\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
216
- */
383
+ * The number of seconds that X Plugin waits for blocking read operations to complete. After this time, if the
384
+ * read operation is not successful, X Plugin closes the connection and returns a warning notice with the error
385
+ * code ER_IO_READ_ERROR to the client application.
386
+ * <p>
387
+ mysqlxReadTimeout corresponds to the MySQL X Plugin system variable
388
+ * [mysqlx_read_timeout](https://dev.mysql.com/doc/refman/8.0/en/x-plugin-options-system-variables.html#sysvar_mysqlx_read_timeout)
389
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
390
+ */
217
391
  "mysqlxReadTimeout"?: number;
218
392
  /**
219
- * (\"mysqlx_wait_timeout\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
220
- */
393
+ * The number of seconds that X Plugin waits for activity on a connection.
394
+ * <p>
395
+ mysqlxWaitTimeout corresponds to the MySQL X Plugin system variable.
396
+ * [mysqlx_wait_timeout](https://dev.mysql.com/doc/refman/8.0/en/x-plugin-options-system-variables.html#sysvar_mysqlx_wait_timeout)
397
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
398
+ */
221
399
  "mysqlxWaitTimeout"?: number;
222
400
  /**
223
- * (\"mysqlx_write_timeout\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
224
- */
401
+ * The number of seconds that X Plugin waits for blocking write operations to complete. After this time, if the
402
+ * write operation is not successful, X Plugin closes the connection.
403
+ * <p>
404
+ mysqlxReadmysqlxWriteTimeoutTimeout corresponds to the MySQL X Plugin system variable
405
+ * [mysqlx_write_timeout](https://dev.mysql.com/doc/refman/8.0/en/x-plugin-options-system-variables.html#sysvar_mysqlx_write_timeout)
406
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
407
+ */
225
408
  "mysqlxWriteTimeout"?: number;
409
+ /**
410
+ * The number of seconds to wait for more data from a connection before aborting the read.
411
+ * <p>
412
+ netReadTimeout corresponds to the MySQL system variable
413
+ * [net_read_timeout](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_net_read_timeout)
414
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
415
+ */
416
+ "netReadTimeout"?: number;
417
+ /**
418
+ * The number of seconds to wait for a block to be written to a connection before aborting the write.
419
+ * <p>
420
+ netWriteTimeout corresponds to the MySQL system variable
421
+ * [net_write_timeout](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_net_write_timeout)
422
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
423
+ */
424
+ "netWriteTimeout"?: number;
226
425
  /**
227
426
  * (\"parser_max_mem_size\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
228
427
  */
@@ -235,10 +434,23 @@ export interface ConfigurationVariables {
235
434
  * (\"query_prealloc_size\") DEPRECATED -- variable should not be settable and will be ignored Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
236
435
  */
237
436
  "queryPreallocSize"?: number;
437
+ /**
438
+ * regexpTimeLimit corresponds to the MySQL system variable [regexp_time_limit] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_regexp_time_limit)
439
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
440
+ */
441
+ "regexpTimeLimit"?: number;
238
442
  /**
239
443
  * (\"sql_mode\")
240
444
  */
241
445
  "sqlMode"?: string;
446
+ /**
447
+ * The maximum size of internal in-memory temporary tables. This variable does not apply to user-created MEMORY tables.
448
+ * <p>
449
+ tmp_table_size corresponds to the MySQL system variable
450
+ * [tmp_table_size](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_tmp_table_size)
451
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
452
+ */
453
+ "tmpTableSize"?: number;
242
454
  /**
243
455
  * Set the default compression level for the deflate algorithm. (\"mysqlx_deflate_default_compression_level\") Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
244
456
  */
@@ -267,6 +479,46 @@ export interface ConfigurationVariables {
267
479
  * DEPRECATED -- typo of mysqlx_zstd_default_compression_level. variable will be ignored. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
268
480
  */
269
481
  "mysqlZstdDefaultCompressionLevel"?: number;
482
+ /**
483
+ * Each session that must perform a sort allocates a buffer of this size.
484
+ * <p>
485
+ sortBufferSize corresponds to the MySQL system variable [sort_buffer_size](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_sort_buffer_size)
486
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
487
+ */
488
+ "sortBufferSize"?: number;
489
+ /**
490
+ * The number of seconds the server waits for activity on a noninteractive connection before closing it.
491
+ * <p>
492
+ waitTimeout corresponds to the MySQL system variable.
493
+ * [wait_timeout](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_wait_timeout)
494
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
495
+ */
496
+ "waitTimeout"?: number;
497
+ /**
498
+ * Controls whether the thread pool uses dedicated listener threads. If enabled, a listener thread in each thread group is dedicated to the task of listening
499
+ * for network events from clients, ensuring that the maximum number of query worker threads is no more than the value specified by threadPoolMaxTransactionsLimit.
500
+ * threadPoolDedicatedListeners corresponds to the MySQL Database Service-specific system variable thread_pool_dedicated_listeners.
501
+ *
502
+ */
503
+ "threadPoolDedicatedListeners"?: boolean;
504
+ /**
505
+ * Limits the maximum number of open transactions to the defined value. The default value is 0, which enforces no limit.
506
+ * threadPoolMaxTransactionsLimit corresponds to the MySQL Database Service-specific system variable thread_pool_max_transactions_limit.
507
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
508
+ */
509
+ "threadPoolMaxTransactionsLimit"?: number;
510
+ /**
511
+ * Initializes the time zone for each client that connects.
512
+ * <p>
513
+ This corresponds to the MySQL System Variable \"time_zone\".
514
+ * <p>
515
+ The values can be given in one of the following formats, none of which are case-sensitive:
516
+ * <p>
517
+ - As a string indicating an offset from UTC of the form [H]H:MM, prefixed with a + or -, such as '+10:00', '-6:00', or '+05:30'. The permitted range is '-13:59' to '+14:00', inclusive.
518
+ * - As a named time zone, as defined by the \"IANA Time Zone database\", such as 'Europe/Helsinki', 'US/Eastern', 'MET', or 'UTC'.
519
+ *
520
+ */
521
+ "timeZone"?: string;
270
522
  }
271
523
  export declare namespace ConfigurationVariables {
272
524
  enum CompletionType {
@@ -1 +1 @@
1
- {"version":3,"file":"configuration-variables.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/configuration-variables.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAwQH,IAAiB,sBAAsB,CAqEtC;AArED,WAAiB,sBAAsB;IACrC,IAAY,cASX;IATD,WAAY,cAAc;QACxB,sCAAoB,CAAA;QACpB,iCAAe,CAAA;QACf,qCAAmB,CAAA;QACnB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EATW,cAAc,GAAd,qCAAc,KAAd,qCAAc,QASzB;IAED,IAAY,2BASX;IATD,WAAY,2BAA2B;QACrC,4EAA6C,CAAA;QAC7C,iEAAkC,CAAA;QAClC,4EAA6C,CAAA;QAC7C;;;WAGG;QACH,6DAA8B,CAAA;IAChC,CAAC,EATW,2BAA2B,GAA3B,kDAA2B,KAA3B,kDAA2B,QAStC;IAED,IAAY,oBAWX;IAXD,WAAY,oBAAoB;QAC9B,4DAAoC,CAAA;QACpC,sDAA8B,CAAA;QAC9B,wDAAgC,CAAA;QAChC,0DAAkC,CAAA;QAClC,qDAA6B,CAAA;QAC7B;;;WAGG;QACH,sDAA8B,CAAA;IAChC,CAAC,EAXW,oBAAoB,GAApB,2CAAoB,KAApB,2CAAoB,QAW/B;IAED,IAAY,2BAWX;IAXD,WAAY,2BAA2B;QACrC,oDAAqB,CAAA;QACrB,qFAAsD,CAAA;QACtD,gDAAiB,CAAA;QACjB,8CAAe,CAAA;QACf,kEAAmC,CAAA;QACnC;;;WAGG;QACH,6DAA8B,CAAA;IAChC,CAAC,EAXW,2BAA2B,GAA3B,kDAA2B,KAA3B,kDAA2B,QAWtC;IAED,IAAY,iBAQX;IARD,WAAY,iBAAiB;QAC3B,kCAAa,CAAA;QACb,wCAAmB,CAAA;QACnB;;;WAGG;QACH,mDAA8B,CAAA;IAChC,CAAC,EARW,iBAAiB,GAAjB,wCAAiB,KAAjB,wCAAiB,QAQ5B;IAED,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6CAAsB,yBAIrC,CAAA;AACH,CAAC,EArEgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAqEtC"}
1
+ {"version":3,"file":"configuration-variables.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/configuration-variables.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAogBH,IAAiB,sBAAsB,CAqEtC;AArED,WAAiB,sBAAsB;IACrC,IAAY,cASX;IATD,WAAY,cAAc;QACxB,sCAAoB,CAAA;QACpB,iCAAe,CAAA;QACf,qCAAmB,CAAA;QACnB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EATW,cAAc,GAAd,qCAAc,KAAd,qCAAc,QASzB;IAED,IAAY,2BASX;IATD,WAAY,2BAA2B;QACrC,4EAA6C,CAAA;QAC7C,iEAAkC,CAAA;QAClC,4EAA6C,CAAA;QAC7C;;;WAGG;QACH,6DAA8B,CAAA;IAChC,CAAC,EATW,2BAA2B,GAA3B,kDAA2B,KAA3B,kDAA2B,QAStC;IAED,IAAY,oBAWX;IAXD,WAAY,oBAAoB;QAC9B,4DAAoC,CAAA;QACpC,sDAA8B,CAAA;QAC9B,wDAAgC,CAAA;QAChC,0DAAkC,CAAA;QAClC,qDAA6B,CAAA;QAC7B;;;WAGG;QACH,sDAA8B,CAAA;IAChC,CAAC,EAXW,oBAAoB,GAApB,2CAAoB,KAApB,2CAAoB,QAW/B;IAED,IAAY,2BAWX;IAXD,WAAY,2BAA2B;QACrC,oDAAqB,CAAA;QACrB,qFAAsD,CAAA;QACtD,gDAAiB,CAAA;QACjB,8CAAe,CAAA;QACf,kEAAmC,CAAA;QACnC;;;WAGG;QACH,6DAA8B,CAAA;IAChC,CAAC,EAXW,2BAA2B,GAA3B,kDAA2B,KAA3B,kDAA2B,QAWtC;IAED,IAAY,iBAQX;IARD,WAAY,iBAAiB;QAC3B,kCAAa,CAAA;QACb,wCAAmB,CAAA;QACnB;;;WAGG;QACH,mDAA8B,CAAA;IAChC,CAAC,EARW,iBAAiB,GAAjB,wCAAiB,KAAjB,wCAAiB,QAQ5B;IAED,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6CAAsB,yBAIrC,CAAA;AACH,CAAC,EArEgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAqEtC"}
@@ -52,6 +52,7 @@ export interface Configuration {
52
52
  * The current state of the Configuration.
53
53
  */
54
54
  "lifecycleState": Configuration.LifecycleState;
55
+ "initVariables"?: model.InitializationVariables;
55
56
  "variables": model.ConfigurationVariables;
56
57
  /**
57
58
  * The OCID of the Configuration from which this Configuration is
@@ -57,6 +57,9 @@ var Configuration;
57
57
  })(LifecycleState = Configuration.LifecycleState || (Configuration.LifecycleState = {}));
58
58
  function getJsonObj(obj) {
59
59
  const jsonObj = Object.assign(Object.assign({}, obj), {
60
+ "initVariables": obj.initVariables
61
+ ? model.InitializationVariables.getJsonObj(obj.initVariables)
62
+ : undefined,
60
63
  "variables": obj.variables
61
64
  ? model.ConfigurationVariables.getJsonObj(obj.variables)
62
65
  : undefined
@@ -66,6 +69,9 @@ var Configuration;
66
69
  Configuration.getJsonObj = getJsonObj;
67
70
  function getDeserializedJsonObj(obj) {
68
71
  const jsonObj = Object.assign(Object.assign({}, obj), {
72
+ "initVariables": obj.initVariables
73
+ ? model.InitializationVariables.getDeserializedJsonObj(obj.initVariables)
74
+ : undefined,
69
75
  "variables": obj.variables
70
76
  ? model.ConfigurationVariables.getDeserializedJsonObj(obj.variables)
71
77
  : undefined
@@ -1 +1 @@
1
- {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/configuration.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAkElC,IAAiB,aAAa,CA6C7B;AA7CD,WAAiB,aAAa;IAC5B,IAAY,IAQX;IARD,WAAY,IAAI;QACd,2BAAmB,CAAA;QACnB,yBAAiB,CAAA;QACjB;;;WAGG;QACH,sCAA8B,CAAA;IAChC,CAAC,EARW,IAAI,GAAJ,kBAAI,KAAJ,kBAAI,QAQf;IAED,IAAY,cAQX;IARD,WAAY,cAAc;QACxB,mCAAiB,CAAA;QACjB,qCAAmB,CAAA;QACnB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EARW,cAAc,GAAd,4BAAc,KAAd,4BAAc,QAQzB;IAED,SAAgB,UAAU,CAAC,GAAkB;QAC3C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC;gBACxD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,wBAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,sBAAsB,CAAC,GAAG,CAAC,SAAS,CAAC;gBACpE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,oCAAsB,yBAWrC,CAAA;AACH,CAAC,EA7CgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QA6C7B"}
1
+ {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/configuration.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAmElC,IAAiB,aAAa,CAmD7B;AAnDD,WAAiB,aAAa;IAC5B,IAAY,IAQX;IARD,WAAY,IAAI;QACd,2BAAmB,CAAA;QACnB,yBAAiB,CAAA;QACjB;;;WAGG;QACH,sCAA8B,CAAA;IAChC,CAAC,EARW,IAAI,GAAJ,kBAAI,KAAJ,kBAAI,QAQf;IAED,IAAY,cAQX;IARD,WAAY,cAAc;QACxB,mCAAiB,CAAA;QACjB,qCAAmB,CAAA;QACnB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EARW,cAAc,GAAd,4BAAc,KAAd,4BAAc,QAQzB;IAED,SAAgB,UAAU,CAAC,GAAkB;QAC3C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,UAAU,CAAC,GAAG,CAAC,aAAa,CAAC;gBAC7D,CAAC,CAAC,SAAS;YACb,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC;gBACxD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,wBAAU,aAczB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,sBAAsB,CAAC,GAAG,CAAC,aAAa,CAAC;gBACzE,CAAC,CAAC,SAAS;YACb,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,sBAAsB,CAAC,GAAG,CAAC,SAAS,CAAC;gBACpE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,oCAAsB,yBAcrC,CAAA;AACH,CAAC,EAnDgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAmD7B"}
@@ -32,6 +32,7 @@ export interface CreateConfigurationDetails {
32
32
  * The name of the associated Shape.
33
33
  */
34
34
  "shapeName": string;
35
+ "initVariables"?: model.InitializationVariables;
35
36
  "variables"?: model.ConfigurationVariables;
36
37
  /**
37
38
  * The OCID of the Configuration from which the new Configuration is derived. The values in CreateConfigurationDetails.variables supersede the variables of the parent Configuration.
@@ -37,6 +37,9 @@ var CreateConfigurationDetails;
37
37
  (function (CreateConfigurationDetails) {
38
38
  function getJsonObj(obj) {
39
39
  const jsonObj = Object.assign(Object.assign({}, obj), {
40
+ "initVariables": obj.initVariables
41
+ ? model.InitializationVariables.getJsonObj(obj.initVariables)
42
+ : undefined,
40
43
  "variables": obj.variables
41
44
  ? model.ConfigurationVariables.getJsonObj(obj.variables)
42
45
  : undefined
@@ -46,6 +49,9 @@ var CreateConfigurationDetails;
46
49
  CreateConfigurationDetails.getJsonObj = getJsonObj;
47
50
  function getDeserializedJsonObj(obj) {
48
51
  const jsonObj = Object.assign(Object.assign({}, obj), {
52
+ "initVariables": obj.initVariables
53
+ ? model.InitializationVariables.getDeserializedJsonObj(obj.initVariables)
54
+ : undefined,
49
55
  "variables": obj.variables
50
56
  ? model.ConfigurationVariables.getDeserializedJsonObj(obj.variables)
51
57
  : undefined
@@ -1 +1 @@
1
- {"version":3,"file":"create-configuration-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/create-configuration-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA4ClC,IAAiB,0BAA0B,CAyB1C;AAzBD,WAAiB,0BAA0B;IACzC,SAAgB,UAAU,CAAC,GAA+B;QACxD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC;gBACxD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,qCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA+B;QACpE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,sBAAsB,CAAC,GAAG,CAAC,SAAS,CAAC;gBACpE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,iDAAsB,yBAWrC,CAAA;AACH,CAAC,EAzBgB,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QAyB1C"}
1
+ {"version":3,"file":"create-configuration-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/create-configuration-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA6ClC,IAAiB,0BAA0B,CA+B1C;AA/BD,WAAiB,0BAA0B;IACzC,SAAgB,UAAU,CAAC,GAA+B;QACxD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,UAAU,CAAC,GAAG,CAAC,aAAa,CAAC;gBAC7D,CAAC,CAAC,SAAS;YACb,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC;gBACxD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,qCAAU,aAczB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA+B;QACpE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,sBAAsB,CAAC,GAAG,CAAC,aAAa,CAAC;gBACzE,CAAC,CAAC,SAAS;YACb,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,sBAAsB,CAAC,GAAG,CAAC,SAAS,CAAC;gBACpE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,iDAAsB,yBAcrC,CAAA;AACH,CAAC,EA/BgB,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QA+B1C"}
@@ -102,6 +102,8 @@ import * as HeatWaveClusterTableMemoryEstimate from "./heat-wave-cluster-table-m
102
102
  export import HeatWaveClusterTableMemoryEstimate = HeatWaveClusterTableMemoryEstimate.HeatWaveClusterTableMemoryEstimate;
103
103
  import * as HeatWaveNode from "./heat-wave-node";
104
104
  export import HeatWaveNode = HeatWaveNode.HeatWaveNode;
105
+ import * as InitializationVariables from "./initialization-variables";
106
+ export import InitializationVariables = InitializationVariables.InitializationVariables;
105
107
  import * as InnoDbShutdownMode from "./inno-db-shutdown-mode";
106
108
  export import InnoDbShutdownMode = InnoDbShutdownMode.InnoDbShutdownMode;
107
109
  import * as MaintenanceDetails from "./maintenance-details";
@@ -31,8 +31,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
31
31
  return result;
32
32
  };
33
33
  Object.defineProperty(exports, "__esModule", { value: true });
34
- exports.PointInTimeRecoveryDetails = exports.PitrPolicy = exports.MaintenanceDetails = exports.InnoDbShutdownMode = exports.HeatWaveNode = exports.HeatWaveClusterTableMemoryEstimate = exports.HeatWaveClusterSummary = exports.HeatWaveClusterSchemaMemoryEstimate = exports.HeatWaveClusterMemoryEstimateStatus = exports.HeatWaveClusterMemoryEstimate = exports.HeatWaveCluster = exports.DeletionPolicyDetails = exports.DbSystemSummary = exports.DbSystemSource = exports.DbSystemSnapshot = exports.DbSystemPlacement = exports.DbSystemEndpoint = exports.DbSystem = exports.CreateMaintenanceDetails = exports.CreateDeletionPolicyDetails = exports.CreateDbSystemSourceDetails = exports.CreateDbSystemDetails = exports.CreateConfigurationDetails = exports.CreateChannelTargetDetails = exports.CreateChannelSourceDetails = exports.CreateChannelDetails = exports.CreateBackupPolicyDetails = exports.CreateBackupDetails = exports.CrashRecoveryStatus = exports.ConfigurationVariables = exports.ConfigurationSummary = exports.Configuration = exports.ChannelTarget = exports.ChannelSummary = exports.ChannelSource = exports.Channel = exports.ChangeBackupCompartmentDetails = exports.CaCertificate = exports.BackupSummary = exports.BackupPolicy = exports.Backup = exports.AnalyticsClusterTableMemoryEstimate = exports.AnalyticsClusterSummary = exports.AnalyticsClusterSchemaMemoryEstimate = exports.AnalyticsClusterNode = exports.AnalyticsClusterMemoryEstimateStatus = exports.AnalyticsClusterMemoryEstimate = exports.AnalyticsCluster = exports.AddHeatWaveClusterDetails = exports.AddAnalyticsClusterDetails = void 0;
35
- exports.UpdateChannelTargetFromDbSystemDetails = exports.UpdateChannelSourceFromMysqlDetails = exports.PemCaCertificate = exports.DbSystemSourceImportFromUrl = exports.DbSystemSourceFromPitr = exports.DbSystemSourceFromNone = exports.DbSystemSourceFromBackup = exports.CreateDbSystemSourceImportFromUrlDetails = exports.CreateDbSystemSourceFromPitrDetails = exports.CreateDbSystemSourceFromNoneDetails = exports.CreateDbSystemSourceFromBackupDetails = exports.CreateChannelTargetFromDbSystemDetails = exports.CreateChannelSourceFromMysqlDetails = exports.ChannelTargetDbSystem = exports.ChannelSourceMysql = exports.WorkRequestSummary = exports.WorkRequestResourceActionType = exports.WorkRequestResource = exports.WorkRequestOperationType = exports.WorkRequestOperationStatus = exports.WorkRequestLogEntry = exports.WorkRequestError = exports.WorkRequest = exports.VersionSummary = exports.Version = exports.UpdateMaintenanceDetails = exports.UpdateHeatWaveClusterDetails = exports.UpdateDeletionPolicyDetails = exports.UpdateDbSystemDetails = exports.UpdateConfigurationDetails = exports.UpdateChannelTargetDetails = exports.UpdateChannelSourceDetails = exports.UpdateChannelDetails = exports.UpdateBackupPolicyDetails = exports.UpdateBackupDetails = exports.UpdateAnalyticsClusterDetails = exports.StopDbSystemDetails = exports.ShapeSummary = exports.RestartDbSystemDetails = void 0;
34
+ exports.PitrPolicy = exports.MaintenanceDetails = exports.InnoDbShutdownMode = exports.InitializationVariables = exports.HeatWaveNode = exports.HeatWaveClusterTableMemoryEstimate = exports.HeatWaveClusterSummary = exports.HeatWaveClusterSchemaMemoryEstimate = exports.HeatWaveClusterMemoryEstimateStatus = exports.HeatWaveClusterMemoryEstimate = exports.HeatWaveCluster = exports.DeletionPolicyDetails = exports.DbSystemSummary = exports.DbSystemSource = exports.DbSystemSnapshot = exports.DbSystemPlacement = exports.DbSystemEndpoint = exports.DbSystem = exports.CreateMaintenanceDetails = exports.CreateDeletionPolicyDetails = exports.CreateDbSystemSourceDetails = exports.CreateDbSystemDetails = exports.CreateConfigurationDetails = exports.CreateChannelTargetDetails = exports.CreateChannelSourceDetails = exports.CreateChannelDetails = exports.CreateBackupPolicyDetails = exports.CreateBackupDetails = exports.CrashRecoveryStatus = exports.ConfigurationVariables = exports.ConfigurationSummary = exports.Configuration = exports.ChannelTarget = exports.ChannelSummary = exports.ChannelSource = exports.Channel = exports.ChangeBackupCompartmentDetails = exports.CaCertificate = exports.BackupSummary = exports.BackupPolicy = exports.Backup = exports.AnalyticsClusterTableMemoryEstimate = exports.AnalyticsClusterSummary = exports.AnalyticsClusterSchemaMemoryEstimate = exports.AnalyticsClusterNode = exports.AnalyticsClusterMemoryEstimateStatus = exports.AnalyticsClusterMemoryEstimate = exports.AnalyticsCluster = exports.AddHeatWaveClusterDetails = exports.AddAnalyticsClusterDetails = void 0;
35
+ exports.UpdateChannelTargetFromDbSystemDetails = exports.UpdateChannelSourceFromMysqlDetails = exports.PemCaCertificate = exports.DbSystemSourceImportFromUrl = exports.DbSystemSourceFromPitr = exports.DbSystemSourceFromNone = exports.DbSystemSourceFromBackup = exports.CreateDbSystemSourceImportFromUrlDetails = exports.CreateDbSystemSourceFromPitrDetails = exports.CreateDbSystemSourceFromNoneDetails = exports.CreateDbSystemSourceFromBackupDetails = exports.CreateChannelTargetFromDbSystemDetails = exports.CreateChannelSourceFromMysqlDetails = exports.ChannelTargetDbSystem = exports.ChannelSourceMysql = exports.WorkRequestSummary = exports.WorkRequestResourceActionType = exports.WorkRequestResource = exports.WorkRequestOperationType = exports.WorkRequestOperationStatus = exports.WorkRequestLogEntry = exports.WorkRequestError = exports.WorkRequest = exports.VersionSummary = exports.Version = exports.UpdateMaintenanceDetails = exports.UpdateHeatWaveClusterDetails = exports.UpdateDeletionPolicyDetails = exports.UpdateDbSystemDetails = exports.UpdateConfigurationDetails = exports.UpdateChannelTargetDetails = exports.UpdateChannelSourceDetails = exports.UpdateChannelDetails = exports.UpdateBackupPolicyDetails = exports.UpdateBackupDetails = exports.UpdateAnalyticsClusterDetails = exports.StopDbSystemDetails = exports.ShapeSummary = exports.RestartDbSystemDetails = exports.PointInTimeRecoveryDetails = void 0;
36
36
  const AddAnalyticsClusterDetails = __importStar(require("./add-analytics-cluster-details"));
37
37
  exports.AddAnalyticsClusterDetails = AddAnalyticsClusterDetails.AddAnalyticsClusterDetails;
38
38
  const AddHeatWaveClusterDetails = __importStar(require("./add-heat-wave-cluster-details"));
@@ -125,6 +125,8 @@ const HeatWaveClusterTableMemoryEstimate = __importStar(require("./heat-wave-clu
125
125
  exports.HeatWaveClusterTableMemoryEstimate = HeatWaveClusterTableMemoryEstimate.HeatWaveClusterTableMemoryEstimate;
126
126
  const HeatWaveNode = __importStar(require("./heat-wave-node"));
127
127
  exports.HeatWaveNode = HeatWaveNode.HeatWaveNode;
128
+ const InitializationVariables = __importStar(require("./initialization-variables"));
129
+ exports.InitializationVariables = InitializationVariables.InitializationVariables;
128
130
  const InnoDbShutdownMode = __importStar(require("./inno-db-shutdown-mode"));
129
131
  exports.InnoDbShutdownMode = InnoDbShutdownMode.InnoDbShutdownMode;
130
132
  const MaintenanceDetails = __importStar(require("./maintenance-details"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,42 @@
1
+ /**
2
+ * MySQL Database Service API
3
+ * The API for the MySQL Database Service
4
+ * OpenAPI spec version: 20190415
5
+ * Contact: mysql-cloud-dev_ww_grp@oracle.com
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
11
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+ */
13
+ /**
14
+ * User-defined service variables set only at DB system initialization. These variables cannot be changed later at runtime.
15
+ */
16
+ export interface InitializationVariables {
17
+ /**
18
+ *
19
+ * Represents the MySQL server system variable lower_case_table_names (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lower_case_table_names).
20
+ * <p>
21
+ lowerCaseTableNames controls case-sensitivity of tables and schema names and how they are stored in the DB System.
22
+ * <p>
23
+ Valid values are:
24
+ * - CASE_SENSITIVE - (default) Table and schema name comparisons are case-sensitive and stored as specified. (lower_case_table_names=0)
25
+ * - CASE_INSENSITIVE_LOWERCASE - Table and schema name comparisons are not case-sensitive and stored in lowercase. (lower_case_table_names=1)
26
+ *
27
+ */
28
+ "lowerCaseTableNames"?: InitializationVariables.LowerCaseTableNames;
29
+ }
30
+ export declare namespace InitializationVariables {
31
+ enum LowerCaseTableNames {
32
+ CaseSensitive = "CASE_SENSITIVE",
33
+ CaseInsensitiveLowercase = "CASE_INSENSITIVE_LOWERCASE",
34
+ /**
35
+ * This value is used if a service returns a value for this enum that is not recognized by this
36
+ * version of the SDK.
37
+ */
38
+ UnknownValue = "UNKNOWN_VALUE"
39
+ }
40
+ function getJsonObj(obj: InitializationVariables): object;
41
+ function getDeserializedJsonObj(obj: InitializationVariables): object;
42
+ }