pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0__py3-none-any.whl
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.
- pulumi_oci/__init__.py +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
pulumi_oci/mysql/outputs.py
CHANGED
@@ -24,6 +24,7 @@ __all__ = [
|
|
24
24
|
'HeatWaveClusterClusterNode',
|
25
25
|
'MysqlBackupDbSystemSnapshot',
|
26
26
|
'MysqlBackupDbSystemSnapshotBackupPolicy',
|
27
|
+
'MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicy',
|
27
28
|
'MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy',
|
28
29
|
'MysqlBackupDbSystemSnapshotDataStorage',
|
29
30
|
'MysqlBackupDbSystemSnapshotDeletionPolicy',
|
@@ -36,6 +37,7 @@ __all__ = [
|
|
36
37
|
'MysqlConfigurationInitVariables',
|
37
38
|
'MysqlConfigurationVariables',
|
38
39
|
'MysqlDbSystemBackupPolicy',
|
40
|
+
'MysqlDbSystemBackupPolicyCopyPolicy',
|
39
41
|
'MysqlDbSystemBackupPolicyPitrPolicy',
|
40
42
|
'MysqlDbSystemChannel',
|
41
43
|
'MysqlDbSystemChannelSource',
|
@@ -71,6 +73,7 @@ __all__ = [
|
|
71
73
|
'GetHeatWaveClusterClusterNodeResult',
|
72
74
|
'GetMysqlBackupDbSystemSnapshotResult',
|
73
75
|
'GetMysqlBackupDbSystemSnapshotBackupPolicyResult',
|
76
|
+
'GetMysqlBackupDbSystemSnapshotBackupPolicyCopyPolicyResult',
|
74
77
|
'GetMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyResult',
|
75
78
|
'GetMysqlBackupDbSystemSnapshotDataStorageResult',
|
76
79
|
'GetMysqlBackupDbSystemSnapshotDeletionPolicyResult',
|
@@ -83,6 +86,7 @@ __all__ = [
|
|
83
86
|
'GetMysqlBackupsBackupResult',
|
84
87
|
'GetMysqlBackupsBackupDbSystemSnapshotResult',
|
85
88
|
'GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult',
|
89
|
+
'GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyCopyPolicyResult',
|
86
90
|
'GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyPitrPolicyResult',
|
87
91
|
'GetMysqlBackupsBackupDbSystemSnapshotDataStorageResult',
|
88
92
|
'GetMysqlBackupsBackupDbSystemSnapshotDeletionPolicyResult',
|
@@ -100,6 +104,7 @@ __all__ = [
|
|
100
104
|
'GetMysqlConfigurationsConfigurationVariableResult',
|
101
105
|
'GetMysqlConfigurationsFilterResult',
|
102
106
|
'GetMysqlDbSystemBackupPolicyResult',
|
107
|
+
'GetMysqlDbSystemBackupPolicyCopyPolicyResult',
|
103
108
|
'GetMysqlDbSystemBackupPolicyPitrPolicyResult',
|
104
109
|
'GetMysqlDbSystemChannelResult',
|
105
110
|
'GetMysqlDbSystemChannelSourceResult',
|
@@ -120,6 +125,7 @@ __all__ = [
|
|
120
125
|
'GetMysqlDbSystemSourceResult',
|
121
126
|
'GetMysqlDbSystemsDbSystemResult',
|
122
127
|
'GetMysqlDbSystemsDbSystemBackupPolicyResult',
|
128
|
+
'GetMysqlDbSystemsDbSystemBackupPolicyCopyPolicyResult',
|
123
129
|
'GetMysqlDbSystemsDbSystemBackupPolicyPitrPolicyResult',
|
124
130
|
'GetMysqlDbSystemsDbSystemChannelResult',
|
125
131
|
'GetMysqlDbSystemsDbSystemChannelSourceResult',
|
@@ -1052,7 +1058,9 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
|
|
1052
1058
|
@staticmethod
|
1053
1059
|
def __key_warning(key: str):
|
1054
1060
|
suggest = None
|
1055
|
-
if key == "
|
1061
|
+
if key == "copyPolicies":
|
1062
|
+
suggest = "copy_policies"
|
1063
|
+
elif key == "definedTags":
|
1056
1064
|
suggest = "defined_tags"
|
1057
1065
|
elif key == "freeformTags":
|
1058
1066
|
suggest = "freeform_tags"
|
@@ -1077,6 +1085,7 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
|
|
1077
1085
|
return super().get(key, default)
|
1078
1086
|
|
1079
1087
|
def __init__(__self__, *,
|
1088
|
+
copy_policies: Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicy']] = None,
|
1080
1089
|
defined_tags: Optional[Mapping[str, str]] = None,
|
1081
1090
|
freeform_tags: Optional[Mapping[str, str]] = None,
|
1082
1091
|
is_enabled: Optional[bool] = None,
|
@@ -1084,6 +1093,7 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
|
|
1084
1093
|
retention_in_days: Optional[int] = None,
|
1085
1094
|
window_start_time: Optional[str] = None):
|
1086
1095
|
"""
|
1096
|
+
:param Sequence['MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
|
1087
1097
|
:param Mapping[str, str] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1088
1098
|
:param Mapping[str, str] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1089
1099
|
:param bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
|
@@ -1091,6 +1101,8 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
|
|
1091
1101
|
:param int retention_in_days: (Updatable) Number of days to retain this backup.
|
1092
1102
|
:param str window_start_time: The start time of the maintenance window.
|
1093
1103
|
"""
|
1104
|
+
if copy_policies is not None:
|
1105
|
+
pulumi.set(__self__, "copy_policies", copy_policies)
|
1094
1106
|
if defined_tags is not None:
|
1095
1107
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
1096
1108
|
if freeform_tags is not None:
|
@@ -1104,6 +1116,14 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
|
|
1104
1116
|
if window_start_time is not None:
|
1105
1117
|
pulumi.set(__self__, "window_start_time", window_start_time)
|
1106
1118
|
|
1119
|
+
@property
|
1120
|
+
@pulumi.getter(name="copyPolicies")
|
1121
|
+
def copy_policies(self) -> Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicy']]:
|
1122
|
+
"""
|
1123
|
+
List of policies of a DB system to schedule cross-region DB system backup copy.
|
1124
|
+
"""
|
1125
|
+
return pulumi.get(self, "copy_policies")
|
1126
|
+
|
1107
1127
|
@property
|
1108
1128
|
@pulumi.getter(name="definedTags")
|
1109
1129
|
def defined_tags(self) -> Optional[Mapping[str, str]]:
|
@@ -1153,6 +1173,56 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
|
|
1153
1173
|
return pulumi.get(self, "window_start_time")
|
1154
1174
|
|
1155
1175
|
|
1176
|
+
@pulumi.output_type
|
1177
|
+
class MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicy(dict):
|
1178
|
+
@staticmethod
|
1179
|
+
def __key_warning(key: str):
|
1180
|
+
suggest = None
|
1181
|
+
if key == "backupCopyRetentionInDays":
|
1182
|
+
suggest = "backup_copy_retention_in_days"
|
1183
|
+
elif key == "copyToRegion":
|
1184
|
+
suggest = "copy_to_region"
|
1185
|
+
|
1186
|
+
if suggest:
|
1187
|
+
pulumi.log.warn(f"Key '{key}' not found in MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicy. Access the value via the '{suggest}' property getter instead.")
|
1188
|
+
|
1189
|
+
def __getitem__(self, key: str) -> Any:
|
1190
|
+
MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicy.__key_warning(key)
|
1191
|
+
return super().__getitem__(key)
|
1192
|
+
|
1193
|
+
def get(self, key: str, default = None) -> Any:
|
1194
|
+
MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicy.__key_warning(key)
|
1195
|
+
return super().get(key, default)
|
1196
|
+
|
1197
|
+
def __init__(__self__, *,
|
1198
|
+
backup_copy_retention_in_days: Optional[int] = None,
|
1199
|
+
copy_to_region: Optional[str] = None):
|
1200
|
+
"""
|
1201
|
+
:param int backup_copy_retention_in_days: Number of days to retain the copied DB system backup.
|
1202
|
+
:param str copy_to_region: The destination region name to which the DB system backup will be copied.
|
1203
|
+
"""
|
1204
|
+
if backup_copy_retention_in_days is not None:
|
1205
|
+
pulumi.set(__self__, "backup_copy_retention_in_days", backup_copy_retention_in_days)
|
1206
|
+
if copy_to_region is not None:
|
1207
|
+
pulumi.set(__self__, "copy_to_region", copy_to_region)
|
1208
|
+
|
1209
|
+
@property
|
1210
|
+
@pulumi.getter(name="backupCopyRetentionInDays")
|
1211
|
+
def backup_copy_retention_in_days(self) -> Optional[int]:
|
1212
|
+
"""
|
1213
|
+
Number of days to retain the copied DB system backup.
|
1214
|
+
"""
|
1215
|
+
return pulumi.get(self, "backup_copy_retention_in_days")
|
1216
|
+
|
1217
|
+
@property
|
1218
|
+
@pulumi.getter(name="copyToRegion")
|
1219
|
+
def copy_to_region(self) -> Optional[str]:
|
1220
|
+
"""
|
1221
|
+
The destination region name to which the DB system backup will be copied.
|
1222
|
+
"""
|
1223
|
+
return pulumi.get(self, "copy_to_region")
|
1224
|
+
|
1225
|
+
|
1156
1226
|
@pulumi.output_type
|
1157
1227
|
class MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy(dict):
|
1158
1228
|
@staticmethod
|
@@ -1821,16 +1891,30 @@ class MysqlConfigurationVariables(dict):
|
|
1821
1891
|
@staticmethod
|
1822
1892
|
def __key_warning(key: str):
|
1823
1893
|
suggest = None
|
1824
|
-
if key == "
|
1894
|
+
if key == "autoIncrementIncrement":
|
1895
|
+
suggest = "auto_increment_increment"
|
1896
|
+
elif key == "autoIncrementOffset":
|
1897
|
+
suggest = "auto_increment_offset"
|
1898
|
+
elif key == "bigTables":
|
1825
1899
|
suggest = "big_tables"
|
1826
1900
|
elif key == "binlogExpireLogsSeconds":
|
1827
1901
|
suggest = "binlog_expire_logs_seconds"
|
1902
|
+
elif key == "binlogGroupCommitSyncDelay":
|
1903
|
+
suggest = "binlog_group_commit_sync_delay"
|
1904
|
+
elif key == "binlogGroupCommitSyncNoDelayCount":
|
1905
|
+
suggest = "binlog_group_commit_sync_no_delay_count"
|
1828
1906
|
elif key == "binlogRowMetadata":
|
1829
1907
|
suggest = "binlog_row_metadata"
|
1830
1908
|
elif key == "binlogRowValueOptions":
|
1831
1909
|
suggest = "binlog_row_value_options"
|
1832
1910
|
elif key == "binlogTransactionCompression":
|
1833
1911
|
suggest = "binlog_transaction_compression"
|
1912
|
+
elif key == "blockEncryptionMode":
|
1913
|
+
suggest = "block_encryption_mode"
|
1914
|
+
elif key == "characterSetServer":
|
1915
|
+
suggest = "character_set_server"
|
1916
|
+
elif key == "collationServer":
|
1917
|
+
suggest = "collation_server"
|
1834
1918
|
elif key == "completionType":
|
1835
1919
|
suggest = "completion_type"
|
1836
1920
|
elif key == "connectTimeout":
|
@@ -1843,6 +1927,10 @@ class MysqlConfigurationVariables(dict):
|
|
1843
1927
|
suggest = "cte_max_recursion_depth"
|
1844
1928
|
elif key == "defaultAuthenticationPlugin":
|
1845
1929
|
suggest = "default_authentication_plugin"
|
1930
|
+
elif key == "explainFormat":
|
1931
|
+
suggest = "explain_format"
|
1932
|
+
elif key == "explicitDefaultsForTimestamp":
|
1933
|
+
suggest = "explicit_defaults_for_timestamp"
|
1846
1934
|
elif key == "foreignKeyChecks":
|
1847
1935
|
suggest = "foreign_key_checks"
|
1848
1936
|
elif key == "generatedRandomPasswordLength":
|
@@ -1851,16 +1939,24 @@ class MysqlConfigurationVariables(dict):
|
|
1851
1939
|
suggest = "global_connection_memory_limit"
|
1852
1940
|
elif key == "globalConnectionMemoryTracking":
|
1853
1941
|
suggest = "global_connection_memory_tracking"
|
1942
|
+
elif key == "groupConcatMaxLen":
|
1943
|
+
suggest = "group_concat_max_len"
|
1854
1944
|
elif key == "groupReplicationConsistency":
|
1855
1945
|
suggest = "group_replication_consistency"
|
1856
1946
|
elif key == "informationSchemaStatsExpiry":
|
1857
1947
|
suggest = "information_schema_stats_expiry"
|
1948
|
+
elif key == "innodbAdaptiveHashIndex":
|
1949
|
+
suggest = "innodb_adaptive_hash_index"
|
1950
|
+
elif key == "innodbAutoincLockMode":
|
1951
|
+
suggest = "innodb_autoinc_lock_mode"
|
1858
1952
|
elif key == "innodbBufferPoolDumpPct":
|
1859
1953
|
suggest = "innodb_buffer_pool_dump_pct"
|
1860
1954
|
elif key == "innodbBufferPoolInstances":
|
1861
1955
|
suggest = "innodb_buffer_pool_instances"
|
1862
1956
|
elif key == "innodbBufferPoolSize":
|
1863
1957
|
suggest = "innodb_buffer_pool_size"
|
1958
|
+
elif key == "innodbChangeBuffering":
|
1959
|
+
suggest = "innodb_change_buffering"
|
1864
1960
|
elif key == "innodbDdlBufferSize":
|
1865
1961
|
suggest = "innodb_ddl_buffer_size"
|
1866
1962
|
elif key == "innodbDdlThreads":
|
@@ -1885,14 +1981,32 @@ class MysqlConfigurationVariables(dict):
|
|
1885
1981
|
suggest = "innodb_max_purge_lag"
|
1886
1982
|
elif key == "innodbMaxPurgeLagDelay":
|
1887
1983
|
suggest = "innodb_max_purge_lag_delay"
|
1984
|
+
elif key == "innodbNumaInterleave":
|
1985
|
+
suggest = "innodb_numa_interleave"
|
1986
|
+
elif key == "innodbOnlineAlterLogMaxSize":
|
1987
|
+
suggest = "innodb_online_alter_log_max_size"
|
1988
|
+
elif key == "innodbRedoLogCapacity":
|
1989
|
+
suggest = "innodb_redo_log_capacity"
|
1990
|
+
elif key == "innodbRollbackOnTimeout":
|
1991
|
+
suggest = "innodb_rollback_on_timeout"
|
1992
|
+
elif key == "innodbSortBufferSize":
|
1993
|
+
suggest = "innodb_sort_buffer_size"
|
1888
1994
|
elif key == "innodbStatsPersistentSamplePages":
|
1889
1995
|
suggest = "innodb_stats_persistent_sample_pages"
|
1890
1996
|
elif key == "innodbStatsTransientSamplePages":
|
1891
1997
|
suggest = "innodb_stats_transient_sample_pages"
|
1998
|
+
elif key == "innodbStrictMode":
|
1999
|
+
suggest = "innodb_strict_mode"
|
2000
|
+
elif key == "innodbUndoLogTruncate":
|
2001
|
+
suggest = "innodb_undo_log_truncate"
|
1892
2002
|
elif key == "interactiveTimeout":
|
1893
2003
|
suggest = "interactive_timeout"
|
2004
|
+
elif key == "joinBufferSize":
|
2005
|
+
suggest = "join_buffer_size"
|
1894
2006
|
elif key == "localInfile":
|
1895
2007
|
suggest = "local_infile"
|
2008
|
+
elif key == "longQueryTime":
|
2009
|
+
suggest = "long_query_time"
|
1896
2010
|
elif key == "mandatoryRoles":
|
1897
2011
|
suggest = "mandatory_roles"
|
1898
2012
|
elif key == "maxAllowedPacket":
|
@@ -1909,6 +2023,10 @@ class MysqlConfigurationVariables(dict):
|
|
1909
2023
|
suggest = "max_heap_table_size"
|
1910
2024
|
elif key == "maxPreparedStmtCount":
|
1911
2025
|
suggest = "max_prepared_stmt_count"
|
2026
|
+
elif key == "maxSeeksForKey":
|
2027
|
+
suggest = "max_seeks_for_key"
|
2028
|
+
elif key == "maxUserConnections":
|
2029
|
+
suggest = "max_user_connections"
|
1912
2030
|
elif key == "mysqlFirewallMode":
|
1913
2031
|
suggest = "mysql_firewall_mode"
|
1914
2032
|
elif key == "mysqlZstdDefaultCompressionLevel":
|
@@ -1949,26 +2067,56 @@ class MysqlConfigurationVariables(dict):
|
|
1949
2067
|
suggest = "net_read_timeout"
|
1950
2068
|
elif key == "netWriteTimeout":
|
1951
2069
|
suggest = "net_write_timeout"
|
2070
|
+
elif key == "optimizerSwitch":
|
2071
|
+
suggest = "optimizer_switch"
|
1952
2072
|
elif key == "parserMaxMemSize":
|
1953
2073
|
suggest = "parser_max_mem_size"
|
1954
2074
|
elif key == "queryAllocBlockSize":
|
1955
2075
|
suggest = "query_alloc_block_size"
|
1956
2076
|
elif key == "queryPreallocSize":
|
1957
2077
|
suggest = "query_prealloc_size"
|
2078
|
+
elif key == "rangeOptimizerMaxMemSize":
|
2079
|
+
suggest = "range_optimizer_max_mem_size"
|
1958
2080
|
elif key == "regexpTimeLimit":
|
1959
2081
|
suggest = "regexp_time_limit"
|
2082
|
+
elif key == "relayLogSpaceLimit":
|
2083
|
+
suggest = "relay_log_space_limit"
|
2084
|
+
elif key == "replicaNetTimeout":
|
2085
|
+
suggest = "replica_net_timeout"
|
2086
|
+
elif key == "replicaParallelWorkers":
|
2087
|
+
suggest = "replica_parallel_workers"
|
2088
|
+
elif key == "replicaTypeConversions":
|
2089
|
+
suggest = "replica_type_conversions"
|
2090
|
+
elif key == "requireSecureTransport":
|
2091
|
+
suggest = "require_secure_transport"
|
2092
|
+
elif key == "skipNameResolve":
|
2093
|
+
suggest = "skip_name_resolve"
|
1960
2094
|
elif key == "sortBufferSize":
|
1961
2095
|
suggest = "sort_buffer_size"
|
2096
|
+
elif key == "sqlGenerateInvisiblePrimaryKey":
|
2097
|
+
suggest = "sql_generate_invisible_primary_key"
|
1962
2098
|
elif key == "sqlMode":
|
1963
2099
|
suggest = "sql_mode"
|
1964
2100
|
elif key == "sqlRequirePrimaryKey":
|
1965
2101
|
suggest = "sql_require_primary_key"
|
1966
2102
|
elif key == "sqlWarnings":
|
1967
2103
|
suggest = "sql_warnings"
|
2104
|
+
elif key == "tableDefinitionCache":
|
2105
|
+
suggest = "table_definition_cache"
|
2106
|
+
elif key == "tableOpenCache":
|
2107
|
+
suggest = "table_open_cache"
|
2108
|
+
elif key == "temptableMaxRam":
|
2109
|
+
suggest = "temptable_max_ram"
|
1968
2110
|
elif key == "threadPoolDedicatedListeners":
|
1969
2111
|
suggest = "thread_pool_dedicated_listeners"
|
1970
2112
|
elif key == "threadPoolMaxTransactionsLimit":
|
1971
2113
|
suggest = "thread_pool_max_transactions_limit"
|
2114
|
+
elif key == "threadPoolQueryThreadsPerGroup":
|
2115
|
+
suggest = "thread_pool_query_threads_per_group"
|
2116
|
+
elif key == "threadPoolSize":
|
2117
|
+
suggest = "thread_pool_size"
|
2118
|
+
elif key == "threadPoolTransactionDelay":
|
2119
|
+
suggest = "thread_pool_transaction_delay"
|
1972
2120
|
elif key == "timeZone":
|
1973
2121
|
suggest = "time_zone"
|
1974
2122
|
elif key == "tmpTableSize":
|
@@ -1990,27 +2138,40 @@ class MysqlConfigurationVariables(dict):
|
|
1990
2138
|
return super().get(key, default)
|
1991
2139
|
|
1992
2140
|
def __init__(__self__, *,
|
2141
|
+
auto_increment_increment: Optional[int] = None,
|
2142
|
+
auto_increment_offset: Optional[int] = None,
|
1993
2143
|
autocommit: Optional[bool] = None,
|
1994
2144
|
big_tables: Optional[bool] = None,
|
1995
2145
|
binlog_expire_logs_seconds: Optional[int] = None,
|
2146
|
+
binlog_group_commit_sync_delay: Optional[int] = None,
|
2147
|
+
binlog_group_commit_sync_no_delay_count: Optional[int] = None,
|
1996
2148
|
binlog_row_metadata: Optional[str] = None,
|
1997
2149
|
binlog_row_value_options: Optional[str] = None,
|
1998
2150
|
binlog_transaction_compression: Optional[bool] = None,
|
2151
|
+
block_encryption_mode: Optional[str] = None,
|
2152
|
+
character_set_server: Optional[str] = None,
|
2153
|
+
collation_server: Optional[str] = None,
|
1999
2154
|
completion_type: Optional[str] = None,
|
2000
2155
|
connect_timeout: Optional[int] = None,
|
2001
2156
|
connection_memory_chunk_size: Optional[int] = None,
|
2002
2157
|
connection_memory_limit: Optional[str] = None,
|
2003
2158
|
cte_max_recursion_depth: Optional[str] = None,
|
2004
2159
|
default_authentication_plugin: Optional[str] = None,
|
2160
|
+
explain_format: Optional[str] = None,
|
2161
|
+
explicit_defaults_for_timestamp: Optional[bool] = None,
|
2005
2162
|
foreign_key_checks: Optional[bool] = None,
|
2006
2163
|
generated_random_password_length: Optional[int] = None,
|
2007
2164
|
global_connection_memory_limit: Optional[str] = None,
|
2008
2165
|
global_connection_memory_tracking: Optional[bool] = None,
|
2166
|
+
group_concat_max_len: Optional[str] = None,
|
2009
2167
|
group_replication_consistency: Optional[str] = None,
|
2010
2168
|
information_schema_stats_expiry: Optional[int] = None,
|
2169
|
+
innodb_adaptive_hash_index: Optional[bool] = None,
|
2170
|
+
innodb_autoinc_lock_mode: Optional[int] = None,
|
2011
2171
|
innodb_buffer_pool_dump_pct: Optional[int] = None,
|
2012
2172
|
innodb_buffer_pool_instances: Optional[int] = None,
|
2013
2173
|
innodb_buffer_pool_size: Optional[str] = None,
|
2174
|
+
innodb_change_buffering: Optional[str] = None,
|
2014
2175
|
innodb_ddl_buffer_size: Optional[str] = None,
|
2015
2176
|
innodb_ddl_threads: Optional[int] = None,
|
2016
2177
|
innodb_ft_enable_stopword: Optional[bool] = None,
|
@@ -2023,10 +2184,19 @@ class MysqlConfigurationVariables(dict):
|
|
2023
2184
|
innodb_log_writer_threads: Optional[bool] = None,
|
2024
2185
|
innodb_max_purge_lag: Optional[str] = None,
|
2025
2186
|
innodb_max_purge_lag_delay: Optional[int] = None,
|
2187
|
+
innodb_numa_interleave: Optional[bool] = None,
|
2188
|
+
innodb_online_alter_log_max_size: Optional[str] = None,
|
2189
|
+
innodb_redo_log_capacity: Optional[str] = None,
|
2190
|
+
innodb_rollback_on_timeout: Optional[bool] = None,
|
2191
|
+
innodb_sort_buffer_size: Optional[int] = None,
|
2026
2192
|
innodb_stats_persistent_sample_pages: Optional[str] = None,
|
2027
2193
|
innodb_stats_transient_sample_pages: Optional[str] = None,
|
2194
|
+
innodb_strict_mode: Optional[bool] = None,
|
2195
|
+
innodb_undo_log_truncate: Optional[bool] = None,
|
2028
2196
|
interactive_timeout: Optional[int] = None,
|
2197
|
+
join_buffer_size: Optional[str] = None,
|
2029
2198
|
local_infile: Optional[bool] = None,
|
2199
|
+
long_query_time: Optional[int] = None,
|
2030
2200
|
mandatory_roles: Optional[str] = None,
|
2031
2201
|
max_allowed_packet: Optional[int] = None,
|
2032
2202
|
max_binlog_cache_size: Optional[str] = None,
|
@@ -2035,6 +2205,8 @@ class MysqlConfigurationVariables(dict):
|
|
2035
2205
|
max_execution_time: Optional[str] = None,
|
2036
2206
|
max_heap_table_size: Optional[str] = None,
|
2037
2207
|
max_prepared_stmt_count: Optional[int] = None,
|
2208
|
+
max_seeks_for_key: Optional[str] = None,
|
2209
|
+
max_user_connections: Optional[str] = None,
|
2038
2210
|
mysql_firewall_mode: Optional[bool] = None,
|
2039
2211
|
mysql_zstd_default_compression_level: Optional[int] = None,
|
2040
2212
|
mysqlx_connect_timeout: Optional[int] = None,
|
@@ -2055,29 +2227,65 @@ class MysqlConfigurationVariables(dict):
|
|
2055
2227
|
mysqlx_zstd_max_client_compression_level: Optional[int] = None,
|
2056
2228
|
net_read_timeout: Optional[int] = None,
|
2057
2229
|
net_write_timeout: Optional[int] = None,
|
2230
|
+
optimizer_switch: Optional[str] = None,
|
2058
2231
|
parser_max_mem_size: Optional[str] = None,
|
2059
2232
|
query_alloc_block_size: Optional[str] = None,
|
2060
2233
|
query_prealloc_size: Optional[str] = None,
|
2234
|
+
range_optimizer_max_mem_size: Optional[str] = None,
|
2061
2235
|
regexp_time_limit: Optional[int] = None,
|
2236
|
+
relay_log_space_limit: Optional[str] = None,
|
2237
|
+
replica_net_timeout: Optional[int] = None,
|
2238
|
+
replica_parallel_workers: Optional[int] = None,
|
2239
|
+
replica_type_conversions: Optional[str] = None,
|
2240
|
+
require_secure_transport: Optional[bool] = None,
|
2241
|
+
skip_name_resolve: Optional[bool] = None,
|
2062
2242
|
sort_buffer_size: Optional[str] = None,
|
2243
|
+
sql_generate_invisible_primary_key: Optional[bool] = None,
|
2063
2244
|
sql_mode: Optional[str] = None,
|
2064
2245
|
sql_require_primary_key: Optional[bool] = None,
|
2065
2246
|
sql_warnings: Optional[bool] = None,
|
2247
|
+
table_definition_cache: Optional[int] = None,
|
2248
|
+
table_open_cache: Optional[int] = None,
|
2249
|
+
temptable_max_ram: Optional[str] = None,
|
2066
2250
|
thread_pool_dedicated_listeners: Optional[bool] = None,
|
2067
2251
|
thread_pool_max_transactions_limit: Optional[int] = None,
|
2252
|
+
thread_pool_query_threads_per_group: Optional[int] = None,
|
2253
|
+
thread_pool_size: Optional[int] = None,
|
2254
|
+
thread_pool_transaction_delay: Optional[int] = None,
|
2068
2255
|
time_zone: Optional[str] = None,
|
2069
2256
|
tmp_table_size: Optional[str] = None,
|
2070
2257
|
transaction_isolation: Optional[str] = None,
|
2071
2258
|
wait_timeout: Optional[int] = None):
|
2072
2259
|
"""
|
2260
|
+
:param int auto_increment_increment: auto_increment_increment and auto_increment_offset are intended for use with circular (source-to-source) replication, and can be used to control the operation of AUTO_INCREMENT columns. Both variables have global and session values, and each can assume an integer value between 1 and 65,535 inclusive.
|
2261
|
+
|
2262
|
+
autoIncrementIncrement corresponds to the MySQL Replication Source Options variable [auto_increment_increment] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_auto_increment_increment).
|
2263
|
+
:param int auto_increment_offset: This variable has a default value of 1. If it is left with its default value, and Group Replication is started on the server in multi-primary mode, it is changed to the server ID.
|
2264
|
+
|
2265
|
+
autoIncrementOffset corresponds to the MySQL Replication Source Options variable [auto_increment_offset] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_auto_increment_offset).
|
2073
2266
|
:param bool autocommit: ("autocommit")
|
2074
2267
|
:param bool big_tables: If enabled, the server stores all temporary tables on disk rather than in memory.
|
2075
2268
|
|
2076
2269
|
bigTables corresponds to the MySQL server variable [big_tables](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_big_tables).
|
2077
2270
|
:param int binlog_expire_logs_seconds: Sets the binary log expiration period in seconds. binlogExpireLogsSeconds corresponds to the MySQL binary logging system variable [binlog_expire_logs_seconds](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_expire_logs_seconds).
|
2271
|
+
:param int binlog_group_commit_sync_delay: Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk. There is no delay by default. Setting this variable to a microsecond delay enables more transactions to be synchronized together to disk at once, reducing the overall time to commit a group of transactions because the larger groups required fewer time units per group.
|
2272
|
+
|
2273
|
+
binlogGroupCommitSyncDelay corresponds to the MySQL Replication system variable [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)
|
2274
|
+
:param int binlog_group_commit_sync_no_delay_count: The maximum number of transactions to wait for before aborting the current delay as specified by binlog_group_commit_sync_delay. If binlog_group_commit_sync_delay is set to 0, then this option has no effect.
|
2275
|
+
|
2276
|
+
binlogGroupCommitSyncNoDelayCount corresponds to the MySQL Replication system variable [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)
|
2078
2277
|
:param str binlog_row_metadata: Configures the amount of table metadata added to the binary log when using row-based logging. binlogRowMetadata corresponds to the MySQL binary logging system variable [binlog_row_metadata](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_row_metadata).
|
2079
2278
|
:param str binlog_row_value_options: When set to PARTIAL_JSON, this enables use of a space-efficient binary log format for updates that modify only a small portion of a JSON document. binlogRowValueOptions corresponds to the MySQL binary logging system variable [binlog_row_value_options](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_row_value_options).
|
2080
2279
|
:param bool binlog_transaction_compression: Enables compression for transactions that are written to binary log files on this server. binlogTransactionCompression corresponds to the MySQL binary logging system variable [binlog_transaction_compression](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_transaction_compression).
|
2280
|
+
:param str block_encryption_mode: This variable controls the block encryption mode for block-based algorithms such as AES. It affects encryption for AES_ENCRYPT() and AES_DECRYPT(). 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. Permitted keylen values are 128, 192, and 256. Permitted mode values are ECB, CBC, CFB1, CFB8, CFB128, and OFB.
|
2281
|
+
|
2282
|
+
block_encryption_mode corresponds to the MySQL Server Administration system variable [block_encryption_mode](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_block_encryption_mode)
|
2283
|
+
:param str character_set_server: 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.
|
2284
|
+
|
2285
|
+
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).
|
2286
|
+
:param str collation_server: The server's default collation.
|
2287
|
+
|
2288
|
+
collationServer corresponds to the MySQL server variable [collation_server](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_collation_server).
|
2081
2289
|
:param str completion_type: ("completion_type")
|
2082
2290
|
:param int connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
|
2083
2291
|
|
@@ -2091,7 +2299,17 @@ class MysqlConfigurationVariables(dict):
|
|
2091
2299
|
|
2092
2300
|
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).
|
2093
2301
|
:param str cte_max_recursion_depth: ("cte_max_recursion_depth")
|
2094
|
-
:param str default_authentication_plugin:
|
2302
|
+
:param str default_authentication_plugin: The default authentication plugin. This must be a plugin that uses internal credentials storage, so these values are permitted: mysql_native_password, sha256_password, caching_sha2_password.
|
2303
|
+
|
2304
|
+
As of MySQL 8.0.27, which introduces multifactor authentication, default_authentication_plugin is still used, but in conjunction with and at a lower precedence than the authentication_policy system variable. For details, see The Default Authentication Plugin. Because of this diminished role, default_authentication_plugin is deprecated as of MySQL 8.0.27 and subject to removal in a future MySQL version.
|
2305
|
+
|
2306
|
+
defaultAuthenticationPlugin corresponds to the MySQL system variable [default_authentication_plugin](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin).
|
2307
|
+
:param str explain_format: This variable determines the default output format used by EXPLAIN in the absence of a FORMAT option when displaying a query execution plan.
|
2308
|
+
|
2309
|
+
explainFormat corresponds to the MySQL system variable [explain_format](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_explain_format).
|
2310
|
+
:param bool explicit_defaults_for_timestamp: This system variable determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns. By default, explicit_defaults_for_timestamp is enabled, which disables the nonstandard behaviors. Disabling explicit_defaults_for_timestamp results in a warning.
|
2311
|
+
|
2312
|
+
explicit_defaults_for_timestamp corresponds to the MySQL Server Administration system variable [explicit_defaults_for_timestamp](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_explicit_defaults_for_timestamp)
|
2095
2313
|
:param bool foreign_key_checks: ("foreign_key_checks")
|
2096
2314
|
:param int generated_random_password_length: ("generated_random_password_length") DEPRECATED -- variable should not be settable and will be ignored
|
2097
2315
|
:param str global_connection_memory_limit: Set the total amount of memory that can be used by all user connections.
|
@@ -2100,12 +2318,21 @@ class MysqlConfigurationVariables(dict):
|
|
2100
2318
|
:param bool global_connection_memory_tracking: Determines whether the MySQL server calculates Global_connection_memory.
|
2101
2319
|
|
2102
2320
|
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).
|
2321
|
+
:param str group_concat_max_len: Specifies the maximum permitted result length in bytes for the GROUP_CONCAT() function.
|
2322
|
+
|
2323
|
+
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)
|
2103
2324
|
:param str group_replication_consistency: * EVENTUAL: Both RO and RW transactions do not wait for preceding transactions to be applied before executing. A RW transaction does not wait for other members to apply a transaction. This means that a transaction could be externalized on one member before the others. This also means that in the event of a primary failover, the new primary can accept new RO and RW transactions before the previous primary transactions are all applied. RO transactions could result in outdated values, RW transactions could result in a rollback due to conflicts.
|
2104
2325
|
* BEFORE_ON_PRIMARY_FAILOVER: New RO or RW transactions with a newly elected primary that is applying backlog from the old primary are held (not applied) until any backlog has been applied. This ensures that when a primary failover happens, intentionally or not, clients always see the latest value on the primary. This guarantees consistency, but means that clients must be able to handle the delay in the event that a backlog is being applied. Usually this delay should be minimal, but does depend on the size of the backlog.
|
2105
2326
|
* BEFORE: A RW transaction waits for all preceding transactions to complete before being applied. A RO transaction waits for all preceding transactions to complete before being executed. This ensures that this transaction reads the latest value by only affecting the latency of the transaction. This reduces the overhead of synchronization on every RW transaction, by ensuring synchronization is used only on RO transactions. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
2106
2327
|
* AFTER: A RW transaction waits until its changes have been applied to all of the other members. This value has no effect on RO transactions. This mode ensures that when a transaction is committed on the local member, any subsequent transaction reads the written value or a more recent value on any group member. Use this mode with a group that is used for predominantly RO operations to ensure that applied RW transactions are applied everywhere once they commit. This could be used by your application to ensure that subsequent reads fetch the latest data which includes the latest writes. This reduces the overhead of synchronization on every RO transaction, by ensuring synchronization is used only on RW transactions. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
2107
2328
|
* BEFORE_AND_AFTER: A RW transaction waits for 1) all preceding transactions to complete before being applied and 2) until its changes have been applied on other members. A RO transaction waits for all preceding transactions to complete before execution takes place. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
2108
2329
|
:param int information_schema_stats_expiry: ("information_schema_stats_expiry")
|
2330
|
+
:param bool innodb_adaptive_hash_index: Whether the InnoDB adaptive hash index is enabled or disabled. It may be desirable, depending on your workload, to dynamically enable or disable adaptive hash indexing to improve query performance. Because the adaptive hash index may not be useful for all workloads, conduct benchmarks with it both enabled and disabled, using realistic workloads.
|
2331
|
+
|
2332
|
+
innodbAdaptiveHashIndex corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_adaptive_hash_index] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_adaptive_hash_index).
|
2333
|
+
:param int innodb_autoinc_lock_mode: The lock mode to use for generating auto-increment values. Permissible values are 0, 1, or 2, for traditional, consecutive, or interleaved, respectively.
|
2334
|
+
|
2335
|
+
innodbAutoincLockMode corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_autoinc_lock_mode] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_autoinc_lock_mode).
|
2109
2336
|
:param int innodb_buffer_pool_dump_pct: Specifies the percentage of the most recently used pages for each buffer pool to read out and dump.
|
2110
2337
|
|
2111
2338
|
innodbBufferPoolDumpPct corresponds to the MySQL InnoDB system variable [innodb_buffer_pool_dump_pct](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_buffer_pool_dump_pct).
|
@@ -2119,6 +2346,9 @@ class MysqlConfigurationVariables(dict):
|
|
2119
2346
|
innodbBufferPoolSize corresponds to the MySQL server system variable [innodb_buffer_pool_size](https://dev.mysql.com/doc/refman/en/innodb-parameters.html#sysvar_innodb_buffer_pool_size).
|
2120
2347
|
|
2121
2348
|
The default and maximum values depend on the amount of RAM provisioned by the shape. See [Default User Variables](https://www.terraform.io/mysql-database/doc/configuring-db-system.html#GUID-B5504C19-F6F4-4DAB-8506-189A4E8F4A6A).
|
2349
|
+
:param str innodb_change_buffering: Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially. Permitted values are described in the following table. Values may also be specified numerically.
|
2350
|
+
|
2351
|
+
innodbChangeBuffering corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_change_buffering] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_change_buffering).
|
2122
2352
|
:param str innodb_ddl_buffer_size: 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)
|
2123
2353
|
:param int innodb_ddl_threads: 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)
|
2124
2354
|
:param bool innodb_ft_enable_stopword: ("innodb_ft_enable_stopword")
|
@@ -2145,6 +2375,23 @@ class MysqlConfigurationVariables(dict):
|
|
2145
2375
|
The specified innodb_max_purge_lag_delay value is an upper limit on the delay period.
|
2146
2376
|
|
2147
2377
|
innodbMaxPurgeLagDelay corresponds to the MySQL server system variable [innodb_max_purge_lag_delay](https://dev.mysql.com/doc/refman/en/innodb-parameters.html#sysvar_innodb_max_purge_lag_delay).
|
2378
|
+
:param bool innodb_numa_interleave: Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool. When innodb_numa_interleave is enabled, the NUMA memory policy is set to MPOL_INTERLEAVE for the mysqld process. After the InnoDB buffer pool is allocated, the NUMA memory policy is set back to MPOL_DEFAULT. For the innodb_numa_interleave option to be available, MySQL must be compiled on a NUMA-enabled Linux system.
|
2379
|
+
|
2380
|
+
innodbNumaInterleave corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_numa_interleave] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_numa_interleave).
|
2381
|
+
:param str innodb_online_alter_log_max_size: Specifies an upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables. There is one such log file for each index being created or table being altered. This log file stores data inserted, updated, or deleted in the table during the DDL operation.
|
2382
|
+
|
2383
|
+
innodbOnlineAlterLogMaxSize corresponds to the MySQL InnoDB Startup Options and System Variables [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).
|
2384
|
+
:param str innodb_redo_log_capacity: 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, 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, then the default innodb_redo_log_capacity value is used.
|
2385
|
+
|
2386
|
+
innodbRedoLogCapacity corresponds to the InnoDB Startup Options and System Variables [innodb_redo_log_capacity](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_redo_log_capacity)
|
2387
|
+
:param bool innodb_rollback_on_timeout: InnoDB rolls back only the last statement on a transaction timeout by default. If --innodb-rollback-on-timeout is specified, a transaction timeout causes InnoDB to abort and roll back the entire transaction.
|
2388
|
+
|
2389
|
+
innodbRollbackOnTimeout corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_rollback_on_timeout] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_rollback_on_timeout).
|
2390
|
+
:param int innodb_sort_buffer_size: This variable defines:
|
2391
|
+
* The sort buffer size for online DDL operations that create or rebuild secondary indexes. However, as of MySQL 8.0.27, this responsibility is subsumed by the innodb_ddl_buffer_size variable.
|
2392
|
+
* The amount by which the temporary log file is extended when recording concurrent DML during an online DDL operation, and the size of the temporary log file read buffer and write buffer.
|
2393
|
+
|
2394
|
+
innodbSortBufferSize corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_sort_buffer_size] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_sort_buffer_size).
|
2148
2395
|
:param str innodb_stats_persistent_sample_pages: The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by ANALYZE TABLE.
|
2149
2396
|
|
2150
2397
|
innodbStatsPersistentSamplePages corresponds to the MySQL InnoDB system variable [innodb_stats_persistent_sample_pages](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_stats_persistent_sample_pages)
|
@@ -2157,10 +2404,24 @@ class MysqlConfigurationVariables(dict):
|
|
2157
2404
|
innodb_stats_transient_sample_pages only applies when innodb_stats_persistent is disabled for a table; when innodb_stats_persistent is enabled, innodb_stats_persistent_sample_pages applies instead.
|
2158
2405
|
|
2159
2406
|
innodb_stats_persistent is ON by default and cannot be changed. It is possible to override it using the STATS_PERSISTENT clause of the [CREATE TABLE](https://dev.mysql.com/doc/refman/8.0/en/create-table.html) and [ALTER TABLE](https://dev.mysql.com/doc/refman/8.0/en/alter-table.html) statements.
|
2407
|
+
:param bool innodb_strict_mode: When you enable innodbStrictMode, the InnoDB storage engine returns errors instead of warnings for invalid or incompatible table options.
|
2408
|
+
|
2409
|
+
innodbStrictMode corresponds to the MySQL InnoDB system variable [innodb_strict_mode](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_strict_mode)
|
2410
|
+
:param bool innodb_undo_log_truncate: When enabled, undo tablespaces that exceed the threshold value defined by innodb_max_undo_log_size are marked for truncation. Only undo tablespaces can be truncated. Truncating undo logs that reside in the system tablespace is not supported. For truncation to occur, there must be at least two undo tablespaces.
|
2411
|
+
|
2412
|
+
innodbUndoLogTruncate corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_undo_log_truncate] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_undo_log_truncate).
|
2160
2413
|
:param int interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
|
2161
2414
|
|
2162
2415
|
interactiveTimeout corresponds to the MySQL system variable. [interactive_timeout](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_interactive_timeout)
|
2163
|
-
:param
|
2416
|
+
:param str join_buffer_size: 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. 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. 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. For a complex join between several tables for which indexes are not used, multiple join buffers might be necessary.
|
2417
|
+
|
2418
|
+
joinBufferSize corresponds to the MySQL Server System variable [join_buffer_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_join_buffer_size).
|
2419
|
+
:param bool local_infile: This variable controls server-side LOCAL capability for LOAD DATA statements. Depending on the local_infile setting, the server refuses or permits local data loading by clients that have LOCAL enabled on the client side.
|
2420
|
+
|
2421
|
+
local_infile corresponds to the MySQL Server system variable [local_infile](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_local_infile)
|
2422
|
+
:param int long_query_time: If a query takes longer than this many seconds, the server increments the Slow_queries status variable. If the slow query log is enabled, the query is logged to the slow query log file. This value is measured in real time, not CPU time, so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one.
|
2423
|
+
|
2424
|
+
longQueryTime corresponds to the MySQL Server System variable [long_query_time] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_long_query_time).
|
2164
2425
|
:param str mandatory_roles: ("mandatory_roles")
|
2165
2426
|
:param int max_allowed_packet: The maximum size of one packet or any generated/intermediate string.
|
2166
2427
|
|
@@ -2175,6 +2436,12 @@ class MysqlConfigurationVariables(dict):
|
|
2175
2436
|
|
2176
2437
|
maxHeapTableSize corresponds to the MySQL system variable [max_heap_table_size](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_heap_table_size)
|
2177
2438
|
:param int max_prepared_stmt_count: ("max_prepared_stmt_count")
|
2439
|
+
:param str max_seeks_for_key: Limit the assumed maximum number of seeks when looking up rows based on a key. 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, regardless of the actual cardinality of the index (see Section 15.7.7.22, “SHOW INDEX Statement”). By setting this to a low value (say, 100), you can force MySQL to prefer indexes instead of table scans.
|
2440
|
+
|
2441
|
+
maxSeeksForKey corresponds to the MySQL Server System variable [max_seeks_for_key] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_seeks_for_key).
|
2442
|
+
:param str max_user_connections: The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means “no limit.” This variable has a global value that can be set at server startup or runtime. 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.
|
2443
|
+
|
2444
|
+
maxUserConnections corresponds to the MySQL Server System variable [max_user_connections] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_user_connections).
|
2178
2445
|
:param bool mysql_firewall_mode: ("mysql_firewall_mode")
|
2179
2446
|
:param int mysql_zstd_default_compression_level: DEPRECATED -- typo of mysqlx_zstd_default_compression_level. variable will be ignored.
|
2180
2447
|
:param int mysqlx_connect_timeout: The number of seconds X Plugin waits for the first packet to be received from newly connected clients.
|
@@ -2211,18 +2478,67 @@ class MysqlConfigurationVariables(dict):
|
|
2211
2478
|
:param int net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write.
|
2212
2479
|
|
2213
2480
|
netWriteTimeout corresponds to the MySQL system variable [net_write_timeout](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_net_write_timeout)
|
2481
|
+
:param str optimizer_switch: The optimizer_switch system variable enables control over optimizer behavior. 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. This variable has global and session values and can be changed at runtime. The global default can be set at server startup.
|
2482
|
+
|
2483
|
+
Setting hypergraph_optimizer=on for cloud builds below 9.0.0 will fail.
|
2484
|
+
|
2485
|
+
optimizerSwitch corresponds to the MySQL Server System variable [optimizer_switch] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_optimizer_switch).
|
2214
2486
|
:param str parser_max_mem_size: ("parser_max_mem_size")
|
2215
2487
|
:param str query_alloc_block_size: ("query_alloc_block_size") DEPRECATED -- variable should not be settable and will be ignored
|
2216
2488
|
:param str query_prealloc_size: ("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
2489
|
+
:param str range_optimizer_max_mem_size: The limit on memory consumption for the range optimizer. A value of 0 means “no limit.” 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, it abandons the plan and considers other plans.
|
2490
|
+
|
2491
|
+
rangeOptimizerMaxMemSize corresponds to the MySQL Server System variable [range_optimizer_max_mem_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_range_optimizer_max_mem_size).
|
2217
2492
|
:param int regexp_time_limit: 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)
|
2493
|
+
:param str relay_log_space_limit: The maximum amount of space to use for all relay logs.
|
2494
|
+
|
2495
|
+
relayLogSpaceLimit corresponds to the MySQL Replica Server Options variable [relay_log_space_limit] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_relay_log_space_limit).
|
2496
|
+
:param int replica_net_timeout: Specifies the number of seconds to wait for more data or a heartbeat signal from the source before the replica considers the connection broken, 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.
|
2497
|
+
|
2498
|
+
replicaNetTimeout corresponds to the MySQL Replica server system variable [replica_net_timeout](https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_net_timeout)
|
2499
|
+
:param int replica_parallel_workers: Beginning with MySQL 8.0.26, slave_parallel_workers is deprecated, and you should use replica_parallel_workers instead. (Prior to MySQL 8.0.26, you must use slave_parallel_workers to set the number of applier threads.)
|
2500
|
+
|
2501
|
+
replicaParallelWorkers corresponds to the MySQL Replica Server Options variable [replica_parallel_workers] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_parallel_workers).
|
2502
|
+
:param str replica_type_conversions: From MySQL 8.0.26, use replica_type_conversions in place of slave_type_conversions, which is deprecated from that release. In releases before MySQL 8.0.26, use slave_type_conversions.
|
2503
|
+
|
2504
|
+
replica_type_conversions controls the type conversion mode in effect on the replica when using row-based replication. Its value is a comma-delimited set of zero or more elements from the list: ALL_LOSSY, ALL_NON_LOSSY, ALL_SIGNED, ALL_UNSIGNED. Set this variable to an empty string to disallow type conversions between the source and the replica. Setting this variable takes effect for all replication channels immediately, including running channels.
|
2505
|
+
|
2506
|
+
replica_type_conversions corresponds to the MySQL Replica Server Options variable [replica_type_conversions] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_type_conversions).
|
2507
|
+
:param bool require_secure_transport: Whether client connections to the server are required to use some form of secure transport. 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. The server rejects nonsecure connection attempts, which fail with an ER_SECURE_TRANSPORT_REQUIRED error.
|
2508
|
+
|
2509
|
+
require_secure_transport corresponds to the MySQL Server Administration system variable [require_secure_transport](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_require_secure_transport)
|
2510
|
+
:param bool skip_name_resolve: Whether to resolve host names when checking client connections. If this variable is OFF, mysqld resolves host names when checking client connections. If it is ON, mysqld uses only IP numbers; in this case, all Host column values in the grant tables must be IP addresses. See Section 7.1.12.3, “DNS Lookups and the Host Cache”.
|
2511
|
+
|
2512
|
+
skipNameResolve corresponds to the MySQL Server System variable [skip_name_resolve] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_skip_name_resolve).
|
2218
2513
|
:param str sort_buffer_size: Each session that must perform a sort allocates a buffer of this size.
|
2219
2514
|
|
2220
2515
|
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)
|
2516
|
+
:param bool sql_generate_invisible_primary_key: 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.
|
2517
|
+
|
2518
|
+
sqlGenerateInvisiblePrimaryKey corresponds to the MySQL system variable [sql_generate_invisible_primary_key] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sql_generate_invisible_primary_key).
|
2221
2519
|
:param str sql_mode: ("sql_mode")
|
2222
2520
|
:param bool sql_require_primary_key: ("sql_require_primary_key")
|
2223
2521
|
:param bool sql_warnings: ("sql_warnings")
|
2522
|
+
:param int table_definition_cache: The number of table definitions that can be stored in the table definition cache. If you use a large number of tables, you can create a large table definition cache to speed up opening of tables. The table definition cache takes less space and does not use file descriptors, unlike the normal table cache.
|
2523
|
+
|
2524
|
+
table_definition_cache corresponds to the MySQL Server Administration system variable [table_definition_cache](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_definition_cache)
|
2525
|
+
:param int table_open_cache: The number of open tables for all threads. Increasing this value increases the number of file descriptors that mysqld requires.
|
2526
|
+
|
2527
|
+
table_open_cache corresponds to the MySQL Server Administration system variable [table_open_cache](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_open_cache)
|
2528
|
+
:param str temptable_max_ram: Defines the maximum amount of memory that can be occupied by the TempTable storage engine before it starts storing data on disk. The default value is 1073741824 bytes (1GiB). For more information, see Section 10.4.4, “Internal Temporary Table Use in MySQL”.
|
2529
|
+
|
2530
|
+
temptableMaxRam corresponds to the MySQL system variable [temptable_max_ram] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_temptable_max_ram).
|
2224
2531
|
:param bool thread_pool_dedicated_listeners: 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 for network events from clients, ensuring that the maximum number of query worker threads is no more than the value specified by threadPoolMaxTransactionsLimit. threadPoolDedicatedListeners corresponds to the MySQL Database Service-specific system variable thread_pool_dedicated_listeners.
|
2225
2532
|
:param int thread_pool_max_transactions_limit: Limits the maximum number of open transactions to the defined value. The default value is 0, which enforces no limit. threadPoolMaxTransactionsLimit corresponds to the MySQL Database Service-specific system variable thread_pool_max_transactions_limit.
|
2533
|
+
:param int thread_pool_query_threads_per_group: The maximum number of query threads permitted in a thread group. 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. The default value of 1 means there is one active query thread in each thread group, which works well for many loads. When you are using the high concurrency thread pool algorithm (thread_pool_algorithm = 1), consider increasing the value if you experience slower response times due to long-running transactions.
|
2534
|
+
|
2535
|
+
threadPoolQueryThreadsPerGroup corresponds to the MySQL Server system variable [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)
|
2536
|
+
:param int thread_pool_size: The number of thread groups in the thread pool. This is the most important parameter controlling thread pool performance. It affects how many statements can execute simultaneously. If a value outside the range of permissible values is specified, the thread pool plugin does not load and the server writes a message to the error log.
|
2537
|
+
|
2538
|
+
threadPoolSize corresponds to the MySQL Server System variable [thread_pool_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_pool_size).
|
2539
|
+
:param int thread_pool_transaction_delay: The delay period before executing a new transaction, in milliseconds. The maximum value is 300000 (5 minutes). A transaction delay can be used in cases where parallel transactions affect the performance of other operations due to resource contention. For example, if parallel transactions affect index creation or an online buffer pool resizing operation, you can configure a transaction delay to reduce resource contention while those operations are running.
|
2540
|
+
|
2541
|
+
threadPoolTransactionDelay corresponds to the MySQL Server system variable [thread_pool_transaction_delay](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_pool_transaction_delay)
|
2226
2542
|
:param str time_zone: Initializes the time zone for each client that connects.
|
2227
2543
|
|
2228
2544
|
This corresponds to the MySQL System Variable "time_zone".
|
@@ -2242,18 +2558,32 @@ class MysqlConfigurationVariables(dict):
|
|
2242
2558
|
** IMPORTANT **
|
2243
2559
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2244
2560
|
"""
|
2561
|
+
if auto_increment_increment is not None:
|
2562
|
+
pulumi.set(__self__, "auto_increment_increment", auto_increment_increment)
|
2563
|
+
if auto_increment_offset is not None:
|
2564
|
+
pulumi.set(__self__, "auto_increment_offset", auto_increment_offset)
|
2245
2565
|
if autocommit is not None:
|
2246
2566
|
pulumi.set(__self__, "autocommit", autocommit)
|
2247
2567
|
if big_tables is not None:
|
2248
2568
|
pulumi.set(__self__, "big_tables", big_tables)
|
2249
2569
|
if binlog_expire_logs_seconds is not None:
|
2250
2570
|
pulumi.set(__self__, "binlog_expire_logs_seconds", binlog_expire_logs_seconds)
|
2571
|
+
if binlog_group_commit_sync_delay is not None:
|
2572
|
+
pulumi.set(__self__, "binlog_group_commit_sync_delay", binlog_group_commit_sync_delay)
|
2573
|
+
if binlog_group_commit_sync_no_delay_count is not None:
|
2574
|
+
pulumi.set(__self__, "binlog_group_commit_sync_no_delay_count", binlog_group_commit_sync_no_delay_count)
|
2251
2575
|
if binlog_row_metadata is not None:
|
2252
2576
|
pulumi.set(__self__, "binlog_row_metadata", binlog_row_metadata)
|
2253
2577
|
if binlog_row_value_options is not None:
|
2254
2578
|
pulumi.set(__self__, "binlog_row_value_options", binlog_row_value_options)
|
2255
2579
|
if binlog_transaction_compression is not None:
|
2256
2580
|
pulumi.set(__self__, "binlog_transaction_compression", binlog_transaction_compression)
|
2581
|
+
if block_encryption_mode is not None:
|
2582
|
+
pulumi.set(__self__, "block_encryption_mode", block_encryption_mode)
|
2583
|
+
if character_set_server is not None:
|
2584
|
+
pulumi.set(__self__, "character_set_server", character_set_server)
|
2585
|
+
if collation_server is not None:
|
2586
|
+
pulumi.set(__self__, "collation_server", collation_server)
|
2257
2587
|
if completion_type is not None:
|
2258
2588
|
pulumi.set(__self__, "completion_type", completion_type)
|
2259
2589
|
if connect_timeout is not None:
|
@@ -2266,6 +2596,10 @@ class MysqlConfigurationVariables(dict):
|
|
2266
2596
|
pulumi.set(__self__, "cte_max_recursion_depth", cte_max_recursion_depth)
|
2267
2597
|
if default_authentication_plugin is not None:
|
2268
2598
|
pulumi.set(__self__, "default_authentication_plugin", default_authentication_plugin)
|
2599
|
+
if explain_format is not None:
|
2600
|
+
pulumi.set(__self__, "explain_format", explain_format)
|
2601
|
+
if explicit_defaults_for_timestamp is not None:
|
2602
|
+
pulumi.set(__self__, "explicit_defaults_for_timestamp", explicit_defaults_for_timestamp)
|
2269
2603
|
if foreign_key_checks is not None:
|
2270
2604
|
pulumi.set(__self__, "foreign_key_checks", foreign_key_checks)
|
2271
2605
|
if generated_random_password_length is not None:
|
@@ -2274,16 +2608,24 @@ class MysqlConfigurationVariables(dict):
|
|
2274
2608
|
pulumi.set(__self__, "global_connection_memory_limit", global_connection_memory_limit)
|
2275
2609
|
if global_connection_memory_tracking is not None:
|
2276
2610
|
pulumi.set(__self__, "global_connection_memory_tracking", global_connection_memory_tracking)
|
2611
|
+
if group_concat_max_len is not None:
|
2612
|
+
pulumi.set(__self__, "group_concat_max_len", group_concat_max_len)
|
2277
2613
|
if group_replication_consistency is not None:
|
2278
2614
|
pulumi.set(__self__, "group_replication_consistency", group_replication_consistency)
|
2279
2615
|
if information_schema_stats_expiry is not None:
|
2280
2616
|
pulumi.set(__self__, "information_schema_stats_expiry", information_schema_stats_expiry)
|
2617
|
+
if innodb_adaptive_hash_index is not None:
|
2618
|
+
pulumi.set(__self__, "innodb_adaptive_hash_index", innodb_adaptive_hash_index)
|
2619
|
+
if innodb_autoinc_lock_mode is not None:
|
2620
|
+
pulumi.set(__self__, "innodb_autoinc_lock_mode", innodb_autoinc_lock_mode)
|
2281
2621
|
if innodb_buffer_pool_dump_pct is not None:
|
2282
2622
|
pulumi.set(__self__, "innodb_buffer_pool_dump_pct", innodb_buffer_pool_dump_pct)
|
2283
2623
|
if innodb_buffer_pool_instances is not None:
|
2284
2624
|
pulumi.set(__self__, "innodb_buffer_pool_instances", innodb_buffer_pool_instances)
|
2285
2625
|
if innodb_buffer_pool_size is not None:
|
2286
2626
|
pulumi.set(__self__, "innodb_buffer_pool_size", innodb_buffer_pool_size)
|
2627
|
+
if innodb_change_buffering is not None:
|
2628
|
+
pulumi.set(__self__, "innodb_change_buffering", innodb_change_buffering)
|
2287
2629
|
if innodb_ddl_buffer_size is not None:
|
2288
2630
|
pulumi.set(__self__, "innodb_ddl_buffer_size", innodb_ddl_buffer_size)
|
2289
2631
|
if innodb_ddl_threads is not None:
|
@@ -2308,14 +2650,32 @@ class MysqlConfigurationVariables(dict):
|
|
2308
2650
|
pulumi.set(__self__, "innodb_max_purge_lag", innodb_max_purge_lag)
|
2309
2651
|
if innodb_max_purge_lag_delay is not None:
|
2310
2652
|
pulumi.set(__self__, "innodb_max_purge_lag_delay", innodb_max_purge_lag_delay)
|
2653
|
+
if innodb_numa_interleave is not None:
|
2654
|
+
pulumi.set(__self__, "innodb_numa_interleave", innodb_numa_interleave)
|
2655
|
+
if innodb_online_alter_log_max_size is not None:
|
2656
|
+
pulumi.set(__self__, "innodb_online_alter_log_max_size", innodb_online_alter_log_max_size)
|
2657
|
+
if innodb_redo_log_capacity is not None:
|
2658
|
+
pulumi.set(__self__, "innodb_redo_log_capacity", innodb_redo_log_capacity)
|
2659
|
+
if innodb_rollback_on_timeout is not None:
|
2660
|
+
pulumi.set(__self__, "innodb_rollback_on_timeout", innodb_rollback_on_timeout)
|
2661
|
+
if innodb_sort_buffer_size is not None:
|
2662
|
+
pulumi.set(__self__, "innodb_sort_buffer_size", innodb_sort_buffer_size)
|
2311
2663
|
if innodb_stats_persistent_sample_pages is not None:
|
2312
2664
|
pulumi.set(__self__, "innodb_stats_persistent_sample_pages", innodb_stats_persistent_sample_pages)
|
2313
2665
|
if innodb_stats_transient_sample_pages is not None:
|
2314
2666
|
pulumi.set(__self__, "innodb_stats_transient_sample_pages", innodb_stats_transient_sample_pages)
|
2667
|
+
if innodb_strict_mode is not None:
|
2668
|
+
pulumi.set(__self__, "innodb_strict_mode", innodb_strict_mode)
|
2669
|
+
if innodb_undo_log_truncate is not None:
|
2670
|
+
pulumi.set(__self__, "innodb_undo_log_truncate", innodb_undo_log_truncate)
|
2315
2671
|
if interactive_timeout is not None:
|
2316
2672
|
pulumi.set(__self__, "interactive_timeout", interactive_timeout)
|
2673
|
+
if join_buffer_size is not None:
|
2674
|
+
pulumi.set(__self__, "join_buffer_size", join_buffer_size)
|
2317
2675
|
if local_infile is not None:
|
2318
2676
|
pulumi.set(__self__, "local_infile", local_infile)
|
2677
|
+
if long_query_time is not None:
|
2678
|
+
pulumi.set(__self__, "long_query_time", long_query_time)
|
2319
2679
|
if mandatory_roles is not None:
|
2320
2680
|
pulumi.set(__self__, "mandatory_roles", mandatory_roles)
|
2321
2681
|
if max_allowed_packet is not None:
|
@@ -2332,6 +2692,10 @@ class MysqlConfigurationVariables(dict):
|
|
2332
2692
|
pulumi.set(__self__, "max_heap_table_size", max_heap_table_size)
|
2333
2693
|
if max_prepared_stmt_count is not None:
|
2334
2694
|
pulumi.set(__self__, "max_prepared_stmt_count", max_prepared_stmt_count)
|
2695
|
+
if max_seeks_for_key is not None:
|
2696
|
+
pulumi.set(__self__, "max_seeks_for_key", max_seeks_for_key)
|
2697
|
+
if max_user_connections is not None:
|
2698
|
+
pulumi.set(__self__, "max_user_connections", max_user_connections)
|
2335
2699
|
if mysql_firewall_mode is not None:
|
2336
2700
|
pulumi.set(__self__, "mysql_firewall_mode", mysql_firewall_mode)
|
2337
2701
|
if mysql_zstd_default_compression_level is not None:
|
@@ -2372,26 +2736,56 @@ class MysqlConfigurationVariables(dict):
|
|
2372
2736
|
pulumi.set(__self__, "net_read_timeout", net_read_timeout)
|
2373
2737
|
if net_write_timeout is not None:
|
2374
2738
|
pulumi.set(__self__, "net_write_timeout", net_write_timeout)
|
2739
|
+
if optimizer_switch is not None:
|
2740
|
+
pulumi.set(__self__, "optimizer_switch", optimizer_switch)
|
2375
2741
|
if parser_max_mem_size is not None:
|
2376
2742
|
pulumi.set(__self__, "parser_max_mem_size", parser_max_mem_size)
|
2377
2743
|
if query_alloc_block_size is not None:
|
2378
2744
|
pulumi.set(__self__, "query_alloc_block_size", query_alloc_block_size)
|
2379
2745
|
if query_prealloc_size is not None:
|
2380
2746
|
pulumi.set(__self__, "query_prealloc_size", query_prealloc_size)
|
2747
|
+
if range_optimizer_max_mem_size is not None:
|
2748
|
+
pulumi.set(__self__, "range_optimizer_max_mem_size", range_optimizer_max_mem_size)
|
2381
2749
|
if regexp_time_limit is not None:
|
2382
2750
|
pulumi.set(__self__, "regexp_time_limit", regexp_time_limit)
|
2751
|
+
if relay_log_space_limit is not None:
|
2752
|
+
pulumi.set(__self__, "relay_log_space_limit", relay_log_space_limit)
|
2753
|
+
if replica_net_timeout is not None:
|
2754
|
+
pulumi.set(__self__, "replica_net_timeout", replica_net_timeout)
|
2755
|
+
if replica_parallel_workers is not None:
|
2756
|
+
pulumi.set(__self__, "replica_parallel_workers", replica_parallel_workers)
|
2757
|
+
if replica_type_conversions is not None:
|
2758
|
+
pulumi.set(__self__, "replica_type_conversions", replica_type_conversions)
|
2759
|
+
if require_secure_transport is not None:
|
2760
|
+
pulumi.set(__self__, "require_secure_transport", require_secure_transport)
|
2761
|
+
if skip_name_resolve is not None:
|
2762
|
+
pulumi.set(__self__, "skip_name_resolve", skip_name_resolve)
|
2383
2763
|
if sort_buffer_size is not None:
|
2384
2764
|
pulumi.set(__self__, "sort_buffer_size", sort_buffer_size)
|
2765
|
+
if sql_generate_invisible_primary_key is not None:
|
2766
|
+
pulumi.set(__self__, "sql_generate_invisible_primary_key", sql_generate_invisible_primary_key)
|
2385
2767
|
if sql_mode is not None:
|
2386
2768
|
pulumi.set(__self__, "sql_mode", sql_mode)
|
2387
2769
|
if sql_require_primary_key is not None:
|
2388
2770
|
pulumi.set(__self__, "sql_require_primary_key", sql_require_primary_key)
|
2389
2771
|
if sql_warnings is not None:
|
2390
2772
|
pulumi.set(__self__, "sql_warnings", sql_warnings)
|
2773
|
+
if table_definition_cache is not None:
|
2774
|
+
pulumi.set(__self__, "table_definition_cache", table_definition_cache)
|
2775
|
+
if table_open_cache is not None:
|
2776
|
+
pulumi.set(__self__, "table_open_cache", table_open_cache)
|
2777
|
+
if temptable_max_ram is not None:
|
2778
|
+
pulumi.set(__self__, "temptable_max_ram", temptable_max_ram)
|
2391
2779
|
if thread_pool_dedicated_listeners is not None:
|
2392
2780
|
pulumi.set(__self__, "thread_pool_dedicated_listeners", thread_pool_dedicated_listeners)
|
2393
2781
|
if thread_pool_max_transactions_limit is not None:
|
2394
2782
|
pulumi.set(__self__, "thread_pool_max_transactions_limit", thread_pool_max_transactions_limit)
|
2783
|
+
if thread_pool_query_threads_per_group is not None:
|
2784
|
+
pulumi.set(__self__, "thread_pool_query_threads_per_group", thread_pool_query_threads_per_group)
|
2785
|
+
if thread_pool_size is not None:
|
2786
|
+
pulumi.set(__self__, "thread_pool_size", thread_pool_size)
|
2787
|
+
if thread_pool_transaction_delay is not None:
|
2788
|
+
pulumi.set(__self__, "thread_pool_transaction_delay", thread_pool_transaction_delay)
|
2395
2789
|
if time_zone is not None:
|
2396
2790
|
pulumi.set(__self__, "time_zone", time_zone)
|
2397
2791
|
if tmp_table_size is not None:
|
@@ -2401,6 +2795,26 @@ class MysqlConfigurationVariables(dict):
|
|
2401
2795
|
if wait_timeout is not None:
|
2402
2796
|
pulumi.set(__self__, "wait_timeout", wait_timeout)
|
2403
2797
|
|
2798
|
+
@property
|
2799
|
+
@pulumi.getter(name="autoIncrementIncrement")
|
2800
|
+
def auto_increment_increment(self) -> Optional[int]:
|
2801
|
+
"""
|
2802
|
+
auto_increment_increment and auto_increment_offset are intended for use with circular (source-to-source) replication, and can be used to control the operation of AUTO_INCREMENT columns. Both variables have global and session values, and each can assume an integer value between 1 and 65,535 inclusive.
|
2803
|
+
|
2804
|
+
autoIncrementIncrement corresponds to the MySQL Replication Source Options variable [auto_increment_increment] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_auto_increment_increment).
|
2805
|
+
"""
|
2806
|
+
return pulumi.get(self, "auto_increment_increment")
|
2807
|
+
|
2808
|
+
@property
|
2809
|
+
@pulumi.getter(name="autoIncrementOffset")
|
2810
|
+
def auto_increment_offset(self) -> Optional[int]:
|
2811
|
+
"""
|
2812
|
+
This variable has a default value of 1. If it is left with its default value, and Group Replication is started on the server in multi-primary mode, it is changed to the server ID.
|
2813
|
+
|
2814
|
+
autoIncrementOffset corresponds to the MySQL Replication Source Options variable [auto_increment_offset] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-source.html#sysvar_auto_increment_offset).
|
2815
|
+
"""
|
2816
|
+
return pulumi.get(self, "auto_increment_offset")
|
2817
|
+
|
2404
2818
|
@property
|
2405
2819
|
@pulumi.getter
|
2406
2820
|
def autocommit(self) -> Optional[bool]:
|
@@ -2427,6 +2841,26 @@ class MysqlConfigurationVariables(dict):
|
|
2427
2841
|
"""
|
2428
2842
|
return pulumi.get(self, "binlog_expire_logs_seconds")
|
2429
2843
|
|
2844
|
+
@property
|
2845
|
+
@pulumi.getter(name="binlogGroupCommitSyncDelay")
|
2846
|
+
def binlog_group_commit_sync_delay(self) -> Optional[int]:
|
2847
|
+
"""
|
2848
|
+
Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk. There is no delay by default. Setting this variable to a microsecond delay enables more transactions to be synchronized together to disk at once, reducing the overall time to commit a group of transactions because the larger groups required fewer time units per group.
|
2849
|
+
|
2850
|
+
binlogGroupCommitSyncDelay corresponds to the MySQL Replication system variable [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)
|
2851
|
+
"""
|
2852
|
+
return pulumi.get(self, "binlog_group_commit_sync_delay")
|
2853
|
+
|
2854
|
+
@property
|
2855
|
+
@pulumi.getter(name="binlogGroupCommitSyncNoDelayCount")
|
2856
|
+
def binlog_group_commit_sync_no_delay_count(self) -> Optional[int]:
|
2857
|
+
"""
|
2858
|
+
The maximum number of transactions to wait for before aborting the current delay as specified by binlog_group_commit_sync_delay. If binlog_group_commit_sync_delay is set to 0, then this option has no effect.
|
2859
|
+
|
2860
|
+
binlogGroupCommitSyncNoDelayCount corresponds to the MySQL Replication system variable [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)
|
2861
|
+
"""
|
2862
|
+
return pulumi.get(self, "binlog_group_commit_sync_no_delay_count")
|
2863
|
+
|
2430
2864
|
@property
|
2431
2865
|
@pulumi.getter(name="binlogRowMetadata")
|
2432
2866
|
def binlog_row_metadata(self) -> Optional[str]:
|
@@ -2451,6 +2885,36 @@ class MysqlConfigurationVariables(dict):
|
|
2451
2885
|
"""
|
2452
2886
|
return pulumi.get(self, "binlog_transaction_compression")
|
2453
2887
|
|
2888
|
+
@property
|
2889
|
+
@pulumi.getter(name="blockEncryptionMode")
|
2890
|
+
def block_encryption_mode(self) -> Optional[str]:
|
2891
|
+
"""
|
2892
|
+
This variable controls the block encryption mode for block-based algorithms such as AES. It affects encryption for AES_ENCRYPT() and AES_DECRYPT(). 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. Permitted keylen values are 128, 192, and 256. Permitted mode values are ECB, CBC, CFB1, CFB8, CFB128, and OFB.
|
2893
|
+
|
2894
|
+
block_encryption_mode corresponds to the MySQL Server Administration system variable [block_encryption_mode](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_block_encryption_mode)
|
2895
|
+
"""
|
2896
|
+
return pulumi.get(self, "block_encryption_mode")
|
2897
|
+
|
2898
|
+
@property
|
2899
|
+
@pulumi.getter(name="characterSetServer")
|
2900
|
+
def character_set_server(self) -> Optional[str]:
|
2901
|
+
"""
|
2902
|
+
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.
|
2903
|
+
|
2904
|
+
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).
|
2905
|
+
"""
|
2906
|
+
return pulumi.get(self, "character_set_server")
|
2907
|
+
|
2908
|
+
@property
|
2909
|
+
@pulumi.getter(name="collationServer")
|
2910
|
+
def collation_server(self) -> Optional[str]:
|
2911
|
+
"""
|
2912
|
+
The server's default collation.
|
2913
|
+
|
2914
|
+
collationServer corresponds to the MySQL server variable [collation_server](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_collation_server).
|
2915
|
+
"""
|
2916
|
+
return pulumi.get(self, "collation_server")
|
2917
|
+
|
2454
2918
|
@property
|
2455
2919
|
@pulumi.getter(name="completionType")
|
2456
2920
|
def completion_type(self) -> Optional[str]:
|
@@ -2503,10 +2967,34 @@ class MysqlConfigurationVariables(dict):
|
|
2503
2967
|
@pulumi.getter(name="defaultAuthenticationPlugin")
|
2504
2968
|
def default_authentication_plugin(self) -> Optional[str]:
|
2505
2969
|
"""
|
2506
|
-
|
2970
|
+
The default authentication plugin. This must be a plugin that uses internal credentials storage, so these values are permitted: mysql_native_password, sha256_password, caching_sha2_password.
|
2971
|
+
|
2972
|
+
As of MySQL 8.0.27, which introduces multifactor authentication, default_authentication_plugin is still used, but in conjunction with and at a lower precedence than the authentication_policy system variable. For details, see The Default Authentication Plugin. Because of this diminished role, default_authentication_plugin is deprecated as of MySQL 8.0.27 and subject to removal in a future MySQL version.
|
2973
|
+
|
2974
|
+
defaultAuthenticationPlugin corresponds to the MySQL system variable [default_authentication_plugin](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin).
|
2507
2975
|
"""
|
2508
2976
|
return pulumi.get(self, "default_authentication_plugin")
|
2509
2977
|
|
2978
|
+
@property
|
2979
|
+
@pulumi.getter(name="explainFormat")
|
2980
|
+
def explain_format(self) -> Optional[str]:
|
2981
|
+
"""
|
2982
|
+
This variable determines the default output format used by EXPLAIN in the absence of a FORMAT option when displaying a query execution plan.
|
2983
|
+
|
2984
|
+
explainFormat corresponds to the MySQL system variable [explain_format](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_explain_format).
|
2985
|
+
"""
|
2986
|
+
return pulumi.get(self, "explain_format")
|
2987
|
+
|
2988
|
+
@property
|
2989
|
+
@pulumi.getter(name="explicitDefaultsForTimestamp")
|
2990
|
+
def explicit_defaults_for_timestamp(self) -> Optional[bool]:
|
2991
|
+
"""
|
2992
|
+
This system variable determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns. By default, explicit_defaults_for_timestamp is enabled, which disables the nonstandard behaviors. Disabling explicit_defaults_for_timestamp results in a warning.
|
2993
|
+
|
2994
|
+
explicit_defaults_for_timestamp corresponds to the MySQL Server Administration system variable [explicit_defaults_for_timestamp](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_explicit_defaults_for_timestamp)
|
2995
|
+
"""
|
2996
|
+
return pulumi.get(self, "explicit_defaults_for_timestamp")
|
2997
|
+
|
2510
2998
|
@property
|
2511
2999
|
@pulumi.getter(name="foreignKeyChecks")
|
2512
3000
|
def foreign_key_checks(self) -> Optional[bool]:
|
@@ -2544,6 +3032,16 @@ class MysqlConfigurationVariables(dict):
|
|
2544
3032
|
"""
|
2545
3033
|
return pulumi.get(self, "global_connection_memory_tracking")
|
2546
3034
|
|
3035
|
+
@property
|
3036
|
+
@pulumi.getter(name="groupConcatMaxLen")
|
3037
|
+
def group_concat_max_len(self) -> Optional[str]:
|
3038
|
+
"""
|
3039
|
+
Specifies the maximum permitted result length in bytes for the GROUP_CONCAT() function.
|
3040
|
+
|
3041
|
+
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)
|
3042
|
+
"""
|
3043
|
+
return pulumi.get(self, "group_concat_max_len")
|
3044
|
+
|
2547
3045
|
@property
|
2548
3046
|
@pulumi.getter(name="groupReplicationConsistency")
|
2549
3047
|
def group_replication_consistency(self) -> Optional[str]:
|
@@ -2564,6 +3062,26 @@ class MysqlConfigurationVariables(dict):
|
|
2564
3062
|
"""
|
2565
3063
|
return pulumi.get(self, "information_schema_stats_expiry")
|
2566
3064
|
|
3065
|
+
@property
|
3066
|
+
@pulumi.getter(name="innodbAdaptiveHashIndex")
|
3067
|
+
def innodb_adaptive_hash_index(self) -> Optional[bool]:
|
3068
|
+
"""
|
3069
|
+
Whether the InnoDB adaptive hash index is enabled or disabled. It may be desirable, depending on your workload, to dynamically enable or disable adaptive hash indexing to improve query performance. Because the adaptive hash index may not be useful for all workloads, conduct benchmarks with it both enabled and disabled, using realistic workloads.
|
3070
|
+
|
3071
|
+
innodbAdaptiveHashIndex corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_adaptive_hash_index] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_adaptive_hash_index).
|
3072
|
+
"""
|
3073
|
+
return pulumi.get(self, "innodb_adaptive_hash_index")
|
3074
|
+
|
3075
|
+
@property
|
3076
|
+
@pulumi.getter(name="innodbAutoincLockMode")
|
3077
|
+
def innodb_autoinc_lock_mode(self) -> Optional[int]:
|
3078
|
+
"""
|
3079
|
+
The lock mode to use for generating auto-increment values. Permissible values are 0, 1, or 2, for traditional, consecutive, or interleaved, respectively.
|
3080
|
+
|
3081
|
+
innodbAutoincLockMode corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_autoinc_lock_mode] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_autoinc_lock_mode).
|
3082
|
+
"""
|
3083
|
+
return pulumi.get(self, "innodb_autoinc_lock_mode")
|
3084
|
+
|
2567
3085
|
@property
|
2568
3086
|
@pulumi.getter(name="innodbBufferPoolDumpPct")
|
2569
3087
|
def innodb_buffer_pool_dump_pct(self) -> Optional[int]:
|
@@ -2598,6 +3116,16 @@ class MysqlConfigurationVariables(dict):
|
|
2598
3116
|
"""
|
2599
3117
|
return pulumi.get(self, "innodb_buffer_pool_size")
|
2600
3118
|
|
3119
|
+
@property
|
3120
|
+
@pulumi.getter(name="innodbChangeBuffering")
|
3121
|
+
def innodb_change_buffering(self) -> Optional[str]:
|
3122
|
+
"""
|
3123
|
+
Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially. Permitted values are described in the following table. Values may also be specified numerically.
|
3124
|
+
|
3125
|
+
innodbChangeBuffering corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_change_buffering] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_change_buffering).
|
3126
|
+
"""
|
3127
|
+
return pulumi.get(self, "innodb_change_buffering")
|
3128
|
+
|
2601
3129
|
@property
|
2602
3130
|
@pulumi.getter(name="innodbDdlBufferSize")
|
2603
3131
|
def innodb_ddl_buffer_size(self) -> Optional[str]:
|
@@ -2708,6 +3236,58 @@ class MysqlConfigurationVariables(dict):
|
|
2708
3236
|
"""
|
2709
3237
|
return pulumi.get(self, "innodb_max_purge_lag_delay")
|
2710
3238
|
|
3239
|
+
@property
|
3240
|
+
@pulumi.getter(name="innodbNumaInterleave")
|
3241
|
+
def innodb_numa_interleave(self) -> Optional[bool]:
|
3242
|
+
"""
|
3243
|
+
Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool. When innodb_numa_interleave is enabled, the NUMA memory policy is set to MPOL_INTERLEAVE for the mysqld process. After the InnoDB buffer pool is allocated, the NUMA memory policy is set back to MPOL_DEFAULT. For the innodb_numa_interleave option to be available, MySQL must be compiled on a NUMA-enabled Linux system.
|
3244
|
+
|
3245
|
+
innodbNumaInterleave corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_numa_interleave] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_numa_interleave).
|
3246
|
+
"""
|
3247
|
+
return pulumi.get(self, "innodb_numa_interleave")
|
3248
|
+
|
3249
|
+
@property
|
3250
|
+
@pulumi.getter(name="innodbOnlineAlterLogMaxSize")
|
3251
|
+
def innodb_online_alter_log_max_size(self) -> Optional[str]:
|
3252
|
+
"""
|
3253
|
+
Specifies an upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables. There is one such log file for each index being created or table being altered. This log file stores data inserted, updated, or deleted in the table during the DDL operation.
|
3254
|
+
|
3255
|
+
innodbOnlineAlterLogMaxSize corresponds to the MySQL InnoDB Startup Options and System Variables [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).
|
3256
|
+
"""
|
3257
|
+
return pulumi.get(self, "innodb_online_alter_log_max_size")
|
3258
|
+
|
3259
|
+
@property
|
3260
|
+
@pulumi.getter(name="innodbRedoLogCapacity")
|
3261
|
+
def innodb_redo_log_capacity(self) -> Optional[str]:
|
3262
|
+
"""
|
3263
|
+
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, 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, then the default innodb_redo_log_capacity value is used.
|
3264
|
+
|
3265
|
+
innodbRedoLogCapacity corresponds to the InnoDB Startup Options and System Variables [innodb_redo_log_capacity](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_redo_log_capacity)
|
3266
|
+
"""
|
3267
|
+
return pulumi.get(self, "innodb_redo_log_capacity")
|
3268
|
+
|
3269
|
+
@property
|
3270
|
+
@pulumi.getter(name="innodbRollbackOnTimeout")
|
3271
|
+
def innodb_rollback_on_timeout(self) -> Optional[bool]:
|
3272
|
+
"""
|
3273
|
+
InnoDB rolls back only the last statement on a transaction timeout by default. If --innodb-rollback-on-timeout is specified, a transaction timeout causes InnoDB to abort and roll back the entire transaction.
|
3274
|
+
|
3275
|
+
innodbRollbackOnTimeout corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_rollback_on_timeout] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_rollback_on_timeout).
|
3276
|
+
"""
|
3277
|
+
return pulumi.get(self, "innodb_rollback_on_timeout")
|
3278
|
+
|
3279
|
+
@property
|
3280
|
+
@pulumi.getter(name="innodbSortBufferSize")
|
3281
|
+
def innodb_sort_buffer_size(self) -> Optional[int]:
|
3282
|
+
"""
|
3283
|
+
This variable defines:
|
3284
|
+
* The sort buffer size for online DDL operations that create or rebuild secondary indexes. However, as of MySQL 8.0.27, this responsibility is subsumed by the innodb_ddl_buffer_size variable.
|
3285
|
+
* The amount by which the temporary log file is extended when recording concurrent DML during an online DDL operation, and the size of the temporary log file read buffer and write buffer.
|
3286
|
+
|
3287
|
+
innodbSortBufferSize corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_sort_buffer_size] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_sort_buffer_size).
|
3288
|
+
"""
|
3289
|
+
return pulumi.get(self, "innodb_sort_buffer_size")
|
3290
|
+
|
2711
3291
|
@property
|
2712
3292
|
@pulumi.getter(name="innodbStatsPersistentSamplePages")
|
2713
3293
|
def innodb_stats_persistent_sample_pages(self) -> Optional[str]:
|
@@ -2734,6 +3314,26 @@ class MysqlConfigurationVariables(dict):
|
|
2734
3314
|
"""
|
2735
3315
|
return pulumi.get(self, "innodb_stats_transient_sample_pages")
|
2736
3316
|
|
3317
|
+
@property
|
3318
|
+
@pulumi.getter(name="innodbStrictMode")
|
3319
|
+
def innodb_strict_mode(self) -> Optional[bool]:
|
3320
|
+
"""
|
3321
|
+
When you enable innodbStrictMode, the InnoDB storage engine returns errors instead of warnings for invalid or incompatible table options.
|
3322
|
+
|
3323
|
+
innodbStrictMode corresponds to the MySQL InnoDB system variable [innodb_strict_mode](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_strict_mode)
|
3324
|
+
"""
|
3325
|
+
return pulumi.get(self, "innodb_strict_mode")
|
3326
|
+
|
3327
|
+
@property
|
3328
|
+
@pulumi.getter(name="innodbUndoLogTruncate")
|
3329
|
+
def innodb_undo_log_truncate(self) -> Optional[bool]:
|
3330
|
+
"""
|
3331
|
+
When enabled, undo tablespaces that exceed the threshold value defined by innodb_max_undo_log_size are marked for truncation. Only undo tablespaces can be truncated. Truncating undo logs that reside in the system tablespace is not supported. For truncation to occur, there must be at least two undo tablespaces.
|
3332
|
+
|
3333
|
+
innodbUndoLogTruncate corresponds to the MySQL InnoDB Startup Options and System Variables [innodb_undo_log_truncate] (https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_undo_log_truncate).
|
3334
|
+
"""
|
3335
|
+
return pulumi.get(self, "innodb_undo_log_truncate")
|
3336
|
+
|
2737
3337
|
@property
|
2738
3338
|
@pulumi.getter(name="interactiveTimeout")
|
2739
3339
|
def interactive_timeout(self) -> Optional[int]:
|
@@ -2744,14 +3344,36 @@ class MysqlConfigurationVariables(dict):
|
|
2744
3344
|
"""
|
2745
3345
|
return pulumi.get(self, "interactive_timeout")
|
2746
3346
|
|
3347
|
+
@property
|
3348
|
+
@pulumi.getter(name="joinBufferSize")
|
3349
|
+
def join_buffer_size(self) -> Optional[str]:
|
3350
|
+
"""
|
3351
|
+
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. 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. 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. For a complex join between several tables for which indexes are not used, multiple join buffers might be necessary.
|
3352
|
+
|
3353
|
+
joinBufferSize corresponds to the MySQL Server System variable [join_buffer_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_join_buffer_size).
|
3354
|
+
"""
|
3355
|
+
return pulumi.get(self, "join_buffer_size")
|
3356
|
+
|
2747
3357
|
@property
|
2748
3358
|
@pulumi.getter(name="localInfile")
|
2749
3359
|
def local_infile(self) -> Optional[bool]:
|
2750
3360
|
"""
|
2751
|
-
|
3361
|
+
This variable controls server-side LOCAL capability for LOAD DATA statements. Depending on the local_infile setting, the server refuses or permits local data loading by clients that have LOCAL enabled on the client side.
|
3362
|
+
|
3363
|
+
local_infile corresponds to the MySQL Server system variable [local_infile](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_local_infile)
|
2752
3364
|
"""
|
2753
3365
|
return pulumi.get(self, "local_infile")
|
2754
3366
|
|
3367
|
+
@property
|
3368
|
+
@pulumi.getter(name="longQueryTime")
|
3369
|
+
def long_query_time(self) -> Optional[int]:
|
3370
|
+
"""
|
3371
|
+
If a query takes longer than this many seconds, the server increments the Slow_queries status variable. If the slow query log is enabled, the query is logged to the slow query log file. This value is measured in real time, not CPU time, so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one.
|
3372
|
+
|
3373
|
+
longQueryTime corresponds to the MySQL Server System variable [long_query_time] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_long_query_time).
|
3374
|
+
"""
|
3375
|
+
return pulumi.get(self, "long_query_time")
|
3376
|
+
|
2755
3377
|
@property
|
2756
3378
|
@pulumi.getter(name="mandatoryRoles")
|
2757
3379
|
def mandatory_roles(self) -> Optional[str]:
|
@@ -2822,6 +3444,26 @@ class MysqlConfigurationVariables(dict):
|
|
2822
3444
|
"""
|
2823
3445
|
return pulumi.get(self, "max_prepared_stmt_count")
|
2824
3446
|
|
3447
|
+
@property
|
3448
|
+
@pulumi.getter(name="maxSeeksForKey")
|
3449
|
+
def max_seeks_for_key(self) -> Optional[str]:
|
3450
|
+
"""
|
3451
|
+
Limit the assumed maximum number of seeks when looking up rows based on a key. 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, regardless of the actual cardinality of the index (see Section 15.7.7.22, “SHOW INDEX Statement”). By setting this to a low value (say, 100), you can force MySQL to prefer indexes instead of table scans.
|
3452
|
+
|
3453
|
+
maxSeeksForKey corresponds to the MySQL Server System variable [max_seeks_for_key] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_seeks_for_key).
|
3454
|
+
"""
|
3455
|
+
return pulumi.get(self, "max_seeks_for_key")
|
3456
|
+
|
3457
|
+
@property
|
3458
|
+
@pulumi.getter(name="maxUserConnections")
|
3459
|
+
def max_user_connections(self) -> Optional[str]:
|
3460
|
+
"""
|
3461
|
+
The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means “no limit.” This variable has a global value that can be set at server startup or runtime. 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.
|
3462
|
+
|
3463
|
+
maxUserConnections corresponds to the MySQL Server System variable [max_user_connections] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_user_connections).
|
3464
|
+
"""
|
3465
|
+
return pulumi.get(self, "max_user_connections")
|
3466
|
+
|
2825
3467
|
@property
|
2826
3468
|
@pulumi.getter(name="mysqlFirewallMode")
|
2827
3469
|
def mysql_firewall_mode(self) -> Optional[bool]:
|
@@ -3002,6 +3644,18 @@ class MysqlConfigurationVariables(dict):
|
|
3002
3644
|
"""
|
3003
3645
|
return pulumi.get(self, "net_write_timeout")
|
3004
3646
|
|
3647
|
+
@property
|
3648
|
+
@pulumi.getter(name="optimizerSwitch")
|
3649
|
+
def optimizer_switch(self) -> Optional[str]:
|
3650
|
+
"""
|
3651
|
+
The optimizer_switch system variable enables control over optimizer behavior. 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. This variable has global and session values and can be changed at runtime. The global default can be set at server startup.
|
3652
|
+
|
3653
|
+
Setting hypergraph_optimizer=on for cloud builds below 9.0.0 will fail.
|
3654
|
+
|
3655
|
+
optimizerSwitch corresponds to the MySQL Server System variable [optimizer_switch] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_optimizer_switch).
|
3656
|
+
"""
|
3657
|
+
return pulumi.get(self, "optimizer_switch")
|
3658
|
+
|
3005
3659
|
@property
|
3006
3660
|
@pulumi.getter(name="parserMaxMemSize")
|
3007
3661
|
def parser_max_mem_size(self) -> Optional[str]:
|
@@ -3021,13 +3675,23 @@ class MysqlConfigurationVariables(dict):
|
|
3021
3675
|
|
3022
3676
|
@property
|
3023
3677
|
@pulumi.getter(name="queryPreallocSize")
|
3024
|
-
@_utilities.deprecated("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
3025
3678
|
def query_prealloc_size(self) -> Optional[str]:
|
3026
3679
|
"""
|
3027
3680
|
("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
3028
3681
|
"""
|
3029
3682
|
return pulumi.get(self, "query_prealloc_size")
|
3030
3683
|
|
3684
|
+
@property
|
3685
|
+
@pulumi.getter(name="rangeOptimizerMaxMemSize")
|
3686
|
+
@_utilities.deprecated("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
3687
|
+
def range_optimizer_max_mem_size(self) -> Optional[str]:
|
3688
|
+
"""
|
3689
|
+
The limit on memory consumption for the range optimizer. A value of 0 means “no limit.” 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, it abandons the plan and considers other plans.
|
3690
|
+
|
3691
|
+
rangeOptimizerMaxMemSize corresponds to the MySQL Server System variable [range_optimizer_max_mem_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_range_optimizer_max_mem_size).
|
3692
|
+
"""
|
3693
|
+
return pulumi.get(self, "range_optimizer_max_mem_size")
|
3694
|
+
|
3031
3695
|
@property
|
3032
3696
|
@pulumi.getter(name="regexpTimeLimit")
|
3033
3697
|
def regexp_time_limit(self) -> Optional[int]:
|
@@ -3036,6 +3700,68 @@ class MysqlConfigurationVariables(dict):
|
|
3036
3700
|
"""
|
3037
3701
|
return pulumi.get(self, "regexp_time_limit")
|
3038
3702
|
|
3703
|
+
@property
|
3704
|
+
@pulumi.getter(name="relayLogSpaceLimit")
|
3705
|
+
def relay_log_space_limit(self) -> Optional[str]:
|
3706
|
+
"""
|
3707
|
+
The maximum amount of space to use for all relay logs.
|
3708
|
+
|
3709
|
+
relayLogSpaceLimit corresponds to the MySQL Replica Server Options variable [relay_log_space_limit] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_relay_log_space_limit).
|
3710
|
+
"""
|
3711
|
+
return pulumi.get(self, "relay_log_space_limit")
|
3712
|
+
|
3713
|
+
@property
|
3714
|
+
@pulumi.getter(name="replicaNetTimeout")
|
3715
|
+
def replica_net_timeout(self) -> Optional[int]:
|
3716
|
+
"""
|
3717
|
+
Specifies the number of seconds to wait for more data or a heartbeat signal from the source before the replica considers the connection broken, 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.
|
3718
|
+
|
3719
|
+
replicaNetTimeout corresponds to the MySQL Replica server system variable [replica_net_timeout](https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_net_timeout)
|
3720
|
+
"""
|
3721
|
+
return pulumi.get(self, "replica_net_timeout")
|
3722
|
+
|
3723
|
+
@property
|
3724
|
+
@pulumi.getter(name="replicaParallelWorkers")
|
3725
|
+
def replica_parallel_workers(self) -> Optional[int]:
|
3726
|
+
"""
|
3727
|
+
Beginning with MySQL 8.0.26, slave_parallel_workers is deprecated, and you should use replica_parallel_workers instead. (Prior to MySQL 8.0.26, you must use slave_parallel_workers to set the number of applier threads.)
|
3728
|
+
|
3729
|
+
replicaParallelWorkers corresponds to the MySQL Replica Server Options variable [replica_parallel_workers] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_parallel_workers).
|
3730
|
+
"""
|
3731
|
+
return pulumi.get(self, "replica_parallel_workers")
|
3732
|
+
|
3733
|
+
@property
|
3734
|
+
@pulumi.getter(name="replicaTypeConversions")
|
3735
|
+
def replica_type_conversions(self) -> Optional[str]:
|
3736
|
+
"""
|
3737
|
+
From MySQL 8.0.26, use replica_type_conversions in place of slave_type_conversions, which is deprecated from that release. In releases before MySQL 8.0.26, use slave_type_conversions.
|
3738
|
+
|
3739
|
+
replica_type_conversions controls the type conversion mode in effect on the replica when using row-based replication. Its value is a comma-delimited set of zero or more elements from the list: ALL_LOSSY, ALL_NON_LOSSY, ALL_SIGNED, ALL_UNSIGNED. Set this variable to an empty string to disallow type conversions between the source and the replica. Setting this variable takes effect for all replication channels immediately, including running channels.
|
3740
|
+
|
3741
|
+
replica_type_conversions corresponds to the MySQL Replica Server Options variable [replica_type_conversions] (https://dev.mysql.com/doc/refman/8.0/en/replication-options-replica.html#sysvar_replica_type_conversions).
|
3742
|
+
"""
|
3743
|
+
return pulumi.get(self, "replica_type_conversions")
|
3744
|
+
|
3745
|
+
@property
|
3746
|
+
@pulumi.getter(name="requireSecureTransport")
|
3747
|
+
def require_secure_transport(self) -> Optional[bool]:
|
3748
|
+
"""
|
3749
|
+
Whether client connections to the server are required to use some form of secure transport. 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. The server rejects nonsecure connection attempts, which fail with an ER_SECURE_TRANSPORT_REQUIRED error.
|
3750
|
+
|
3751
|
+
require_secure_transport corresponds to the MySQL Server Administration system variable [require_secure_transport](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_require_secure_transport)
|
3752
|
+
"""
|
3753
|
+
return pulumi.get(self, "require_secure_transport")
|
3754
|
+
|
3755
|
+
@property
|
3756
|
+
@pulumi.getter(name="skipNameResolve")
|
3757
|
+
def skip_name_resolve(self) -> Optional[bool]:
|
3758
|
+
"""
|
3759
|
+
Whether to resolve host names when checking client connections. If this variable is OFF, mysqld resolves host names when checking client connections. If it is ON, mysqld uses only IP numbers; in this case, all Host column values in the grant tables must be IP addresses. See Section 7.1.12.3, “DNS Lookups and the Host Cache”.
|
3760
|
+
|
3761
|
+
skipNameResolve corresponds to the MySQL Server System variable [skip_name_resolve] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_skip_name_resolve).
|
3762
|
+
"""
|
3763
|
+
return pulumi.get(self, "skip_name_resolve")
|
3764
|
+
|
3039
3765
|
@property
|
3040
3766
|
@pulumi.getter(name="sortBufferSize")
|
3041
3767
|
def sort_buffer_size(self) -> Optional[str]:
|
@@ -3046,6 +3772,16 @@ class MysqlConfigurationVariables(dict):
|
|
3046
3772
|
"""
|
3047
3773
|
return pulumi.get(self, "sort_buffer_size")
|
3048
3774
|
|
3775
|
+
@property
|
3776
|
+
@pulumi.getter(name="sqlGenerateInvisiblePrimaryKey")
|
3777
|
+
def sql_generate_invisible_primary_key(self) -> Optional[bool]:
|
3778
|
+
"""
|
3779
|
+
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.
|
3780
|
+
|
3781
|
+
sqlGenerateInvisiblePrimaryKey corresponds to the MySQL system variable [sql_generate_invisible_primary_key] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sql_generate_invisible_primary_key).
|
3782
|
+
"""
|
3783
|
+
return pulumi.get(self, "sql_generate_invisible_primary_key")
|
3784
|
+
|
3049
3785
|
@property
|
3050
3786
|
@pulumi.getter(name="sqlMode")
|
3051
3787
|
def sql_mode(self) -> Optional[str]:
|
@@ -3070,6 +3806,36 @@ class MysqlConfigurationVariables(dict):
|
|
3070
3806
|
"""
|
3071
3807
|
return pulumi.get(self, "sql_warnings")
|
3072
3808
|
|
3809
|
+
@property
|
3810
|
+
@pulumi.getter(name="tableDefinitionCache")
|
3811
|
+
def table_definition_cache(self) -> Optional[int]:
|
3812
|
+
"""
|
3813
|
+
The number of table definitions that can be stored in the table definition cache. If you use a large number of tables, you can create a large table definition cache to speed up opening of tables. The table definition cache takes less space and does not use file descriptors, unlike the normal table cache.
|
3814
|
+
|
3815
|
+
table_definition_cache corresponds to the MySQL Server Administration system variable [table_definition_cache](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_definition_cache)
|
3816
|
+
"""
|
3817
|
+
return pulumi.get(self, "table_definition_cache")
|
3818
|
+
|
3819
|
+
@property
|
3820
|
+
@pulumi.getter(name="tableOpenCache")
|
3821
|
+
def table_open_cache(self) -> Optional[int]:
|
3822
|
+
"""
|
3823
|
+
The number of open tables for all threads. Increasing this value increases the number of file descriptors that mysqld requires.
|
3824
|
+
|
3825
|
+
table_open_cache corresponds to the MySQL Server Administration system variable [table_open_cache](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_table_open_cache)
|
3826
|
+
"""
|
3827
|
+
return pulumi.get(self, "table_open_cache")
|
3828
|
+
|
3829
|
+
@property
|
3830
|
+
@pulumi.getter(name="temptableMaxRam")
|
3831
|
+
def temptable_max_ram(self) -> Optional[str]:
|
3832
|
+
"""
|
3833
|
+
Defines the maximum amount of memory that can be occupied by the TempTable storage engine before it starts storing data on disk. The default value is 1073741824 bytes (1GiB). For more information, see Section 10.4.4, “Internal Temporary Table Use in MySQL”.
|
3834
|
+
|
3835
|
+
temptableMaxRam corresponds to the MySQL system variable [temptable_max_ram] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_temptable_max_ram).
|
3836
|
+
"""
|
3837
|
+
return pulumi.get(self, "temptable_max_ram")
|
3838
|
+
|
3073
3839
|
@property
|
3074
3840
|
@pulumi.getter(name="threadPoolDedicatedListeners")
|
3075
3841
|
def thread_pool_dedicated_listeners(self) -> Optional[bool]:
|
@@ -3086,6 +3852,36 @@ class MysqlConfigurationVariables(dict):
|
|
3086
3852
|
"""
|
3087
3853
|
return pulumi.get(self, "thread_pool_max_transactions_limit")
|
3088
3854
|
|
3855
|
+
@property
|
3856
|
+
@pulumi.getter(name="threadPoolQueryThreadsPerGroup")
|
3857
|
+
def thread_pool_query_threads_per_group(self) -> Optional[int]:
|
3858
|
+
"""
|
3859
|
+
The maximum number of query threads permitted in a thread group. 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. The default value of 1 means there is one active query thread in each thread group, which works well for many loads. When you are using the high concurrency thread pool algorithm (thread_pool_algorithm = 1), consider increasing the value if you experience slower response times due to long-running transactions.
|
3860
|
+
|
3861
|
+
threadPoolQueryThreadsPerGroup corresponds to the MySQL Server system variable [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)
|
3862
|
+
"""
|
3863
|
+
return pulumi.get(self, "thread_pool_query_threads_per_group")
|
3864
|
+
|
3865
|
+
@property
|
3866
|
+
@pulumi.getter(name="threadPoolSize")
|
3867
|
+
def thread_pool_size(self) -> Optional[int]:
|
3868
|
+
"""
|
3869
|
+
The number of thread groups in the thread pool. This is the most important parameter controlling thread pool performance. It affects how many statements can execute simultaneously. If a value outside the range of permissible values is specified, the thread pool plugin does not load and the server writes a message to the error log.
|
3870
|
+
|
3871
|
+
threadPoolSize corresponds to the MySQL Server System variable [thread_pool_size] (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_pool_size).
|
3872
|
+
"""
|
3873
|
+
return pulumi.get(self, "thread_pool_size")
|
3874
|
+
|
3875
|
+
@property
|
3876
|
+
@pulumi.getter(name="threadPoolTransactionDelay")
|
3877
|
+
def thread_pool_transaction_delay(self) -> Optional[int]:
|
3878
|
+
"""
|
3879
|
+
The delay period before executing a new transaction, in milliseconds. The maximum value is 300000 (5 minutes). A transaction delay can be used in cases where parallel transactions affect the performance of other operations due to resource contention. For example, if parallel transactions affect index creation or an online buffer pool resizing operation, you can configure a transaction delay to reduce resource contention while those operations are running.
|
3880
|
+
|
3881
|
+
threadPoolTransactionDelay corresponds to the MySQL Server system variable [thread_pool_transaction_delay](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_thread_pool_transaction_delay)
|
3882
|
+
"""
|
3883
|
+
return pulumi.get(self, "thread_pool_transaction_delay")
|
3884
|
+
|
3089
3885
|
@property
|
3090
3886
|
@pulumi.getter(name="timeZone")
|
3091
3887
|
def time_zone(self) -> Optional[str]:
|
@@ -3138,7 +3934,9 @@ class MysqlDbSystemBackupPolicy(dict):
|
|
3138
3934
|
@staticmethod
|
3139
3935
|
def __key_warning(key: str):
|
3140
3936
|
suggest = None
|
3141
|
-
if key == "
|
3937
|
+
if key == "copyPolicies":
|
3938
|
+
suggest = "copy_policies"
|
3939
|
+
elif key == "definedTags":
|
3142
3940
|
suggest = "defined_tags"
|
3143
3941
|
elif key == "freeformTags":
|
3144
3942
|
suggest = "freeform_tags"
|
@@ -3163,6 +3961,7 @@ class MysqlDbSystemBackupPolicy(dict):
|
|
3163
3961
|
return super().get(key, default)
|
3164
3962
|
|
3165
3963
|
def __init__(__self__, *,
|
3964
|
+
copy_policies: Optional[Sequence['outputs.MysqlDbSystemBackupPolicyCopyPolicy']] = None,
|
3166
3965
|
defined_tags: Optional[Mapping[str, str]] = None,
|
3167
3966
|
freeform_tags: Optional[Mapping[str, str]] = None,
|
3168
3967
|
is_enabled: Optional[bool] = None,
|
@@ -3170,6 +3969,11 @@ class MysqlDbSystemBackupPolicy(dict):
|
|
3170
3969
|
retention_in_days: Optional[int] = None,
|
3171
3970
|
window_start_time: Optional[str] = None):
|
3172
3971
|
"""
|
3972
|
+
:param Sequence['MysqlDbSystemBackupPolicyCopyPolicyArgs'] copy_policies: (Updatable) List of policies of a DB system to schedule cross-region DB system backup copy.
|
3973
|
+
|
3974
|
+
The policy includes the name of the destination region to which the DB system backup will be copied, and an optional parameter which specifies the retention period of the copied DB system backup in days.
|
3975
|
+
|
3976
|
+
**Note:** Currently, only one policy can be specified in the list.
|
3173
3977
|
:param Mapping[str, str] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces.
|
3174
3978
|
|
3175
3979
|
Tags defined here will be copied verbatim as tags on the Backup resource created by this BackupPolicy.
|
@@ -3189,6 +3993,8 @@ class MysqlDbSystemBackupPolicy(dict):
|
|
3189
3993
|
|
3190
3994
|
At some point in the window, the system may incur a brief service disruption as the backup is performed.
|
3191
3995
|
"""
|
3996
|
+
if copy_policies is not None:
|
3997
|
+
pulumi.set(__self__, "copy_policies", copy_policies)
|
3192
3998
|
if defined_tags is not None:
|
3193
3999
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
3194
4000
|
if freeform_tags is not None:
|
@@ -3202,6 +4008,18 @@ class MysqlDbSystemBackupPolicy(dict):
|
|
3202
4008
|
if window_start_time is not None:
|
3203
4009
|
pulumi.set(__self__, "window_start_time", window_start_time)
|
3204
4010
|
|
4011
|
+
@property
|
4012
|
+
@pulumi.getter(name="copyPolicies")
|
4013
|
+
def copy_policies(self) -> Optional[Sequence['outputs.MysqlDbSystemBackupPolicyCopyPolicy']]:
|
4014
|
+
"""
|
4015
|
+
(Updatable) List of policies of a DB system to schedule cross-region DB system backup copy.
|
4016
|
+
|
4017
|
+
The policy includes the name of the destination region to which the DB system backup will be copied, and an optional parameter which specifies the retention period of the copied DB system backup in days.
|
4018
|
+
|
4019
|
+
**Note:** Currently, only one policy can be specified in the list.
|
4020
|
+
"""
|
4021
|
+
return pulumi.get(self, "copy_policies")
|
4022
|
+
|
3205
4023
|
@property
|
3206
4024
|
@pulumi.getter(name="definedTags")
|
3207
4025
|
def defined_tags(self) -> Optional[Mapping[str, str]]:
|
@@ -3263,6 +4081,55 @@ class MysqlDbSystemBackupPolicy(dict):
|
|
3263
4081
|
return pulumi.get(self, "window_start_time")
|
3264
4082
|
|
3265
4083
|
|
4084
|
+
@pulumi.output_type
|
4085
|
+
class MysqlDbSystemBackupPolicyCopyPolicy(dict):
|
4086
|
+
@staticmethod
|
4087
|
+
def __key_warning(key: str):
|
4088
|
+
suggest = None
|
4089
|
+
if key == "copyToRegion":
|
4090
|
+
suggest = "copy_to_region"
|
4091
|
+
elif key == "backupCopyRetentionInDays":
|
4092
|
+
suggest = "backup_copy_retention_in_days"
|
4093
|
+
|
4094
|
+
if suggest:
|
4095
|
+
pulumi.log.warn(f"Key '{key}' not found in MysqlDbSystemBackupPolicyCopyPolicy. Access the value via the '{suggest}' property getter instead.")
|
4096
|
+
|
4097
|
+
def __getitem__(self, key: str) -> Any:
|
4098
|
+
MysqlDbSystemBackupPolicyCopyPolicy.__key_warning(key)
|
4099
|
+
return super().__getitem__(key)
|
4100
|
+
|
4101
|
+
def get(self, key: str, default = None) -> Any:
|
4102
|
+
MysqlDbSystemBackupPolicyCopyPolicy.__key_warning(key)
|
4103
|
+
return super().get(key, default)
|
4104
|
+
|
4105
|
+
def __init__(__self__, *,
|
4106
|
+
copy_to_region: str,
|
4107
|
+
backup_copy_retention_in_days: Optional[int] = None):
|
4108
|
+
"""
|
4109
|
+
:param str copy_to_region: (Updatable) The destination region name to which the DB system backup will be copied.
|
4110
|
+
:param int backup_copy_retention_in_days: (Updatable) Number of days to retain the copied DB system backup.
|
4111
|
+
"""
|
4112
|
+
pulumi.set(__self__, "copy_to_region", copy_to_region)
|
4113
|
+
if backup_copy_retention_in_days is not None:
|
4114
|
+
pulumi.set(__self__, "backup_copy_retention_in_days", backup_copy_retention_in_days)
|
4115
|
+
|
4116
|
+
@property
|
4117
|
+
@pulumi.getter(name="copyToRegion")
|
4118
|
+
def copy_to_region(self) -> str:
|
4119
|
+
"""
|
4120
|
+
(Updatable) The destination region name to which the DB system backup will be copied.
|
4121
|
+
"""
|
4122
|
+
return pulumi.get(self, "copy_to_region")
|
4123
|
+
|
4124
|
+
@property
|
4125
|
+
@pulumi.getter(name="backupCopyRetentionInDays")
|
4126
|
+
def backup_copy_retention_in_days(self) -> Optional[int]:
|
4127
|
+
"""
|
4128
|
+
(Updatable) Number of days to retain the copied DB system backup.
|
4129
|
+
"""
|
4130
|
+
return pulumi.get(self, "backup_copy_retention_in_days")
|
4131
|
+
|
4132
|
+
|
3266
4133
|
@pulumi.output_type
|
3267
4134
|
class MysqlDbSystemBackupPolicyPitrPolicy(dict):
|
3268
4135
|
@staticmethod
|
@@ -3316,6 +4183,8 @@ class MysqlDbSystemChannel(dict):
|
|
3316
4183
|
suggest = "is_enabled"
|
3317
4184
|
elif key == "lifecycleDetails":
|
3318
4185
|
suggest = "lifecycle_details"
|
4186
|
+
elif key == "systemTags":
|
4187
|
+
suggest = "system_tags"
|
3319
4188
|
elif key == "timeCreated":
|
3320
4189
|
suggest = "time_created"
|
3321
4190
|
elif key == "timeUpdated":
|
@@ -3342,6 +4211,7 @@ class MysqlDbSystemChannel(dict):
|
|
3342
4211
|
lifecycle_details: Optional[str] = None,
|
3343
4212
|
sources: Optional[Sequence['outputs.MysqlDbSystemChannelSource']] = None,
|
3344
4213
|
state: Optional[str] = None,
|
4214
|
+
system_tags: Optional[Mapping[str, str]] = None,
|
3345
4215
|
targets: Optional[Sequence['outputs.MysqlDbSystemChannelTarget']] = None,
|
3346
4216
|
time_created: Optional[str] = None,
|
3347
4217
|
time_updated: Optional[str] = None):
|
@@ -3355,6 +4225,7 @@ class MysqlDbSystemChannel(dict):
|
|
3355
4225
|
:param str lifecycle_details: Additional information about the current lifecycleState.
|
3356
4226
|
:param Sequence['MysqlDbSystemChannelSourceArgs'] sources: Parameters detailing how to provision the initial data of the system.
|
3357
4227
|
:param str state: (Updatable) The target state for the DB System. Could be set to `ACTIVE` or `INACTIVE`.
|
4228
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
3358
4229
|
:param Sequence['MysqlDbSystemChannelTargetArgs'] targets: Details about the Channel target.
|
3359
4230
|
:param str time_created: The date and time the DB System was created.
|
3360
4231
|
:param str time_updated: The time the DB System was last updated.
|
@@ -3377,6 +4248,8 @@ class MysqlDbSystemChannel(dict):
|
|
3377
4248
|
pulumi.set(__self__, "sources", sources)
|
3378
4249
|
if state is not None:
|
3379
4250
|
pulumi.set(__self__, "state", state)
|
4251
|
+
if system_tags is not None:
|
4252
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
3380
4253
|
if targets is not None:
|
3381
4254
|
pulumi.set(__self__, "targets", targets)
|
3382
4255
|
if time_created is not None:
|
@@ -3456,6 +4329,14 @@ class MysqlDbSystemChannel(dict):
|
|
3456
4329
|
"""
|
3457
4330
|
return pulumi.get(self, "state")
|
3458
4331
|
|
4332
|
+
@property
|
4333
|
+
@pulumi.getter(name="systemTags")
|
4334
|
+
def system_tags(self) -> Optional[Mapping[str, str]]:
|
4335
|
+
"""
|
4336
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
4337
|
+
"""
|
4338
|
+
return pulumi.get(self, "system_tags")
|
4339
|
+
|
3459
4340
|
@property
|
3460
4341
|
@pulumi.getter
|
3461
4342
|
def targets(self) -> Optional[Sequence['outputs.MysqlDbSystemChannelTarget']]:
|
@@ -5106,6 +5987,7 @@ class GetChannelsChannelResult(dict):
|
|
5106
5987
|
lifecycle_details: str,
|
5107
5988
|
sources: Sequence['outputs.GetChannelsChannelSourceResult'],
|
5108
5989
|
state: str,
|
5990
|
+
system_tags: Mapping[str, str],
|
5109
5991
|
targets: Sequence['outputs.GetChannelsChannelTargetResult'],
|
5110
5992
|
time_created: str,
|
5111
5993
|
time_updated: str):
|
@@ -5120,6 +6002,7 @@ class GetChannelsChannelResult(dict):
|
|
5120
6002
|
:param str lifecycle_details: A message describing the state of the Channel.
|
5121
6003
|
:param Sequence['GetChannelsChannelSourceArgs'] sources: Parameters detailing how to provision the source for the given Channel.
|
5122
6004
|
:param str state: The LifecycleState of the Channel.
|
6005
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
5123
6006
|
:param Sequence['GetChannelsChannelTargetArgs'] targets: Details about the Channel target.
|
5124
6007
|
:param str time_created: The date and time the Channel was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
5125
6008
|
:param str time_updated: The time the Channel was last updated, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
@@ -5134,6 +6017,7 @@ class GetChannelsChannelResult(dict):
|
|
5134
6017
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
5135
6018
|
pulumi.set(__self__, "sources", sources)
|
5136
6019
|
pulumi.set(__self__, "state", state)
|
6020
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
5137
6021
|
pulumi.set(__self__, "targets", targets)
|
5138
6022
|
pulumi.set(__self__, "time_created", time_created)
|
5139
6023
|
pulumi.set(__self__, "time_updated", time_updated)
|
@@ -5218,6 +6102,14 @@ class GetChannelsChannelResult(dict):
|
|
5218
6102
|
"""
|
5219
6103
|
return pulumi.get(self, "state")
|
5220
6104
|
|
6105
|
+
@property
|
6106
|
+
@pulumi.getter(name="systemTags")
|
6107
|
+
def system_tags(self) -> Mapping[str, str]:
|
6108
|
+
"""
|
6109
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
6110
|
+
"""
|
6111
|
+
return pulumi.get(self, "system_tags")
|
6112
|
+
|
5221
6113
|
@property
|
5222
6114
|
@pulumi.getter
|
5223
6115
|
def targets(self) -> Sequence['outputs.GetChannelsChannelTargetResult']:
|
@@ -5934,6 +6826,7 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
|
|
5934
6826
|
@pulumi.output_type
|
5935
6827
|
class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
|
5936
6828
|
def __init__(__self__, *,
|
6829
|
+
copy_policies: Sequence['outputs.GetMysqlBackupDbSystemSnapshotBackupPolicyCopyPolicyResult'],
|
5937
6830
|
defined_tags: Mapping[str, str],
|
5938
6831
|
freeform_tags: Mapping[str, str],
|
5939
6832
|
is_enabled: bool,
|
@@ -5941,6 +6834,7 @@ class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
|
|
5941
6834
|
retention_in_days: int,
|
5942
6835
|
window_start_time: str):
|
5943
6836
|
"""
|
6837
|
+
:param Sequence['GetMysqlBackupDbSystemSnapshotBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
|
5944
6838
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
5945
6839
|
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
5946
6840
|
:param bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
|
@@ -5948,6 +6842,7 @@ class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
|
|
5948
6842
|
:param int retention_in_days: Number of days to retain this backup.
|
5949
6843
|
:param str window_start_time: The start time of the maintenance window.
|
5950
6844
|
"""
|
6845
|
+
pulumi.set(__self__, "copy_policies", copy_policies)
|
5951
6846
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
5952
6847
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
5953
6848
|
pulumi.set(__self__, "is_enabled", is_enabled)
|
@@ -5955,6 +6850,14 @@ class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
|
|
5955
6850
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
5956
6851
|
pulumi.set(__self__, "window_start_time", window_start_time)
|
5957
6852
|
|
6853
|
+
@property
|
6854
|
+
@pulumi.getter(name="copyPolicies")
|
6855
|
+
def copy_policies(self) -> Sequence['outputs.GetMysqlBackupDbSystemSnapshotBackupPolicyCopyPolicyResult']:
|
6856
|
+
"""
|
6857
|
+
List of policies of a DB system to schedule cross-region DB system backup copy.
|
6858
|
+
"""
|
6859
|
+
return pulumi.get(self, "copy_policies")
|
6860
|
+
|
5958
6861
|
@property
|
5959
6862
|
@pulumi.getter(name="definedTags")
|
5960
6863
|
def defined_tags(self) -> Mapping[str, str]:
|
@@ -6004,6 +6907,35 @@ class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
|
|
6004
6907
|
return pulumi.get(self, "window_start_time")
|
6005
6908
|
|
6006
6909
|
|
6910
|
+
@pulumi.output_type
|
6911
|
+
class GetMysqlBackupDbSystemSnapshotBackupPolicyCopyPolicyResult(dict):
|
6912
|
+
def __init__(__self__, *,
|
6913
|
+
backup_copy_retention_in_days: int,
|
6914
|
+
copy_to_region: str):
|
6915
|
+
"""
|
6916
|
+
:param int backup_copy_retention_in_days: Number of days to retain the copied DB system backup.
|
6917
|
+
:param str copy_to_region: The destination region name to which the DB system backup will be copied.
|
6918
|
+
"""
|
6919
|
+
pulumi.set(__self__, "backup_copy_retention_in_days", backup_copy_retention_in_days)
|
6920
|
+
pulumi.set(__self__, "copy_to_region", copy_to_region)
|
6921
|
+
|
6922
|
+
@property
|
6923
|
+
@pulumi.getter(name="backupCopyRetentionInDays")
|
6924
|
+
def backup_copy_retention_in_days(self) -> int:
|
6925
|
+
"""
|
6926
|
+
Number of days to retain the copied DB system backup.
|
6927
|
+
"""
|
6928
|
+
return pulumi.get(self, "backup_copy_retention_in_days")
|
6929
|
+
|
6930
|
+
@property
|
6931
|
+
@pulumi.getter(name="copyToRegion")
|
6932
|
+
def copy_to_region(self) -> str:
|
6933
|
+
"""
|
6934
|
+
The destination region name to which the DB system backup will be copied.
|
6935
|
+
"""
|
6936
|
+
return pulumi.get(self, "copy_to_region")
|
6937
|
+
|
6938
|
+
|
6007
6939
|
@pulumi.output_type
|
6008
6940
|
class GetMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyResult(dict):
|
6009
6941
|
def __init__(__self__, *,
|
@@ -6432,6 +7364,7 @@ class GetMysqlBackupsBackupResult(dict):
|
|
6432
7364
|
shape_name: str,
|
6433
7365
|
source_details: Sequence['outputs.GetMysqlBackupsBackupSourceDetailResult'],
|
6434
7366
|
state: str,
|
7367
|
+
system_tags: Mapping[str, str],
|
6435
7368
|
time_copy_created: str,
|
6436
7369
|
time_created: str,
|
6437
7370
|
time_updated: str):
|
@@ -6455,6 +7388,7 @@ class GetMysqlBackupsBackupResult(dict):
|
|
6455
7388
|
:param int retention_in_days: Number of days to retain this backup.
|
6456
7389
|
:param str shape_name: The shape of the DB System instance used for backup.
|
6457
7390
|
:param str state: Backup Lifecycle State
|
7391
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
6458
7392
|
:param str time_copy_created: The date and time the DB system backup copy was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
6459
7393
|
:param str time_created: The time the backup record was created.
|
6460
7394
|
:param str time_updated: The time at which the backup was updated.
|
@@ -6480,6 +7414,7 @@ class GetMysqlBackupsBackupResult(dict):
|
|
6480
7414
|
pulumi.set(__self__, "shape_name", shape_name)
|
6481
7415
|
pulumi.set(__self__, "source_details", source_details)
|
6482
7416
|
pulumi.set(__self__, "state", state)
|
7417
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
6483
7418
|
pulumi.set(__self__, "time_copy_created", time_copy_created)
|
6484
7419
|
pulumi.set(__self__, "time_created", time_created)
|
6485
7420
|
pulumi.set(__self__, "time_updated", time_updated)
|
@@ -6646,6 +7581,14 @@ class GetMysqlBackupsBackupResult(dict):
|
|
6646
7581
|
"""
|
6647
7582
|
return pulumi.get(self, "state")
|
6648
7583
|
|
7584
|
+
@property
|
7585
|
+
@pulumi.getter(name="systemTags")
|
7586
|
+
def system_tags(self) -> Mapping[str, str]:
|
7587
|
+
"""
|
7588
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
7589
|
+
"""
|
7590
|
+
return pulumi.get(self, "system_tags")
|
7591
|
+
|
6649
7592
|
@property
|
6650
7593
|
@pulumi.getter(name="timeCopyCreated")
|
6651
7594
|
def time_copy_created(self) -> str:
|
@@ -7000,6 +7943,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
|
|
7000
7943
|
@pulumi.output_type
|
7001
7944
|
class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
|
7002
7945
|
def __init__(__self__, *,
|
7946
|
+
copy_policies: Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyCopyPolicyResult'],
|
7003
7947
|
defined_tags: Mapping[str, str],
|
7004
7948
|
freeform_tags: Mapping[str, str],
|
7005
7949
|
is_enabled: bool,
|
@@ -7007,6 +7951,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
|
|
7007
7951
|
retention_in_days: int,
|
7008
7952
|
window_start_time: str):
|
7009
7953
|
"""
|
7954
|
+
:param Sequence['GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
|
7010
7955
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
7011
7956
|
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
7012
7957
|
:param bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
|
@@ -7014,6 +7959,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
|
|
7014
7959
|
:param int retention_in_days: Number of days to retain this backup.
|
7015
7960
|
:param str window_start_time: The start time of the maintenance window.
|
7016
7961
|
"""
|
7962
|
+
pulumi.set(__self__, "copy_policies", copy_policies)
|
7017
7963
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
7018
7964
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
7019
7965
|
pulumi.set(__self__, "is_enabled", is_enabled)
|
@@ -7021,6 +7967,14 @@ class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
|
|
7021
7967
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
7022
7968
|
pulumi.set(__self__, "window_start_time", window_start_time)
|
7023
7969
|
|
7970
|
+
@property
|
7971
|
+
@pulumi.getter(name="copyPolicies")
|
7972
|
+
def copy_policies(self) -> Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyCopyPolicyResult']:
|
7973
|
+
"""
|
7974
|
+
List of policies of a DB system to schedule cross-region DB system backup copy.
|
7975
|
+
"""
|
7976
|
+
return pulumi.get(self, "copy_policies")
|
7977
|
+
|
7024
7978
|
@property
|
7025
7979
|
@pulumi.getter(name="definedTags")
|
7026
7980
|
def defined_tags(self) -> Mapping[str, str]:
|
@@ -7070,6 +8024,35 @@ class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
|
|
7070
8024
|
return pulumi.get(self, "window_start_time")
|
7071
8025
|
|
7072
8026
|
|
8027
|
+
@pulumi.output_type
|
8028
|
+
class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyCopyPolicyResult(dict):
|
8029
|
+
def __init__(__self__, *,
|
8030
|
+
backup_copy_retention_in_days: int,
|
8031
|
+
copy_to_region: str):
|
8032
|
+
"""
|
8033
|
+
:param int backup_copy_retention_in_days: Number of days to retain the copied DB system backup.
|
8034
|
+
:param str copy_to_region: The destination region name to which the DB system backup will be copied.
|
8035
|
+
"""
|
8036
|
+
pulumi.set(__self__, "backup_copy_retention_in_days", backup_copy_retention_in_days)
|
8037
|
+
pulumi.set(__self__, "copy_to_region", copy_to_region)
|
8038
|
+
|
8039
|
+
@property
|
8040
|
+
@pulumi.getter(name="backupCopyRetentionInDays")
|
8041
|
+
def backup_copy_retention_in_days(self) -> int:
|
8042
|
+
"""
|
8043
|
+
Number of days to retain the copied DB system backup.
|
8044
|
+
"""
|
8045
|
+
return pulumi.get(self, "backup_copy_retention_in_days")
|
8046
|
+
|
8047
|
+
@property
|
8048
|
+
@pulumi.getter(name="copyToRegion")
|
8049
|
+
def copy_to_region(self) -> str:
|
8050
|
+
"""
|
8051
|
+
The destination region name to which the DB system backup will be copied.
|
8052
|
+
"""
|
8053
|
+
return pulumi.get(self, "copy_to_region")
|
8054
|
+
|
8055
|
+
|
7073
8056
|
@pulumi.output_type
|
7074
8057
|
class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyPitrPolicyResult(dict):
|
7075
8058
|
def __init__(__self__, *,
|
@@ -7522,27 +8505,40 @@ class GetMysqlConfigurationInitVariableResult(dict):
|
|
7522
8505
|
@pulumi.output_type
|
7523
8506
|
class GetMysqlConfigurationVariableResult(dict):
|
7524
8507
|
def __init__(__self__, *,
|
8508
|
+
auto_increment_increment: int,
|
8509
|
+
auto_increment_offset: int,
|
7525
8510
|
autocommit: bool,
|
7526
8511
|
big_tables: bool,
|
7527
8512
|
binlog_expire_logs_seconds: int,
|
8513
|
+
binlog_group_commit_sync_delay: int,
|
8514
|
+
binlog_group_commit_sync_no_delay_count: int,
|
7528
8515
|
binlog_row_metadata: str,
|
7529
8516
|
binlog_row_value_options: str,
|
7530
8517
|
binlog_transaction_compression: bool,
|
8518
|
+
block_encryption_mode: str,
|
8519
|
+
character_set_server: str,
|
8520
|
+
collation_server: str,
|
7531
8521
|
completion_type: str,
|
7532
8522
|
connect_timeout: int,
|
7533
8523
|
connection_memory_chunk_size: int,
|
7534
8524
|
connection_memory_limit: str,
|
7535
8525
|
cte_max_recursion_depth: str,
|
7536
8526
|
default_authentication_plugin: str,
|
8527
|
+
explain_format: str,
|
8528
|
+
explicit_defaults_for_timestamp: bool,
|
7537
8529
|
foreign_key_checks: bool,
|
7538
8530
|
generated_random_password_length: int,
|
7539
8531
|
global_connection_memory_limit: str,
|
7540
8532
|
global_connection_memory_tracking: bool,
|
8533
|
+
group_concat_max_len: str,
|
7541
8534
|
group_replication_consistency: str,
|
7542
8535
|
information_schema_stats_expiry: int,
|
8536
|
+
innodb_adaptive_hash_index: bool,
|
8537
|
+
innodb_autoinc_lock_mode: int,
|
7543
8538
|
innodb_buffer_pool_dump_pct: int,
|
7544
8539
|
innodb_buffer_pool_instances: int,
|
7545
8540
|
innodb_buffer_pool_size: str,
|
8541
|
+
innodb_change_buffering: str,
|
7546
8542
|
innodb_ddl_buffer_size: str,
|
7547
8543
|
innodb_ddl_threads: int,
|
7548
8544
|
innodb_ft_enable_stopword: bool,
|
@@ -7555,10 +8551,19 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7555
8551
|
innodb_log_writer_threads: bool,
|
7556
8552
|
innodb_max_purge_lag: str,
|
7557
8553
|
innodb_max_purge_lag_delay: int,
|
8554
|
+
innodb_numa_interleave: bool,
|
8555
|
+
innodb_online_alter_log_max_size: str,
|
8556
|
+
innodb_redo_log_capacity: str,
|
8557
|
+
innodb_rollback_on_timeout: bool,
|
8558
|
+
innodb_sort_buffer_size: int,
|
7558
8559
|
innodb_stats_persistent_sample_pages: str,
|
7559
8560
|
innodb_stats_transient_sample_pages: str,
|
8561
|
+
innodb_strict_mode: bool,
|
8562
|
+
innodb_undo_log_truncate: bool,
|
7560
8563
|
interactive_timeout: int,
|
8564
|
+
join_buffer_size: str,
|
7561
8565
|
local_infile: bool,
|
8566
|
+
long_query_time: int,
|
7562
8567
|
mandatory_roles: str,
|
7563
8568
|
max_allowed_packet: int,
|
7564
8569
|
max_binlog_cache_size: str,
|
@@ -7567,6 +8572,8 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7567
8572
|
max_execution_time: str,
|
7568
8573
|
max_heap_table_size: str,
|
7569
8574
|
max_prepared_stmt_count: int,
|
8575
|
+
max_seeks_for_key: str,
|
8576
|
+
max_user_connections: str,
|
7570
8577
|
mysql_firewall_mode: bool,
|
7571
8578
|
mysql_zstd_default_compression_level: int,
|
7572
8579
|
mysqlx_connect_timeout: int,
|
@@ -7587,46 +8594,74 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7587
8594
|
mysqlx_zstd_max_client_compression_level: int,
|
7588
8595
|
net_read_timeout: int,
|
7589
8596
|
net_write_timeout: int,
|
8597
|
+
optimizer_switch: str,
|
7590
8598
|
parser_max_mem_size: str,
|
7591
8599
|
query_alloc_block_size: str,
|
7592
8600
|
query_prealloc_size: str,
|
8601
|
+
range_optimizer_max_mem_size: str,
|
7593
8602
|
regexp_time_limit: int,
|
8603
|
+
relay_log_space_limit: str,
|
8604
|
+
replica_net_timeout: int,
|
8605
|
+
replica_parallel_workers: int,
|
8606
|
+
replica_type_conversions: str,
|
8607
|
+
require_secure_transport: bool,
|
8608
|
+
skip_name_resolve: bool,
|
7594
8609
|
sort_buffer_size: str,
|
8610
|
+
sql_generate_invisible_primary_key: bool,
|
7595
8611
|
sql_mode: str,
|
7596
8612
|
sql_require_primary_key: bool,
|
7597
8613
|
sql_warnings: bool,
|
8614
|
+
table_definition_cache: int,
|
8615
|
+
table_open_cache: int,
|
8616
|
+
temptable_max_ram: str,
|
7598
8617
|
thread_pool_dedicated_listeners: bool,
|
7599
8618
|
thread_pool_max_transactions_limit: int,
|
8619
|
+
thread_pool_query_threads_per_group: int,
|
8620
|
+
thread_pool_size: int,
|
8621
|
+
thread_pool_transaction_delay: int,
|
7600
8622
|
time_zone: str,
|
7601
8623
|
tmp_table_size: str,
|
7602
8624
|
transaction_isolation: str,
|
7603
8625
|
wait_timeout: int):
|
7604
8626
|
"""
|
8627
|
+
:param int auto_increment_increment: auto_increment_increment and auto_increment_offset are intended for use with circular (source-to-source) replication, and can be used to control the operation of AUTO_INCREMENT columns. Both variables have global and session values, and each can assume an integer value between 1 and 65,535 inclusive.
|
8628
|
+
:param int auto_increment_offset: This variable has a default value of 1. If it is left with its default value, and Group Replication is started on the server in multi-primary mode, it is changed to the server ID.
|
7605
8629
|
:param bool autocommit: ("autocommit")
|
7606
8630
|
:param bool big_tables: If enabled, the server stores all temporary tables on disk rather than in memory.
|
7607
8631
|
:param int binlog_expire_logs_seconds: Sets the binary log expiration period in seconds. binlogExpireLogsSeconds corresponds to the MySQL binary logging system variable [binlog_expire_logs_seconds](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_expire_logs_seconds).
|
8632
|
+
:param int binlog_group_commit_sync_delay: Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk. There is no delay by default. Setting this variable to a microsecond delay enables more transactions to be synchronized together to disk at once, reducing the overall time to commit a group of transactions because the larger groups required fewer time units per group.
|
8633
|
+
:param int binlog_group_commit_sync_no_delay_count: The maximum number of transactions to wait for before aborting the current delay as specified by binlog_group_commit_sync_delay. If binlog_group_commit_sync_delay is set to 0, then this option has no effect.
|
7608
8634
|
:param str binlog_row_metadata: Configures the amount of table metadata added to the binary log when using row-based logging. binlogRowMetadata corresponds to the MySQL binary logging system variable [binlog_row_metadata](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_row_metadata).
|
7609
8635
|
:param str binlog_row_value_options: When set to PARTIAL_JSON, this enables use of a space-efficient binary log format for updates that modify only a small portion of a JSON document. binlogRowValueOptions corresponds to the MySQL binary logging system variable [binlog_row_value_options](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_row_value_options).
|
7610
8636
|
:param bool binlog_transaction_compression: Enables compression for transactions that are written to binary log files on this server. binlogTransactionCompression corresponds to the MySQL binary logging system variable [binlog_transaction_compression](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_transaction_compression).
|
8637
|
+
:param str block_encryption_mode: This variable controls the block encryption mode for block-based algorithms such as AES. It affects encryption for AES_ENCRYPT() and AES_DECRYPT(). 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. Permitted keylen values are 128, 192, and 256. Permitted mode values are ECB, CBC, CFB1, CFB8, CFB128, and OFB.
|
8638
|
+
:param str character_set_server: 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.
|
8639
|
+
:param str collation_server: The server's default collation.
|
7611
8640
|
:param str completion_type: ("completion_type")
|
7612
8641
|
:param int connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
|
7613
8642
|
:param int connection_memory_chunk_size: Set the chunking size for updates to the global memory usage counter Global_connection_memory.
|
7614
8643
|
:param str connection_memory_limit: Set the maximum amount of memory that can be used by a single user connection.
|
7615
8644
|
:param str cte_max_recursion_depth: ("cte_max_recursion_depth")
|
7616
|
-
:param str default_authentication_plugin:
|
8645
|
+
:param str default_authentication_plugin: The default authentication plugin. This must be a plugin that uses internal credentials storage, so these values are permitted: mysql_native_password, sha256_password, caching_sha2_password.
|
8646
|
+
:param str explain_format: This variable determines the default output format used by EXPLAIN in the absence of a FORMAT option when displaying a query execution plan.
|
8647
|
+
:param bool explicit_defaults_for_timestamp: This system variable determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns. By default, explicit_defaults_for_timestamp is enabled, which disables the nonstandard behaviors. Disabling explicit_defaults_for_timestamp results in a warning.
|
7617
8648
|
:param bool foreign_key_checks: ("foreign_key_checks")
|
7618
8649
|
:param int generated_random_password_length: ("generated_random_password_length") DEPRECATED -- variable should not be settable and will be ignored
|
7619
8650
|
:param str global_connection_memory_limit: Set the total amount of memory that can be used by all user connections.
|
7620
8651
|
:param bool global_connection_memory_tracking: Determines whether the MySQL server calculates Global_connection_memory.
|
8652
|
+
:param str group_concat_max_len: Specifies the maximum permitted result length in bytes for the GROUP_CONCAT() function.
|
7621
8653
|
:param str group_replication_consistency: * EVENTUAL: Both RO and RW transactions do not wait for preceding transactions to be applied before executing. A RW transaction does not wait for other members to apply a transaction. This means that a transaction could be externalized on one member before the others. This also means that in the event of a primary failover, the new primary can accept new RO and RW transactions before the previous primary transactions are all applied. RO transactions could result in outdated values, RW transactions could result in a rollback due to conflicts.
|
7622
8654
|
* BEFORE_ON_PRIMARY_FAILOVER: New RO or RW transactions with a newly elected primary that is applying backlog from the old primary are held (not applied) until any backlog has been applied. This ensures that when a primary failover happens, intentionally or not, clients always see the latest value on the primary. This guarantees consistency, but means that clients must be able to handle the delay in the event that a backlog is being applied. Usually this delay should be minimal, but does depend on the size of the backlog.
|
7623
8655
|
* BEFORE: A RW transaction waits for all preceding transactions to complete before being applied. A RO transaction waits for all preceding transactions to complete before being executed. This ensures that this transaction reads the latest value by only affecting the latency of the transaction. This reduces the overhead of synchronization on every RW transaction, by ensuring synchronization is used only on RO transactions. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
7624
8656
|
* AFTER: A RW transaction waits until its changes have been applied to all of the other members. This value has no effect on RO transactions. This mode ensures that when a transaction is committed on the local member, any subsequent transaction reads the written value or a more recent value on any group member. Use this mode with a group that is used for predominantly RO operations to ensure that applied RW transactions are applied everywhere once they commit. This could be used by your application to ensure that subsequent reads fetch the latest data which includes the latest writes. This reduces the overhead of synchronization on every RO transaction, by ensuring synchronization is used only on RW transactions. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
7625
8657
|
* BEFORE_AND_AFTER: A RW transaction waits for 1) all preceding transactions to complete before being applied and 2) until its changes have been applied on other members. A RO transaction waits for all preceding transactions to complete before execution takes place. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
7626
8658
|
:param int information_schema_stats_expiry: ("information_schema_stats_expiry")
|
8659
|
+
:param bool innodb_adaptive_hash_index: Whether the InnoDB adaptive hash index is enabled or disabled. It may be desirable, depending on your workload, to dynamically enable or disable adaptive hash indexing to improve query performance. Because the adaptive hash index may not be useful for all workloads, conduct benchmarks with it both enabled and disabled, using realistic workloads.
|
8660
|
+
:param int innodb_autoinc_lock_mode: The lock mode to use for generating auto-increment values. Permissible values are 0, 1, or 2, for traditional, consecutive, or interleaved, respectively.
|
7627
8661
|
:param int innodb_buffer_pool_dump_pct: Specifies the percentage of the most recently used pages for each buffer pool to read out and dump.
|
7628
8662
|
:param int innodb_buffer_pool_instances: ("innodb_buffer_pool_instances")
|
7629
8663
|
:param str innodb_buffer_pool_size: The size (in bytes) of the buffer pool, that is, the memory area where InnoDB caches table and index data.
|
8664
|
+
:param str innodb_change_buffering: Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially. Permitted values are described in the following table. Values may also be specified numerically.
|
7630
8665
|
:param str innodb_ddl_buffer_size: 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)
|
7631
8666
|
:param int innodb_ddl_threads: 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)
|
7632
8667
|
:param bool innodb_ft_enable_stopword: ("innodb_ft_enable_stopword")
|
@@ -7639,10 +8674,21 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7639
8674
|
:param bool innodb_log_writer_threads: 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.
|
7640
8675
|
:param str innodb_max_purge_lag: The desired maximum purge lag in terms of transactions.
|
7641
8676
|
:param int innodb_max_purge_lag_delay: The maximum delay in microseconds for the delay imposed when the innodb_max_purge_lag threshold is exceeded.
|
8677
|
+
:param bool innodb_numa_interleave: Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool. When innodb_numa_interleave is enabled, the NUMA memory policy is set to MPOL_INTERLEAVE for the mysqld process. After the InnoDB buffer pool is allocated, the NUMA memory policy is set back to MPOL_DEFAULT. For the innodb_numa_interleave option to be available, MySQL must be compiled on a NUMA-enabled Linux system.
|
8678
|
+
:param str innodb_online_alter_log_max_size: Specifies an upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables. There is one such log file for each index being created or table being altered. This log file stores data inserted, updated, or deleted in the table during the DDL operation.
|
8679
|
+
:param str innodb_redo_log_capacity: 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, 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, then the default innodb_redo_log_capacity value is used.
|
8680
|
+
:param bool innodb_rollback_on_timeout: InnoDB rolls back only the last statement on a transaction timeout by default. If --innodb-rollback-on-timeout is specified, a transaction timeout causes InnoDB to abort and roll back the entire transaction.
|
8681
|
+
:param int innodb_sort_buffer_size: This variable defines:
|
8682
|
+
* The sort buffer size for online DDL operations that create or rebuild secondary indexes. However, as of MySQL 8.0.27, this responsibility is subsumed by the innodb_ddl_buffer_size variable.
|
8683
|
+
* The amount by which the temporary log file is extended when recording concurrent DML during an online DDL operation, and the size of the temporary log file read buffer and write buffer.
|
7642
8684
|
:param str innodb_stats_persistent_sample_pages: The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by ANALYZE TABLE.
|
7643
8685
|
:param str innodb_stats_transient_sample_pages: The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by [ANALYZE TABLE](https://dev.mysql.com/doc/refman/8.0/en/analyze-table.html).
|
8686
|
+
:param bool innodb_strict_mode: When you enable innodbStrictMode, the InnoDB storage engine returns errors instead of warnings for invalid or incompatible table options.
|
8687
|
+
:param bool innodb_undo_log_truncate: When enabled, undo tablespaces that exceed the threshold value defined by innodb_max_undo_log_size are marked for truncation. Only undo tablespaces can be truncated. Truncating undo logs that reside in the system tablespace is not supported. For truncation to occur, there must be at least two undo tablespaces.
|
7644
8688
|
:param int interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
|
7645
|
-
:param
|
8689
|
+
:param str join_buffer_size: 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. 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. 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. For a complex join between several tables for which indexes are not used, multiple join buffers might be necessary.
|
8690
|
+
:param bool local_infile: This variable controls server-side LOCAL capability for LOAD DATA statements. Depending on the local_infile setting, the server refuses or permits local data loading by clients that have LOCAL enabled on the client side.
|
8691
|
+
:param int long_query_time: If a query takes longer than this many seconds, the server increments the Slow_queries status variable. If the slow query log is enabled, the query is logged to the slow query log file. This value is measured in real time, not CPU time, so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one.
|
7646
8692
|
:param str mandatory_roles: ("mandatory_roles")
|
7647
8693
|
:param int max_allowed_packet: The maximum size of one packet or any generated/intermediate string.
|
7648
8694
|
:param str max_binlog_cache_size: Sets the size of the transaction cache.
|
@@ -7651,6 +8697,8 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7651
8697
|
:param str max_execution_time: ("max_execution_time")
|
7652
8698
|
:param str max_heap_table_size: This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.
|
7653
8699
|
:param int max_prepared_stmt_count: ("max_prepared_stmt_count")
|
8700
|
+
:param str max_seeks_for_key: Limit the assumed maximum number of seeks when looking up rows based on a key. 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, regardless of the actual cardinality of the index (see Section 15.7.7.22, “SHOW INDEX Statement”). By setting this to a low value (say, 100), you can force MySQL to prefer indexes instead of table scans.
|
8701
|
+
:param str max_user_connections: The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means “no limit.” This variable has a global value that can be set at server startup or runtime. 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.
|
7654
8702
|
:param bool mysql_firewall_mode: ("mysql_firewall_mode")
|
7655
8703
|
:param int mysql_zstd_default_compression_level: DEPRECATED -- typo of mysqlx_zstd_default_compression_level. variable will be ignored.
|
7656
8704
|
:param int mysqlx_connect_timeout: The number of seconds X Plugin waits for the first packet to be received from newly connected clients.
|
@@ -7671,42 +8719,70 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7671
8719
|
:param int mysqlx_zstd_max_client_compression_level: Limit the upper bound of accepted compression levels for the zstd algorithm. ("mysqlx_zstd_max_client_compression_level")
|
7672
8720
|
:param int net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read.
|
7673
8721
|
:param int net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write.
|
8722
|
+
:param str optimizer_switch: The optimizer_switch system variable enables control over optimizer behavior. 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. This variable has global and session values and can be changed at runtime. The global default can be set at server startup.
|
7674
8723
|
:param str parser_max_mem_size: ("parser_max_mem_size")
|
7675
8724
|
:param str query_alloc_block_size: ("query_alloc_block_size") DEPRECATED -- variable should not be settable and will be ignored
|
7676
8725
|
:param str query_prealloc_size: ("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
8726
|
+
:param str range_optimizer_max_mem_size: The limit on memory consumption for the range optimizer. A value of 0 means “no limit.” 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, it abandons the plan and considers other plans.
|
7677
8727
|
:param int regexp_time_limit: 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)
|
8728
|
+
:param str relay_log_space_limit: The maximum amount of space to use for all relay logs.
|
8729
|
+
:param int replica_net_timeout: Specifies the number of seconds to wait for more data or a heartbeat signal from the source before the replica considers the connection broken, 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.
|
8730
|
+
:param int replica_parallel_workers: Beginning with MySQL 8.0.26, slave_parallel_workers is deprecated, and you should use replica_parallel_workers instead. (Prior to MySQL 8.0.26, you must use slave_parallel_workers to set the number of applier threads.)
|
8731
|
+
:param str replica_type_conversions: From MySQL 8.0.26, use replica_type_conversions in place of slave_type_conversions, which is deprecated from that release. In releases before MySQL 8.0.26, use slave_type_conversions.
|
8732
|
+
:param bool require_secure_transport: Whether client connections to the server are required to use some form of secure transport. 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. The server rejects nonsecure connection attempts, which fail with an ER_SECURE_TRANSPORT_REQUIRED error.
|
8733
|
+
:param bool skip_name_resolve: Whether to resolve host names when checking client connections. If this variable is OFF, mysqld resolves host names when checking client connections. If it is ON, mysqld uses only IP numbers; in this case, all Host column values in the grant tables must be IP addresses. See Section 7.1.12.3, “DNS Lookups and the Host Cache”.
|
7678
8734
|
:param str sort_buffer_size: Each session that must perform a sort allocates a buffer of this size.
|
8735
|
+
:param bool sql_generate_invisible_primary_key: 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.
|
7679
8736
|
:param str sql_mode: ("sql_mode")
|
7680
8737
|
:param bool sql_require_primary_key: ("sql_require_primary_key")
|
7681
8738
|
:param bool sql_warnings: ("sql_warnings")
|
8739
|
+
:param int table_definition_cache: The number of table definitions that can be stored in the table definition cache. If you use a large number of tables, you can create a large table definition cache to speed up opening of tables. The table definition cache takes less space and does not use file descriptors, unlike the normal table cache.
|
8740
|
+
:param int table_open_cache: The number of open tables for all threads. Increasing this value increases the number of file descriptors that mysqld requires.
|
8741
|
+
:param str temptable_max_ram: Defines the maximum amount of memory that can be occupied by the TempTable storage engine before it starts storing data on disk. The default value is 1073741824 bytes (1GiB). For more information, see Section 10.4.4, “Internal Temporary Table Use in MySQL”.
|
7682
8742
|
:param bool thread_pool_dedicated_listeners: 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 for network events from clients, ensuring that the maximum number of query worker threads is no more than the value specified by threadPoolMaxTransactionsLimit. threadPoolDedicatedListeners corresponds to the MySQL Database Service-specific system variable thread_pool_dedicated_listeners.
|
7683
8743
|
:param int thread_pool_max_transactions_limit: Limits the maximum number of open transactions to the defined value. The default value is 0, which enforces no limit. threadPoolMaxTransactionsLimit corresponds to the MySQL Database Service-specific system variable thread_pool_max_transactions_limit.
|
8744
|
+
:param int thread_pool_query_threads_per_group: The maximum number of query threads permitted in a thread group. 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. The default value of 1 means there is one active query thread in each thread group, which works well for many loads. When you are using the high concurrency thread pool algorithm (thread_pool_algorithm = 1), consider increasing the value if you experience slower response times due to long-running transactions.
|
8745
|
+
:param int thread_pool_size: The number of thread groups in the thread pool. This is the most important parameter controlling thread pool performance. It affects how many statements can execute simultaneously. If a value outside the range of permissible values is specified, the thread pool plugin does not load and the server writes a message to the error log.
|
8746
|
+
:param int thread_pool_transaction_delay: The delay period before executing a new transaction, in milliseconds. The maximum value is 300000 (5 minutes). A transaction delay can be used in cases where parallel transactions affect the performance of other operations due to resource contention. For example, if parallel transactions affect index creation or an online buffer pool resizing operation, you can configure a transaction delay to reduce resource contention while those operations are running.
|
7684
8747
|
:param str time_zone: Initializes the time zone for each client that connects.
|
7685
8748
|
:param str tmp_table_size: The maximum size of internal in-memory temporary tables. This variable does not apply to user-created MEMORY tables.
|
7686
8749
|
:param str transaction_isolation: ("transaction_isolation")
|
7687
8750
|
:param int wait_timeout: The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
7688
8751
|
"""
|
8752
|
+
pulumi.set(__self__, "auto_increment_increment", auto_increment_increment)
|
8753
|
+
pulumi.set(__self__, "auto_increment_offset", auto_increment_offset)
|
7689
8754
|
pulumi.set(__self__, "autocommit", autocommit)
|
7690
8755
|
pulumi.set(__self__, "big_tables", big_tables)
|
7691
8756
|
pulumi.set(__self__, "binlog_expire_logs_seconds", binlog_expire_logs_seconds)
|
8757
|
+
pulumi.set(__self__, "binlog_group_commit_sync_delay", binlog_group_commit_sync_delay)
|
8758
|
+
pulumi.set(__self__, "binlog_group_commit_sync_no_delay_count", binlog_group_commit_sync_no_delay_count)
|
7692
8759
|
pulumi.set(__self__, "binlog_row_metadata", binlog_row_metadata)
|
7693
8760
|
pulumi.set(__self__, "binlog_row_value_options", binlog_row_value_options)
|
7694
8761
|
pulumi.set(__self__, "binlog_transaction_compression", binlog_transaction_compression)
|
8762
|
+
pulumi.set(__self__, "block_encryption_mode", block_encryption_mode)
|
8763
|
+
pulumi.set(__self__, "character_set_server", character_set_server)
|
8764
|
+
pulumi.set(__self__, "collation_server", collation_server)
|
7695
8765
|
pulumi.set(__self__, "completion_type", completion_type)
|
7696
8766
|
pulumi.set(__self__, "connect_timeout", connect_timeout)
|
7697
8767
|
pulumi.set(__self__, "connection_memory_chunk_size", connection_memory_chunk_size)
|
7698
8768
|
pulumi.set(__self__, "connection_memory_limit", connection_memory_limit)
|
7699
8769
|
pulumi.set(__self__, "cte_max_recursion_depth", cte_max_recursion_depth)
|
7700
8770
|
pulumi.set(__self__, "default_authentication_plugin", default_authentication_plugin)
|
8771
|
+
pulumi.set(__self__, "explain_format", explain_format)
|
8772
|
+
pulumi.set(__self__, "explicit_defaults_for_timestamp", explicit_defaults_for_timestamp)
|
7701
8773
|
pulumi.set(__self__, "foreign_key_checks", foreign_key_checks)
|
7702
8774
|
pulumi.set(__self__, "generated_random_password_length", generated_random_password_length)
|
7703
8775
|
pulumi.set(__self__, "global_connection_memory_limit", global_connection_memory_limit)
|
7704
8776
|
pulumi.set(__self__, "global_connection_memory_tracking", global_connection_memory_tracking)
|
8777
|
+
pulumi.set(__self__, "group_concat_max_len", group_concat_max_len)
|
7705
8778
|
pulumi.set(__self__, "group_replication_consistency", group_replication_consistency)
|
7706
8779
|
pulumi.set(__self__, "information_schema_stats_expiry", information_schema_stats_expiry)
|
8780
|
+
pulumi.set(__self__, "innodb_adaptive_hash_index", innodb_adaptive_hash_index)
|
8781
|
+
pulumi.set(__self__, "innodb_autoinc_lock_mode", innodb_autoinc_lock_mode)
|
7707
8782
|
pulumi.set(__self__, "innodb_buffer_pool_dump_pct", innodb_buffer_pool_dump_pct)
|
7708
8783
|
pulumi.set(__self__, "innodb_buffer_pool_instances", innodb_buffer_pool_instances)
|
7709
8784
|
pulumi.set(__self__, "innodb_buffer_pool_size", innodb_buffer_pool_size)
|
8785
|
+
pulumi.set(__self__, "innodb_change_buffering", innodb_change_buffering)
|
7710
8786
|
pulumi.set(__self__, "innodb_ddl_buffer_size", innodb_ddl_buffer_size)
|
7711
8787
|
pulumi.set(__self__, "innodb_ddl_threads", innodb_ddl_threads)
|
7712
8788
|
pulumi.set(__self__, "innodb_ft_enable_stopword", innodb_ft_enable_stopword)
|
@@ -7719,10 +8795,19 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7719
8795
|
pulumi.set(__self__, "innodb_log_writer_threads", innodb_log_writer_threads)
|
7720
8796
|
pulumi.set(__self__, "innodb_max_purge_lag", innodb_max_purge_lag)
|
7721
8797
|
pulumi.set(__self__, "innodb_max_purge_lag_delay", innodb_max_purge_lag_delay)
|
8798
|
+
pulumi.set(__self__, "innodb_numa_interleave", innodb_numa_interleave)
|
8799
|
+
pulumi.set(__self__, "innodb_online_alter_log_max_size", innodb_online_alter_log_max_size)
|
8800
|
+
pulumi.set(__self__, "innodb_redo_log_capacity", innodb_redo_log_capacity)
|
8801
|
+
pulumi.set(__self__, "innodb_rollback_on_timeout", innodb_rollback_on_timeout)
|
8802
|
+
pulumi.set(__self__, "innodb_sort_buffer_size", innodb_sort_buffer_size)
|
7722
8803
|
pulumi.set(__self__, "innodb_stats_persistent_sample_pages", innodb_stats_persistent_sample_pages)
|
7723
8804
|
pulumi.set(__self__, "innodb_stats_transient_sample_pages", innodb_stats_transient_sample_pages)
|
8805
|
+
pulumi.set(__self__, "innodb_strict_mode", innodb_strict_mode)
|
8806
|
+
pulumi.set(__self__, "innodb_undo_log_truncate", innodb_undo_log_truncate)
|
7724
8807
|
pulumi.set(__self__, "interactive_timeout", interactive_timeout)
|
8808
|
+
pulumi.set(__self__, "join_buffer_size", join_buffer_size)
|
7725
8809
|
pulumi.set(__self__, "local_infile", local_infile)
|
8810
|
+
pulumi.set(__self__, "long_query_time", long_query_time)
|
7726
8811
|
pulumi.set(__self__, "mandatory_roles", mandatory_roles)
|
7727
8812
|
pulumi.set(__self__, "max_allowed_packet", max_allowed_packet)
|
7728
8813
|
pulumi.set(__self__, "max_binlog_cache_size", max_binlog_cache_size)
|
@@ -7731,6 +8816,8 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7731
8816
|
pulumi.set(__self__, "max_execution_time", max_execution_time)
|
7732
8817
|
pulumi.set(__self__, "max_heap_table_size", max_heap_table_size)
|
7733
8818
|
pulumi.set(__self__, "max_prepared_stmt_count", max_prepared_stmt_count)
|
8819
|
+
pulumi.set(__self__, "max_seeks_for_key", max_seeks_for_key)
|
8820
|
+
pulumi.set(__self__, "max_user_connections", max_user_connections)
|
7734
8821
|
pulumi.set(__self__, "mysql_firewall_mode", mysql_firewall_mode)
|
7735
8822
|
pulumi.set(__self__, "mysql_zstd_default_compression_level", mysql_zstd_default_compression_level)
|
7736
8823
|
pulumi.set(__self__, "mysqlx_connect_timeout", mysqlx_connect_timeout)
|
@@ -7751,21 +8838,52 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7751
8838
|
pulumi.set(__self__, "mysqlx_zstd_max_client_compression_level", mysqlx_zstd_max_client_compression_level)
|
7752
8839
|
pulumi.set(__self__, "net_read_timeout", net_read_timeout)
|
7753
8840
|
pulumi.set(__self__, "net_write_timeout", net_write_timeout)
|
8841
|
+
pulumi.set(__self__, "optimizer_switch", optimizer_switch)
|
7754
8842
|
pulumi.set(__self__, "parser_max_mem_size", parser_max_mem_size)
|
7755
8843
|
pulumi.set(__self__, "query_alloc_block_size", query_alloc_block_size)
|
7756
8844
|
pulumi.set(__self__, "query_prealloc_size", query_prealloc_size)
|
8845
|
+
pulumi.set(__self__, "range_optimizer_max_mem_size", range_optimizer_max_mem_size)
|
7757
8846
|
pulumi.set(__self__, "regexp_time_limit", regexp_time_limit)
|
8847
|
+
pulumi.set(__self__, "relay_log_space_limit", relay_log_space_limit)
|
8848
|
+
pulumi.set(__self__, "replica_net_timeout", replica_net_timeout)
|
8849
|
+
pulumi.set(__self__, "replica_parallel_workers", replica_parallel_workers)
|
8850
|
+
pulumi.set(__self__, "replica_type_conversions", replica_type_conversions)
|
8851
|
+
pulumi.set(__self__, "require_secure_transport", require_secure_transport)
|
8852
|
+
pulumi.set(__self__, "skip_name_resolve", skip_name_resolve)
|
7758
8853
|
pulumi.set(__self__, "sort_buffer_size", sort_buffer_size)
|
8854
|
+
pulumi.set(__self__, "sql_generate_invisible_primary_key", sql_generate_invisible_primary_key)
|
7759
8855
|
pulumi.set(__self__, "sql_mode", sql_mode)
|
7760
8856
|
pulumi.set(__self__, "sql_require_primary_key", sql_require_primary_key)
|
7761
8857
|
pulumi.set(__self__, "sql_warnings", sql_warnings)
|
8858
|
+
pulumi.set(__self__, "table_definition_cache", table_definition_cache)
|
8859
|
+
pulumi.set(__self__, "table_open_cache", table_open_cache)
|
8860
|
+
pulumi.set(__self__, "temptable_max_ram", temptable_max_ram)
|
7762
8861
|
pulumi.set(__self__, "thread_pool_dedicated_listeners", thread_pool_dedicated_listeners)
|
7763
8862
|
pulumi.set(__self__, "thread_pool_max_transactions_limit", thread_pool_max_transactions_limit)
|
8863
|
+
pulumi.set(__self__, "thread_pool_query_threads_per_group", thread_pool_query_threads_per_group)
|
8864
|
+
pulumi.set(__self__, "thread_pool_size", thread_pool_size)
|
8865
|
+
pulumi.set(__self__, "thread_pool_transaction_delay", thread_pool_transaction_delay)
|
7764
8866
|
pulumi.set(__self__, "time_zone", time_zone)
|
7765
8867
|
pulumi.set(__self__, "tmp_table_size", tmp_table_size)
|
7766
8868
|
pulumi.set(__self__, "transaction_isolation", transaction_isolation)
|
7767
8869
|
pulumi.set(__self__, "wait_timeout", wait_timeout)
|
7768
8870
|
|
8871
|
+
@property
|
8872
|
+
@pulumi.getter(name="autoIncrementIncrement")
|
8873
|
+
def auto_increment_increment(self) -> int:
|
8874
|
+
"""
|
8875
|
+
auto_increment_increment and auto_increment_offset are intended for use with circular (source-to-source) replication, and can be used to control the operation of AUTO_INCREMENT columns. Both variables have global and session values, and each can assume an integer value between 1 and 65,535 inclusive.
|
8876
|
+
"""
|
8877
|
+
return pulumi.get(self, "auto_increment_increment")
|
8878
|
+
|
8879
|
+
@property
|
8880
|
+
@pulumi.getter(name="autoIncrementOffset")
|
8881
|
+
def auto_increment_offset(self) -> int:
|
8882
|
+
"""
|
8883
|
+
This variable has a default value of 1. If it is left with its default value, and Group Replication is started on the server in multi-primary mode, it is changed to the server ID.
|
8884
|
+
"""
|
8885
|
+
return pulumi.get(self, "auto_increment_offset")
|
8886
|
+
|
7769
8887
|
@property
|
7770
8888
|
@pulumi.getter
|
7771
8889
|
def autocommit(self) -> bool:
|
@@ -7790,6 +8908,22 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7790
8908
|
"""
|
7791
8909
|
return pulumi.get(self, "binlog_expire_logs_seconds")
|
7792
8910
|
|
8911
|
+
@property
|
8912
|
+
@pulumi.getter(name="binlogGroupCommitSyncDelay")
|
8913
|
+
def binlog_group_commit_sync_delay(self) -> int:
|
8914
|
+
"""
|
8915
|
+
Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk. There is no delay by default. Setting this variable to a microsecond delay enables more transactions to be synchronized together to disk at once, reducing the overall time to commit a group of transactions because the larger groups required fewer time units per group.
|
8916
|
+
"""
|
8917
|
+
return pulumi.get(self, "binlog_group_commit_sync_delay")
|
8918
|
+
|
8919
|
+
@property
|
8920
|
+
@pulumi.getter(name="binlogGroupCommitSyncNoDelayCount")
|
8921
|
+
def binlog_group_commit_sync_no_delay_count(self) -> int:
|
8922
|
+
"""
|
8923
|
+
The maximum number of transactions to wait for before aborting the current delay as specified by binlog_group_commit_sync_delay. If binlog_group_commit_sync_delay is set to 0, then this option has no effect.
|
8924
|
+
"""
|
8925
|
+
return pulumi.get(self, "binlog_group_commit_sync_no_delay_count")
|
8926
|
+
|
7793
8927
|
@property
|
7794
8928
|
@pulumi.getter(name="binlogRowMetadata")
|
7795
8929
|
def binlog_row_metadata(self) -> str:
|
@@ -7814,6 +8948,30 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7814
8948
|
"""
|
7815
8949
|
return pulumi.get(self, "binlog_transaction_compression")
|
7816
8950
|
|
8951
|
+
@property
|
8952
|
+
@pulumi.getter(name="blockEncryptionMode")
|
8953
|
+
def block_encryption_mode(self) -> str:
|
8954
|
+
"""
|
8955
|
+
This variable controls the block encryption mode for block-based algorithms such as AES. It affects encryption for AES_ENCRYPT() and AES_DECRYPT(). 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. Permitted keylen values are 128, 192, and 256. Permitted mode values are ECB, CBC, CFB1, CFB8, CFB128, and OFB.
|
8956
|
+
"""
|
8957
|
+
return pulumi.get(self, "block_encryption_mode")
|
8958
|
+
|
8959
|
+
@property
|
8960
|
+
@pulumi.getter(name="characterSetServer")
|
8961
|
+
def character_set_server(self) -> str:
|
8962
|
+
"""
|
8963
|
+
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.
|
8964
|
+
"""
|
8965
|
+
return pulumi.get(self, "character_set_server")
|
8966
|
+
|
8967
|
+
@property
|
8968
|
+
@pulumi.getter(name="collationServer")
|
8969
|
+
def collation_server(self) -> str:
|
8970
|
+
"""
|
8971
|
+
The server's default collation.
|
8972
|
+
"""
|
8973
|
+
return pulumi.get(self, "collation_server")
|
8974
|
+
|
7817
8975
|
@property
|
7818
8976
|
@pulumi.getter(name="completionType")
|
7819
8977
|
def completion_type(self) -> str:
|
@@ -7858,10 +9016,26 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7858
9016
|
@pulumi.getter(name="defaultAuthenticationPlugin")
|
7859
9017
|
def default_authentication_plugin(self) -> str:
|
7860
9018
|
"""
|
7861
|
-
|
9019
|
+
The default authentication plugin. This must be a plugin that uses internal credentials storage, so these values are permitted: mysql_native_password, sha256_password, caching_sha2_password.
|
7862
9020
|
"""
|
7863
9021
|
return pulumi.get(self, "default_authentication_plugin")
|
7864
9022
|
|
9023
|
+
@property
|
9024
|
+
@pulumi.getter(name="explainFormat")
|
9025
|
+
def explain_format(self) -> str:
|
9026
|
+
"""
|
9027
|
+
This variable determines the default output format used by EXPLAIN in the absence of a FORMAT option when displaying a query execution plan.
|
9028
|
+
"""
|
9029
|
+
return pulumi.get(self, "explain_format")
|
9030
|
+
|
9031
|
+
@property
|
9032
|
+
@pulumi.getter(name="explicitDefaultsForTimestamp")
|
9033
|
+
def explicit_defaults_for_timestamp(self) -> bool:
|
9034
|
+
"""
|
9035
|
+
This system variable determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns. By default, explicit_defaults_for_timestamp is enabled, which disables the nonstandard behaviors. Disabling explicit_defaults_for_timestamp results in a warning.
|
9036
|
+
"""
|
9037
|
+
return pulumi.get(self, "explicit_defaults_for_timestamp")
|
9038
|
+
|
7865
9039
|
@property
|
7866
9040
|
@pulumi.getter(name="foreignKeyChecks")
|
7867
9041
|
def foreign_key_checks(self) -> bool:
|
@@ -7895,6 +9069,14 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7895
9069
|
"""
|
7896
9070
|
return pulumi.get(self, "global_connection_memory_tracking")
|
7897
9071
|
|
9072
|
+
@property
|
9073
|
+
@pulumi.getter(name="groupConcatMaxLen")
|
9074
|
+
def group_concat_max_len(self) -> str:
|
9075
|
+
"""
|
9076
|
+
Specifies the maximum permitted result length in bytes for the GROUP_CONCAT() function.
|
9077
|
+
"""
|
9078
|
+
return pulumi.get(self, "group_concat_max_len")
|
9079
|
+
|
7898
9080
|
@property
|
7899
9081
|
@pulumi.getter(name="groupReplicationConsistency")
|
7900
9082
|
def group_replication_consistency(self) -> str:
|
@@ -7915,6 +9097,22 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7915
9097
|
"""
|
7916
9098
|
return pulumi.get(self, "information_schema_stats_expiry")
|
7917
9099
|
|
9100
|
+
@property
|
9101
|
+
@pulumi.getter(name="innodbAdaptiveHashIndex")
|
9102
|
+
def innodb_adaptive_hash_index(self) -> bool:
|
9103
|
+
"""
|
9104
|
+
Whether the InnoDB adaptive hash index is enabled or disabled. It may be desirable, depending on your workload, to dynamically enable or disable adaptive hash indexing to improve query performance. Because the adaptive hash index may not be useful for all workloads, conduct benchmarks with it both enabled and disabled, using realistic workloads.
|
9105
|
+
"""
|
9106
|
+
return pulumi.get(self, "innodb_adaptive_hash_index")
|
9107
|
+
|
9108
|
+
@property
|
9109
|
+
@pulumi.getter(name="innodbAutoincLockMode")
|
9110
|
+
def innodb_autoinc_lock_mode(self) -> int:
|
9111
|
+
"""
|
9112
|
+
The lock mode to use for generating auto-increment values. Permissible values are 0, 1, or 2, for traditional, consecutive, or interleaved, respectively.
|
9113
|
+
"""
|
9114
|
+
return pulumi.get(self, "innodb_autoinc_lock_mode")
|
9115
|
+
|
7918
9116
|
@property
|
7919
9117
|
@pulumi.getter(name="innodbBufferPoolDumpPct")
|
7920
9118
|
def innodb_buffer_pool_dump_pct(self) -> int:
|
@@ -7939,6 +9137,14 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
7939
9137
|
"""
|
7940
9138
|
return pulumi.get(self, "innodb_buffer_pool_size")
|
7941
9139
|
|
9140
|
+
@property
|
9141
|
+
@pulumi.getter(name="innodbChangeBuffering")
|
9142
|
+
def innodb_change_buffering(self) -> str:
|
9143
|
+
"""
|
9144
|
+
Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially. Permitted values are described in the following table. Values may also be specified numerically.
|
9145
|
+
"""
|
9146
|
+
return pulumi.get(self, "innodb_change_buffering")
|
9147
|
+
|
7942
9148
|
@property
|
7943
9149
|
@pulumi.getter(name="innodbDdlBufferSize")
|
7944
9150
|
def innodb_ddl_buffer_size(self) -> str:
|
@@ -8035,6 +9241,48 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
8035
9241
|
"""
|
8036
9242
|
return pulumi.get(self, "innodb_max_purge_lag_delay")
|
8037
9243
|
|
9244
|
+
@property
|
9245
|
+
@pulumi.getter(name="innodbNumaInterleave")
|
9246
|
+
def innodb_numa_interleave(self) -> bool:
|
9247
|
+
"""
|
9248
|
+
Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool. When innodb_numa_interleave is enabled, the NUMA memory policy is set to MPOL_INTERLEAVE for the mysqld process. After the InnoDB buffer pool is allocated, the NUMA memory policy is set back to MPOL_DEFAULT. For the innodb_numa_interleave option to be available, MySQL must be compiled on a NUMA-enabled Linux system.
|
9249
|
+
"""
|
9250
|
+
return pulumi.get(self, "innodb_numa_interleave")
|
9251
|
+
|
9252
|
+
@property
|
9253
|
+
@pulumi.getter(name="innodbOnlineAlterLogMaxSize")
|
9254
|
+
def innodb_online_alter_log_max_size(self) -> str:
|
9255
|
+
"""
|
9256
|
+
Specifies an upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables. There is one such log file for each index being created or table being altered. This log file stores data inserted, updated, or deleted in the table during the DDL operation.
|
9257
|
+
"""
|
9258
|
+
return pulumi.get(self, "innodb_online_alter_log_max_size")
|
9259
|
+
|
9260
|
+
@property
|
9261
|
+
@pulumi.getter(name="innodbRedoLogCapacity")
|
9262
|
+
def innodb_redo_log_capacity(self) -> str:
|
9263
|
+
"""
|
9264
|
+
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, 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, then the default innodb_redo_log_capacity value is used.
|
9265
|
+
"""
|
9266
|
+
return pulumi.get(self, "innodb_redo_log_capacity")
|
9267
|
+
|
9268
|
+
@property
|
9269
|
+
@pulumi.getter(name="innodbRollbackOnTimeout")
|
9270
|
+
def innodb_rollback_on_timeout(self) -> bool:
|
9271
|
+
"""
|
9272
|
+
InnoDB rolls back only the last statement on a transaction timeout by default. If --innodb-rollback-on-timeout is specified, a transaction timeout causes InnoDB to abort and roll back the entire transaction.
|
9273
|
+
"""
|
9274
|
+
return pulumi.get(self, "innodb_rollback_on_timeout")
|
9275
|
+
|
9276
|
+
@property
|
9277
|
+
@pulumi.getter(name="innodbSortBufferSize")
|
9278
|
+
def innodb_sort_buffer_size(self) -> int:
|
9279
|
+
"""
|
9280
|
+
This variable defines:
|
9281
|
+
* The sort buffer size for online DDL operations that create or rebuild secondary indexes. However, as of MySQL 8.0.27, this responsibility is subsumed by the innodb_ddl_buffer_size variable.
|
9282
|
+
* The amount by which the temporary log file is extended when recording concurrent DML during an online DDL operation, and the size of the temporary log file read buffer and write buffer.
|
9283
|
+
"""
|
9284
|
+
return pulumi.get(self, "innodb_sort_buffer_size")
|
9285
|
+
|
8038
9286
|
@property
|
8039
9287
|
@pulumi.getter(name="innodbStatsPersistentSamplePages")
|
8040
9288
|
def innodb_stats_persistent_sample_pages(self) -> str:
|
@@ -8051,6 +9299,22 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
8051
9299
|
"""
|
8052
9300
|
return pulumi.get(self, "innodb_stats_transient_sample_pages")
|
8053
9301
|
|
9302
|
+
@property
|
9303
|
+
@pulumi.getter(name="innodbStrictMode")
|
9304
|
+
def innodb_strict_mode(self) -> bool:
|
9305
|
+
"""
|
9306
|
+
When you enable innodbStrictMode, the InnoDB storage engine returns errors instead of warnings for invalid or incompatible table options.
|
9307
|
+
"""
|
9308
|
+
return pulumi.get(self, "innodb_strict_mode")
|
9309
|
+
|
9310
|
+
@property
|
9311
|
+
@pulumi.getter(name="innodbUndoLogTruncate")
|
9312
|
+
def innodb_undo_log_truncate(self) -> bool:
|
9313
|
+
"""
|
9314
|
+
When enabled, undo tablespaces that exceed the threshold value defined by innodb_max_undo_log_size are marked for truncation. Only undo tablespaces can be truncated. Truncating undo logs that reside in the system tablespace is not supported. For truncation to occur, there must be at least two undo tablespaces.
|
9315
|
+
"""
|
9316
|
+
return pulumi.get(self, "innodb_undo_log_truncate")
|
9317
|
+
|
8054
9318
|
@property
|
8055
9319
|
@pulumi.getter(name="interactiveTimeout")
|
8056
9320
|
def interactive_timeout(self) -> int:
|
@@ -8059,14 +9323,30 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
8059
9323
|
"""
|
8060
9324
|
return pulumi.get(self, "interactive_timeout")
|
8061
9325
|
|
9326
|
+
@property
|
9327
|
+
@pulumi.getter(name="joinBufferSize")
|
9328
|
+
def join_buffer_size(self) -> str:
|
9329
|
+
"""
|
9330
|
+
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. 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. 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. For a complex join between several tables for which indexes are not used, multiple join buffers might be necessary.
|
9331
|
+
"""
|
9332
|
+
return pulumi.get(self, "join_buffer_size")
|
9333
|
+
|
8062
9334
|
@property
|
8063
9335
|
@pulumi.getter(name="localInfile")
|
8064
9336
|
def local_infile(self) -> bool:
|
8065
9337
|
"""
|
8066
|
-
|
9338
|
+
This variable controls server-side LOCAL capability for LOAD DATA statements. Depending on the local_infile setting, the server refuses or permits local data loading by clients that have LOCAL enabled on the client side.
|
8067
9339
|
"""
|
8068
9340
|
return pulumi.get(self, "local_infile")
|
8069
9341
|
|
9342
|
+
@property
|
9343
|
+
@pulumi.getter(name="longQueryTime")
|
9344
|
+
def long_query_time(self) -> int:
|
9345
|
+
"""
|
9346
|
+
If a query takes longer than this many seconds, the server increments the Slow_queries status variable. If the slow query log is enabled, the query is logged to the slow query log file. This value is measured in real time, not CPU time, so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one.
|
9347
|
+
"""
|
9348
|
+
return pulumi.get(self, "long_query_time")
|
9349
|
+
|
8070
9350
|
@property
|
8071
9351
|
@pulumi.getter(name="mandatoryRoles")
|
8072
9352
|
def mandatory_roles(self) -> str:
|
@@ -8131,6 +9411,22 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
8131
9411
|
"""
|
8132
9412
|
return pulumi.get(self, "max_prepared_stmt_count")
|
8133
9413
|
|
9414
|
+
@property
|
9415
|
+
@pulumi.getter(name="maxSeeksForKey")
|
9416
|
+
def max_seeks_for_key(self) -> str:
|
9417
|
+
"""
|
9418
|
+
Limit the assumed maximum number of seeks when looking up rows based on a key. 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, regardless of the actual cardinality of the index (see Section 15.7.7.22, “SHOW INDEX Statement”). By setting this to a low value (say, 100), you can force MySQL to prefer indexes instead of table scans.
|
9419
|
+
"""
|
9420
|
+
return pulumi.get(self, "max_seeks_for_key")
|
9421
|
+
|
9422
|
+
@property
|
9423
|
+
@pulumi.getter(name="maxUserConnections")
|
9424
|
+
def max_user_connections(self) -> str:
|
9425
|
+
"""
|
9426
|
+
The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means “no limit.” This variable has a global value that can be set at server startup or runtime. 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.
|
9427
|
+
"""
|
9428
|
+
return pulumi.get(self, "max_user_connections")
|
9429
|
+
|
8134
9430
|
@property
|
8135
9431
|
@pulumi.getter(name="mysqlFirewallMode")
|
8136
9432
|
def mysql_firewall_mode(self) -> bool:
|
@@ -8296,38 +9592,102 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
8296
9592
|
return pulumi.get(self, "net_write_timeout")
|
8297
9593
|
|
8298
9594
|
@property
|
8299
|
-
@pulumi.getter(name="
|
8300
|
-
def
|
9595
|
+
@pulumi.getter(name="optimizerSwitch")
|
9596
|
+
def optimizer_switch(self) -> str:
|
9597
|
+
"""
|
9598
|
+
The optimizer_switch system variable enables control over optimizer behavior. 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. This variable has global and session values and can be changed at runtime. The global default can be set at server startup.
|
9599
|
+
"""
|
9600
|
+
return pulumi.get(self, "optimizer_switch")
|
9601
|
+
|
9602
|
+
@property
|
9603
|
+
@pulumi.getter(name="parserMaxMemSize")
|
9604
|
+
def parser_max_mem_size(self) -> str:
|
9605
|
+
"""
|
9606
|
+
("parser_max_mem_size")
|
9607
|
+
"""
|
9608
|
+
return pulumi.get(self, "parser_max_mem_size")
|
9609
|
+
|
9610
|
+
@property
|
9611
|
+
@pulumi.getter(name="queryAllocBlockSize")
|
9612
|
+
@_utilities.deprecated("""The 'query_alloc_block_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
9613
|
+
def query_alloc_block_size(self) -> str:
|
9614
|
+
"""
|
9615
|
+
("query_alloc_block_size") DEPRECATED -- variable should not be settable and will be ignored
|
9616
|
+
"""
|
9617
|
+
return pulumi.get(self, "query_alloc_block_size")
|
9618
|
+
|
9619
|
+
@property
|
9620
|
+
@pulumi.getter(name="queryPreallocSize")
|
9621
|
+
def query_prealloc_size(self) -> str:
|
9622
|
+
"""
|
9623
|
+
("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
9624
|
+
"""
|
9625
|
+
return pulumi.get(self, "query_prealloc_size")
|
9626
|
+
|
9627
|
+
@property
|
9628
|
+
@pulumi.getter(name="rangeOptimizerMaxMemSize")
|
9629
|
+
@_utilities.deprecated("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
9630
|
+
def range_optimizer_max_mem_size(self) -> str:
|
9631
|
+
"""
|
9632
|
+
The limit on memory consumption for the range optimizer. A value of 0 means “no limit.” 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, it abandons the plan and considers other plans.
|
9633
|
+
"""
|
9634
|
+
return pulumi.get(self, "range_optimizer_max_mem_size")
|
9635
|
+
|
9636
|
+
@property
|
9637
|
+
@pulumi.getter(name="regexpTimeLimit")
|
9638
|
+
def regexp_time_limit(self) -> int:
|
9639
|
+
"""
|
9640
|
+
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)
|
9641
|
+
"""
|
9642
|
+
return pulumi.get(self, "regexp_time_limit")
|
9643
|
+
|
9644
|
+
@property
|
9645
|
+
@pulumi.getter(name="relayLogSpaceLimit")
|
9646
|
+
def relay_log_space_limit(self) -> str:
|
9647
|
+
"""
|
9648
|
+
The maximum amount of space to use for all relay logs.
|
9649
|
+
"""
|
9650
|
+
return pulumi.get(self, "relay_log_space_limit")
|
9651
|
+
|
9652
|
+
@property
|
9653
|
+
@pulumi.getter(name="replicaNetTimeout")
|
9654
|
+
def replica_net_timeout(self) -> int:
|
9655
|
+
"""
|
9656
|
+
Specifies the number of seconds to wait for more data or a heartbeat signal from the source before the replica considers the connection broken, 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.
|
9657
|
+
"""
|
9658
|
+
return pulumi.get(self, "replica_net_timeout")
|
9659
|
+
|
9660
|
+
@property
|
9661
|
+
@pulumi.getter(name="replicaParallelWorkers")
|
9662
|
+
def replica_parallel_workers(self) -> int:
|
8301
9663
|
"""
|
8302
|
-
(
|
9664
|
+
Beginning with MySQL 8.0.26, slave_parallel_workers is deprecated, and you should use replica_parallel_workers instead. (Prior to MySQL 8.0.26, you must use slave_parallel_workers to set the number of applier threads.)
|
8303
9665
|
"""
|
8304
|
-
return pulumi.get(self, "
|
9666
|
+
return pulumi.get(self, "replica_parallel_workers")
|
8305
9667
|
|
8306
9668
|
@property
|
8307
|
-
@pulumi.getter(name="
|
8308
|
-
|
8309
|
-
def query_alloc_block_size(self) -> str:
|
9669
|
+
@pulumi.getter(name="replicaTypeConversions")
|
9670
|
+
def replica_type_conversions(self) -> str:
|
8310
9671
|
"""
|
8311
|
-
|
9672
|
+
From MySQL 8.0.26, use replica_type_conversions in place of slave_type_conversions, which is deprecated from that release. In releases before MySQL 8.0.26, use slave_type_conversions.
|
8312
9673
|
"""
|
8313
|
-
return pulumi.get(self, "
|
9674
|
+
return pulumi.get(self, "replica_type_conversions")
|
8314
9675
|
|
8315
9676
|
@property
|
8316
|
-
@pulumi.getter(name="
|
8317
|
-
|
8318
|
-
def query_prealloc_size(self) -> str:
|
9677
|
+
@pulumi.getter(name="requireSecureTransport")
|
9678
|
+
def require_secure_transport(self) -> bool:
|
8319
9679
|
"""
|
8320
|
-
|
9680
|
+
Whether client connections to the server are required to use some form of secure transport. 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. The server rejects nonsecure connection attempts, which fail with an ER_SECURE_TRANSPORT_REQUIRED error.
|
8321
9681
|
"""
|
8322
|
-
return pulumi.get(self, "
|
9682
|
+
return pulumi.get(self, "require_secure_transport")
|
8323
9683
|
|
8324
9684
|
@property
|
8325
|
-
@pulumi.getter(name="
|
8326
|
-
def
|
9685
|
+
@pulumi.getter(name="skipNameResolve")
|
9686
|
+
def skip_name_resolve(self) -> bool:
|
8327
9687
|
"""
|
8328
|
-
|
9688
|
+
Whether to resolve host names when checking client connections. If this variable is OFF, mysqld resolves host names when checking client connections. If it is ON, mysqld uses only IP numbers; in this case, all Host column values in the grant tables must be IP addresses. See Section 7.1.12.3, “DNS Lookups and the Host Cache”.
|
8329
9689
|
"""
|
8330
|
-
return pulumi.get(self, "
|
9690
|
+
return pulumi.get(self, "skip_name_resolve")
|
8331
9691
|
|
8332
9692
|
@property
|
8333
9693
|
@pulumi.getter(name="sortBufferSize")
|
@@ -8337,6 +9697,14 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
8337
9697
|
"""
|
8338
9698
|
return pulumi.get(self, "sort_buffer_size")
|
8339
9699
|
|
9700
|
+
@property
|
9701
|
+
@pulumi.getter(name="sqlGenerateInvisiblePrimaryKey")
|
9702
|
+
def sql_generate_invisible_primary_key(self) -> bool:
|
9703
|
+
"""
|
9704
|
+
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.
|
9705
|
+
"""
|
9706
|
+
return pulumi.get(self, "sql_generate_invisible_primary_key")
|
9707
|
+
|
8340
9708
|
@property
|
8341
9709
|
@pulumi.getter(name="sqlMode")
|
8342
9710
|
def sql_mode(self) -> str:
|
@@ -8361,6 +9729,30 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
8361
9729
|
"""
|
8362
9730
|
return pulumi.get(self, "sql_warnings")
|
8363
9731
|
|
9732
|
+
@property
|
9733
|
+
@pulumi.getter(name="tableDefinitionCache")
|
9734
|
+
def table_definition_cache(self) -> int:
|
9735
|
+
"""
|
9736
|
+
The number of table definitions that can be stored in the table definition cache. If you use a large number of tables, you can create a large table definition cache to speed up opening of tables. The table definition cache takes less space and does not use file descriptors, unlike the normal table cache.
|
9737
|
+
"""
|
9738
|
+
return pulumi.get(self, "table_definition_cache")
|
9739
|
+
|
9740
|
+
@property
|
9741
|
+
@pulumi.getter(name="tableOpenCache")
|
9742
|
+
def table_open_cache(self) -> int:
|
9743
|
+
"""
|
9744
|
+
The number of open tables for all threads. Increasing this value increases the number of file descriptors that mysqld requires.
|
9745
|
+
"""
|
9746
|
+
return pulumi.get(self, "table_open_cache")
|
9747
|
+
|
9748
|
+
@property
|
9749
|
+
@pulumi.getter(name="temptableMaxRam")
|
9750
|
+
def temptable_max_ram(self) -> str:
|
9751
|
+
"""
|
9752
|
+
Defines the maximum amount of memory that can be occupied by the TempTable storage engine before it starts storing data on disk. The default value is 1073741824 bytes (1GiB). For more information, see Section 10.4.4, “Internal Temporary Table Use in MySQL”.
|
9753
|
+
"""
|
9754
|
+
return pulumi.get(self, "temptable_max_ram")
|
9755
|
+
|
8364
9756
|
@property
|
8365
9757
|
@pulumi.getter(name="threadPoolDedicatedListeners")
|
8366
9758
|
def thread_pool_dedicated_listeners(self) -> bool:
|
@@ -8377,6 +9769,30 @@ class GetMysqlConfigurationVariableResult(dict):
|
|
8377
9769
|
"""
|
8378
9770
|
return pulumi.get(self, "thread_pool_max_transactions_limit")
|
8379
9771
|
|
9772
|
+
@property
|
9773
|
+
@pulumi.getter(name="threadPoolQueryThreadsPerGroup")
|
9774
|
+
def thread_pool_query_threads_per_group(self) -> int:
|
9775
|
+
"""
|
9776
|
+
The maximum number of query threads permitted in a thread group. 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. The default value of 1 means there is one active query thread in each thread group, which works well for many loads. When you are using the high concurrency thread pool algorithm (thread_pool_algorithm = 1), consider increasing the value if you experience slower response times due to long-running transactions.
|
9777
|
+
"""
|
9778
|
+
return pulumi.get(self, "thread_pool_query_threads_per_group")
|
9779
|
+
|
9780
|
+
@property
|
9781
|
+
@pulumi.getter(name="threadPoolSize")
|
9782
|
+
def thread_pool_size(self) -> int:
|
9783
|
+
"""
|
9784
|
+
The number of thread groups in the thread pool. This is the most important parameter controlling thread pool performance. It affects how many statements can execute simultaneously. If a value outside the range of permissible values is specified, the thread pool plugin does not load and the server writes a message to the error log.
|
9785
|
+
"""
|
9786
|
+
return pulumi.get(self, "thread_pool_size")
|
9787
|
+
|
9788
|
+
@property
|
9789
|
+
@pulumi.getter(name="threadPoolTransactionDelay")
|
9790
|
+
def thread_pool_transaction_delay(self) -> int:
|
9791
|
+
"""
|
9792
|
+
The delay period before executing a new transaction, in milliseconds. The maximum value is 300000 (5 minutes). A transaction delay can be used in cases where parallel transactions affect the performance of other operations due to resource contention. For example, if parallel transactions affect index creation or an online buffer pool resizing operation, you can configure a transaction delay to reduce resource contention while those operations are running.
|
9793
|
+
"""
|
9794
|
+
return pulumi.get(self, "thread_pool_transaction_delay")
|
9795
|
+
|
8380
9796
|
@property
|
8381
9797
|
@pulumi.getter(name="timeZone")
|
8382
9798
|
def time_zone(self) -> str:
|
@@ -8423,6 +9839,7 @@ class GetMysqlConfigurationsConfigurationResult(dict):
|
|
8423
9839
|
parent_configuration_id: str,
|
8424
9840
|
shape_name: str,
|
8425
9841
|
state: str,
|
9842
|
+
system_tags: Mapping[str, str],
|
8426
9843
|
time_created: str,
|
8427
9844
|
time_updated: str,
|
8428
9845
|
type: str,
|
@@ -8438,6 +9855,7 @@ class GetMysqlConfigurationsConfigurationResult(dict):
|
|
8438
9855
|
:param str parent_configuration_id: The OCID of the Configuration from which this Configuration is "derived". This is entirely a metadata relationship. There is no relation between the values in this Configuration and its parent.
|
8439
9856
|
:param str shape_name: The requested Shape name.
|
8440
9857
|
:param str state: Configuration Lifecycle State
|
9858
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
8441
9859
|
:param str time_created: The date and time the Configuration was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
8442
9860
|
:param str time_updated: The date and time the Configuration was last updated, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
8443
9861
|
:param str type: The requested Configuration types.
|
@@ -8453,6 +9871,7 @@ class GetMysqlConfigurationsConfigurationResult(dict):
|
|
8453
9871
|
pulumi.set(__self__, "parent_configuration_id", parent_configuration_id)
|
8454
9872
|
pulumi.set(__self__, "shape_name", shape_name)
|
8455
9873
|
pulumi.set(__self__, "state", state)
|
9874
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
8456
9875
|
pulumi.set(__self__, "time_created", time_created)
|
8457
9876
|
pulumi.set(__self__, "time_updated", time_updated)
|
8458
9877
|
pulumi.set(__self__, "type", type)
|
@@ -8538,6 +9957,14 @@ class GetMysqlConfigurationsConfigurationResult(dict):
|
|
8538
9957
|
"""
|
8539
9958
|
return pulumi.get(self, "state")
|
8540
9959
|
|
9960
|
+
@property
|
9961
|
+
@pulumi.getter(name="systemTags")
|
9962
|
+
def system_tags(self) -> Mapping[str, str]:
|
9963
|
+
"""
|
9964
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
9965
|
+
"""
|
9966
|
+
return pulumi.get(self, "system_tags")
|
9967
|
+
|
8541
9968
|
@property
|
8542
9969
|
@pulumi.getter(name="timeCreated")
|
8543
9970
|
def time_created(self) -> str:
|
@@ -8592,27 +10019,40 @@ class GetMysqlConfigurationsConfigurationInitVariableResult(dict):
|
|
8592
10019
|
@pulumi.output_type
|
8593
10020
|
class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
8594
10021
|
def __init__(__self__, *,
|
10022
|
+
auto_increment_increment: int,
|
10023
|
+
auto_increment_offset: int,
|
8595
10024
|
autocommit: bool,
|
8596
10025
|
big_tables: bool,
|
8597
10026
|
binlog_expire_logs_seconds: int,
|
10027
|
+
binlog_group_commit_sync_delay: int,
|
10028
|
+
binlog_group_commit_sync_no_delay_count: int,
|
8598
10029
|
binlog_row_metadata: str,
|
8599
10030
|
binlog_row_value_options: str,
|
8600
10031
|
binlog_transaction_compression: bool,
|
10032
|
+
block_encryption_mode: str,
|
10033
|
+
character_set_server: str,
|
10034
|
+
collation_server: str,
|
8601
10035
|
completion_type: str,
|
8602
10036
|
connect_timeout: int,
|
8603
10037
|
connection_memory_chunk_size: int,
|
8604
10038
|
connection_memory_limit: str,
|
8605
10039
|
cte_max_recursion_depth: str,
|
8606
10040
|
default_authentication_plugin: str,
|
10041
|
+
explain_format: str,
|
10042
|
+
explicit_defaults_for_timestamp: bool,
|
8607
10043
|
foreign_key_checks: bool,
|
8608
10044
|
generated_random_password_length: int,
|
8609
10045
|
global_connection_memory_limit: str,
|
8610
10046
|
global_connection_memory_tracking: bool,
|
10047
|
+
group_concat_max_len: str,
|
8611
10048
|
group_replication_consistency: str,
|
8612
10049
|
information_schema_stats_expiry: int,
|
10050
|
+
innodb_adaptive_hash_index: bool,
|
10051
|
+
innodb_autoinc_lock_mode: int,
|
8613
10052
|
innodb_buffer_pool_dump_pct: int,
|
8614
10053
|
innodb_buffer_pool_instances: int,
|
8615
10054
|
innodb_buffer_pool_size: str,
|
10055
|
+
innodb_change_buffering: str,
|
8616
10056
|
innodb_ddl_buffer_size: str,
|
8617
10057
|
innodb_ddl_threads: int,
|
8618
10058
|
innodb_ft_enable_stopword: bool,
|
@@ -8625,10 +10065,19 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8625
10065
|
innodb_log_writer_threads: bool,
|
8626
10066
|
innodb_max_purge_lag: str,
|
8627
10067
|
innodb_max_purge_lag_delay: int,
|
10068
|
+
innodb_numa_interleave: bool,
|
10069
|
+
innodb_online_alter_log_max_size: str,
|
10070
|
+
innodb_redo_log_capacity: str,
|
10071
|
+
innodb_rollback_on_timeout: bool,
|
10072
|
+
innodb_sort_buffer_size: int,
|
8628
10073
|
innodb_stats_persistent_sample_pages: str,
|
8629
10074
|
innodb_stats_transient_sample_pages: str,
|
10075
|
+
innodb_strict_mode: bool,
|
10076
|
+
innodb_undo_log_truncate: bool,
|
8630
10077
|
interactive_timeout: int,
|
10078
|
+
join_buffer_size: str,
|
8631
10079
|
local_infile: bool,
|
10080
|
+
long_query_time: int,
|
8632
10081
|
mandatory_roles: str,
|
8633
10082
|
max_allowed_packet: int,
|
8634
10083
|
max_binlog_cache_size: str,
|
@@ -8637,6 +10086,8 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8637
10086
|
max_execution_time: str,
|
8638
10087
|
max_heap_table_size: str,
|
8639
10088
|
max_prepared_stmt_count: int,
|
10089
|
+
max_seeks_for_key: str,
|
10090
|
+
max_user_connections: str,
|
8640
10091
|
mysql_firewall_mode: bool,
|
8641
10092
|
mysql_zstd_default_compression_level: int,
|
8642
10093
|
mysqlx_connect_timeout: int,
|
@@ -8657,46 +10108,74 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8657
10108
|
mysqlx_zstd_max_client_compression_level: int,
|
8658
10109
|
net_read_timeout: int,
|
8659
10110
|
net_write_timeout: int,
|
10111
|
+
optimizer_switch: str,
|
8660
10112
|
parser_max_mem_size: str,
|
8661
10113
|
query_alloc_block_size: str,
|
8662
10114
|
query_prealloc_size: str,
|
10115
|
+
range_optimizer_max_mem_size: str,
|
8663
10116
|
regexp_time_limit: int,
|
10117
|
+
relay_log_space_limit: str,
|
10118
|
+
replica_net_timeout: int,
|
10119
|
+
replica_parallel_workers: int,
|
10120
|
+
replica_type_conversions: str,
|
10121
|
+
require_secure_transport: bool,
|
10122
|
+
skip_name_resolve: bool,
|
8664
10123
|
sort_buffer_size: str,
|
10124
|
+
sql_generate_invisible_primary_key: bool,
|
8665
10125
|
sql_mode: str,
|
8666
10126
|
sql_require_primary_key: bool,
|
8667
10127
|
sql_warnings: bool,
|
10128
|
+
table_definition_cache: int,
|
10129
|
+
table_open_cache: int,
|
10130
|
+
temptable_max_ram: str,
|
8668
10131
|
thread_pool_dedicated_listeners: bool,
|
8669
10132
|
thread_pool_max_transactions_limit: int,
|
10133
|
+
thread_pool_query_threads_per_group: int,
|
10134
|
+
thread_pool_size: int,
|
10135
|
+
thread_pool_transaction_delay: int,
|
8670
10136
|
time_zone: str,
|
8671
10137
|
tmp_table_size: str,
|
8672
10138
|
transaction_isolation: str,
|
8673
10139
|
wait_timeout: int):
|
8674
10140
|
"""
|
10141
|
+
:param int auto_increment_increment: auto_increment_increment and auto_increment_offset are intended for use with circular (source-to-source) replication, and can be used to control the operation of AUTO_INCREMENT columns. Both variables have global and session values, and each can assume an integer value between 1 and 65,535 inclusive.
|
10142
|
+
:param int auto_increment_offset: This variable has a default value of 1. If it is left with its default value, and Group Replication is started on the server in multi-primary mode, it is changed to the server ID.
|
8675
10143
|
:param bool autocommit: ("autocommit")
|
8676
10144
|
:param bool big_tables: If enabled, the server stores all temporary tables on disk rather than in memory.
|
8677
10145
|
:param int binlog_expire_logs_seconds: Sets the binary log expiration period in seconds. binlogExpireLogsSeconds corresponds to the MySQL binary logging system variable [binlog_expire_logs_seconds](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_expire_logs_seconds).
|
10146
|
+
:param int binlog_group_commit_sync_delay: Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk. There is no delay by default. Setting this variable to a microsecond delay enables more transactions to be synchronized together to disk at once, reducing the overall time to commit a group of transactions because the larger groups required fewer time units per group.
|
10147
|
+
:param int binlog_group_commit_sync_no_delay_count: The maximum number of transactions to wait for before aborting the current delay as specified by binlog_group_commit_sync_delay. If binlog_group_commit_sync_delay is set to 0, then this option has no effect.
|
8678
10148
|
:param str binlog_row_metadata: Configures the amount of table metadata added to the binary log when using row-based logging. binlogRowMetadata corresponds to the MySQL binary logging system variable [binlog_row_metadata](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_row_metadata).
|
8679
10149
|
:param str binlog_row_value_options: When set to PARTIAL_JSON, this enables use of a space-efficient binary log format for updates that modify only a small portion of a JSON document. binlogRowValueOptions corresponds to the MySQL binary logging system variable [binlog_row_value_options](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_row_value_options).
|
8680
10150
|
:param bool binlog_transaction_compression: Enables compression for transactions that are written to binary log files on this server. binlogTransactionCompression corresponds to the MySQL binary logging system variable [binlog_transaction_compression](https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#sysvar_binlog_transaction_compression).
|
10151
|
+
:param str block_encryption_mode: This variable controls the block encryption mode for block-based algorithms such as AES. It affects encryption for AES_ENCRYPT() and AES_DECRYPT(). 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. Permitted keylen values are 128, 192, and 256. Permitted mode values are ECB, CBC, CFB1, CFB8, CFB128, and OFB.
|
10152
|
+
:param str character_set_server: 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.
|
10153
|
+
:param str collation_server: The server's default collation.
|
8681
10154
|
:param str completion_type: ("completion_type")
|
8682
10155
|
:param int connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
|
8683
10156
|
:param int connection_memory_chunk_size: Set the chunking size for updates to the global memory usage counter Global_connection_memory.
|
8684
10157
|
:param str connection_memory_limit: Set the maximum amount of memory that can be used by a single user connection.
|
8685
10158
|
:param str cte_max_recursion_depth: ("cte_max_recursion_depth")
|
8686
|
-
:param str default_authentication_plugin:
|
10159
|
+
:param str default_authentication_plugin: The default authentication plugin. This must be a plugin that uses internal credentials storage, so these values are permitted: mysql_native_password, sha256_password, caching_sha2_password.
|
10160
|
+
:param str explain_format: This variable determines the default output format used by EXPLAIN in the absence of a FORMAT option when displaying a query execution plan.
|
10161
|
+
:param bool explicit_defaults_for_timestamp: This system variable determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns. By default, explicit_defaults_for_timestamp is enabled, which disables the nonstandard behaviors. Disabling explicit_defaults_for_timestamp results in a warning.
|
8687
10162
|
:param bool foreign_key_checks: ("foreign_key_checks")
|
8688
10163
|
:param int generated_random_password_length: ("generated_random_password_length") DEPRECATED -- variable should not be settable and will be ignored
|
8689
10164
|
:param str global_connection_memory_limit: Set the total amount of memory that can be used by all user connections.
|
8690
10165
|
:param bool global_connection_memory_tracking: Determines whether the MySQL server calculates Global_connection_memory.
|
10166
|
+
:param str group_concat_max_len: Specifies the maximum permitted result length in bytes for the GROUP_CONCAT() function.
|
8691
10167
|
:param str group_replication_consistency: * EVENTUAL: Both RO and RW transactions do not wait for preceding transactions to be applied before executing. A RW transaction does not wait for other members to apply a transaction. This means that a transaction could be externalized on one member before the others. This also means that in the event of a primary failover, the new primary can accept new RO and RW transactions before the previous primary transactions are all applied. RO transactions could result in outdated values, RW transactions could result in a rollback due to conflicts.
|
8692
10168
|
* BEFORE_ON_PRIMARY_FAILOVER: New RO or RW transactions with a newly elected primary that is applying backlog from the old primary are held (not applied) until any backlog has been applied. This ensures that when a primary failover happens, intentionally or not, clients always see the latest value on the primary. This guarantees consistency, but means that clients must be able to handle the delay in the event that a backlog is being applied. Usually this delay should be minimal, but does depend on the size of the backlog.
|
8693
10169
|
* BEFORE: A RW transaction waits for all preceding transactions to complete before being applied. A RO transaction waits for all preceding transactions to complete before being executed. This ensures that this transaction reads the latest value by only affecting the latency of the transaction. This reduces the overhead of synchronization on every RW transaction, by ensuring synchronization is used only on RO transactions. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
8694
10170
|
* AFTER: A RW transaction waits until its changes have been applied to all of the other members. This value has no effect on RO transactions. This mode ensures that when a transaction is committed on the local member, any subsequent transaction reads the written value or a more recent value on any group member. Use this mode with a group that is used for predominantly RO operations to ensure that applied RW transactions are applied everywhere once they commit. This could be used by your application to ensure that subsequent reads fetch the latest data which includes the latest writes. This reduces the overhead of synchronization on every RO transaction, by ensuring synchronization is used only on RW transactions. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
8695
10171
|
* BEFORE_AND_AFTER: A RW transaction waits for 1) all preceding transactions to complete before being applied and 2) until its changes have been applied on other members. A RO transaction waits for all preceding transactions to complete before execution takes place. This consistency level also includes the consistency guarantees provided by BEFORE_ON_PRIMARY_FAILOVER.
|
8696
10172
|
:param int information_schema_stats_expiry: ("information_schema_stats_expiry")
|
10173
|
+
:param bool innodb_adaptive_hash_index: Whether the InnoDB adaptive hash index is enabled or disabled. It may be desirable, depending on your workload, to dynamically enable or disable adaptive hash indexing to improve query performance. Because the adaptive hash index may not be useful for all workloads, conduct benchmarks with it both enabled and disabled, using realistic workloads.
|
10174
|
+
:param int innodb_autoinc_lock_mode: The lock mode to use for generating auto-increment values. Permissible values are 0, 1, or 2, for traditional, consecutive, or interleaved, respectively.
|
8697
10175
|
:param int innodb_buffer_pool_dump_pct: Specifies the percentage of the most recently used pages for each buffer pool to read out and dump.
|
8698
10176
|
:param int innodb_buffer_pool_instances: ("innodb_buffer_pool_instances")
|
8699
10177
|
:param str innodb_buffer_pool_size: The size (in bytes) of the buffer pool, that is, the memory area where InnoDB caches table and index data.
|
10178
|
+
:param str innodb_change_buffering: Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially. Permitted values are described in the following table. Values may also be specified numerically.
|
8700
10179
|
:param str innodb_ddl_buffer_size: 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)
|
8701
10180
|
:param int innodb_ddl_threads: 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)
|
8702
10181
|
:param bool innodb_ft_enable_stopword: ("innodb_ft_enable_stopword")
|
@@ -8709,10 +10188,21 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8709
10188
|
:param bool innodb_log_writer_threads: 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.
|
8710
10189
|
:param str innodb_max_purge_lag: The desired maximum purge lag in terms of transactions.
|
8711
10190
|
:param int innodb_max_purge_lag_delay: The maximum delay in microseconds for the delay imposed when the innodb_max_purge_lag threshold is exceeded.
|
10191
|
+
:param bool innodb_numa_interleave: Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool. When innodb_numa_interleave is enabled, the NUMA memory policy is set to MPOL_INTERLEAVE for the mysqld process. After the InnoDB buffer pool is allocated, the NUMA memory policy is set back to MPOL_DEFAULT. For the innodb_numa_interleave option to be available, MySQL must be compiled on a NUMA-enabled Linux system.
|
10192
|
+
:param str innodb_online_alter_log_max_size: Specifies an upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables. There is one such log file for each index being created or table being altered. This log file stores data inserted, updated, or deleted in the table during the DDL operation.
|
10193
|
+
:param str innodb_redo_log_capacity: 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, 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, then the default innodb_redo_log_capacity value is used.
|
10194
|
+
:param bool innodb_rollback_on_timeout: InnoDB rolls back only the last statement on a transaction timeout by default. If --innodb-rollback-on-timeout is specified, a transaction timeout causes InnoDB to abort and roll back the entire transaction.
|
10195
|
+
:param int innodb_sort_buffer_size: This variable defines:
|
10196
|
+
* The sort buffer size for online DDL operations that create or rebuild secondary indexes. However, as of MySQL 8.0.27, this responsibility is subsumed by the innodb_ddl_buffer_size variable.
|
10197
|
+
* The amount by which the temporary log file is extended when recording concurrent DML during an online DDL operation, and the size of the temporary log file read buffer and write buffer.
|
8712
10198
|
:param str innodb_stats_persistent_sample_pages: The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by ANALYZE TABLE.
|
8713
10199
|
:param str innodb_stats_transient_sample_pages: The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by [ANALYZE TABLE](https://dev.mysql.com/doc/refman/8.0/en/analyze-table.html).
|
10200
|
+
:param bool innodb_strict_mode: When you enable innodbStrictMode, the InnoDB storage engine returns errors instead of warnings for invalid or incompatible table options.
|
10201
|
+
:param bool innodb_undo_log_truncate: When enabled, undo tablespaces that exceed the threshold value defined by innodb_max_undo_log_size are marked for truncation. Only undo tablespaces can be truncated. Truncating undo logs that reside in the system tablespace is not supported. For truncation to occur, there must be at least two undo tablespaces.
|
8714
10202
|
:param int interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
|
8715
|
-
:param
|
10203
|
+
:param str join_buffer_size: 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. 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. 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. For a complex join between several tables for which indexes are not used, multiple join buffers might be necessary.
|
10204
|
+
:param bool local_infile: This variable controls server-side LOCAL capability for LOAD DATA statements. Depending on the local_infile setting, the server refuses or permits local data loading by clients that have LOCAL enabled on the client side.
|
10205
|
+
:param int long_query_time: If a query takes longer than this many seconds, the server increments the Slow_queries status variable. If the slow query log is enabled, the query is logged to the slow query log file. This value is measured in real time, not CPU time, so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one.
|
8716
10206
|
:param str mandatory_roles: ("mandatory_roles")
|
8717
10207
|
:param int max_allowed_packet: The maximum size of one packet or any generated/intermediate string.
|
8718
10208
|
:param str max_binlog_cache_size: Sets the size of the transaction cache.
|
@@ -8721,6 +10211,8 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8721
10211
|
:param str max_execution_time: ("max_execution_time")
|
8722
10212
|
:param str max_heap_table_size: This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.
|
8723
10213
|
:param int max_prepared_stmt_count: ("max_prepared_stmt_count")
|
10214
|
+
:param str max_seeks_for_key: Limit the assumed maximum number of seeks when looking up rows based on a key. 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, regardless of the actual cardinality of the index (see Section 15.7.7.22, “SHOW INDEX Statement”). By setting this to a low value (say, 100), you can force MySQL to prefer indexes instead of table scans.
|
10215
|
+
:param str max_user_connections: The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means “no limit.” This variable has a global value that can be set at server startup or runtime. 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.
|
8724
10216
|
:param bool mysql_firewall_mode: ("mysql_firewall_mode")
|
8725
10217
|
:param int mysql_zstd_default_compression_level: DEPRECATED -- typo of mysqlx_zstd_default_compression_level. variable will be ignored.
|
8726
10218
|
:param int mysqlx_connect_timeout: The number of seconds X Plugin waits for the first packet to be received from newly connected clients.
|
@@ -8741,42 +10233,70 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8741
10233
|
:param int mysqlx_zstd_max_client_compression_level: Limit the upper bound of accepted compression levels for the zstd algorithm. ("mysqlx_zstd_max_client_compression_level")
|
8742
10234
|
:param int net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read.
|
8743
10235
|
:param int net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write.
|
10236
|
+
:param str optimizer_switch: The optimizer_switch system variable enables control over optimizer behavior. 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. This variable has global and session values and can be changed at runtime. The global default can be set at server startup.
|
8744
10237
|
:param str parser_max_mem_size: ("parser_max_mem_size")
|
8745
10238
|
:param str query_alloc_block_size: ("query_alloc_block_size") DEPRECATED -- variable should not be settable and will be ignored
|
8746
10239
|
:param str query_prealloc_size: ("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
10240
|
+
:param str range_optimizer_max_mem_size: The limit on memory consumption for the range optimizer. A value of 0 means “no limit.” 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, it abandons the plan and considers other plans.
|
8747
10241
|
:param int regexp_time_limit: 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)
|
10242
|
+
:param str relay_log_space_limit: The maximum amount of space to use for all relay logs.
|
10243
|
+
:param int replica_net_timeout: Specifies the number of seconds to wait for more data or a heartbeat signal from the source before the replica considers the connection broken, 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.
|
10244
|
+
:param int replica_parallel_workers: Beginning with MySQL 8.0.26, slave_parallel_workers is deprecated, and you should use replica_parallel_workers instead. (Prior to MySQL 8.0.26, you must use slave_parallel_workers to set the number of applier threads.)
|
10245
|
+
:param str replica_type_conversions: From MySQL 8.0.26, use replica_type_conversions in place of slave_type_conversions, which is deprecated from that release. In releases before MySQL 8.0.26, use slave_type_conversions.
|
10246
|
+
:param bool require_secure_transport: Whether client connections to the server are required to use some form of secure transport. 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. The server rejects nonsecure connection attempts, which fail with an ER_SECURE_TRANSPORT_REQUIRED error.
|
10247
|
+
:param bool skip_name_resolve: Whether to resolve host names when checking client connections. If this variable is OFF, mysqld resolves host names when checking client connections. If it is ON, mysqld uses only IP numbers; in this case, all Host column values in the grant tables must be IP addresses. See Section 7.1.12.3, “DNS Lookups and the Host Cache”.
|
8748
10248
|
:param str sort_buffer_size: Each session that must perform a sort allocates a buffer of this size.
|
10249
|
+
:param bool sql_generate_invisible_primary_key: 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.
|
8749
10250
|
:param str sql_mode: ("sql_mode")
|
8750
10251
|
:param bool sql_require_primary_key: ("sql_require_primary_key")
|
8751
10252
|
:param bool sql_warnings: ("sql_warnings")
|
10253
|
+
:param int table_definition_cache: The number of table definitions that can be stored in the table definition cache. If you use a large number of tables, you can create a large table definition cache to speed up opening of tables. The table definition cache takes less space and does not use file descriptors, unlike the normal table cache.
|
10254
|
+
:param int table_open_cache: The number of open tables for all threads. Increasing this value increases the number of file descriptors that mysqld requires.
|
10255
|
+
:param str temptable_max_ram: Defines the maximum amount of memory that can be occupied by the TempTable storage engine before it starts storing data on disk. The default value is 1073741824 bytes (1GiB). For more information, see Section 10.4.4, “Internal Temporary Table Use in MySQL”.
|
8752
10256
|
:param bool thread_pool_dedicated_listeners: 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 for network events from clients, ensuring that the maximum number of query worker threads is no more than the value specified by threadPoolMaxTransactionsLimit. threadPoolDedicatedListeners corresponds to the MySQL Database Service-specific system variable thread_pool_dedicated_listeners.
|
8753
10257
|
:param int thread_pool_max_transactions_limit: Limits the maximum number of open transactions to the defined value. The default value is 0, which enforces no limit. threadPoolMaxTransactionsLimit corresponds to the MySQL Database Service-specific system variable thread_pool_max_transactions_limit.
|
10258
|
+
:param int thread_pool_query_threads_per_group: The maximum number of query threads permitted in a thread group. 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. The default value of 1 means there is one active query thread in each thread group, which works well for many loads. When you are using the high concurrency thread pool algorithm (thread_pool_algorithm = 1), consider increasing the value if you experience slower response times due to long-running transactions.
|
10259
|
+
:param int thread_pool_size: The number of thread groups in the thread pool. This is the most important parameter controlling thread pool performance. It affects how many statements can execute simultaneously. If a value outside the range of permissible values is specified, the thread pool plugin does not load and the server writes a message to the error log.
|
10260
|
+
:param int thread_pool_transaction_delay: The delay period before executing a new transaction, in milliseconds. The maximum value is 300000 (5 minutes). A transaction delay can be used in cases where parallel transactions affect the performance of other operations due to resource contention. For example, if parallel transactions affect index creation or an online buffer pool resizing operation, you can configure a transaction delay to reduce resource contention while those operations are running.
|
8754
10261
|
:param str time_zone: Initializes the time zone for each client that connects.
|
8755
10262
|
:param str tmp_table_size: The maximum size of internal in-memory temporary tables. This variable does not apply to user-created MEMORY tables.
|
8756
10263
|
:param str transaction_isolation: ("transaction_isolation")
|
8757
10264
|
:param int wait_timeout: The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
8758
10265
|
"""
|
10266
|
+
pulumi.set(__self__, "auto_increment_increment", auto_increment_increment)
|
10267
|
+
pulumi.set(__self__, "auto_increment_offset", auto_increment_offset)
|
8759
10268
|
pulumi.set(__self__, "autocommit", autocommit)
|
8760
10269
|
pulumi.set(__self__, "big_tables", big_tables)
|
8761
10270
|
pulumi.set(__self__, "binlog_expire_logs_seconds", binlog_expire_logs_seconds)
|
10271
|
+
pulumi.set(__self__, "binlog_group_commit_sync_delay", binlog_group_commit_sync_delay)
|
10272
|
+
pulumi.set(__self__, "binlog_group_commit_sync_no_delay_count", binlog_group_commit_sync_no_delay_count)
|
8762
10273
|
pulumi.set(__self__, "binlog_row_metadata", binlog_row_metadata)
|
8763
10274
|
pulumi.set(__self__, "binlog_row_value_options", binlog_row_value_options)
|
8764
10275
|
pulumi.set(__self__, "binlog_transaction_compression", binlog_transaction_compression)
|
10276
|
+
pulumi.set(__self__, "block_encryption_mode", block_encryption_mode)
|
10277
|
+
pulumi.set(__self__, "character_set_server", character_set_server)
|
10278
|
+
pulumi.set(__self__, "collation_server", collation_server)
|
8765
10279
|
pulumi.set(__self__, "completion_type", completion_type)
|
8766
10280
|
pulumi.set(__self__, "connect_timeout", connect_timeout)
|
8767
10281
|
pulumi.set(__self__, "connection_memory_chunk_size", connection_memory_chunk_size)
|
8768
10282
|
pulumi.set(__self__, "connection_memory_limit", connection_memory_limit)
|
8769
10283
|
pulumi.set(__self__, "cte_max_recursion_depth", cte_max_recursion_depth)
|
8770
10284
|
pulumi.set(__self__, "default_authentication_plugin", default_authentication_plugin)
|
10285
|
+
pulumi.set(__self__, "explain_format", explain_format)
|
10286
|
+
pulumi.set(__self__, "explicit_defaults_for_timestamp", explicit_defaults_for_timestamp)
|
8771
10287
|
pulumi.set(__self__, "foreign_key_checks", foreign_key_checks)
|
8772
10288
|
pulumi.set(__self__, "generated_random_password_length", generated_random_password_length)
|
8773
10289
|
pulumi.set(__self__, "global_connection_memory_limit", global_connection_memory_limit)
|
8774
10290
|
pulumi.set(__self__, "global_connection_memory_tracking", global_connection_memory_tracking)
|
10291
|
+
pulumi.set(__self__, "group_concat_max_len", group_concat_max_len)
|
8775
10292
|
pulumi.set(__self__, "group_replication_consistency", group_replication_consistency)
|
8776
10293
|
pulumi.set(__self__, "information_schema_stats_expiry", information_schema_stats_expiry)
|
10294
|
+
pulumi.set(__self__, "innodb_adaptive_hash_index", innodb_adaptive_hash_index)
|
10295
|
+
pulumi.set(__self__, "innodb_autoinc_lock_mode", innodb_autoinc_lock_mode)
|
8777
10296
|
pulumi.set(__self__, "innodb_buffer_pool_dump_pct", innodb_buffer_pool_dump_pct)
|
8778
10297
|
pulumi.set(__self__, "innodb_buffer_pool_instances", innodb_buffer_pool_instances)
|
8779
10298
|
pulumi.set(__self__, "innodb_buffer_pool_size", innodb_buffer_pool_size)
|
10299
|
+
pulumi.set(__self__, "innodb_change_buffering", innodb_change_buffering)
|
8780
10300
|
pulumi.set(__self__, "innodb_ddl_buffer_size", innodb_ddl_buffer_size)
|
8781
10301
|
pulumi.set(__self__, "innodb_ddl_threads", innodb_ddl_threads)
|
8782
10302
|
pulumi.set(__self__, "innodb_ft_enable_stopword", innodb_ft_enable_stopword)
|
@@ -8789,10 +10309,19 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8789
10309
|
pulumi.set(__self__, "innodb_log_writer_threads", innodb_log_writer_threads)
|
8790
10310
|
pulumi.set(__self__, "innodb_max_purge_lag", innodb_max_purge_lag)
|
8791
10311
|
pulumi.set(__self__, "innodb_max_purge_lag_delay", innodb_max_purge_lag_delay)
|
10312
|
+
pulumi.set(__self__, "innodb_numa_interleave", innodb_numa_interleave)
|
10313
|
+
pulumi.set(__self__, "innodb_online_alter_log_max_size", innodb_online_alter_log_max_size)
|
10314
|
+
pulumi.set(__self__, "innodb_redo_log_capacity", innodb_redo_log_capacity)
|
10315
|
+
pulumi.set(__self__, "innodb_rollback_on_timeout", innodb_rollback_on_timeout)
|
10316
|
+
pulumi.set(__self__, "innodb_sort_buffer_size", innodb_sort_buffer_size)
|
8792
10317
|
pulumi.set(__self__, "innodb_stats_persistent_sample_pages", innodb_stats_persistent_sample_pages)
|
8793
10318
|
pulumi.set(__self__, "innodb_stats_transient_sample_pages", innodb_stats_transient_sample_pages)
|
10319
|
+
pulumi.set(__self__, "innodb_strict_mode", innodb_strict_mode)
|
10320
|
+
pulumi.set(__self__, "innodb_undo_log_truncate", innodb_undo_log_truncate)
|
8794
10321
|
pulumi.set(__self__, "interactive_timeout", interactive_timeout)
|
10322
|
+
pulumi.set(__self__, "join_buffer_size", join_buffer_size)
|
8795
10323
|
pulumi.set(__self__, "local_infile", local_infile)
|
10324
|
+
pulumi.set(__self__, "long_query_time", long_query_time)
|
8796
10325
|
pulumi.set(__self__, "mandatory_roles", mandatory_roles)
|
8797
10326
|
pulumi.set(__self__, "max_allowed_packet", max_allowed_packet)
|
8798
10327
|
pulumi.set(__self__, "max_binlog_cache_size", max_binlog_cache_size)
|
@@ -8801,6 +10330,8 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8801
10330
|
pulumi.set(__self__, "max_execution_time", max_execution_time)
|
8802
10331
|
pulumi.set(__self__, "max_heap_table_size", max_heap_table_size)
|
8803
10332
|
pulumi.set(__self__, "max_prepared_stmt_count", max_prepared_stmt_count)
|
10333
|
+
pulumi.set(__self__, "max_seeks_for_key", max_seeks_for_key)
|
10334
|
+
pulumi.set(__self__, "max_user_connections", max_user_connections)
|
8804
10335
|
pulumi.set(__self__, "mysql_firewall_mode", mysql_firewall_mode)
|
8805
10336
|
pulumi.set(__self__, "mysql_zstd_default_compression_level", mysql_zstd_default_compression_level)
|
8806
10337
|
pulumi.set(__self__, "mysqlx_connect_timeout", mysqlx_connect_timeout)
|
@@ -8821,21 +10352,52 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8821
10352
|
pulumi.set(__self__, "mysqlx_zstd_max_client_compression_level", mysqlx_zstd_max_client_compression_level)
|
8822
10353
|
pulumi.set(__self__, "net_read_timeout", net_read_timeout)
|
8823
10354
|
pulumi.set(__self__, "net_write_timeout", net_write_timeout)
|
10355
|
+
pulumi.set(__self__, "optimizer_switch", optimizer_switch)
|
8824
10356
|
pulumi.set(__self__, "parser_max_mem_size", parser_max_mem_size)
|
8825
10357
|
pulumi.set(__self__, "query_alloc_block_size", query_alloc_block_size)
|
8826
10358
|
pulumi.set(__self__, "query_prealloc_size", query_prealloc_size)
|
10359
|
+
pulumi.set(__self__, "range_optimizer_max_mem_size", range_optimizer_max_mem_size)
|
8827
10360
|
pulumi.set(__self__, "regexp_time_limit", regexp_time_limit)
|
10361
|
+
pulumi.set(__self__, "relay_log_space_limit", relay_log_space_limit)
|
10362
|
+
pulumi.set(__self__, "replica_net_timeout", replica_net_timeout)
|
10363
|
+
pulumi.set(__self__, "replica_parallel_workers", replica_parallel_workers)
|
10364
|
+
pulumi.set(__self__, "replica_type_conversions", replica_type_conversions)
|
10365
|
+
pulumi.set(__self__, "require_secure_transport", require_secure_transport)
|
10366
|
+
pulumi.set(__self__, "skip_name_resolve", skip_name_resolve)
|
8828
10367
|
pulumi.set(__self__, "sort_buffer_size", sort_buffer_size)
|
10368
|
+
pulumi.set(__self__, "sql_generate_invisible_primary_key", sql_generate_invisible_primary_key)
|
8829
10369
|
pulumi.set(__self__, "sql_mode", sql_mode)
|
8830
10370
|
pulumi.set(__self__, "sql_require_primary_key", sql_require_primary_key)
|
8831
10371
|
pulumi.set(__self__, "sql_warnings", sql_warnings)
|
10372
|
+
pulumi.set(__self__, "table_definition_cache", table_definition_cache)
|
10373
|
+
pulumi.set(__self__, "table_open_cache", table_open_cache)
|
10374
|
+
pulumi.set(__self__, "temptable_max_ram", temptable_max_ram)
|
8832
10375
|
pulumi.set(__self__, "thread_pool_dedicated_listeners", thread_pool_dedicated_listeners)
|
8833
10376
|
pulumi.set(__self__, "thread_pool_max_transactions_limit", thread_pool_max_transactions_limit)
|
10377
|
+
pulumi.set(__self__, "thread_pool_query_threads_per_group", thread_pool_query_threads_per_group)
|
10378
|
+
pulumi.set(__self__, "thread_pool_size", thread_pool_size)
|
10379
|
+
pulumi.set(__self__, "thread_pool_transaction_delay", thread_pool_transaction_delay)
|
8834
10380
|
pulumi.set(__self__, "time_zone", time_zone)
|
8835
10381
|
pulumi.set(__self__, "tmp_table_size", tmp_table_size)
|
8836
10382
|
pulumi.set(__self__, "transaction_isolation", transaction_isolation)
|
8837
10383
|
pulumi.set(__self__, "wait_timeout", wait_timeout)
|
8838
10384
|
|
10385
|
+
@property
|
10386
|
+
@pulumi.getter(name="autoIncrementIncrement")
|
10387
|
+
def auto_increment_increment(self) -> int:
|
10388
|
+
"""
|
10389
|
+
auto_increment_increment and auto_increment_offset are intended for use with circular (source-to-source) replication, and can be used to control the operation of AUTO_INCREMENT columns. Both variables have global and session values, and each can assume an integer value between 1 and 65,535 inclusive.
|
10390
|
+
"""
|
10391
|
+
return pulumi.get(self, "auto_increment_increment")
|
10392
|
+
|
10393
|
+
@property
|
10394
|
+
@pulumi.getter(name="autoIncrementOffset")
|
10395
|
+
def auto_increment_offset(self) -> int:
|
10396
|
+
"""
|
10397
|
+
This variable has a default value of 1. If it is left with its default value, and Group Replication is started on the server in multi-primary mode, it is changed to the server ID.
|
10398
|
+
"""
|
10399
|
+
return pulumi.get(self, "auto_increment_offset")
|
10400
|
+
|
8839
10401
|
@property
|
8840
10402
|
@pulumi.getter
|
8841
10403
|
def autocommit(self) -> bool:
|
@@ -8860,6 +10422,22 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8860
10422
|
"""
|
8861
10423
|
return pulumi.get(self, "binlog_expire_logs_seconds")
|
8862
10424
|
|
10425
|
+
@property
|
10426
|
+
@pulumi.getter(name="binlogGroupCommitSyncDelay")
|
10427
|
+
def binlog_group_commit_sync_delay(self) -> int:
|
10428
|
+
"""
|
10429
|
+
Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk. There is no delay by default. Setting this variable to a microsecond delay enables more transactions to be synchronized together to disk at once, reducing the overall time to commit a group of transactions because the larger groups required fewer time units per group.
|
10430
|
+
"""
|
10431
|
+
return pulumi.get(self, "binlog_group_commit_sync_delay")
|
10432
|
+
|
10433
|
+
@property
|
10434
|
+
@pulumi.getter(name="binlogGroupCommitSyncNoDelayCount")
|
10435
|
+
def binlog_group_commit_sync_no_delay_count(self) -> int:
|
10436
|
+
"""
|
10437
|
+
The maximum number of transactions to wait for before aborting the current delay as specified by binlog_group_commit_sync_delay. If binlog_group_commit_sync_delay is set to 0, then this option has no effect.
|
10438
|
+
"""
|
10439
|
+
return pulumi.get(self, "binlog_group_commit_sync_no_delay_count")
|
10440
|
+
|
8863
10441
|
@property
|
8864
10442
|
@pulumi.getter(name="binlogRowMetadata")
|
8865
10443
|
def binlog_row_metadata(self) -> str:
|
@@ -8884,6 +10462,30 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8884
10462
|
"""
|
8885
10463
|
return pulumi.get(self, "binlog_transaction_compression")
|
8886
10464
|
|
10465
|
+
@property
|
10466
|
+
@pulumi.getter(name="blockEncryptionMode")
|
10467
|
+
def block_encryption_mode(self) -> str:
|
10468
|
+
"""
|
10469
|
+
This variable controls the block encryption mode for block-based algorithms such as AES. It affects encryption for AES_ENCRYPT() and AES_DECRYPT(). 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. Permitted keylen values are 128, 192, and 256. Permitted mode values are ECB, CBC, CFB1, CFB8, CFB128, and OFB.
|
10470
|
+
"""
|
10471
|
+
return pulumi.get(self, "block_encryption_mode")
|
10472
|
+
|
10473
|
+
@property
|
10474
|
+
@pulumi.getter(name="characterSetServer")
|
10475
|
+
def character_set_server(self) -> str:
|
10476
|
+
"""
|
10477
|
+
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.
|
10478
|
+
"""
|
10479
|
+
return pulumi.get(self, "character_set_server")
|
10480
|
+
|
10481
|
+
@property
|
10482
|
+
@pulumi.getter(name="collationServer")
|
10483
|
+
def collation_server(self) -> str:
|
10484
|
+
"""
|
10485
|
+
The server's default collation.
|
10486
|
+
"""
|
10487
|
+
return pulumi.get(self, "collation_server")
|
10488
|
+
|
8887
10489
|
@property
|
8888
10490
|
@pulumi.getter(name="completionType")
|
8889
10491
|
def completion_type(self) -> str:
|
@@ -8928,10 +10530,26 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8928
10530
|
@pulumi.getter(name="defaultAuthenticationPlugin")
|
8929
10531
|
def default_authentication_plugin(self) -> str:
|
8930
10532
|
"""
|
8931
|
-
|
10533
|
+
The default authentication plugin. This must be a plugin that uses internal credentials storage, so these values are permitted: mysql_native_password, sha256_password, caching_sha2_password.
|
8932
10534
|
"""
|
8933
10535
|
return pulumi.get(self, "default_authentication_plugin")
|
8934
10536
|
|
10537
|
+
@property
|
10538
|
+
@pulumi.getter(name="explainFormat")
|
10539
|
+
def explain_format(self) -> str:
|
10540
|
+
"""
|
10541
|
+
This variable determines the default output format used by EXPLAIN in the absence of a FORMAT option when displaying a query execution plan.
|
10542
|
+
"""
|
10543
|
+
return pulumi.get(self, "explain_format")
|
10544
|
+
|
10545
|
+
@property
|
10546
|
+
@pulumi.getter(name="explicitDefaultsForTimestamp")
|
10547
|
+
def explicit_defaults_for_timestamp(self) -> bool:
|
10548
|
+
"""
|
10549
|
+
This system variable determines whether the server enables certain nonstandard behaviors for default values and NULL-value handling in TIMESTAMP columns. By default, explicit_defaults_for_timestamp is enabled, which disables the nonstandard behaviors. Disabling explicit_defaults_for_timestamp results in a warning.
|
10550
|
+
"""
|
10551
|
+
return pulumi.get(self, "explicit_defaults_for_timestamp")
|
10552
|
+
|
8935
10553
|
@property
|
8936
10554
|
@pulumi.getter(name="foreignKeyChecks")
|
8937
10555
|
def foreign_key_checks(self) -> bool:
|
@@ -8965,6 +10583,14 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8965
10583
|
"""
|
8966
10584
|
return pulumi.get(self, "global_connection_memory_tracking")
|
8967
10585
|
|
10586
|
+
@property
|
10587
|
+
@pulumi.getter(name="groupConcatMaxLen")
|
10588
|
+
def group_concat_max_len(self) -> str:
|
10589
|
+
"""
|
10590
|
+
Specifies the maximum permitted result length in bytes for the GROUP_CONCAT() function.
|
10591
|
+
"""
|
10592
|
+
return pulumi.get(self, "group_concat_max_len")
|
10593
|
+
|
8968
10594
|
@property
|
8969
10595
|
@pulumi.getter(name="groupReplicationConsistency")
|
8970
10596
|
def group_replication_consistency(self) -> str:
|
@@ -8985,6 +10611,22 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
8985
10611
|
"""
|
8986
10612
|
return pulumi.get(self, "information_schema_stats_expiry")
|
8987
10613
|
|
10614
|
+
@property
|
10615
|
+
@pulumi.getter(name="innodbAdaptiveHashIndex")
|
10616
|
+
def innodb_adaptive_hash_index(self) -> bool:
|
10617
|
+
"""
|
10618
|
+
Whether the InnoDB adaptive hash index is enabled or disabled. It may be desirable, depending on your workload, to dynamically enable or disable adaptive hash indexing to improve query performance. Because the adaptive hash index may not be useful for all workloads, conduct benchmarks with it both enabled and disabled, using realistic workloads.
|
10619
|
+
"""
|
10620
|
+
return pulumi.get(self, "innodb_adaptive_hash_index")
|
10621
|
+
|
10622
|
+
@property
|
10623
|
+
@pulumi.getter(name="innodbAutoincLockMode")
|
10624
|
+
def innodb_autoinc_lock_mode(self) -> int:
|
10625
|
+
"""
|
10626
|
+
The lock mode to use for generating auto-increment values. Permissible values are 0, 1, or 2, for traditional, consecutive, or interleaved, respectively.
|
10627
|
+
"""
|
10628
|
+
return pulumi.get(self, "innodb_autoinc_lock_mode")
|
10629
|
+
|
8988
10630
|
@property
|
8989
10631
|
@pulumi.getter(name="innodbBufferPoolDumpPct")
|
8990
10632
|
def innodb_buffer_pool_dump_pct(self) -> int:
|
@@ -9009,6 +10651,14 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9009
10651
|
"""
|
9010
10652
|
return pulumi.get(self, "innodb_buffer_pool_size")
|
9011
10653
|
|
10654
|
+
@property
|
10655
|
+
@pulumi.getter(name="innodbChangeBuffering")
|
10656
|
+
def innodb_change_buffering(self) -> str:
|
10657
|
+
"""
|
10658
|
+
Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially. Permitted values are described in the following table. Values may also be specified numerically.
|
10659
|
+
"""
|
10660
|
+
return pulumi.get(self, "innodb_change_buffering")
|
10661
|
+
|
9012
10662
|
@property
|
9013
10663
|
@pulumi.getter(name="innodbDdlBufferSize")
|
9014
10664
|
def innodb_ddl_buffer_size(self) -> str:
|
@@ -9105,6 +10755,48 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9105
10755
|
"""
|
9106
10756
|
return pulumi.get(self, "innodb_max_purge_lag_delay")
|
9107
10757
|
|
10758
|
+
@property
|
10759
|
+
@pulumi.getter(name="innodbNumaInterleave")
|
10760
|
+
def innodb_numa_interleave(self) -> bool:
|
10761
|
+
"""
|
10762
|
+
Enables the NUMA interleave memory policy for allocation of the InnoDB buffer pool. When innodb_numa_interleave is enabled, the NUMA memory policy is set to MPOL_INTERLEAVE for the mysqld process. After the InnoDB buffer pool is allocated, the NUMA memory policy is set back to MPOL_DEFAULT. For the innodb_numa_interleave option to be available, MySQL must be compiled on a NUMA-enabled Linux system.
|
10763
|
+
"""
|
10764
|
+
return pulumi.get(self, "innodb_numa_interleave")
|
10765
|
+
|
10766
|
+
@property
|
10767
|
+
@pulumi.getter(name="innodbOnlineAlterLogMaxSize")
|
10768
|
+
def innodb_online_alter_log_max_size(self) -> str:
|
10769
|
+
"""
|
10770
|
+
Specifies an upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables. There is one such log file for each index being created or table being altered. This log file stores data inserted, updated, or deleted in the table during the DDL operation.
|
10771
|
+
"""
|
10772
|
+
return pulumi.get(self, "innodb_online_alter_log_max_size")
|
10773
|
+
|
10774
|
+
@property
|
10775
|
+
@pulumi.getter(name="innodbRedoLogCapacity")
|
10776
|
+
def innodb_redo_log_capacity(self) -> str:
|
10777
|
+
"""
|
10778
|
+
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, 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, then the default innodb_redo_log_capacity value is used.
|
10779
|
+
"""
|
10780
|
+
return pulumi.get(self, "innodb_redo_log_capacity")
|
10781
|
+
|
10782
|
+
@property
|
10783
|
+
@pulumi.getter(name="innodbRollbackOnTimeout")
|
10784
|
+
def innodb_rollback_on_timeout(self) -> bool:
|
10785
|
+
"""
|
10786
|
+
InnoDB rolls back only the last statement on a transaction timeout by default. If --innodb-rollback-on-timeout is specified, a transaction timeout causes InnoDB to abort and roll back the entire transaction.
|
10787
|
+
"""
|
10788
|
+
return pulumi.get(self, "innodb_rollback_on_timeout")
|
10789
|
+
|
10790
|
+
@property
|
10791
|
+
@pulumi.getter(name="innodbSortBufferSize")
|
10792
|
+
def innodb_sort_buffer_size(self) -> int:
|
10793
|
+
"""
|
10794
|
+
This variable defines:
|
10795
|
+
* The sort buffer size for online DDL operations that create or rebuild secondary indexes. However, as of MySQL 8.0.27, this responsibility is subsumed by the innodb_ddl_buffer_size variable.
|
10796
|
+
* The amount by which the temporary log file is extended when recording concurrent DML during an online DDL operation, and the size of the temporary log file read buffer and write buffer.
|
10797
|
+
"""
|
10798
|
+
return pulumi.get(self, "innodb_sort_buffer_size")
|
10799
|
+
|
9108
10800
|
@property
|
9109
10801
|
@pulumi.getter(name="innodbStatsPersistentSamplePages")
|
9110
10802
|
def innodb_stats_persistent_sample_pages(self) -> str:
|
@@ -9121,6 +10813,22 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9121
10813
|
"""
|
9122
10814
|
return pulumi.get(self, "innodb_stats_transient_sample_pages")
|
9123
10815
|
|
10816
|
+
@property
|
10817
|
+
@pulumi.getter(name="innodbStrictMode")
|
10818
|
+
def innodb_strict_mode(self) -> bool:
|
10819
|
+
"""
|
10820
|
+
When you enable innodbStrictMode, the InnoDB storage engine returns errors instead of warnings for invalid or incompatible table options.
|
10821
|
+
"""
|
10822
|
+
return pulumi.get(self, "innodb_strict_mode")
|
10823
|
+
|
10824
|
+
@property
|
10825
|
+
@pulumi.getter(name="innodbUndoLogTruncate")
|
10826
|
+
def innodb_undo_log_truncate(self) -> bool:
|
10827
|
+
"""
|
10828
|
+
When enabled, undo tablespaces that exceed the threshold value defined by innodb_max_undo_log_size are marked for truncation. Only undo tablespaces can be truncated. Truncating undo logs that reside in the system tablespace is not supported. For truncation to occur, there must be at least two undo tablespaces.
|
10829
|
+
"""
|
10830
|
+
return pulumi.get(self, "innodb_undo_log_truncate")
|
10831
|
+
|
9124
10832
|
@property
|
9125
10833
|
@pulumi.getter(name="interactiveTimeout")
|
9126
10834
|
def interactive_timeout(self) -> int:
|
@@ -9129,14 +10837,30 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9129
10837
|
"""
|
9130
10838
|
return pulumi.get(self, "interactive_timeout")
|
9131
10839
|
|
10840
|
+
@property
|
10841
|
+
@pulumi.getter(name="joinBufferSize")
|
10842
|
+
def join_buffer_size(self) -> str:
|
10843
|
+
"""
|
10844
|
+
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. 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. 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. For a complex join between several tables for which indexes are not used, multiple join buffers might be necessary.
|
10845
|
+
"""
|
10846
|
+
return pulumi.get(self, "join_buffer_size")
|
10847
|
+
|
9132
10848
|
@property
|
9133
10849
|
@pulumi.getter(name="localInfile")
|
9134
10850
|
def local_infile(self) -> bool:
|
9135
10851
|
"""
|
9136
|
-
|
10852
|
+
This variable controls server-side LOCAL capability for LOAD DATA statements. Depending on the local_infile setting, the server refuses or permits local data loading by clients that have LOCAL enabled on the client side.
|
9137
10853
|
"""
|
9138
10854
|
return pulumi.get(self, "local_infile")
|
9139
10855
|
|
10856
|
+
@property
|
10857
|
+
@pulumi.getter(name="longQueryTime")
|
10858
|
+
def long_query_time(self) -> int:
|
10859
|
+
"""
|
10860
|
+
If a query takes longer than this many seconds, the server increments the Slow_queries status variable. If the slow query log is enabled, the query is logged to the slow query log file. This value is measured in real time, not CPU time, so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one.
|
10861
|
+
"""
|
10862
|
+
return pulumi.get(self, "long_query_time")
|
10863
|
+
|
9140
10864
|
@property
|
9141
10865
|
@pulumi.getter(name="mandatoryRoles")
|
9142
10866
|
def mandatory_roles(self) -> str:
|
@@ -9201,6 +10925,22 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9201
10925
|
"""
|
9202
10926
|
return pulumi.get(self, "max_prepared_stmt_count")
|
9203
10927
|
|
10928
|
+
@property
|
10929
|
+
@pulumi.getter(name="maxSeeksForKey")
|
10930
|
+
def max_seeks_for_key(self) -> str:
|
10931
|
+
"""
|
10932
|
+
Limit the assumed maximum number of seeks when looking up rows based on a key. 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, regardless of the actual cardinality of the index (see Section 15.7.7.22, “SHOW INDEX Statement”). By setting this to a low value (say, 100), you can force MySQL to prefer indexes instead of table scans.
|
10933
|
+
"""
|
10934
|
+
return pulumi.get(self, "max_seeks_for_key")
|
10935
|
+
|
10936
|
+
@property
|
10937
|
+
@pulumi.getter(name="maxUserConnections")
|
10938
|
+
def max_user_connections(self) -> str:
|
10939
|
+
"""
|
10940
|
+
The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means “no limit.” This variable has a global value that can be set at server startup or runtime. 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.
|
10941
|
+
"""
|
10942
|
+
return pulumi.get(self, "max_user_connections")
|
10943
|
+
|
9204
10944
|
@property
|
9205
10945
|
@pulumi.getter(name="mysqlFirewallMode")
|
9206
10946
|
def mysql_firewall_mode(self) -> bool:
|
@@ -9365,6 +11105,14 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9365
11105
|
"""
|
9366
11106
|
return pulumi.get(self, "net_write_timeout")
|
9367
11107
|
|
11108
|
+
@property
|
11109
|
+
@pulumi.getter(name="optimizerSwitch")
|
11110
|
+
def optimizer_switch(self) -> str:
|
11111
|
+
"""
|
11112
|
+
The optimizer_switch system variable enables control over optimizer behavior. 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. This variable has global and session values and can be changed at runtime. The global default can be set at server startup.
|
11113
|
+
"""
|
11114
|
+
return pulumi.get(self, "optimizer_switch")
|
11115
|
+
|
9368
11116
|
@property
|
9369
11117
|
@pulumi.getter(name="parserMaxMemSize")
|
9370
11118
|
def parser_max_mem_size(self) -> str:
|
@@ -9384,13 +11132,21 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9384
11132
|
|
9385
11133
|
@property
|
9386
11134
|
@pulumi.getter(name="queryPreallocSize")
|
9387
|
-
@_utilities.deprecated("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
9388
11135
|
def query_prealloc_size(self) -> str:
|
9389
11136
|
"""
|
9390
11137
|
("query_prealloc_size") DEPRECATED -- variable should not be settable and will be ignored
|
9391
11138
|
"""
|
9392
11139
|
return pulumi.get(self, "query_prealloc_size")
|
9393
11140
|
|
11141
|
+
@property
|
11142
|
+
@pulumi.getter(name="rangeOptimizerMaxMemSize")
|
11143
|
+
@_utilities.deprecated("""The 'query_prealloc_size' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
11144
|
+
def range_optimizer_max_mem_size(self) -> str:
|
11145
|
+
"""
|
11146
|
+
The limit on memory consumption for the range optimizer. A value of 0 means “no limit.” 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, it abandons the plan and considers other plans.
|
11147
|
+
"""
|
11148
|
+
return pulumi.get(self, "range_optimizer_max_mem_size")
|
11149
|
+
|
9394
11150
|
@property
|
9395
11151
|
@pulumi.getter(name="regexpTimeLimit")
|
9396
11152
|
def regexp_time_limit(self) -> int:
|
@@ -9399,6 +11155,54 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9399
11155
|
"""
|
9400
11156
|
return pulumi.get(self, "regexp_time_limit")
|
9401
11157
|
|
11158
|
+
@property
|
11159
|
+
@pulumi.getter(name="relayLogSpaceLimit")
|
11160
|
+
def relay_log_space_limit(self) -> str:
|
11161
|
+
"""
|
11162
|
+
The maximum amount of space to use for all relay logs.
|
11163
|
+
"""
|
11164
|
+
return pulumi.get(self, "relay_log_space_limit")
|
11165
|
+
|
11166
|
+
@property
|
11167
|
+
@pulumi.getter(name="replicaNetTimeout")
|
11168
|
+
def replica_net_timeout(self) -> int:
|
11169
|
+
"""
|
11170
|
+
Specifies the number of seconds to wait for more data or a heartbeat signal from the source before the replica considers the connection broken, 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.
|
11171
|
+
"""
|
11172
|
+
return pulumi.get(self, "replica_net_timeout")
|
11173
|
+
|
11174
|
+
@property
|
11175
|
+
@pulumi.getter(name="replicaParallelWorkers")
|
11176
|
+
def replica_parallel_workers(self) -> int:
|
11177
|
+
"""
|
11178
|
+
Beginning with MySQL 8.0.26, slave_parallel_workers is deprecated, and you should use replica_parallel_workers instead. (Prior to MySQL 8.0.26, you must use slave_parallel_workers to set the number of applier threads.)
|
11179
|
+
"""
|
11180
|
+
return pulumi.get(self, "replica_parallel_workers")
|
11181
|
+
|
11182
|
+
@property
|
11183
|
+
@pulumi.getter(name="replicaTypeConversions")
|
11184
|
+
def replica_type_conversions(self) -> str:
|
11185
|
+
"""
|
11186
|
+
From MySQL 8.0.26, use replica_type_conversions in place of slave_type_conversions, which is deprecated from that release. In releases before MySQL 8.0.26, use slave_type_conversions.
|
11187
|
+
"""
|
11188
|
+
return pulumi.get(self, "replica_type_conversions")
|
11189
|
+
|
11190
|
+
@property
|
11191
|
+
@pulumi.getter(name="requireSecureTransport")
|
11192
|
+
def require_secure_transport(self) -> bool:
|
11193
|
+
"""
|
11194
|
+
Whether client connections to the server are required to use some form of secure transport. 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. The server rejects nonsecure connection attempts, which fail with an ER_SECURE_TRANSPORT_REQUIRED error.
|
11195
|
+
"""
|
11196
|
+
return pulumi.get(self, "require_secure_transport")
|
11197
|
+
|
11198
|
+
@property
|
11199
|
+
@pulumi.getter(name="skipNameResolve")
|
11200
|
+
def skip_name_resolve(self) -> bool:
|
11201
|
+
"""
|
11202
|
+
Whether to resolve host names when checking client connections. If this variable is OFF, mysqld resolves host names when checking client connections. If it is ON, mysqld uses only IP numbers; in this case, all Host column values in the grant tables must be IP addresses. See Section 7.1.12.3, “DNS Lookups and the Host Cache”.
|
11203
|
+
"""
|
11204
|
+
return pulumi.get(self, "skip_name_resolve")
|
11205
|
+
|
9402
11206
|
@property
|
9403
11207
|
@pulumi.getter(name="sortBufferSize")
|
9404
11208
|
def sort_buffer_size(self) -> str:
|
@@ -9407,6 +11211,14 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9407
11211
|
"""
|
9408
11212
|
return pulumi.get(self, "sort_buffer_size")
|
9409
11213
|
|
11214
|
+
@property
|
11215
|
+
@pulumi.getter(name="sqlGenerateInvisiblePrimaryKey")
|
11216
|
+
def sql_generate_invisible_primary_key(self) -> bool:
|
11217
|
+
"""
|
11218
|
+
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.
|
11219
|
+
"""
|
11220
|
+
return pulumi.get(self, "sql_generate_invisible_primary_key")
|
11221
|
+
|
9410
11222
|
@property
|
9411
11223
|
@pulumi.getter(name="sqlMode")
|
9412
11224
|
def sql_mode(self) -> str:
|
@@ -9431,6 +11243,30 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9431
11243
|
"""
|
9432
11244
|
return pulumi.get(self, "sql_warnings")
|
9433
11245
|
|
11246
|
+
@property
|
11247
|
+
@pulumi.getter(name="tableDefinitionCache")
|
11248
|
+
def table_definition_cache(self) -> int:
|
11249
|
+
"""
|
11250
|
+
The number of table definitions that can be stored in the table definition cache. If you use a large number of tables, you can create a large table definition cache to speed up opening of tables. The table definition cache takes less space and does not use file descriptors, unlike the normal table cache.
|
11251
|
+
"""
|
11252
|
+
return pulumi.get(self, "table_definition_cache")
|
11253
|
+
|
11254
|
+
@property
|
11255
|
+
@pulumi.getter(name="tableOpenCache")
|
11256
|
+
def table_open_cache(self) -> int:
|
11257
|
+
"""
|
11258
|
+
The number of open tables for all threads. Increasing this value increases the number of file descriptors that mysqld requires.
|
11259
|
+
"""
|
11260
|
+
return pulumi.get(self, "table_open_cache")
|
11261
|
+
|
11262
|
+
@property
|
11263
|
+
@pulumi.getter(name="temptableMaxRam")
|
11264
|
+
def temptable_max_ram(self) -> str:
|
11265
|
+
"""
|
11266
|
+
Defines the maximum amount of memory that can be occupied by the TempTable storage engine before it starts storing data on disk. The default value is 1073741824 bytes (1GiB). For more information, see Section 10.4.4, “Internal Temporary Table Use in MySQL”.
|
11267
|
+
"""
|
11268
|
+
return pulumi.get(self, "temptable_max_ram")
|
11269
|
+
|
9434
11270
|
@property
|
9435
11271
|
@pulumi.getter(name="threadPoolDedicatedListeners")
|
9436
11272
|
def thread_pool_dedicated_listeners(self) -> bool:
|
@@ -9447,6 +11283,30 @@ class GetMysqlConfigurationsConfigurationVariableResult(dict):
|
|
9447
11283
|
"""
|
9448
11284
|
return pulumi.get(self, "thread_pool_max_transactions_limit")
|
9449
11285
|
|
11286
|
+
@property
|
11287
|
+
@pulumi.getter(name="threadPoolQueryThreadsPerGroup")
|
11288
|
+
def thread_pool_query_threads_per_group(self) -> int:
|
11289
|
+
"""
|
11290
|
+
The maximum number of query threads permitted in a thread group. 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. The default value of 1 means there is one active query thread in each thread group, which works well for many loads. When you are using the high concurrency thread pool algorithm (thread_pool_algorithm = 1), consider increasing the value if you experience slower response times due to long-running transactions.
|
11291
|
+
"""
|
11292
|
+
return pulumi.get(self, "thread_pool_query_threads_per_group")
|
11293
|
+
|
11294
|
+
@property
|
11295
|
+
@pulumi.getter(name="threadPoolSize")
|
11296
|
+
def thread_pool_size(self) -> int:
|
11297
|
+
"""
|
11298
|
+
The number of thread groups in the thread pool. This is the most important parameter controlling thread pool performance. It affects how many statements can execute simultaneously. If a value outside the range of permissible values is specified, the thread pool plugin does not load and the server writes a message to the error log.
|
11299
|
+
"""
|
11300
|
+
return pulumi.get(self, "thread_pool_size")
|
11301
|
+
|
11302
|
+
@property
|
11303
|
+
@pulumi.getter(name="threadPoolTransactionDelay")
|
11304
|
+
def thread_pool_transaction_delay(self) -> int:
|
11305
|
+
"""
|
11306
|
+
The delay period before executing a new transaction, in milliseconds. The maximum value is 300000 (5 minutes). A transaction delay can be used in cases where parallel transactions affect the performance of other operations due to resource contention. For example, if parallel transactions affect index creation or an online buffer pool resizing operation, you can configure a transaction delay to reduce resource contention while those operations are running.
|
11307
|
+
"""
|
11308
|
+
return pulumi.get(self, "thread_pool_transaction_delay")
|
11309
|
+
|
9450
11310
|
@property
|
9451
11311
|
@pulumi.getter(name="timeZone")
|
9452
11312
|
def time_zone(self) -> str:
|
@@ -9510,6 +11370,7 @@ class GetMysqlConfigurationsFilterResult(dict):
|
|
9510
11370
|
@pulumi.output_type
|
9511
11371
|
class GetMysqlDbSystemBackupPolicyResult(dict):
|
9512
11372
|
def __init__(__self__, *,
|
11373
|
+
copy_policies: Sequence['outputs.GetMysqlDbSystemBackupPolicyCopyPolicyResult'],
|
9513
11374
|
defined_tags: Mapping[str, str],
|
9514
11375
|
freeform_tags: Mapping[str, str],
|
9515
11376
|
is_enabled: bool,
|
@@ -9517,6 +11378,7 @@ class GetMysqlDbSystemBackupPolicyResult(dict):
|
|
9517
11378
|
retention_in_days: int,
|
9518
11379
|
window_start_time: str):
|
9519
11380
|
"""
|
11381
|
+
:param Sequence['GetMysqlDbSystemBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
|
9520
11382
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
9521
11383
|
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
9522
11384
|
:param bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
|
@@ -9524,6 +11386,7 @@ class GetMysqlDbSystemBackupPolicyResult(dict):
|
|
9524
11386
|
:param int retention_in_days: The number of days automated backups are retained.
|
9525
11387
|
:param str window_start_time: The start time of the maintenance window.
|
9526
11388
|
"""
|
11389
|
+
pulumi.set(__self__, "copy_policies", copy_policies)
|
9527
11390
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
9528
11391
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
9529
11392
|
pulumi.set(__self__, "is_enabled", is_enabled)
|
@@ -9531,6 +11394,14 @@ class GetMysqlDbSystemBackupPolicyResult(dict):
|
|
9531
11394
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
9532
11395
|
pulumi.set(__self__, "window_start_time", window_start_time)
|
9533
11396
|
|
11397
|
+
@property
|
11398
|
+
@pulumi.getter(name="copyPolicies")
|
11399
|
+
def copy_policies(self) -> Sequence['outputs.GetMysqlDbSystemBackupPolicyCopyPolicyResult']:
|
11400
|
+
"""
|
11401
|
+
List of policies of a DB system to schedule cross-region DB system backup copy.
|
11402
|
+
"""
|
11403
|
+
return pulumi.get(self, "copy_policies")
|
11404
|
+
|
9534
11405
|
@property
|
9535
11406
|
@pulumi.getter(name="definedTags")
|
9536
11407
|
def defined_tags(self) -> Mapping[str, str]:
|
@@ -9580,6 +11451,35 @@ class GetMysqlDbSystemBackupPolicyResult(dict):
|
|
9580
11451
|
return pulumi.get(self, "window_start_time")
|
9581
11452
|
|
9582
11453
|
|
11454
|
+
@pulumi.output_type
|
11455
|
+
class GetMysqlDbSystemBackupPolicyCopyPolicyResult(dict):
|
11456
|
+
def __init__(__self__, *,
|
11457
|
+
backup_copy_retention_in_days: int,
|
11458
|
+
copy_to_region: str):
|
11459
|
+
"""
|
11460
|
+
:param int backup_copy_retention_in_days: Number of days to retain the copied DB system backup.
|
11461
|
+
:param str copy_to_region: The destination region name to which the DB system backup will be copied.
|
11462
|
+
"""
|
11463
|
+
pulumi.set(__self__, "backup_copy_retention_in_days", backup_copy_retention_in_days)
|
11464
|
+
pulumi.set(__self__, "copy_to_region", copy_to_region)
|
11465
|
+
|
11466
|
+
@property
|
11467
|
+
@pulumi.getter(name="backupCopyRetentionInDays")
|
11468
|
+
def backup_copy_retention_in_days(self) -> int:
|
11469
|
+
"""
|
11470
|
+
Number of days to retain the copied DB system backup.
|
11471
|
+
"""
|
11472
|
+
return pulumi.get(self, "backup_copy_retention_in_days")
|
11473
|
+
|
11474
|
+
@property
|
11475
|
+
@pulumi.getter(name="copyToRegion")
|
11476
|
+
def copy_to_region(self) -> str:
|
11477
|
+
"""
|
11478
|
+
The destination region name to which the DB system backup will be copied.
|
11479
|
+
"""
|
11480
|
+
return pulumi.get(self, "copy_to_region")
|
11481
|
+
|
11482
|
+
|
9583
11483
|
@pulumi.output_type
|
9584
11484
|
class GetMysqlDbSystemBackupPolicyPitrPolicyResult(dict):
|
9585
11485
|
def __init__(__self__, *,
|
@@ -9610,6 +11510,7 @@ class GetMysqlDbSystemChannelResult(dict):
|
|
9610
11510
|
lifecycle_details: str,
|
9611
11511
|
sources: Sequence['outputs.GetMysqlDbSystemChannelSourceResult'],
|
9612
11512
|
state: str,
|
11513
|
+
system_tags: Mapping[str, str],
|
9613
11514
|
targets: Sequence['outputs.GetMysqlDbSystemChannelTargetResult'],
|
9614
11515
|
time_created: str,
|
9615
11516
|
time_updated: str):
|
@@ -9623,6 +11524,7 @@ class GetMysqlDbSystemChannelResult(dict):
|
|
9623
11524
|
:param str lifecycle_details: Additional information about the current lifecycleState.
|
9624
11525
|
:param Sequence['GetMysqlDbSystemChannelSourceArgs'] sources: Parameters detailing how to provision the initial data of the DB System.
|
9625
11526
|
:param str state: The current state of the DB System.
|
11527
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
9626
11528
|
:param Sequence['GetMysqlDbSystemChannelTargetArgs'] targets: Details about the Channel target.
|
9627
11529
|
:param str time_created: The date and time the DB System was created.
|
9628
11530
|
:param str time_updated: The time the DB System was last updated.
|
@@ -9636,6 +11538,7 @@ class GetMysqlDbSystemChannelResult(dict):
|
|
9636
11538
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
9637
11539
|
pulumi.set(__self__, "sources", sources)
|
9638
11540
|
pulumi.set(__self__, "state", state)
|
11541
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
9639
11542
|
pulumi.set(__self__, "targets", targets)
|
9640
11543
|
pulumi.set(__self__, "time_created", time_created)
|
9641
11544
|
pulumi.set(__self__, "time_updated", time_updated)
|
@@ -9712,6 +11615,14 @@ class GetMysqlDbSystemChannelResult(dict):
|
|
9712
11615
|
"""
|
9713
11616
|
return pulumi.get(self, "state")
|
9714
11617
|
|
11618
|
+
@property
|
11619
|
+
@pulumi.getter(name="systemTags")
|
11620
|
+
def system_tags(self) -> Mapping[str, str]:
|
11621
|
+
"""
|
11622
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
11623
|
+
"""
|
11624
|
+
return pulumi.get(self, "system_tags")
|
11625
|
+
|
9715
11626
|
@property
|
9716
11627
|
@pulumi.getter
|
9717
11628
|
def targets(self) -> Sequence['outputs.GetMysqlDbSystemChannelTargetResult']:
|
@@ -10571,6 +12482,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
|
|
10571
12482
|
sources: Sequence['outputs.GetMysqlDbSystemsDbSystemSourceResult'],
|
10572
12483
|
state: str,
|
10573
12484
|
subnet_id: str,
|
12485
|
+
system_tags: Mapping[str, str],
|
10574
12486
|
time_created: str,
|
10575
12487
|
time_updated: str):
|
10576
12488
|
"""
|
@@ -10616,6 +12528,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
|
|
10616
12528
|
:param Sequence['GetMysqlDbSystemsDbSystemSourceArgs'] sources: Parameters detailing how to provision the initial data of the DB System.
|
10617
12529
|
:param str state: DbSystem Lifecycle State
|
10618
12530
|
:param str subnet_id: The OCID of the subnet the DB System is associated with.
|
12531
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
10619
12532
|
:param str time_created: The date and time the DB System was created.
|
10620
12533
|
:param str time_updated: The time the DB System was last updated.
|
10621
12534
|
"""
|
@@ -10660,6 +12573,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
|
|
10660
12573
|
pulumi.set(__self__, "sources", sources)
|
10661
12574
|
pulumi.set(__self__, "state", state)
|
10662
12575
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
12576
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
10663
12577
|
pulumi.set(__self__, "time_created", time_created)
|
10664
12578
|
pulumi.set(__self__, "time_updated", time_updated)
|
10665
12579
|
|
@@ -10986,6 +12900,14 @@ class GetMysqlDbSystemsDbSystemResult(dict):
|
|
10986
12900
|
"""
|
10987
12901
|
return pulumi.get(self, "subnet_id")
|
10988
12902
|
|
12903
|
+
@property
|
12904
|
+
@pulumi.getter(name="systemTags")
|
12905
|
+
def system_tags(self) -> Mapping[str, str]:
|
12906
|
+
"""
|
12907
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
12908
|
+
"""
|
12909
|
+
return pulumi.get(self, "system_tags")
|
12910
|
+
|
10989
12911
|
@property
|
10990
12912
|
@pulumi.getter(name="timeCreated")
|
10991
12913
|
def time_created(self) -> str:
|
@@ -11006,6 +12928,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
|
|
11006
12928
|
@pulumi.output_type
|
11007
12929
|
class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
|
11008
12930
|
def __init__(__self__, *,
|
12931
|
+
copy_policies: Sequence['outputs.GetMysqlDbSystemsDbSystemBackupPolicyCopyPolicyResult'],
|
11009
12932
|
defined_tags: Mapping[str, str],
|
11010
12933
|
freeform_tags: Mapping[str, str],
|
11011
12934
|
is_enabled: bool,
|
@@ -11013,6 +12936,7 @@ class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
|
|
11013
12936
|
retention_in_days: int,
|
11014
12937
|
window_start_time: str):
|
11015
12938
|
"""
|
12939
|
+
:param Sequence['GetMysqlDbSystemsDbSystemBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
|
11016
12940
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
11017
12941
|
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
11018
12942
|
:param bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
|
@@ -11020,6 +12944,7 @@ class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
|
|
11020
12944
|
:param int retention_in_days: The number of days automated backups are retained.
|
11021
12945
|
:param str window_start_time: The start time of the maintenance window.
|
11022
12946
|
"""
|
12947
|
+
pulumi.set(__self__, "copy_policies", copy_policies)
|
11023
12948
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
11024
12949
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
11025
12950
|
pulumi.set(__self__, "is_enabled", is_enabled)
|
@@ -11027,6 +12952,14 @@ class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
|
|
11027
12952
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
11028
12953
|
pulumi.set(__self__, "window_start_time", window_start_time)
|
11029
12954
|
|
12955
|
+
@property
|
12956
|
+
@pulumi.getter(name="copyPolicies")
|
12957
|
+
def copy_policies(self) -> Sequence['outputs.GetMysqlDbSystemsDbSystemBackupPolicyCopyPolicyResult']:
|
12958
|
+
"""
|
12959
|
+
List of policies of a DB system to schedule cross-region DB system backup copy.
|
12960
|
+
"""
|
12961
|
+
return pulumi.get(self, "copy_policies")
|
12962
|
+
|
11030
12963
|
@property
|
11031
12964
|
@pulumi.getter(name="definedTags")
|
11032
12965
|
def defined_tags(self) -> Mapping[str, str]:
|
@@ -11076,6 +13009,35 @@ class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
|
|
11076
13009
|
return pulumi.get(self, "window_start_time")
|
11077
13010
|
|
11078
13011
|
|
13012
|
+
@pulumi.output_type
|
13013
|
+
class GetMysqlDbSystemsDbSystemBackupPolicyCopyPolicyResult(dict):
|
13014
|
+
def __init__(__self__, *,
|
13015
|
+
backup_copy_retention_in_days: int,
|
13016
|
+
copy_to_region: str):
|
13017
|
+
"""
|
13018
|
+
:param int backup_copy_retention_in_days: Number of days to retain the copied DB system backup.
|
13019
|
+
:param str copy_to_region: The destination region name to which the DB system backup will be copied.
|
13020
|
+
"""
|
13021
|
+
pulumi.set(__self__, "backup_copy_retention_in_days", backup_copy_retention_in_days)
|
13022
|
+
pulumi.set(__self__, "copy_to_region", copy_to_region)
|
13023
|
+
|
13024
|
+
@property
|
13025
|
+
@pulumi.getter(name="backupCopyRetentionInDays")
|
13026
|
+
def backup_copy_retention_in_days(self) -> int:
|
13027
|
+
"""
|
13028
|
+
Number of days to retain the copied DB system backup.
|
13029
|
+
"""
|
13030
|
+
return pulumi.get(self, "backup_copy_retention_in_days")
|
13031
|
+
|
13032
|
+
@property
|
13033
|
+
@pulumi.getter(name="copyToRegion")
|
13034
|
+
def copy_to_region(self) -> str:
|
13035
|
+
"""
|
13036
|
+
The destination region name to which the DB system backup will be copied.
|
13037
|
+
"""
|
13038
|
+
return pulumi.get(self, "copy_to_region")
|
13039
|
+
|
13040
|
+
|
11079
13041
|
@pulumi.output_type
|
11080
13042
|
class GetMysqlDbSystemsDbSystemBackupPolicyPitrPolicyResult(dict):
|
11081
13043
|
def __init__(__self__, *,
|
@@ -11106,6 +13068,7 @@ class GetMysqlDbSystemsDbSystemChannelResult(dict):
|
|
11106
13068
|
lifecycle_details: str,
|
11107
13069
|
sources: Sequence['outputs.GetMysqlDbSystemsDbSystemChannelSourceResult'],
|
11108
13070
|
state: str,
|
13071
|
+
system_tags: Mapping[str, str],
|
11109
13072
|
targets: Sequence['outputs.GetMysqlDbSystemsDbSystemChannelTargetResult'],
|
11110
13073
|
time_created: str,
|
11111
13074
|
time_updated: str):
|
@@ -11119,6 +13082,7 @@ class GetMysqlDbSystemsDbSystemChannelResult(dict):
|
|
11119
13082
|
:param str lifecycle_details: Additional information about the current lifecycleState.
|
11120
13083
|
:param Sequence['GetMysqlDbSystemsDbSystemChannelSourceArgs'] sources: Parameters detailing how to provision the initial data of the DB System.
|
11121
13084
|
:param str state: DbSystem Lifecycle State
|
13085
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
11122
13086
|
:param Sequence['GetMysqlDbSystemsDbSystemChannelTargetArgs'] targets: Details about the Channel target.
|
11123
13087
|
:param str time_created: The date and time the DB System was created.
|
11124
13088
|
:param str time_updated: The time the DB System was last updated.
|
@@ -11132,6 +13096,7 @@ class GetMysqlDbSystemsDbSystemChannelResult(dict):
|
|
11132
13096
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
11133
13097
|
pulumi.set(__self__, "sources", sources)
|
11134
13098
|
pulumi.set(__self__, "state", state)
|
13099
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
11135
13100
|
pulumi.set(__self__, "targets", targets)
|
11136
13101
|
pulumi.set(__self__, "time_created", time_created)
|
11137
13102
|
pulumi.set(__self__, "time_updated", time_updated)
|
@@ -11208,6 +13173,14 @@ class GetMysqlDbSystemsDbSystemChannelResult(dict):
|
|
11208
13173
|
"""
|
11209
13174
|
return pulumi.get(self, "state")
|
11210
13175
|
|
13176
|
+
@property
|
13177
|
+
@pulumi.getter(name="systemTags")
|
13178
|
+
def system_tags(self) -> Mapping[str, str]:
|
13179
|
+
"""
|
13180
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
13181
|
+
"""
|
13182
|
+
return pulumi.get(self, "system_tags")
|
13183
|
+
|
11211
13184
|
@property
|
11212
13185
|
@pulumi.getter
|
11213
13186
|
def targets(self) -> Sequence['outputs.GetMysqlDbSystemsDbSystemChannelTargetResult']:
|