oci-mysql 2.102.2 → 2.103.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 (71) hide show
  1. package/lib/client.d.ts +47 -47
  2. package/lib/client.js +47 -47
  3. package/lib/model/backup-summary.d.ts +11 -1
  4. package/lib/model/backup-summary.js.map +1 -1
  5. package/lib/model/backup.d.ts +11 -1
  6. package/lib/model/backup.js.map +1 -1
  7. package/lib/model/channel-summary.d.ts +10 -0
  8. package/lib/model/channel-summary.js.map +1 -1
  9. package/lib/model/channel.d.ts +10 -0
  10. package/lib/model/channel.js.map +1 -1
  11. package/lib/model/configuration-summary.d.ts +10 -0
  12. package/lib/model/configuration-summary.js.map +1 -1
  13. package/lib/model/configuration-variables.d.ts +751 -5
  14. package/lib/model/configuration-variables.js +354 -0
  15. package/lib/model/configuration-variables.js.map +1 -1
  16. package/lib/model/configuration.d.ts +10 -0
  17. package/lib/model/configuration.js.map +1 -1
  18. package/lib/model/db-system-summary.d.ts +10 -0
  19. package/lib/model/db-system-summary.js.map +1 -1
  20. package/lib/model/db-system.d.ts +10 -0
  21. package/lib/model/db-system.js.map +1 -1
  22. package/lib/model/shape-summary.d.ts +1 -1
  23. package/lib/model/work-request-error.d.ts +1 -1
  24. package/lib/request/add-heat-wave-cluster-request.d.ts +2 -2
  25. package/lib/request/change-backup-compartment-request.d.ts +1 -1
  26. package/lib/request/copy-backup-request.d.ts +1 -1
  27. package/lib/request/create-backup-request.d.ts +1 -1
  28. package/lib/request/create-channel-request.d.ts +1 -1
  29. package/lib/request/create-configuration-request.d.ts +1 -1
  30. package/lib/request/create-db-system-request.d.ts +1 -1
  31. package/lib/request/create-replica-request.d.ts +1 -1
  32. package/lib/request/delete-backup-request.d.ts +1 -1
  33. package/lib/request/delete-channel-request.d.ts +2 -2
  34. package/lib/request/delete-configuration-request.d.ts +1 -1
  35. package/lib/request/delete-db-system-request.d.ts +2 -2
  36. package/lib/request/delete-heat-wave-cluster-request.d.ts +2 -2
  37. package/lib/request/delete-replica-request.d.ts +2 -2
  38. package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +2 -2
  39. package/lib/request/get-backup-request.d.ts +1 -1
  40. package/lib/request/get-channel-request.d.ts +2 -2
  41. package/lib/request/get-configuration-request.d.ts +1 -1
  42. package/lib/request/get-db-system-request.d.ts +2 -2
  43. package/lib/request/get-heat-wave-cluster-memory-estimate-request.d.ts +2 -2
  44. package/lib/request/get-heat-wave-cluster-request.d.ts +2 -2
  45. package/lib/request/get-replica-request.d.ts +2 -2
  46. package/lib/request/get-work-request-request.d.ts +1 -1
  47. package/lib/request/list-backups-request.d.ts +5 -5
  48. package/lib/request/list-channels-request.d.ts +5 -5
  49. package/lib/request/list-configurations-request.d.ts +4 -4
  50. package/lib/request/list-db-systems-request.d.ts +5 -5
  51. package/lib/request/list-replicas-request.d.ts +6 -6
  52. package/lib/request/list-shapes-request.d.ts +2 -2
  53. package/lib/request/list-versions-request.d.ts +2 -2
  54. package/lib/request/list-work-request-errors-request.d.ts +3 -3
  55. package/lib/request/list-work-request-logs-request.d.ts +3 -3
  56. package/lib/request/list-work-requests-request.d.ts +4 -4
  57. package/lib/request/reset-channel-request.d.ts +2 -2
  58. package/lib/request/restart-db-system-request.d.ts +2 -2
  59. package/lib/request/restart-heat-wave-cluster-request.d.ts +2 -2
  60. package/lib/request/resume-channel-request.d.ts +2 -2
  61. package/lib/request/start-db-system-request.d.ts +2 -2
  62. package/lib/request/start-heat-wave-cluster-request.d.ts +2 -2
  63. package/lib/request/stop-db-system-request.d.ts +2 -2
  64. package/lib/request/stop-heat-wave-cluster-request.d.ts +2 -2
  65. package/lib/request/update-backup-request.d.ts +1 -1
  66. package/lib/request/update-channel-request.d.ts +2 -2
  67. package/lib/request/update-configuration-request.d.ts +1 -1
  68. package/lib/request/update-db-system-request.d.ts +2 -2
  69. package/lib/request/update-heat-wave-cluster-request.d.ts +2 -2
  70. package/lib/request/update-replica-request.d.ts +2 -2
  71. package/package.json +3 -3
@@ -25,6 +25,20 @@ export interface ConfigurationVariables {
25
25
  *
26
26
  */
27
27
  "bigTables"?: boolean;
28
+ /**
29
+ * The server's default character set. If you set this variable, you should also set collation_server to specify the collation for the character set.
30
+ * <p>
31
+ characterSetServer corresponds to the MySQL server variable [character_set_server](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_character_set_server).
32
+ *
33
+ */
34
+ "characterSetServer"?: ConfigurationVariables.CharacterSetServer;
35
+ /**
36
+ * The server's default collation.
37
+ * <p>
38
+ collationServer corresponds to the MySQL server variable [collation_server](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_collation_server).
39
+ *
40
+ */
41
+ "collationServer"?: ConfigurationVariables.CollationServer;
28
42
  /**
29
43
  * Set the chunking size for updates to the global memory usage counter Global_connection_memory.
30
44
  * <p>
@@ -40,8 +54,18 @@ export interface ConfigurationVariables {
40
54
  */
41
55
  "connectionMemoryLimit"?: number;
42
56
  /**
43
- * (\"default_authentication_plugin\")
44
- */
57
+ * The default authentication plugin. This must be a plugin that uses internal credentials storage, so these values are permitted:
58
+ * mysql_native_password, sha256_password, caching_sha2_password.
59
+ * <p>
60
+ As of MySQL 8.0.27, which introduces multifactor authentication, default_authentication_plugin is still used,
61
+ * but in conjunction with and at a lower precedence than the authentication_policy system variable.
62
+ * For details, see The Default Authentication Plugin. Because of this diminished role, default_authentication_plugin is deprecated as of MySQL 8.0.27
63
+ * and subject to removal in a future MySQL version.
64
+ * <p>
65
+ defaultAuthenticationPlugin corresponds to the MySQL system variable
66
+ * [default_authentication_plugin](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin).
67
+ *
68
+ */
45
69
  "defaultAuthenticationPlugin"?: ConfigurationVariables.DefaultAuthenticationPlugin;
46
70
  /**
47
71
  * Set the total amount of memory that can be used by all user connections.
@@ -110,6 +134,13 @@ export interface ConfigurationVariables {
110
134
  *
111
135
  */
112
136
  "groupReplicationConsistency"?: ConfigurationVariables.GroupReplicationConsistency;
137
+ /**
138
+ * Specifies the maximum permitted result length in bytes for the GROUP_CONCAT() function.
139
+ * <p>
140
+ This is the MySQL variable \"group_concat_max_len\". For more information, please see the [MySQL documentation](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_group_concat_max_len)
141
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
142
+ */
143
+ "groupConcatMaxLen"?: number;
113
144
  /**
114
145
  * (\"innodb_ft_enable_stopword\")
115
146
  */
@@ -122,8 +153,13 @@ export interface ConfigurationVariables {
122
153
  */
123
154
  "innodbLogWriterThreads"?: boolean;
124
155
  /**
125
- * (\"local_infile\")
126
- */
156
+ * This variable controls server-side LOCAL capability for LOAD DATA statements. Depending on the local_infile setting,
157
+ * the server refuses or permits local data loading by clients that have LOCAL enabled on the client side.
158
+ * <p>
159
+ local_infile corresponds to the MySQL Server system variable
160
+ * [local_infile](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_local_infile)
161
+ *
162
+ */
127
163
  "localInfile"?: boolean;
128
164
  /**
129
165
  * (\"mysql_firewall_mode\")
@@ -172,7 +208,7 @@ export interface ConfigurationVariables {
172
208
  * [innodb_buffer_pool_size](https://dev.mysql.com/doc/refman/en/innodb-parameters.html#sysvar_innodb_buffer_pool_size).
173
209
  * <p>
174
210
  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).
211
+ * See [Default User Variables](https://docs.oracle.com/iaas/mysql-database/doc/configuring-db-system.html#GUID-B5504C19-F6F4-4DAB-8506-189A4E8F4A6A).
176
212
  * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
177
213
  */
178
214
  "innodbBufferPoolSize"?: number;
@@ -333,6 +369,14 @@ export interface ConfigurationVariables {
333
369
  * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
334
370
  */
335
371
  "innodbStatsTransientSamplePages"?: number;
372
+ /**
373
+ * When you enable innodbStrictMode, the InnoDB storage engine returns errors instead of warnings for invalid or incompatible table options.
374
+ * <p>
375
+ innodbStrictMode corresponds to the MySQL InnoDB system variable
376
+ * [innodb_strict_mode](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_strict_mode)
377
+ *
378
+ */
379
+ "innodbStrictMode"?: boolean;
336
380
  /**
337
381
  * The maximum size of one packet or any generated/intermediate string.
338
382
  * <p>
@@ -519,6 +563,358 @@ export interface ConfigurationVariables {
519
563
  *
520
564
  */
521
565
  "timeZone"?: string;
566
+ /**
567
+ * This variable controls the block encryption mode for block-based algorithms such as AES. It affects encryption for AES_ENCRYPT() and AES_DECRYPT().
568
+ *
569
+ * block_encryption_mode takes a value in aes-keylen-mode format, where keylen is the key length in bits and mode is the encryption mode. The value is not case-sensitive.
570
+ * Permitted keylen values are 128, 192, and 256. Permitted mode values are ECB, CBC, CFB1, CFB8, CFB128, and OFB.
571
+ * <p>
572
+ block_encryption_mode corresponds to the MySQL Server Administration system variable
573
+ * [block_encryption_mode](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_block_encryption_mode)
574
+ *
575
+ */
576
+ "blockEncryptionMode"?: string;
577
+ /**
578
+ * Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk.
579
+ * There is no delay by default. Setting this variable to a microsecond delay enables more transactions to be synchronized
580
+ * together to disk at once, reducing the overall time to commit a group of transactions because the larger groups required
581
+ * fewer time units per group.
582
+ * <p>
583
+ binlogGroupCommitSyncDelay corresponds to the MySQL Replication system variable
584
+ * [binlog_group_commit_sync_delay](https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_binlog_group_commit_sync_delay)
585
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
586
+ */
587
+ "binlogGroupCommitSyncDelay"?: number;
588
+ /**
589
+ * The maximum number of transactions to wait for before aborting the current delay as specified by binlog_group_commit_sync_delay.
590
+ * If binlog_group_commit_sync_delay is set to 0, then this option has no effect.
591
+ * <p>
592
+ binlogGroupCommitSyncNoDelayCount corresponds to the MySQL Replication system variable
593
+ * [binlog_group_commit_sync_no_delay_count](https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_binlog_group_commit_sync_no_delay_count)
594
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
595
+ */
596
+ "binlogGroupCommitSyncNoDelayCount"?: number;
597
+ /**
598
+ * Specifies the number of seconds to wait for more data or a heartbeat signal from the source before the replica considers the connection broken,
599
+ * aborts the read, and tries to reconnect. Setting this variable has no immediate effect. The state of the variable applies on all subsequent START REPLICA commands.
600
+ * <p>
601
+ replicaNetTimeout corresponds to the MySQL Replica server system variable
602
+ * [replica_net_timeout](https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_net_timeout)
603
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
604
+ */
605
+ "replicaNetTimeout"?: number;
606
+ /**
607
+ * Whether client connections to the server are required to use some form of secure transport.
608
+ * When this variable is enabled, the server permits only TCP/IP connections encrypted using TLS/SSL, or connections that use a socket file or shared memory.
609
+ * The server rejects nonsecure connection attempts, which fail with an ER_SECURE_TRANSPORT_REQUIRED error.
610
+ * <p>
611
+ require_secure_transport corresponds to the MySQL Server Administration system variable
612
+ * [require_secure_transport](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_require_secure_transport)
613
+ *
614
+ */
615
+ "requireSecureTransport"?: boolean;
616
+ /**
617
+ * Defines the amount of disk space occupied by redo log files. innodb_redo_log_capacity supercedes the innodb_log_files_in_group and innodb_log_file_size variables,
618
+ * which are both ignored if innodb_redo_log_capacity is defined. If innodb_redo_log_capacity is not defined, and if neither innodb_log_file_size or innodb_log_files_in_group are defined,
619
+ * then the default innodb_redo_log_capacity value is used.
620
+ * <p>
621
+ innodbRedoLogCapacity corresponds to the InnoDB Startup Options and System Variables
622
+ * [innodb_redo_log_capacity](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_redo_log_capacity)
623
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
624
+ */
625
+ "innodbRedoLogCapacity"?: number;
626
+ /**
627
+ * The delay period before executing a new transaction, in milliseconds. The maximum value is 300000 (5 minutes).
628
+ * A transaction delay can be used in cases where parallel transactions affect the performance of other operations due to resource contention.
629
+ * For example, if parallel transactions affect index creation or an online buffer pool resizing operation,
630
+ * you can configure a transaction delay to reduce resource contention while those operations are running.
631
+ * <p>
632
+ threadPoolTransactionDelay corresponds to the MySQL Server system variable
633
+ * [thread_pool_transaction_delay](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_pool_transaction_delay)
634
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
635
+ */
636
+ "threadPoolTransactionDelay"?: number;
637
+ /**
638
+ * The maximum number of query threads permitted in a thread group.
639
+ * The maximum value is 4096, but if thread_pool_max_transactions_limit is set, thread_pool_query_threads_per_group must not exceed that value.
640
+ * The default value of 1 means there is one active query thread in each thread group, which works well for many loads.
641
+ * When you are using the high concurrency thread pool algorithm (thread_pool_algorithm = 1),
642
+ * consider increasing the value if you experience slower response times due to long-running transactions.
643
+ * <p>
644
+ threadPoolQueryThreadsPerGroup corresponds to the MySQL Server system variable
645
+ * [thread_pool_query_threads_per_group](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_pool_query_threads_per_group)
646
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
647
+ */
648
+ "threadPoolQueryThreadsPerGroup"?: number;
649
+ /**
650
+ * This variable determines the default output format used by EXPLAIN in the absence of a FORMAT option when displaying a query execution plan.
651
+ * <p>
652
+ explainFormat corresponds to the MySQL system variable
653
+ * [explain_format](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_explain_format).
654
+ *
655
+ */
656
+ "explainFormat"?: ConfigurationVariables.ExplainFormat;
657
+ /**
658
+ * This system variable determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns.
659
+ * By default, explicit_defaults_for_timestamp is enabled, which disables the nonstandard behaviors. Disabling explicit_defaults_for_timestamp results in a warning.
660
+ * <p>
661
+ explicit_defaults_for_timestamp corresponds to the MySQL Server Administration system variable
662
+ * [explicit_defaults_for_timestamp](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_explicit_defaults_for_timestamp)
663
+ *
664
+ */
665
+ "explicitDefaultsForTimestamp"?: boolean;
666
+ /**
667
+ * Whether GIPK mode is in effect, in which case a MySQL replication source server adds a generated invisible primary key to any InnoDB table that is created without one.
668
+ * <p>
669
+ sqlGenerateInvisiblePrimaryKey corresponds to the MySQL system variable
670
+ * [sql_generate_invisible_primary_key] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sql_generate_invisible_primary_key).
671
+ *
672
+ */
673
+ "sqlGenerateInvisiblePrimaryKey"?: boolean;
674
+ /**
675
+ * Defines the maximum amount of memory that can be occupied by the TempTable storage engine before it starts storing data on disk.
676
+ * The default value is 1073741824 bytes (1GiB). For more information, see Section 10.4.4, \u201CInternal Temporary Table Use in MySQL\u201D.
677
+ * <p>
678
+ temptableMaxRam corresponds to the MySQL system variable
679
+ * [temptable_max_ram] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_temptable_max_ram).
680
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
681
+ */
682
+ "temptableMaxRam"?: number;
683
+ /**
684
+ * Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially.
685
+ * Permitted values are described in the following table. Values may also be specified numerically.
686
+ * <p>
687
+ innodbChangeBuffering corresponds to the MySQL InnoDB Startup Options and System Variables
688
+ * [innodb_change_buffering] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_change_buffering).
689
+ *
690
+ */
691
+ "innodbChangeBuffering"?: ConfigurationVariables.InnodbChangeBuffering;
692
+ /**
693
+ * Whether the InnoDB adaptive hash index is enabled or disabled.
694
+ * It may be desirable, depending on your workload, to dynamically enable or disable adaptive hash indexing to improve query performance.
695
+ * Because the adaptive hash index may not be useful for all workloads, conduct benchmarks with it both enabled and disabled, using realistic workloads.
696
+ * <p>
697
+ innodbAdaptiveHashIndex corresponds to the MySQL InnoDB Startup Options and System Variables
698
+ * [innodb_adaptive_hash_index] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_adaptive_hash_index).
699
+ *
700
+ */
701
+ "innodbAdaptiveHashIndex"?: boolean;
702
+ /**
703
+ * When enabled, undo tablespaces that exceed the threshold value defined by innodb_max_undo_log_size are marked for truncation.
704
+ * Only undo tablespaces can be truncated. Truncating undo logs that reside in the system tablespace is not supported.
705
+ * For truncation to occur, there must be at least two undo tablespaces.
706
+ * <p>
707
+ innodbUndoLogTruncate corresponds to the MySQL InnoDB Startup Options and System Variables
708
+ * [innodb_undo_log_truncate] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_undo_log_truncate).
709
+ *
710
+ */
711
+ "innodbUndoLogTruncate"?: boolean;
712
+ /**
713
+ * The number of table definitions that can be stored in the table definition cache.
714
+ * If you use a large number of tables, you can create a large table definition cache to speed up opening of tables.
715
+ * The table definition cache takes less space and does not use file descriptors, unlike the normal table cache.
716
+ * <p>
717
+ table_definition_cache corresponds to the MySQL Server Administration system variable
718
+ * [table_definition_cache](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_definition_cache)
719
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
720
+ */
721
+ "tableDefinitionCache"?: number;
722
+ /**
723
+ * The number of open tables for all threads. Increasing this value increases the number of file descriptors that mysqld requires.
724
+ * <p>
725
+ table_open_cache corresponds to the MySQL Server Administration system variable
726
+ * [table_open_cache](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_open_cache)
727
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
728
+ */
729
+ "tableOpenCache"?: number;
730
+ /**
731
+ * The maximum amount of space to use for all relay logs.
732
+ * <p>
733
+ relayLogSpaceLimit corresponds to the MySQL Replica Server Options variable
734
+ * [relay_log_space_limit] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_relay_log_space_limit).
735
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
736
+ */
737
+ "relayLogSpaceLimit"?: number;
738
+ /**
739
+ * The optimizer_switch system variable enables control over optimizer behavior.
740
+ * The value of this variable is a set of flags, each of which has a value of on or off to indicate whether the corresponding optimizer behavior is enabled or disabled.
741
+ * This variable has global and session values and can be changed at runtime. The global default can be set at server startup.
742
+ * <p>
743
+ Setting hypergraph_optimizer=on for cloud builds below 9.0.0 will fail.
744
+ * <p>
745
+ optimizerSwitch corresponds to the MySQL Server System variable
746
+ * [optimizer_switch] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_optimizer_switch).
747
+ *
748
+ */
749
+ "optimizerSwitch"?: string;
750
+ /**
751
+ * From MySQL 8.0.26, use replica_type_conversions in place of slave_type_conversions, which is deprecated from that release.
752
+ * In releases before MySQL 8.0.26, use slave_type_conversions.
753
+ * <p>
754
+ replica_type_conversions controls the type conversion mode in effect on the replica when using row-based replication.
755
+ * Its value is a comma-delimited set of zero or more elements from the list: ALL_LOSSY, ALL_NON_LOSSY, ALL_SIGNED, ALL_UNSIGNED.
756
+ * Set this variable to an empty string to disallow type conversions between the source and the replica.
757
+ * Setting this variable takes effect for all replication channels immediately, including running channels.
758
+ * <p>
759
+ replica_type_conversions corresponds to the MySQL Replica Server Options variable
760
+ * [replica_type_conversions] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_type_conversions).
761
+ *
762
+ */
763
+ "replicaTypeConversions"?: string;
764
+ /**
765
+ * Beginning with MySQL 8.0.26, slave_parallel_workers is deprecated, and you should use replica_parallel_workers instead.
766
+ * (Prior to MySQL 8.0.26, you must use slave_parallel_workers to set the number of applier threads.)
767
+ * <p>
768
+ replicaParallelWorkers corresponds to the MySQL Replica Server Options variable
769
+ * [replica_parallel_workers] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_parallel_workers).
770
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
771
+ */
772
+ "replicaParallelWorkers"?: number;
773
+ /**
774
+ * Whether to resolve host names when checking client connections. If this variable is OFF, mysqld resolves host names when checking client connections.
775
+ * If it is ON, mysqld uses only IP numbers; in this case, all Host column values in the grant tables must be IP addresses.
776
+ * See Section 7.1.12.3, \u201CDNS Lookups and the Host Cache\u201D.
777
+ * <p>
778
+ skipNameResolve corresponds to the MySQL Server System variable
779
+ * [skip_name_resolve] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_skip_name_resolve).
780
+ *
781
+ */
782
+ "skipNameResolve"?: boolean;
783
+ /**
784
+ * The maximum number of simultaneous connections permitted to any given MySQL user account.
785
+ * A value of 0 (the default) means \u201Cno limit.\u201D This variable has a global value that can be set at server startup or runtime.
786
+ * It also has a read-only session value that indicates the effective simultaneous-connection limit that applies to the account associated with the current session.
787
+ * <p>
788
+ maxUserConnections corresponds to the MySQL Server System variable
789
+ * [max_user_connections] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_user_connections).
790
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
791
+ */
792
+ "maxUserConnections"?: number;
793
+ /**
794
+ * The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans.
795
+ * In MySQL 8.0.18 and later, this variable also controls the amount of memory used for hash joins. Normally, the best way to get fast joins is to add indexes.
796
+ * Increase the value of join_buffer_size to get a faster full join when adding indexes is not possible. One join buffer is allocated for each full join between two tables.
797
+ * For a complex join between several tables for which indexes are not used, multiple join buffers might be necessary.
798
+ * <p>
799
+ joinBufferSize corresponds to the MySQL Server System variable
800
+ * [join_buffer_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_join_buffer_size).
801
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
802
+ */
803
+ "joinBufferSize"?: number;
804
+ /**
805
+ * Limit the assumed maximum number of seeks when looking up rows based on a key.
806
+ * The MySQL optimizer assumes that no more than this number of key seeks are required when searching for matching rows in a table by scanning an index,
807
+ * regardless of the actual cardinality of the index (see Section 15.7.7.22, \u201CSHOW INDEX Statement\u201D).
808
+ * By setting this to a low value (say, 100), you can force MySQL to prefer indexes instead of table scans.
809
+ * <p>
810
+ maxSeeksForKey corresponds to the MySQL Server System variable
811
+ * [max_seeks_for_key] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_seeks_for_key).
812
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
813
+ */
814
+ "maxSeeksForKey"?: number;
815
+ /**
816
+ * The limit on memory consumption for the range optimizer. A value of 0 means \u201Cno limit.\u201D
817
+ * If an execution plan considered by the optimizer uses the range access method but the optimizer estimates that the amount of memory needed for this method would exceed the limit,
818
+ * it abandons the plan and considers other plans.
819
+ * <p>
820
+ rangeOptimizerMaxMemSize corresponds to the MySQL Server System variable
821
+ * [range_optimizer_max_mem_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_range_optimizer_max_mem_size).
822
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
823
+ */
824
+ "rangeOptimizerMaxMemSize"?: number;
825
+ /**
826
+ * auto_increment_increment and auto_increment_offset are intended for use with circular (source-to-source) replication,
827
+ * and can be used to control the operation of AUTO_INCREMENT columns. Both variables have global and session values,
828
+ * and each can assume an integer value between 1 and 65,535 inclusive.
829
+ * <p>
830
+ autoIncrementIncrement corresponds to the MySQL Replication Source Options variable
831
+ * [auto_increment_increment] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_auto_increment_increment).
832
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
833
+ */
834
+ "autoIncrementIncrement"?: number;
835
+ /**
836
+ * This variable has a default value of 1. If it is left with its default value,
837
+ * and Group Replication is started on the server in multi-primary mode, it is changed to the server ID.
838
+ * <p>
839
+ autoIncrementOffset corresponds to the MySQL Replication Source Options variable
840
+ * [auto_increment_offset] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_auto_increment_offset).
841
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
842
+ */
843
+ "autoIncrementOffset"?: number;
844
+ /**
845
+ * The lock mode to use for generating auto-increment values.
846
+ * Permissible values are 0, 1, or 2, for traditional, consecutive, or interleaved, respectively.
847
+ * <p>
848
+ innodbAutoincLockMode corresponds to the MySQL InnoDB Startup Options and System Variables
849
+ * [innodb_autoinc_lock_mode] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_autoinc_lock_mode).
850
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
851
+ */
852
+ "innodbAutoincLockMode"?: number;
853
+ /**
854
+ * InnoDB rolls back only the last statement on a transaction timeout by default.
855
+ * If --innodb-rollback-on-timeout is specified, a transaction timeout causes InnoDB to abort and roll back the entire transaction.
856
+ * <p>
857
+ innodbRollbackOnTimeout corresponds to the MySQL InnoDB Startup Options and System Variables
858
+ * [innodb_rollback_on_timeout] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_rollback_on_timeout).
859
+ *
860
+ */
861
+ "innodbRollbackOnTimeout"?: boolean;
862
+ /**
863
+ * Specifies an upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
864
+ * There is one such log file for each index being created or table being altered.
865
+ * This log file stores data inserted, updated, or deleted in the table during the DDL operation.
866
+ * <p>
867
+ innodbOnlineAlterLogMaxSize corresponds to the MySQL InnoDB Startup Options and System Variables
868
+ * [innodb_online_alter_log_max_size] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_online_alter_log_max_size).
869
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
870
+ */
871
+ "innodbOnlineAlterLogMaxSize"?: number;
872
+ /**
873
+ * This variable defines:
874
+ * <p>
875
+ * The sort buffer size for online DDL operations that create or rebuild secondary indexes.
876
+ * However, as of MySQL 8.0.27, this responsibility is subsumed by the innodb_ddl_buffer_size variable.
877
+ * <p>
878
+ * The amount by which the temporary log file is extended when recording concurrent DML during an online DDL operation,
879
+ * and the size of the temporary log file read buffer and write buffer.
880
+ * <p>
881
+ innodbSortBufferSize corresponds to the MySQL InnoDB Startup Options and System Variables
882
+ * [innodb_sort_buffer_size] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_sort_buffer_size).
883
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
884
+ */
885
+ "innodbSortBufferSize"?: number;
886
+ /**
887
+ * Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool.
888
+ * When innodb_numa_interleave is enabled, the NUMA memory policy is set to MPOL_INTERLEAVE for the mysqld process.
889
+ * After the InnoDB buffer pool is allocated, the NUMA memory policy is set back to MPOL_DEFAULT.
890
+ * For the innodb_numa_interleave option to be available, MySQL must be compiled on a NUMA-enabled Linux system.
891
+ * <p>
892
+ innodbNumaInterleave corresponds to the MySQL InnoDB Startup Options and System Variables
893
+ * [innodb_numa_interleave] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_numa_interleave).
894
+ *
895
+ */
896
+ "innodbNumaInterleave"?: boolean;
897
+ /**
898
+ * The number of thread groups in the thread pool. This is the most important parameter controlling thread pool performance.
899
+ * It affects how many statements can execute simultaneously. If a value outside the range of permissible values is specified,
900
+ * the thread pool plugin does not load and the server writes a message to the error log.
901
+ * <p>
902
+ threadPoolSize corresponds to the MySQL Server System variable
903
+ * [thread_pool_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_pool_size).
904
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
905
+ */
906
+ "threadPoolSize"?: number;
907
+ /**
908
+ * If a query takes longer than this many seconds, the server increments the Slow_queries status variable.
909
+ * If the slow query log is enabled, the query is logged to the slow query log file.
910
+ * This value is measured in real time, not CPU time,
911
+ * so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one.
912
+ * <p>
913
+ longQueryTime corresponds to the MySQL Server System variable
914
+ * [long_query_time] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_long_query_time).
915
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
916
+ */
917
+ "longQueryTime"?: number;
522
918
  }
523
919
  export declare namespace ConfigurationVariables {
524
920
  enum CompletionType {
@@ -531,6 +927,333 @@ export declare namespace ConfigurationVariables {
531
927
  */
532
928
  UnknownValue = "UNKNOWN_VALUE"
533
929
  }
930
+ enum CharacterSetServer {
931
+ Armscii8 = "ARMSCII8",
932
+ Ascii = "ASCII",
933
+ Big5 = "BIG5",
934
+ Binary = "BINARY",
935
+ Cp1250 = "CP1250",
936
+ Cp1251 = "CP1251",
937
+ Cp1256 = "CP1256",
938
+ Cp1257 = "CP1257",
939
+ Cp850 = "CP850",
940
+ Cp852 = "CP852",
941
+ Cp866 = "CP866",
942
+ Cp932 = "CP932",
943
+ Dec8 = "DEC8",
944
+ Eucjpms = "EUCJPMS",
945
+ Euckr = "EUCKR",
946
+ Gb18030 = "GB18030",
947
+ Gb2312 = "GB2312",
948
+ Gbk = "GBK",
949
+ Geostd8 = "GEOSTD8",
950
+ Greek = "GREEK",
951
+ Hebrew = "HEBREW",
952
+ Hp8 = "HP8",
953
+ Keybcs2 = "KEYBCS2",
954
+ Koi8R = "KOI8R",
955
+ Koi8U = "KOI8U",
956
+ Latin1 = "LATIN1",
957
+ Latin2 = "LATIN2",
958
+ Latin5 = "LATIN5",
959
+ Latin7 = "LATIN7",
960
+ Macce = "MACCE",
961
+ Macroman = "MACROMAN",
962
+ Sjis = "SJIS",
963
+ Swe7 = "SWE7",
964
+ Tis620 = "TIS620",
965
+ Ucs2 = "UCS2",
966
+ Ujis = "UJIS",
967
+ Utf16 = "UTF16",
968
+ Utf16Le = "UTF16LE",
969
+ Utf32 = "UTF32",
970
+ Utf8Mb3 = "UTF8MB3",
971
+ Utf8Mb4 = "UTF8MB4",
972
+ /**
973
+ * This value is used if a service returns a value for this enum that is not recognized by this
974
+ * version of the SDK.
975
+ */
976
+ UnknownValue = "UNKNOWN_VALUE"
977
+ }
978
+ enum CollationServer {
979
+ Armscii8GeneralCi = "ARMSCII8_GENERAL_CI",
980
+ Armscii8Bin = "ARMSCII8_BIN",
981
+ AsciiGeneralCi = "ASCII_GENERAL_CI",
982
+ AsciiBin = "ASCII_BIN",
983
+ Big5ChineseCi = "BIG5_CHINESE_CI",
984
+ Big5Bin = "BIG5_BIN",
985
+ Binary = "BINARY",
986
+ Cp1250GeneralCi = "CP1250_GENERAL_CI",
987
+ Cp1250Bin = "CP1250_BIN",
988
+ Cp1250CroatianCi = "CP1250_CROATIAN_CI",
989
+ Cp1250CzechCs = "CP1250_CZECH_CS",
990
+ Cp1250PolishCi = "CP1250_POLISH_CI",
991
+ Cp1251GeneralCi = "CP1251_GENERAL_CI",
992
+ Cp1251Bin = "CP1251_BIN",
993
+ Cp1251BulgarianCi = "CP1251_BULGARIAN_CI",
994
+ Cp1251GeneralCs = "CP1251_GENERAL_CS",
995
+ Cp1251UkrainianCi = "CP1251_UKRAINIAN_CI",
996
+ Cp1256GeneralCi = "CP1256_GENERAL_CI",
997
+ Cp1256Bin = "CP1256_BIN",
998
+ Cp1257GeneralCi = "CP1257_GENERAL_CI",
999
+ Cp1257Bin = "CP1257_BIN",
1000
+ Cp1257LithuanianCi = "CP1257_LITHUANIAN_CI",
1001
+ Cp850GeneralCi = "CP850_GENERAL_CI",
1002
+ Cp850Bin = "CP850_BIN",
1003
+ Cp852GeneralCi = "CP852_GENERAL_CI",
1004
+ Cp852Bin = "CP852_BIN",
1005
+ Cp866GeneralCi = "CP866_GENERAL_CI",
1006
+ Cp866Bin = "CP866_BIN",
1007
+ Cp932JapaneseCi = "CP932_JAPANESE_CI",
1008
+ Cp932Bin = "CP932_BIN",
1009
+ Dec8SwedishCi = "DEC8_SWEDISH_CI",
1010
+ Dec8Bin = "DEC8_BIN",
1011
+ EucjpmsJapaneseCi = "EUCJPMS_JAPANESE_CI",
1012
+ EucjpmsBin = "EUCJPMS_BIN",
1013
+ EuckrKoreanCi = "EUCKR_KOREAN_CI",
1014
+ EuckrBin = "EUCKR_BIN",
1015
+ Gb18030ChineseCi = "GB18030_CHINESE_CI",
1016
+ Gb18030Bin = "GB18030_BIN",
1017
+ Gb18030Unicode520Ci = "GB18030_UNICODE_520_CI",
1018
+ Gb2312ChineseCi = "GB2312_CHINESE_CI",
1019
+ Gb2312Bin = "GB2312_BIN",
1020
+ GbkChineseCi = "GBK_CHINESE_CI",
1021
+ GbkBin = "GBK_BIN",
1022
+ Geostd8GeneralCi = "GEOSTD8_GENERAL_CI",
1023
+ Geostd8Bin = "GEOSTD8_BIN",
1024
+ GreekGeneralCi = "GREEK_GENERAL_CI",
1025
+ GreekBin = "GREEK_BIN",
1026
+ HebrewGeneralCi = "HEBREW_GENERAL_CI",
1027
+ HebrewBin = "HEBREW_BIN",
1028
+ Hp8EnglishCi = "HP8_ENGLISH_CI",
1029
+ Hp8Bin = "HP8_BIN",
1030
+ Keybcs2GeneralCi = "KEYBCS2_GENERAL_CI",
1031
+ Keybcs2Bin = "KEYBCS2_BIN",
1032
+ Koi8RGeneralCi = "KOI8R_GENERAL_CI",
1033
+ Koi8RBin = "KOI8R_BIN",
1034
+ Koi8UGeneralCi = "KOI8U_GENERAL_CI",
1035
+ Koi8UBin = "KOI8U_BIN",
1036
+ Latin1SwedishCi = "LATIN1_SWEDISH_CI",
1037
+ Latin1Bin = "LATIN1_BIN",
1038
+ Latin1DanishCi = "LATIN1_DANISH_CI",
1039
+ Latin1GeneralCi = "LATIN1_GENERAL_CI",
1040
+ Latin1GeneralCs = "LATIN1_GENERAL_CS",
1041
+ Latin1German1Ci = "LATIN1_GERMAN1_CI",
1042
+ Latin1German2Ci = "LATIN1_GERMAN2_CI",
1043
+ Latin1SpanishCi = "LATIN1_SPANISH_CI",
1044
+ Latin2GeneralCi = "LATIN2_GENERAL_CI",
1045
+ Latin2Bin = "LATIN2_BIN",
1046
+ Latin2CroatianCi = "LATIN2_CROATIAN_CI",
1047
+ Latin2CzechCs = "LATIN2_CZECH_CS",
1048
+ Latin2HungarianCi = "LATIN2_HUNGARIAN_CI",
1049
+ Latin5TurkishCi = "LATIN5_TURKISH_CI",
1050
+ Latin5Bin = "LATIN5_BIN",
1051
+ Latin7GeneralCi = "LATIN7_GENERAL_CI",
1052
+ Latin7Bin = "LATIN7_BIN",
1053
+ Latin7EstonianCs = "LATIN7_ESTONIAN_CS",
1054
+ Latin7GeneralCs = "LATIN7_GENERAL_CS",
1055
+ MacceGeneralCi = "MACCE_GENERAL_CI",
1056
+ MacceBin = "MACCE_BIN",
1057
+ MacromanGeneralCi = "MACROMAN_GENERAL_CI",
1058
+ MacromanBin = "MACROMAN_BIN",
1059
+ SjisJapaneseCi = "SJIS_JAPANESE_CI",
1060
+ SjisBin = "SJIS_BIN",
1061
+ Swe7SwedishCi = "SWE7_SWEDISH_CI",
1062
+ Swe7Bin = "SWE7_BIN",
1063
+ Tis620ThaiCi = "TIS620_THAI_CI",
1064
+ Tis620Bin = "TIS620_BIN",
1065
+ Ucs2GeneralCi = "UCS2_GENERAL_CI",
1066
+ Ucs2Bin = "UCS2_BIN",
1067
+ Ucs2CroatianCi = "UCS2_CROATIAN_CI",
1068
+ Ucs2CzechCi = "UCS2_CZECH_CI",
1069
+ Ucs2DanishCi = "UCS2_DANISH_CI",
1070
+ Ucs2EsperantoCi = "UCS2_ESPERANTO_CI",
1071
+ Ucs2EstonianCi = "UCS2_ESTONIAN_CI",
1072
+ Ucs2GeneralMysql500Ci = "UCS2_GENERAL_MYSQL500_CI",
1073
+ Ucs2German2Ci = "UCS2_GERMAN2_CI",
1074
+ Ucs2HungarianCi = "UCS2_HUNGARIAN_CI",
1075
+ Ucs2IcelandicCi = "UCS2_ICELANDIC_CI",
1076
+ Ucs2LatvianCi = "UCS2_LATVIAN_CI",
1077
+ Ucs2LithuanianCi = "UCS2_LITHUANIAN_CI",
1078
+ Ucs2PersianCi = "UCS2_PERSIAN_CI",
1079
+ Ucs2PolishCi = "UCS2_POLISH_CI",
1080
+ Ucs2RomanianCi = "UCS2_ROMANIAN_CI",
1081
+ Ucs2RomanCi = "UCS2_ROMAN_CI",
1082
+ Ucs2SinhalaCi = "UCS2_SINHALA_CI",
1083
+ Ucs2SlovakCi = "UCS2_SLOVAK_CI",
1084
+ Ucs2SlovenianCi = "UCS2_SLOVENIAN_CI",
1085
+ Ucs2Spanish2Ci = "UCS2_SPANISH2_CI",
1086
+ Ucs2SpanishCi = "UCS2_SPANISH_CI",
1087
+ Ucs2SwedishCi = "UCS2_SWEDISH_CI",
1088
+ Ucs2TurkishCi = "UCS2_TURKISH_CI",
1089
+ Ucs2Unicode520Ci = "UCS2_UNICODE_520_CI",
1090
+ Ucs2UnicodeCi = "UCS2_UNICODE_CI",
1091
+ Ucs2VietnameseCi = "UCS2_VIETNAMESE_CI",
1092
+ UjisJapaneseCi = "UJIS_JAPANESE_CI",
1093
+ UjisBin = "UJIS_BIN",
1094
+ Utf16GeneralCi = "UTF16_GENERAL_CI",
1095
+ Utf16Bin = "UTF16_BIN",
1096
+ Utf16CroatianCi = "UTF16_CROATIAN_CI",
1097
+ Utf16CzechCi = "UTF16_CZECH_CI",
1098
+ Utf16DanishCi = "UTF16_DANISH_CI",
1099
+ Utf16EsperantoCi = "UTF16_ESPERANTO_CI",
1100
+ Utf16EstonianCi = "UTF16_ESTONIAN_CI",
1101
+ Utf16German2Ci = "UTF16_GERMAN2_CI",
1102
+ Utf16HungarianCi = "UTF16_HUNGARIAN_CI",
1103
+ Utf16IcelandicCi = "UTF16_ICELANDIC_CI",
1104
+ Utf16LatvianCi = "UTF16_LATVIAN_CI",
1105
+ Utf16LithuanianCi = "UTF16_LITHUANIAN_CI",
1106
+ Utf16PersianCi = "UTF16_PERSIAN_CI",
1107
+ Utf16PolishCi = "UTF16_POLISH_CI",
1108
+ Utf16RomanianCi = "UTF16_ROMANIAN_CI",
1109
+ Utf16RomanCi = "UTF16_ROMAN_CI",
1110
+ Utf16SinhalaCi = "UTF16_SINHALA_CI",
1111
+ Utf16SlovakCi = "UTF16_SLOVAK_CI",
1112
+ Utf16SlovenianCi = "UTF16_SLOVENIAN_CI",
1113
+ Utf16Spanish2Ci = "UTF16_SPANISH2_CI",
1114
+ Utf16SpanishCi = "UTF16_SPANISH_CI",
1115
+ Utf16SwedishCi = "UTF16_SWEDISH_CI",
1116
+ Utf16TurkishCi = "UTF16_TURKISH_CI",
1117
+ Utf16Unicode520Ci = "UTF16_UNICODE_520_CI",
1118
+ Utf16UnicodeCi = "UTF16_UNICODE_CI",
1119
+ Utf16VietnameseCi = "UTF16_VIETNAMESE_CI",
1120
+ Utf16LeGeneralCi = "UTF16LE_GENERAL_CI",
1121
+ Utf16LeBin = "UTF16LE_BIN",
1122
+ Utf32GeneralCi = "UTF32_GENERAL_CI",
1123
+ Utf32Bin = "UTF32_BIN",
1124
+ Utf32CroatianCi = "UTF32_CROATIAN_CI",
1125
+ Utf32CzechCi = "UTF32_CZECH_CI",
1126
+ Utf32DanishCi = "UTF32_DANISH_CI",
1127
+ Utf32EsperantoCi = "UTF32_ESPERANTO_CI",
1128
+ Utf32EstonianCi = "UTF32_ESTONIAN_CI",
1129
+ Utf32German2Ci = "UTF32_GERMAN2_CI",
1130
+ Utf32HungarianCi = "UTF32_HUNGARIAN_CI",
1131
+ Utf32IcelandicCi = "UTF32_ICELANDIC_CI",
1132
+ Utf32LatvianCi = "UTF32_LATVIAN_CI",
1133
+ Utf32LithuanianCi = "UTF32_LITHUANIAN_CI",
1134
+ Utf32PersianCi = "UTF32_PERSIAN_CI",
1135
+ Utf32PolishCi = "UTF32_POLISH_CI",
1136
+ Utf32RomanianCi = "UTF32_ROMANIAN_CI",
1137
+ Utf32RomanCi = "UTF32_ROMAN_CI",
1138
+ Utf32SinhalaCi = "UTF32_SINHALA_CI",
1139
+ Utf32SlovakCi = "UTF32_SLOVAK_CI",
1140
+ Utf32SlovenianCi = "UTF32_SLOVENIAN_CI",
1141
+ Utf32Spanish2Ci = "UTF32_SPANISH2_CI",
1142
+ Utf32SpanishCi = "UTF32_SPANISH_CI",
1143
+ Utf32SwedishCi = "UTF32_SWEDISH_CI",
1144
+ Utf32TurkishCi = "UTF32_TURKISH_CI",
1145
+ Utf32Unicode520Ci = "UTF32_UNICODE_520_CI",
1146
+ Utf32UnicodeCi = "UTF32_UNICODE_CI",
1147
+ Utf32VietnameseCi = "UTF32_VIETNAMESE_CI",
1148
+ Utf8GeneralCi = "UTF8_GENERAL_CI",
1149
+ Utf8Bin = "UTF8_BIN",
1150
+ Utf8CroatianCi = "UTF8_CROATIAN_CI",
1151
+ Utf8CzechCi = "UTF8_CZECH_CI",
1152
+ Utf8DanishCi = "UTF8_DANISH_CI",
1153
+ Utf8EsperantoCi = "UTF8_ESPERANTO_CI",
1154
+ Utf8EstonianCi = "UTF8_ESTONIAN_CI",
1155
+ Utf8GeneralMysql500Ci = "UTF8_GENERAL_MYSQL500_CI",
1156
+ Utf8German2Ci = "UTF8_GERMAN2_CI",
1157
+ Utf8HungarianCi = "UTF8_HUNGARIAN_CI",
1158
+ Utf8IcelandicCi = "UTF8_ICELANDIC_CI",
1159
+ Utf8LatvianCi = "UTF8_LATVIAN_CI",
1160
+ Utf8LithuanianCi = "UTF8_LITHUANIAN_CI",
1161
+ Utf8PersianCi = "UTF8_PERSIAN_CI",
1162
+ Utf8PolishCi = "UTF8_POLISH_CI",
1163
+ Utf8RomanianCi = "UTF8_ROMANIAN_CI",
1164
+ Utf8RomanCi = "UTF8_ROMAN_CI",
1165
+ Utf8SinhalaCi = "UTF8_SINHALA_CI",
1166
+ Utf8SlovakCi = "UTF8_SLOVAK_CI",
1167
+ Utf8SlovenianCi = "UTF8_SLOVENIAN_CI",
1168
+ Utf8Spanish2Ci = "UTF8_SPANISH2_CI",
1169
+ Utf8SpanishCi = "UTF8_SPANISH_CI",
1170
+ Utf8SwedishCi = "UTF8_SWEDISH_CI",
1171
+ Utf8TolowerCi = "UTF8_TOLOWER_CI",
1172
+ Utf8TurkishCi = "UTF8_TURKISH_CI",
1173
+ Utf8Unicode520Ci = "UTF8_UNICODE_520_CI",
1174
+ Utf8UnicodeCi = "UTF8_UNICODE_CI",
1175
+ Utf8VietnameseCi = "UTF8_VIETNAMESE_CI",
1176
+ Utf8Mb40900AiCi = "UTF8MB4_0900_AI_CI",
1177
+ Utf8Mb40900AsCi = "UTF8MB4_0900_AS_CI",
1178
+ Utf8Mb40900AsCs = "UTF8MB4_0900_AS_CS",
1179
+ Utf8Mb40900Bin = "UTF8MB4_0900_BIN",
1180
+ Utf8Mb4Bin = "UTF8MB4_BIN",
1181
+ Utf8Mb4CroatianCi = "UTF8MB4_CROATIAN_CI",
1182
+ Utf8Mb4Cs0900AiCi = "UTF8MB4_CS_0900_AI_CI",
1183
+ Utf8Mb4Cs0900AsCs = "UTF8MB4_CS_0900_AS_CS",
1184
+ Utf8Mb4CzechCi = "UTF8MB4_CZECH_CI",
1185
+ Utf8Mb4DanishCi = "UTF8MB4_DANISH_CI",
1186
+ Utf8Mb4Da0900AiCi = "UTF8MB4_DA_0900_AI_CI",
1187
+ Utf8Mb4Da0900AsCs = "UTF8MB4_DA_0900_AS_CS",
1188
+ Utf8Mb4DePb0900AiCi = "UTF8MB4_DE_PB_0900_AI_CI",
1189
+ Utf8Mb4DePb0900AsCs = "UTF8MB4_DE_PB_0900_AS_CS",
1190
+ Utf8Mb4Eo0900AiCi = "UTF8MB4_EO_0900_AI_CI",
1191
+ Utf8Mb4Eo0900AsCs = "UTF8MB4_EO_0900_AS_CS",
1192
+ Utf8Mb4EsperantoCi = "UTF8MB4_ESPERANTO_CI",
1193
+ Utf8Mb4EstonianCi = "UTF8MB4_ESTONIAN_CI",
1194
+ Utf8Mb4Es0900AiCi = "UTF8MB4_ES_0900_AI_CI",
1195
+ Utf8Mb4Es0900AsCs = "UTF8MB4_ES_0900_AS_CS",
1196
+ Utf8Mb4EsTrad0900AiCi = "UTF8MB4_ES_TRAD_0900_AI_CI",
1197
+ Utf8Mb4EsTrad0900AsCs = "UTF8MB4_ES_TRAD_0900_AS_CS",
1198
+ Utf8Mb4Et0900AiCi = "UTF8MB4_ET_0900_AI_CI",
1199
+ Utf8Mb4Et0900AsCs = "UTF8MB4_ET_0900_AS_CS",
1200
+ Utf8Mb4GeneralCi = "UTF8MB4_GENERAL_CI",
1201
+ Utf8Mb4German2Ci = "UTF8MB4_GERMAN2_CI",
1202
+ Utf8Mb4Hr0900AiCi = "UTF8MB4_HR_0900_AI_CI",
1203
+ Utf8Mb4Hr0900AsCs = "UTF8MB4_HR_0900_AS_CS",
1204
+ Utf8Mb4HungarianCi = "UTF8MB4_HUNGARIAN_CI",
1205
+ Utf8Mb4Hu0900AiCi = "UTF8MB4_HU_0900_AI_CI",
1206
+ Utf8Mb4Hu0900AsCs = "UTF8MB4_HU_0900_AS_CS",
1207
+ Utf8Mb4IcelandicCi = "UTF8MB4_ICELANDIC_CI",
1208
+ Utf8Mb4Is0900AiCi = "UTF8MB4_IS_0900_AI_CI",
1209
+ Utf8Mb4Is0900AsCs = "UTF8MB4_IS_0900_AS_CS",
1210
+ Utf8Mb4Ja0900AsCs = "UTF8MB4_JA_0900_AS_CS",
1211
+ Utf8Mb4Ja0900AsCsKs = "UTF8MB4_JA_0900_AS_CS_KS",
1212
+ Utf8Mb4LatvianCi = "UTF8MB4_LATVIAN_CI",
1213
+ Utf8Mb4La0900AiCi = "UTF8MB4_LA_0900_AI_CI",
1214
+ Utf8Mb4La0900AsCs = "UTF8MB4_LA_0900_AS_CS",
1215
+ Utf8Mb4LithuanianCi = "UTF8MB4_LITHUANIAN_CI",
1216
+ Utf8Mb4Lt0900AiCi = "UTF8MB4_LT_0900_AI_CI",
1217
+ Utf8Mb4Lt0900AsCs = "UTF8MB4_LT_0900_AS_CS",
1218
+ Utf8Mb4Lv0900AiCi = "UTF8MB4_LV_0900_AI_CI",
1219
+ Utf8Mb4Lv0900AsCs = "UTF8MB4_LV_0900_AS_CS",
1220
+ Utf8Mb4PersianCi = "UTF8MB4_PERSIAN_CI",
1221
+ Utf8Mb4Pl0900AiCi = "UTF8MB4_PL_0900_AI_CI",
1222
+ Utf8Mb4Pl0900AsCs = "UTF8MB4_PL_0900_AS_CS",
1223
+ Utf8Mb4PolishCi = "UTF8MB4_POLISH_CI",
1224
+ Utf8Mb4RomanianCi = "UTF8MB4_ROMANIAN_CI",
1225
+ Utf8Mb4RomanCi = "UTF8MB4_ROMAN_CI",
1226
+ Utf8Mb4Ro0900AiCi = "UTF8MB4_RO_0900_AI_CI",
1227
+ Utf8Mb4Ro0900AsCs = "UTF8MB4_RO_0900_AS_CS",
1228
+ Utf8Mb4Ru0900AiCi = "UTF8MB4_RU_0900_AI_CI",
1229
+ Utf8Mb4Ru0900AsCs = "UTF8MB4_RU_0900_AS_CS",
1230
+ Utf8Mb4SinhalaCi = "UTF8MB4_SINHALA_CI",
1231
+ Utf8Mb4Sk0900AiCi = "UTF8MB4_SK_0900_AI_CI",
1232
+ Utf8Mb4Sk0900AsCs = "UTF8MB4_SK_0900_AS_CS",
1233
+ Utf8Mb4SlovakCi = "UTF8MB4_SLOVAK_CI",
1234
+ Utf8Mb4SlovenianCi = "UTF8MB4_SLOVENIAN_CI",
1235
+ Utf8Mb4Sl0900AiCi = "UTF8MB4_SL_0900_AI_CI",
1236
+ Utf8Mb4Sl0900AsCs = "UTF8MB4_SL_0900_AS_CS",
1237
+ Utf8Mb4Spanish2Ci = "UTF8MB4_SPANISH2_CI",
1238
+ Utf8Mb4SpanishCi = "UTF8MB4_SPANISH_CI",
1239
+ Utf8Mb4Sv0900AiCi = "UTF8MB4_SV_0900_AI_CI",
1240
+ Utf8Mb4Sv0900AsCs = "UTF8MB4_SV_0900_AS_CS",
1241
+ Utf8Mb4SwedishCi = "UTF8MB4_SWEDISH_CI",
1242
+ Utf8Mb4Tr0900AiCi = "UTF8MB4_TR_0900_AI_CI",
1243
+ Utf8Mb4Tr0900AsCs = "UTF8MB4_TR_0900_AS_CS",
1244
+ Utf8Mb4TurkishCi = "UTF8MB4_TURKISH_CI",
1245
+ Utf8Mb4Unicode520Ci = "UTF8MB4_UNICODE_520_CI",
1246
+ Utf8Mb4UnicodeCi = "UTF8MB4_UNICODE_CI",
1247
+ Utf8Mb4VietnameseCi = "UTF8MB4_VIETNAMESE_CI",
1248
+ Utf8Mb4Vi0900AiCi = "UTF8MB4_VI_0900_AI_CI",
1249
+ Utf8Mb4Vi0900AsCs = "UTF8MB4_VI_0900_AS_CS",
1250
+ Utf8Mb4Zh0900AsCs = "UTF8MB4_ZH_0900_AS_CS",
1251
+ /**
1252
+ * This value is used if a service returns a value for this enum that is not recognized by this
1253
+ * version of the SDK.
1254
+ */
1255
+ UnknownValue = "UNKNOWN_VALUE"
1256
+ }
534
1257
  enum DefaultAuthenticationPlugin {
535
1258
  MysqlNativePassword = "mysql_native_password",
536
1259
  Sha256Password = "sha256_password",
@@ -574,6 +1297,29 @@ export declare namespace ConfigurationVariables {
574
1297
  */
575
1298
  UnknownValue = "UNKNOWN_VALUE"
576
1299
  }
1300
+ enum ExplainFormat {
1301
+ Traditional = "TRADITIONAL",
1302
+ Json = "JSON",
1303
+ Tree = "TREE",
1304
+ /**
1305
+ * This value is used if a service returns a value for this enum that is not recognized by this
1306
+ * version of the SDK.
1307
+ */
1308
+ UnknownValue = "UNKNOWN_VALUE"
1309
+ }
1310
+ enum InnodbChangeBuffering {
1311
+ None = "NONE",
1312
+ Inserts = "INSERTS",
1313
+ Deletes = "DELETES",
1314
+ Changes = "CHANGES",
1315
+ Purges = "PURGES",
1316
+ All = "ALL",
1317
+ /**
1318
+ * This value is used if a service returns a value for this enum that is not recognized by this
1319
+ * version of the SDK.
1320
+ */
1321
+ UnknownValue = "UNKNOWN_VALUE"
1322
+ }
577
1323
  function getJsonObj(obj: ConfigurationVariables): object;
578
1324
  function getDeserializedJsonObj(obj: ConfigurationVariables): object;
579
1325
  }