|
234 | 234 | description: |
235 | 235 | - Same as mysql variable. |
236 | 236 | type: bool |
| 237 | + default: False |
237 | 238 | version_added: 3.6.0 |
238 | 239 | require_table_primary_key_check: |
239 | 240 | description: |
240 | 241 | - Same as mysql variable. |
241 | | - choices: [stream, on, off] |
| 242 | + choices: ["stream", "on", "off"] |
242 | 243 | type: str |
243 | 244 | version_added: 3.6.0 |
244 | 245 | source_connection_auto_failover: |
245 | 246 | description: |
246 | 247 | - Same as mysql variable. |
247 | 248 | type: bool |
| 249 | + default: False |
248 | 250 | version_added: 3.6.0 |
249 | 251 | primary_compression_algorithms: |
250 | 252 | description: |
251 | | - - Same as the C(MASTER_COMPRESSION_ALGORITHM) mysql variable. |
| 253 | + - Same as the C(MASTER_COMPRESSION_ALGORITHMS) mysql variable. |
252 | 254 | type: str |
253 | | - aliases: [master_compression_algorithm] |
| 255 | + aliases: [master_compression_algorithms] |
254 | 256 | version_added: 3.6.0 |
255 | 257 | primary_zstd_compression_level: |
256 | 258 | description: |
257 | | - - Same as the C(MASTER_ZSTD_COMPRESSION_LEVEL) mysql variable. |
258 | | - choices: [1-22] |
| 259 | + - Same as the C(MASTER_ZSTD_COMPRESSION_LEVEL) mysql variable. Valid values are in the range [1-22] |
259 | 260 | type: int |
| 261 | + choices: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22] |
260 | 262 | aliases: [master_zstd_compression_level] |
261 | 263 | version_added: 3.6.0 |
262 | 264 | primary_tls_ciphersuites: |
|
275 | 277 | description: |
276 | 278 | - Same as the C(GET_MASTER_PUBLIC_KEY) mysql variable. |
277 | 279 | type: bool |
| 280 | + default: False |
278 | 281 | aliases: [get_master_public_key] |
279 | 282 | version_added: 3.6.0 |
280 | 283 | network_namespace: |
@@ -596,9 +599,9 @@ def main(): |
596 | 599 | get_primary_public_key=dict(type='bool', default=False, aliases=['get_master_public_key']), |
597 | 600 | primary_use_gtid=dict(type='str', choices=[ |
598 | 601 | 'current_pos', 'replica_pos', 'disabled'], aliases=['master_use_gtid']), |
599 | | - ignore_server_ids=dict(type='list'), |
600 | | - do_domain_ids=dict(type='list'), |
601 | | - ignore_domain_ids=dict(type='list'), |
| 602 | + ignore_server_ids=dict(type='list', elements="str"), |
| 603 | + do_domain_ids=dict(type='list', elements="str"), |
| 604 | + ignore_domain_ids=dict(type='list', elements="str"), |
602 | 605 | primary_delay=dict(type='int', aliases=['master_delay']), |
603 | 606 | connection_name=dict(type='str'), |
604 | 607 | privilege_checks_user=dict(type='str', choices=['account']), |
|
0 commit comments