pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.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 +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/kms/vault_verification.py +62 -2
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -427,7 +427,33 @@ __all__ = [
|
|
427
427
|
'GetManagedMySqlDatabaseConfigurationDataFilterResult',
|
428
428
|
'GetManagedMySqlDatabaseConfigurationDataMySqlConfigurationDataCollectionResult',
|
429
429
|
'GetManagedMySqlDatabaseConfigurationDataMySqlConfigurationDataCollectionItemResult',
|
430
|
+
'GetManagedMySqlDatabaseDigestErrorsFilterResult',
|
431
|
+
'GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionResult',
|
432
|
+
'GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemResult',
|
433
|
+
'GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemErrorResult',
|
430
434
|
'GetManagedMySqlDatabaseHeatWaveNodeResult',
|
435
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersFilterResult',
|
436
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionResult',
|
437
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionItemResult',
|
438
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryResult',
|
439
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorResult',
|
440
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorResult',
|
441
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorWorkerErrorResult',
|
442
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorResult',
|
443
|
+
'GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorFetchErrorResult',
|
444
|
+
'GetManagedMySqlDatabaseInboundReplicationsFilterResult',
|
445
|
+
'GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionResult',
|
446
|
+
'GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemResult',
|
447
|
+
'GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilterResult',
|
448
|
+
'GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorResult',
|
449
|
+
'GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerErrorResult',
|
450
|
+
'GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchErrorResult',
|
451
|
+
'GetManagedMySqlDatabaseOutboundReplicationsFilterResult',
|
452
|
+
'GetManagedMySqlDatabaseOutboundReplicationsManagedMySqlDatabaseOutboundReplicationCollectionResult',
|
453
|
+
'GetManagedMySqlDatabaseOutboundReplicationsManagedMySqlDatabaseOutboundReplicationCollectionItemResult',
|
454
|
+
'GetManagedMySqlDatabaseQueryDetailQueryExplainPlanResult',
|
455
|
+
'GetManagedMySqlDatabaseQueryDetailQueryMessageResult',
|
456
|
+
'GetManagedMySqlDatabaseQueryDetailQuerySampleDetailResult',
|
431
457
|
'GetManagedMySqlDatabaseSqlDataFilterResult',
|
432
458
|
'GetManagedMySqlDatabaseSqlDataMySqlDataCollectionResult',
|
433
459
|
'GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult',
|
@@ -30365,44 +30391,1318 @@ class GetManagedMySqlDatabaseConfigurationDataMySqlConfigurationDataCollectionIt
|
|
30365
30391
|
return pulumi.get(self, "value")
|
30366
30392
|
|
30367
30393
|
|
30394
|
+
@pulumi.output_type
|
30395
|
+
class GetManagedMySqlDatabaseDigestErrorsFilterResult(dict):
|
30396
|
+
def __init__(__self__, *,
|
30397
|
+
name: builtins.str,
|
30398
|
+
values: Sequence[builtins.str],
|
30399
|
+
regex: Optional[builtins.bool] = None):
|
30400
|
+
pulumi.set(__self__, "name", name)
|
30401
|
+
pulumi.set(__self__, "values", values)
|
30402
|
+
if regex is not None:
|
30403
|
+
pulumi.set(__self__, "regex", regex)
|
30404
|
+
|
30405
|
+
@property
|
30406
|
+
@pulumi.getter
|
30407
|
+
def name(self) -> builtins.str:
|
30408
|
+
return pulumi.get(self, "name")
|
30409
|
+
|
30410
|
+
@property
|
30411
|
+
@pulumi.getter
|
30412
|
+
def values(self) -> Sequence[builtins.str]:
|
30413
|
+
return pulumi.get(self, "values")
|
30414
|
+
|
30415
|
+
@property
|
30416
|
+
@pulumi.getter
|
30417
|
+
def regex(self) -> Optional[builtins.bool]:
|
30418
|
+
return pulumi.get(self, "regex")
|
30419
|
+
|
30420
|
+
|
30421
|
+
@pulumi.output_type
|
30422
|
+
class GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionResult(dict):
|
30423
|
+
def __init__(__self__, *,
|
30424
|
+
items: Sequence['outputs.GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemResult']):
|
30425
|
+
"""
|
30426
|
+
:param Sequence['GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemArgs'] items: The unique set of errors for a given digest.
|
30427
|
+
"""
|
30428
|
+
pulumi.set(__self__, "items", items)
|
30429
|
+
|
30430
|
+
@property
|
30431
|
+
@pulumi.getter
|
30432
|
+
def items(self) -> Sequence['outputs.GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemResult']:
|
30433
|
+
"""
|
30434
|
+
The unique set of errors for a given digest.
|
30435
|
+
"""
|
30436
|
+
return pulumi.get(self, "items")
|
30437
|
+
|
30438
|
+
|
30439
|
+
@pulumi.output_type
|
30440
|
+
class GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemResult(dict):
|
30441
|
+
def __init__(__self__, *,
|
30442
|
+
errors: Sequence['outputs.GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemErrorResult'],
|
30443
|
+
occurrence_count: builtins.int):
|
30444
|
+
"""
|
30445
|
+
:param Sequence['GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemErrorArgs'] errors: The MySQL error, warning or note raised when a query is run, if any.
|
30446
|
+
:param builtins.int occurrence_count: The number of times a MySQL error is encountered.
|
30447
|
+
"""
|
30448
|
+
pulumi.set(__self__, "errors", errors)
|
30449
|
+
pulumi.set(__self__, "occurrence_count", occurrence_count)
|
30450
|
+
|
30451
|
+
@property
|
30452
|
+
@pulumi.getter
|
30453
|
+
def errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemErrorResult']:
|
30454
|
+
"""
|
30455
|
+
The MySQL error, warning or note raised when a query is run, if any.
|
30456
|
+
"""
|
30457
|
+
return pulumi.get(self, "errors")
|
30458
|
+
|
30459
|
+
@property
|
30460
|
+
@pulumi.getter(name="occurrenceCount")
|
30461
|
+
def occurrence_count(self) -> builtins.int:
|
30462
|
+
"""
|
30463
|
+
The number of times a MySQL error is encountered.
|
30464
|
+
"""
|
30465
|
+
return pulumi.get(self, "occurrence_count")
|
30466
|
+
|
30467
|
+
|
30468
|
+
@pulumi.output_type
|
30469
|
+
class GetManagedMySqlDatabaseDigestErrorsMySqlDigestErrorsCollectionItemErrorResult(dict):
|
30470
|
+
def __init__(__self__, *,
|
30471
|
+
code: builtins.int,
|
30472
|
+
level: builtins.str,
|
30473
|
+
message_text: builtins.str):
|
30474
|
+
"""
|
30475
|
+
:param builtins.int code: The MySQL code of the raised error, warning or note.
|
30476
|
+
:param builtins.str level: The level of severity of the MySQL message.
|
30477
|
+
:param builtins.str message_text: The MySQL message text of the raised error, warning or note.
|
30478
|
+
"""
|
30479
|
+
pulumi.set(__self__, "code", code)
|
30480
|
+
pulumi.set(__self__, "level", level)
|
30481
|
+
pulumi.set(__self__, "message_text", message_text)
|
30482
|
+
|
30483
|
+
@property
|
30484
|
+
@pulumi.getter
|
30485
|
+
def code(self) -> builtins.int:
|
30486
|
+
"""
|
30487
|
+
The MySQL code of the raised error, warning or note.
|
30488
|
+
"""
|
30489
|
+
return pulumi.get(self, "code")
|
30490
|
+
|
30491
|
+
@property
|
30492
|
+
@pulumi.getter
|
30493
|
+
def level(self) -> builtins.str:
|
30494
|
+
"""
|
30495
|
+
The level of severity of the MySQL message.
|
30496
|
+
"""
|
30497
|
+
return pulumi.get(self, "level")
|
30498
|
+
|
30499
|
+
@property
|
30500
|
+
@pulumi.getter(name="messageText")
|
30501
|
+
def message_text(self) -> builtins.str:
|
30502
|
+
"""
|
30503
|
+
The MySQL message text of the raised error, warning or note.
|
30504
|
+
"""
|
30505
|
+
return pulumi.get(self, "message_text")
|
30506
|
+
|
30507
|
+
|
30368
30508
|
@pulumi.output_type
|
30369
30509
|
class GetManagedMySqlDatabaseHeatWaveNodeResult(dict):
|
30370
30510
|
def __init__(__self__, *,
|
30371
|
-
id: builtins.str,
|
30372
|
-
status: builtins.str,
|
30373
|
-
time_created: builtins.str):
|
30511
|
+
id: builtins.str,
|
30512
|
+
status: builtins.str,
|
30513
|
+
time_created: builtins.str):
|
30514
|
+
"""
|
30515
|
+
:param builtins.str id: The ID associated with the HeatWave node.
|
30516
|
+
:param builtins.str status: The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time.
|
30517
|
+
:param builtins.str time_created: The date and time the HeatWave node was created.
|
30518
|
+
"""
|
30519
|
+
pulumi.set(__self__, "id", id)
|
30520
|
+
pulumi.set(__self__, "status", status)
|
30521
|
+
pulumi.set(__self__, "time_created", time_created)
|
30522
|
+
|
30523
|
+
@property
|
30524
|
+
@pulumi.getter
|
30525
|
+
def id(self) -> builtins.str:
|
30526
|
+
"""
|
30527
|
+
The ID associated with the HeatWave node.
|
30528
|
+
"""
|
30529
|
+
return pulumi.get(self, "id")
|
30530
|
+
|
30531
|
+
@property
|
30532
|
+
@pulumi.getter
|
30533
|
+
def status(self) -> builtins.str:
|
30534
|
+
"""
|
30535
|
+
The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time.
|
30536
|
+
"""
|
30537
|
+
return pulumi.get(self, "status")
|
30538
|
+
|
30539
|
+
@property
|
30540
|
+
@pulumi.getter(name="timeCreated")
|
30541
|
+
def time_created(self) -> builtins.str:
|
30542
|
+
"""
|
30543
|
+
The date and time the HeatWave node was created.
|
30544
|
+
"""
|
30545
|
+
return pulumi.get(self, "time_created")
|
30546
|
+
|
30547
|
+
|
30548
|
+
@pulumi.output_type
|
30549
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersFilterResult(dict):
|
30550
|
+
def __init__(__self__, *,
|
30551
|
+
name: builtins.str,
|
30552
|
+
values: Sequence[builtins.str],
|
30553
|
+
regex: Optional[builtins.bool] = None):
|
30554
|
+
pulumi.set(__self__, "name", name)
|
30555
|
+
pulumi.set(__self__, "values", values)
|
30556
|
+
if regex is not None:
|
30557
|
+
pulumi.set(__self__, "regex", regex)
|
30558
|
+
|
30559
|
+
@property
|
30560
|
+
@pulumi.getter
|
30561
|
+
def name(self) -> builtins.str:
|
30562
|
+
return pulumi.get(self, "name")
|
30563
|
+
|
30564
|
+
@property
|
30565
|
+
@pulumi.getter
|
30566
|
+
def values(self) -> Sequence[builtins.str]:
|
30567
|
+
return pulumi.get(self, "values")
|
30568
|
+
|
30569
|
+
@property
|
30570
|
+
@pulumi.getter
|
30571
|
+
def regex(self) -> Optional[builtins.bool]:
|
30572
|
+
return pulumi.get(self, "regex")
|
30573
|
+
|
30574
|
+
|
30575
|
+
@pulumi.output_type
|
30576
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionResult(dict):
|
30577
|
+
def __init__(__self__, *,
|
30578
|
+
flow_control: builtins.str,
|
30579
|
+
group_auto_increment: builtins.int,
|
30580
|
+
group_name: builtins.str,
|
30581
|
+
items: Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionItemResult'],
|
30582
|
+
member_role: builtins.str,
|
30583
|
+
member_state: builtins.str,
|
30584
|
+
single_primary_mode: builtins.str,
|
30585
|
+
status_summaries: Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryResult'],
|
30586
|
+
transactions_in_gtid_executed: builtins.str,
|
30587
|
+
view_id: builtins.str):
|
30588
|
+
"""
|
30589
|
+
:param builtins.str flow_control: The mode used for flow control.
|
30590
|
+
:param builtins.int group_auto_increment: The interval between successive values for auto-incremented columns for transactions that execute on this server instance.
|
30591
|
+
:param builtins.str group_name: The name of the group to which this server instance belongs.
|
30592
|
+
:param Sequence['GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionItemArgs'] items: A list of MySqlHighAvailabilityMember records.
|
30593
|
+
:param builtins.str member_role: The role of this server as a group replication member.
|
30594
|
+
:param builtins.str member_state: The state of this server as a group replication member.
|
30595
|
+
:param builtins.str single_primary_mode: Indicates if the replication group is running in single-primary mode.
|
30596
|
+
:param Sequence['GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryArgs'] status_summaries: High availability status summary of a MySQL server.
|
30597
|
+
:param builtins.str transactions_in_gtid_executed: Number of transactions that were replicated within the cluster.
|
30598
|
+
:param builtins.str view_id: The current view identifier for this group.
|
30599
|
+
"""
|
30600
|
+
pulumi.set(__self__, "flow_control", flow_control)
|
30601
|
+
pulumi.set(__self__, "group_auto_increment", group_auto_increment)
|
30602
|
+
pulumi.set(__self__, "group_name", group_name)
|
30603
|
+
pulumi.set(__self__, "items", items)
|
30604
|
+
pulumi.set(__self__, "member_role", member_role)
|
30605
|
+
pulumi.set(__self__, "member_state", member_state)
|
30606
|
+
pulumi.set(__self__, "single_primary_mode", single_primary_mode)
|
30607
|
+
pulumi.set(__self__, "status_summaries", status_summaries)
|
30608
|
+
pulumi.set(__self__, "transactions_in_gtid_executed", transactions_in_gtid_executed)
|
30609
|
+
pulumi.set(__self__, "view_id", view_id)
|
30610
|
+
|
30611
|
+
@property
|
30612
|
+
@pulumi.getter(name="flowControl")
|
30613
|
+
def flow_control(self) -> builtins.str:
|
30614
|
+
"""
|
30615
|
+
The mode used for flow control.
|
30616
|
+
"""
|
30617
|
+
return pulumi.get(self, "flow_control")
|
30618
|
+
|
30619
|
+
@property
|
30620
|
+
@pulumi.getter(name="groupAutoIncrement")
|
30621
|
+
def group_auto_increment(self) -> builtins.int:
|
30622
|
+
"""
|
30623
|
+
The interval between successive values for auto-incremented columns for transactions that execute on this server instance.
|
30624
|
+
"""
|
30625
|
+
return pulumi.get(self, "group_auto_increment")
|
30626
|
+
|
30627
|
+
@property
|
30628
|
+
@pulumi.getter(name="groupName")
|
30629
|
+
def group_name(self) -> builtins.str:
|
30630
|
+
"""
|
30631
|
+
The name of the group to which this server instance belongs.
|
30632
|
+
"""
|
30633
|
+
return pulumi.get(self, "group_name")
|
30634
|
+
|
30635
|
+
@property
|
30636
|
+
@pulumi.getter
|
30637
|
+
def items(self) -> Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionItemResult']:
|
30638
|
+
"""
|
30639
|
+
A list of MySqlHighAvailabilityMember records.
|
30640
|
+
"""
|
30641
|
+
return pulumi.get(self, "items")
|
30642
|
+
|
30643
|
+
@property
|
30644
|
+
@pulumi.getter(name="memberRole")
|
30645
|
+
def member_role(self) -> builtins.str:
|
30646
|
+
"""
|
30647
|
+
The role of this server as a group replication member.
|
30648
|
+
"""
|
30649
|
+
return pulumi.get(self, "member_role")
|
30650
|
+
|
30651
|
+
@property
|
30652
|
+
@pulumi.getter(name="memberState")
|
30653
|
+
def member_state(self) -> builtins.str:
|
30654
|
+
"""
|
30655
|
+
The state of this server as a group replication member.
|
30656
|
+
"""
|
30657
|
+
return pulumi.get(self, "member_state")
|
30658
|
+
|
30659
|
+
@property
|
30660
|
+
@pulumi.getter(name="singlePrimaryMode")
|
30661
|
+
def single_primary_mode(self) -> builtins.str:
|
30662
|
+
"""
|
30663
|
+
Indicates if the replication group is running in single-primary mode.
|
30664
|
+
"""
|
30665
|
+
return pulumi.get(self, "single_primary_mode")
|
30666
|
+
|
30667
|
+
@property
|
30668
|
+
@pulumi.getter(name="statusSummaries")
|
30669
|
+
def status_summaries(self) -> Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryResult']:
|
30670
|
+
"""
|
30671
|
+
High availability status summary of a MySQL server.
|
30672
|
+
"""
|
30673
|
+
return pulumi.get(self, "status_summaries")
|
30674
|
+
|
30675
|
+
@property
|
30676
|
+
@pulumi.getter(name="transactionsInGtidExecuted")
|
30677
|
+
def transactions_in_gtid_executed(self) -> builtins.str:
|
30678
|
+
"""
|
30679
|
+
Number of transactions that were replicated within the cluster.
|
30680
|
+
"""
|
30681
|
+
return pulumi.get(self, "transactions_in_gtid_executed")
|
30682
|
+
|
30683
|
+
@property
|
30684
|
+
@pulumi.getter(name="viewId")
|
30685
|
+
def view_id(self) -> builtins.str:
|
30686
|
+
"""
|
30687
|
+
The current view identifier for this group.
|
30688
|
+
"""
|
30689
|
+
return pulumi.get(self, "view_id")
|
30690
|
+
|
30691
|
+
|
30692
|
+
@pulumi.output_type
|
30693
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionItemResult(dict):
|
30694
|
+
def __init__(__self__, *,
|
30695
|
+
member_host: builtins.str,
|
30696
|
+
member_port: builtins.int,
|
30697
|
+
member_role: builtins.str,
|
30698
|
+
member_state: builtins.str,
|
30699
|
+
member_uuid: builtins.str):
|
30700
|
+
"""
|
30701
|
+
:param builtins.str member_host: The host name of the group member which clients use to connect to it.
|
30702
|
+
:param builtins.int member_port: The port number of the group member which clients to connect to it.
|
30703
|
+
:param builtins.str member_role: The role of this server as a group replication member.
|
30704
|
+
:param builtins.str member_state: The state of this server as a group replication member.
|
30705
|
+
:param builtins.str member_uuid: The Universally Unique Identifier (UUID) of the member server.
|
30706
|
+
"""
|
30707
|
+
pulumi.set(__self__, "member_host", member_host)
|
30708
|
+
pulumi.set(__self__, "member_port", member_port)
|
30709
|
+
pulumi.set(__self__, "member_role", member_role)
|
30710
|
+
pulumi.set(__self__, "member_state", member_state)
|
30711
|
+
pulumi.set(__self__, "member_uuid", member_uuid)
|
30712
|
+
|
30713
|
+
@property
|
30714
|
+
@pulumi.getter(name="memberHost")
|
30715
|
+
def member_host(self) -> builtins.str:
|
30716
|
+
"""
|
30717
|
+
The host name of the group member which clients use to connect to it.
|
30718
|
+
"""
|
30719
|
+
return pulumi.get(self, "member_host")
|
30720
|
+
|
30721
|
+
@property
|
30722
|
+
@pulumi.getter(name="memberPort")
|
30723
|
+
def member_port(self) -> builtins.int:
|
30724
|
+
"""
|
30725
|
+
The port number of the group member which clients to connect to it.
|
30726
|
+
"""
|
30727
|
+
return pulumi.get(self, "member_port")
|
30728
|
+
|
30729
|
+
@property
|
30730
|
+
@pulumi.getter(name="memberRole")
|
30731
|
+
def member_role(self) -> builtins.str:
|
30732
|
+
"""
|
30733
|
+
The role of this server as a group replication member.
|
30734
|
+
"""
|
30735
|
+
return pulumi.get(self, "member_role")
|
30736
|
+
|
30737
|
+
@property
|
30738
|
+
@pulumi.getter(name="memberState")
|
30739
|
+
def member_state(self) -> builtins.str:
|
30740
|
+
"""
|
30741
|
+
The state of this server as a group replication member.
|
30742
|
+
"""
|
30743
|
+
return pulumi.get(self, "member_state")
|
30744
|
+
|
30745
|
+
@property
|
30746
|
+
@pulumi.getter(name="memberUuid")
|
30747
|
+
def member_uuid(self) -> builtins.str:
|
30748
|
+
"""
|
30749
|
+
The Universally Unique Identifier (UUID) of the member server.
|
30750
|
+
"""
|
30751
|
+
return pulumi.get(self, "member_uuid")
|
30752
|
+
|
30753
|
+
|
30754
|
+
@pulumi.output_type
|
30755
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryResult(dict):
|
30756
|
+
def __init__(__self__, *,
|
30757
|
+
channel_apply_errors: Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorResult'],
|
30758
|
+
channel_fetch_errors: Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorResult']):
|
30759
|
+
"""
|
30760
|
+
:param Sequence['GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorArgs'] channel_apply_errors: A list of MySqlChannelApplyError records.
|
30761
|
+
:param Sequence['GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorArgs'] channel_fetch_errors: A list of MySqlChannelFetchError records.
|
30762
|
+
"""
|
30763
|
+
pulumi.set(__self__, "channel_apply_errors", channel_apply_errors)
|
30764
|
+
pulumi.set(__self__, "channel_fetch_errors", channel_fetch_errors)
|
30765
|
+
|
30766
|
+
@property
|
30767
|
+
@pulumi.getter(name="channelApplyErrors")
|
30768
|
+
def channel_apply_errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorResult']:
|
30769
|
+
"""
|
30770
|
+
A list of MySqlChannelApplyError records.
|
30771
|
+
"""
|
30772
|
+
return pulumi.get(self, "channel_apply_errors")
|
30773
|
+
|
30774
|
+
@property
|
30775
|
+
@pulumi.getter(name="channelFetchErrors")
|
30776
|
+
def channel_fetch_errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorResult']:
|
30777
|
+
"""
|
30778
|
+
A list of MySqlChannelFetchError records.
|
30779
|
+
"""
|
30780
|
+
return pulumi.get(self, "channel_fetch_errors")
|
30781
|
+
|
30782
|
+
|
30783
|
+
@pulumi.output_type
|
30784
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorResult(dict):
|
30785
|
+
def __init__(__self__, *,
|
30786
|
+
apply_errors: Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorResult'],
|
30787
|
+
channel_name: builtins.str):
|
30788
|
+
"""
|
30789
|
+
:param Sequence['GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorArgs'] apply_errors: Error from apply operation of a MySQL server replication channel.
|
30790
|
+
:param builtins.str channel_name: The name of the replication channel
|
30791
|
+
"""
|
30792
|
+
pulumi.set(__self__, "apply_errors", apply_errors)
|
30793
|
+
pulumi.set(__self__, "channel_name", channel_name)
|
30794
|
+
|
30795
|
+
@property
|
30796
|
+
@pulumi.getter(name="applyErrors")
|
30797
|
+
def apply_errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorResult']:
|
30798
|
+
"""
|
30799
|
+
Error from apply operation of a MySQL server replication channel.
|
30800
|
+
"""
|
30801
|
+
return pulumi.get(self, "apply_errors")
|
30802
|
+
|
30803
|
+
@property
|
30804
|
+
@pulumi.getter(name="channelName")
|
30805
|
+
def channel_name(self) -> builtins.str:
|
30806
|
+
"""
|
30807
|
+
The name of the replication channel
|
30808
|
+
"""
|
30809
|
+
return pulumi.get(self, "channel_name")
|
30810
|
+
|
30811
|
+
|
30812
|
+
@pulumi.output_type
|
30813
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorResult(dict):
|
30814
|
+
def __init__(__self__, *,
|
30815
|
+
last_error_message: builtins.str,
|
30816
|
+
last_error_number: builtins.int,
|
30817
|
+
time_last_error: builtins.str,
|
30818
|
+
worker_errors: Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorWorkerErrorResult']):
|
30819
|
+
"""
|
30820
|
+
:param builtins.str last_error_message: The error message of the most recent error that caused the I/O thread to stop.
|
30821
|
+
:param builtins.int last_error_number: The error number of the most recent error that caused the I/O thread to stop.
|
30822
|
+
:param builtins.str time_last_error: The timestamp when the most recent I/O error occurred.
|
30823
|
+
:param Sequence['GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorWorkerErrorArgs'] worker_errors: A list of MySqlApplyErrorWorker records.
|
30824
|
+
"""
|
30825
|
+
pulumi.set(__self__, "last_error_message", last_error_message)
|
30826
|
+
pulumi.set(__self__, "last_error_number", last_error_number)
|
30827
|
+
pulumi.set(__self__, "time_last_error", time_last_error)
|
30828
|
+
pulumi.set(__self__, "worker_errors", worker_errors)
|
30829
|
+
|
30830
|
+
@property
|
30831
|
+
@pulumi.getter(name="lastErrorMessage")
|
30832
|
+
def last_error_message(self) -> builtins.str:
|
30833
|
+
"""
|
30834
|
+
The error message of the most recent error that caused the I/O thread to stop.
|
30835
|
+
"""
|
30836
|
+
return pulumi.get(self, "last_error_message")
|
30837
|
+
|
30838
|
+
@property
|
30839
|
+
@pulumi.getter(name="lastErrorNumber")
|
30840
|
+
def last_error_number(self) -> builtins.int:
|
30841
|
+
"""
|
30842
|
+
The error number of the most recent error that caused the I/O thread to stop.
|
30843
|
+
"""
|
30844
|
+
return pulumi.get(self, "last_error_number")
|
30845
|
+
|
30846
|
+
@property
|
30847
|
+
@pulumi.getter(name="timeLastError")
|
30848
|
+
def time_last_error(self) -> builtins.str:
|
30849
|
+
"""
|
30850
|
+
The timestamp when the most recent I/O error occurred.
|
30851
|
+
"""
|
30852
|
+
return pulumi.get(self, "time_last_error")
|
30853
|
+
|
30854
|
+
@property
|
30855
|
+
@pulumi.getter(name="workerErrors")
|
30856
|
+
def worker_errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorWorkerErrorResult']:
|
30857
|
+
"""
|
30858
|
+
A list of MySqlApplyErrorWorker records.
|
30859
|
+
"""
|
30860
|
+
return pulumi.get(self, "worker_errors")
|
30861
|
+
|
30862
|
+
|
30863
|
+
@pulumi.output_type
|
30864
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorWorkerErrorResult(dict):
|
30865
|
+
def __init__(__self__, *,
|
30866
|
+
last_error_message: builtins.str,
|
30867
|
+
last_error_number: builtins.int,
|
30868
|
+
time_last_error: builtins.str):
|
30869
|
+
"""
|
30870
|
+
:param builtins.str last_error_message: The error message of the most recent error that caused the I/O thread to stop.
|
30871
|
+
:param builtins.int last_error_number: The error number of the most recent error that caused the I/O thread to stop.
|
30872
|
+
:param builtins.str time_last_error: The timestamp when the most recent I/O error occurred.
|
30873
|
+
"""
|
30874
|
+
pulumi.set(__self__, "last_error_message", last_error_message)
|
30875
|
+
pulumi.set(__self__, "last_error_number", last_error_number)
|
30876
|
+
pulumi.set(__self__, "time_last_error", time_last_error)
|
30877
|
+
|
30878
|
+
@property
|
30879
|
+
@pulumi.getter(name="lastErrorMessage")
|
30880
|
+
def last_error_message(self) -> builtins.str:
|
30881
|
+
"""
|
30882
|
+
The error message of the most recent error that caused the I/O thread to stop.
|
30883
|
+
"""
|
30884
|
+
return pulumi.get(self, "last_error_message")
|
30885
|
+
|
30886
|
+
@property
|
30887
|
+
@pulumi.getter(name="lastErrorNumber")
|
30888
|
+
def last_error_number(self) -> builtins.int:
|
30889
|
+
"""
|
30890
|
+
The error number of the most recent error that caused the I/O thread to stop.
|
30891
|
+
"""
|
30892
|
+
return pulumi.get(self, "last_error_number")
|
30893
|
+
|
30894
|
+
@property
|
30895
|
+
@pulumi.getter(name="timeLastError")
|
30896
|
+
def time_last_error(self) -> builtins.str:
|
30897
|
+
"""
|
30898
|
+
The timestamp when the most recent I/O error occurred.
|
30899
|
+
"""
|
30900
|
+
return pulumi.get(self, "time_last_error")
|
30901
|
+
|
30902
|
+
|
30903
|
+
@pulumi.output_type
|
30904
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorResult(dict):
|
30905
|
+
def __init__(__self__, *,
|
30906
|
+
channel_name: builtins.str,
|
30907
|
+
fetch_errors: Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorFetchErrorResult']):
|
30908
|
+
"""
|
30909
|
+
:param builtins.str channel_name: The name of the replication channel
|
30910
|
+
:param Sequence['GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorFetchErrorArgs'] fetch_errors: Error from fetch operation of a MySQL server replication channel.
|
30911
|
+
"""
|
30912
|
+
pulumi.set(__self__, "channel_name", channel_name)
|
30913
|
+
pulumi.set(__self__, "fetch_errors", fetch_errors)
|
30914
|
+
|
30915
|
+
@property
|
30916
|
+
@pulumi.getter(name="channelName")
|
30917
|
+
def channel_name(self) -> builtins.str:
|
30918
|
+
"""
|
30919
|
+
The name of the replication channel
|
30920
|
+
"""
|
30921
|
+
return pulumi.get(self, "channel_name")
|
30922
|
+
|
30923
|
+
@property
|
30924
|
+
@pulumi.getter(name="fetchErrors")
|
30925
|
+
def fetch_errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorFetchErrorResult']:
|
30926
|
+
"""
|
30927
|
+
Error from fetch operation of a MySQL server replication channel.
|
30928
|
+
"""
|
30929
|
+
return pulumi.get(self, "fetch_errors")
|
30930
|
+
|
30931
|
+
|
30932
|
+
@pulumi.output_type
|
30933
|
+
class GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorFetchErrorResult(dict):
|
30934
|
+
def __init__(__self__, *,
|
30935
|
+
last_error_message: builtins.str,
|
30936
|
+
last_error_number: builtins.int,
|
30937
|
+
time_last_error: builtins.str):
|
30938
|
+
"""
|
30939
|
+
:param builtins.str last_error_message: The error message of the most recent error that caused the I/O thread to stop.
|
30940
|
+
:param builtins.int last_error_number: The error number of the most recent error that caused the I/O thread to stop.
|
30941
|
+
:param builtins.str time_last_error: The timestamp when the most recent I/O error occurred.
|
30942
|
+
"""
|
30943
|
+
pulumi.set(__self__, "last_error_message", last_error_message)
|
30944
|
+
pulumi.set(__self__, "last_error_number", last_error_number)
|
30945
|
+
pulumi.set(__self__, "time_last_error", time_last_error)
|
30946
|
+
|
30947
|
+
@property
|
30948
|
+
@pulumi.getter(name="lastErrorMessage")
|
30949
|
+
def last_error_message(self) -> builtins.str:
|
30950
|
+
"""
|
30951
|
+
The error message of the most recent error that caused the I/O thread to stop.
|
30952
|
+
"""
|
30953
|
+
return pulumi.get(self, "last_error_message")
|
30954
|
+
|
30955
|
+
@property
|
30956
|
+
@pulumi.getter(name="lastErrorNumber")
|
30957
|
+
def last_error_number(self) -> builtins.int:
|
30958
|
+
"""
|
30959
|
+
The error number of the most recent error that caused the I/O thread to stop.
|
30960
|
+
"""
|
30961
|
+
return pulumi.get(self, "last_error_number")
|
30962
|
+
|
30963
|
+
@property
|
30964
|
+
@pulumi.getter(name="timeLastError")
|
30965
|
+
def time_last_error(self) -> builtins.str:
|
30966
|
+
"""
|
30967
|
+
The timestamp when the most recent I/O error occurred.
|
30968
|
+
"""
|
30969
|
+
return pulumi.get(self, "time_last_error")
|
30970
|
+
|
30971
|
+
|
30972
|
+
@pulumi.output_type
|
30973
|
+
class GetManagedMySqlDatabaseInboundReplicationsFilterResult(dict):
|
30974
|
+
def __init__(__self__, *,
|
30975
|
+
name: builtins.str,
|
30976
|
+
values: Sequence[builtins.str],
|
30977
|
+
regex: Optional[builtins.bool] = None):
|
30978
|
+
pulumi.set(__self__, "name", name)
|
30979
|
+
pulumi.set(__self__, "values", values)
|
30980
|
+
if regex is not None:
|
30981
|
+
pulumi.set(__self__, "regex", regex)
|
30982
|
+
|
30983
|
+
@property
|
30984
|
+
@pulumi.getter
|
30985
|
+
def name(self) -> builtins.str:
|
30986
|
+
return pulumi.get(self, "name")
|
30987
|
+
|
30988
|
+
@property
|
30989
|
+
@pulumi.getter
|
30990
|
+
def values(self) -> Sequence[builtins.str]:
|
30991
|
+
return pulumi.get(self, "values")
|
30992
|
+
|
30993
|
+
@property
|
30994
|
+
@pulumi.getter
|
30995
|
+
def regex(self) -> Optional[builtins.bool]:
|
30996
|
+
return pulumi.get(self, "regex")
|
30997
|
+
|
30998
|
+
|
30999
|
+
@pulumi.output_type
|
31000
|
+
class GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionResult(dict):
|
31001
|
+
def __init__(__self__, *,
|
31002
|
+
inbound_replications_count: builtins.int,
|
31003
|
+
items: Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemResult'],
|
31004
|
+
parallel_workers: builtins.int,
|
31005
|
+
preserve_commit_order: builtins.str,
|
31006
|
+
replica_server_id: builtins.str,
|
31007
|
+
replica_uuid: builtins.str):
|
31008
|
+
"""
|
31009
|
+
:param builtins.int inbound_replications_count: The number of sources this server is replicating from.
|
31010
|
+
:param Sequence['GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemArgs'] items: A list of ManagedMySqlDatabaseInboundReplicationSummary records.
|
31011
|
+
:param builtins.int parallel_workers: The number of applier threads for executing replication transactions in parallel.
|
31012
|
+
:param builtins.str preserve_commit_order: For multi-threaded replicas, indicates if transactions are executed and committed on the replica in the same order as they appear in the relay log.
|
31013
|
+
:param builtins.str replica_server_id: The server ID value of this replica.
|
31014
|
+
:param builtins.str replica_uuid: The Universally Unique Identifier (UUID) value of this replica server.
|
31015
|
+
"""
|
31016
|
+
pulumi.set(__self__, "inbound_replications_count", inbound_replications_count)
|
31017
|
+
pulumi.set(__self__, "items", items)
|
31018
|
+
pulumi.set(__self__, "parallel_workers", parallel_workers)
|
31019
|
+
pulumi.set(__self__, "preserve_commit_order", preserve_commit_order)
|
31020
|
+
pulumi.set(__self__, "replica_server_id", replica_server_id)
|
31021
|
+
pulumi.set(__self__, "replica_uuid", replica_uuid)
|
31022
|
+
|
31023
|
+
@property
|
31024
|
+
@pulumi.getter(name="inboundReplicationsCount")
|
31025
|
+
def inbound_replications_count(self) -> builtins.int:
|
31026
|
+
"""
|
31027
|
+
The number of sources this server is replicating from.
|
31028
|
+
"""
|
31029
|
+
return pulumi.get(self, "inbound_replications_count")
|
31030
|
+
|
31031
|
+
@property
|
31032
|
+
@pulumi.getter
|
31033
|
+
def items(self) -> Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemResult']:
|
31034
|
+
"""
|
31035
|
+
A list of ManagedMySqlDatabaseInboundReplicationSummary records.
|
31036
|
+
"""
|
31037
|
+
return pulumi.get(self, "items")
|
31038
|
+
|
31039
|
+
@property
|
31040
|
+
@pulumi.getter(name="parallelWorkers")
|
31041
|
+
def parallel_workers(self) -> builtins.int:
|
31042
|
+
"""
|
31043
|
+
The number of applier threads for executing replication transactions in parallel.
|
31044
|
+
"""
|
31045
|
+
return pulumi.get(self, "parallel_workers")
|
31046
|
+
|
31047
|
+
@property
|
31048
|
+
@pulumi.getter(name="preserveCommitOrder")
|
31049
|
+
def preserve_commit_order(self) -> builtins.str:
|
31050
|
+
"""
|
31051
|
+
For multi-threaded replicas, indicates if transactions are executed and committed on the replica in the same order as they appear in the relay log.
|
31052
|
+
"""
|
31053
|
+
return pulumi.get(self, "preserve_commit_order")
|
31054
|
+
|
31055
|
+
@property
|
31056
|
+
@pulumi.getter(name="replicaServerId")
|
31057
|
+
def replica_server_id(self) -> builtins.str:
|
31058
|
+
"""
|
31059
|
+
The server ID value of this replica.
|
31060
|
+
"""
|
31061
|
+
return pulumi.get(self, "replica_server_id")
|
31062
|
+
|
31063
|
+
@property
|
31064
|
+
@pulumi.getter(name="replicaUuid")
|
31065
|
+
def replica_uuid(self) -> builtins.str:
|
31066
|
+
"""
|
31067
|
+
The Universally Unique Identifier (UUID) value of this replica server.
|
31068
|
+
"""
|
31069
|
+
return pulumi.get(self, "replica_uuid")
|
31070
|
+
|
31071
|
+
|
31072
|
+
@pulumi.output_type
|
31073
|
+
class GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemResult(dict):
|
31074
|
+
def __init__(__self__, *,
|
31075
|
+
applier_filters: Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilterResult'],
|
31076
|
+
apply_delay: builtins.float,
|
31077
|
+
apply_errors: Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorResult'],
|
31078
|
+
apply_status: builtins.str,
|
31079
|
+
busy_workers: builtins.int,
|
31080
|
+
channel_name: builtins.str,
|
31081
|
+
desired_delay_seconds: builtins.str,
|
31082
|
+
fetch_errors: Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchErrorResult'],
|
31083
|
+
fetch_status: builtins.str,
|
31084
|
+
gtid_assignment: builtins.str,
|
31085
|
+
relay_log_storage_space_used: builtins.str,
|
31086
|
+
remaining_delay_seconds: builtins.str,
|
31087
|
+
retrieved_gtid_set: builtins.str,
|
31088
|
+
seconds_behind_source: builtins.str,
|
31089
|
+
source_host: builtins.str,
|
31090
|
+
source_port: builtins.int,
|
31091
|
+
source_server_id: builtins.str,
|
31092
|
+
source_uuid: builtins.str,
|
31093
|
+
transactions_received: builtins.str):
|
31094
|
+
"""
|
31095
|
+
:param Sequence['GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilterArgs'] applier_filters: A list of MySqlReplicationApplierFilter records.
|
31096
|
+
:param builtins.float apply_delay: Time in seconds it took for the transaction that is currently being applied between being committed on the source and applied on the replica.
|
31097
|
+
:param Sequence['GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorArgs'] apply_errors: Error from apply operation of a MySQL server replication channel.
|
31098
|
+
:param builtins.str apply_status: The current status of apply operations.
|
31099
|
+
:param builtins.int busy_workers: The number of workers currently busy applying transactions from the source server.
|
31100
|
+
:param builtins.str channel_name: The name of the replication channel.
|
31101
|
+
:param builtins.str desired_delay_seconds: The desired number of seconds that the replica must lag the source.
|
31102
|
+
:param Sequence['GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchErrorArgs'] fetch_errors: Error from fetch operation of a MySQL server replication channel.
|
31103
|
+
:param builtins.str fetch_status: The current status of fetch operations.
|
31104
|
+
:param builtins.str gtid_assignment: Whether the channel assigns global transaction identifiers (GTIDs) to anonymous replicated transactions. OFF means no GTIDs are assigned. LOCAL means a GTID is assigned that includes this replica's own universally unique identifier (UUID). A UUID as value indicates that a GTID is assigned which includes that manually set UUID value.
|
31105
|
+
:param builtins.str relay_log_storage_space_used: The total size in bytes of all the existing relay log files pertaining to this channel.
|
31106
|
+
:param builtins.str remaining_delay_seconds: If the replica is waiting for the desired delay seconds to pass since the source applied an event, this field contains the number of delay seconds remaining.
|
31107
|
+
:param builtins.str retrieved_gtid_set: The set of global transaction IDs corresponding to all transactions received by this replica from the source server. Empty if GTIDs are not in use.
|
31108
|
+
:param builtins.str seconds_behind_source: The number of seconds the replica is behind the source server.
|
31109
|
+
:param builtins.str source_host: The host name or IP address of the source this replica is connected to.
|
31110
|
+
:param builtins.int source_port: The port used to connect to the source.
|
31111
|
+
:param builtins.str source_server_id: The server ID value from the source server.
|
31112
|
+
:param builtins.str source_uuid: The Universally Unique Identifier (UUID) value from the source server.
|
31113
|
+
:param builtins.str transactions_received: The number of transactions received by this replica from the source server.
|
31114
|
+
"""
|
31115
|
+
pulumi.set(__self__, "applier_filters", applier_filters)
|
31116
|
+
pulumi.set(__self__, "apply_delay", apply_delay)
|
31117
|
+
pulumi.set(__self__, "apply_errors", apply_errors)
|
31118
|
+
pulumi.set(__self__, "apply_status", apply_status)
|
31119
|
+
pulumi.set(__self__, "busy_workers", busy_workers)
|
31120
|
+
pulumi.set(__self__, "channel_name", channel_name)
|
31121
|
+
pulumi.set(__self__, "desired_delay_seconds", desired_delay_seconds)
|
31122
|
+
pulumi.set(__self__, "fetch_errors", fetch_errors)
|
31123
|
+
pulumi.set(__self__, "fetch_status", fetch_status)
|
31124
|
+
pulumi.set(__self__, "gtid_assignment", gtid_assignment)
|
31125
|
+
pulumi.set(__self__, "relay_log_storage_space_used", relay_log_storage_space_used)
|
31126
|
+
pulumi.set(__self__, "remaining_delay_seconds", remaining_delay_seconds)
|
31127
|
+
pulumi.set(__self__, "retrieved_gtid_set", retrieved_gtid_set)
|
31128
|
+
pulumi.set(__self__, "seconds_behind_source", seconds_behind_source)
|
31129
|
+
pulumi.set(__self__, "source_host", source_host)
|
31130
|
+
pulumi.set(__self__, "source_port", source_port)
|
31131
|
+
pulumi.set(__self__, "source_server_id", source_server_id)
|
31132
|
+
pulumi.set(__self__, "source_uuid", source_uuid)
|
31133
|
+
pulumi.set(__self__, "transactions_received", transactions_received)
|
31134
|
+
|
31135
|
+
@property
|
31136
|
+
@pulumi.getter(name="applierFilters")
|
31137
|
+
def applier_filters(self) -> Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilterResult']:
|
31138
|
+
"""
|
31139
|
+
A list of MySqlReplicationApplierFilter records.
|
31140
|
+
"""
|
31141
|
+
return pulumi.get(self, "applier_filters")
|
31142
|
+
|
31143
|
+
@property
|
31144
|
+
@pulumi.getter(name="applyDelay")
|
31145
|
+
def apply_delay(self) -> builtins.float:
|
31146
|
+
"""
|
31147
|
+
Time in seconds it took for the transaction that is currently being applied between being committed on the source and applied on the replica.
|
31148
|
+
"""
|
31149
|
+
return pulumi.get(self, "apply_delay")
|
31150
|
+
|
31151
|
+
@property
|
31152
|
+
@pulumi.getter(name="applyErrors")
|
31153
|
+
def apply_errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorResult']:
|
31154
|
+
"""
|
31155
|
+
Error from apply operation of a MySQL server replication channel.
|
31156
|
+
"""
|
31157
|
+
return pulumi.get(self, "apply_errors")
|
31158
|
+
|
31159
|
+
@property
|
31160
|
+
@pulumi.getter(name="applyStatus")
|
31161
|
+
def apply_status(self) -> builtins.str:
|
31162
|
+
"""
|
31163
|
+
The current status of apply operations.
|
31164
|
+
"""
|
31165
|
+
return pulumi.get(self, "apply_status")
|
31166
|
+
|
31167
|
+
@property
|
31168
|
+
@pulumi.getter(name="busyWorkers")
|
31169
|
+
def busy_workers(self) -> builtins.int:
|
31170
|
+
"""
|
31171
|
+
The number of workers currently busy applying transactions from the source server.
|
31172
|
+
"""
|
31173
|
+
return pulumi.get(self, "busy_workers")
|
31174
|
+
|
31175
|
+
@property
|
31176
|
+
@pulumi.getter(name="channelName")
|
31177
|
+
def channel_name(self) -> builtins.str:
|
31178
|
+
"""
|
31179
|
+
The name of the replication channel.
|
31180
|
+
"""
|
31181
|
+
return pulumi.get(self, "channel_name")
|
31182
|
+
|
31183
|
+
@property
|
31184
|
+
@pulumi.getter(name="desiredDelaySeconds")
|
31185
|
+
def desired_delay_seconds(self) -> builtins.str:
|
31186
|
+
"""
|
31187
|
+
The desired number of seconds that the replica must lag the source.
|
31188
|
+
"""
|
31189
|
+
return pulumi.get(self, "desired_delay_seconds")
|
31190
|
+
|
31191
|
+
@property
|
31192
|
+
@pulumi.getter(name="fetchErrors")
|
31193
|
+
def fetch_errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchErrorResult']:
|
31194
|
+
"""
|
31195
|
+
Error from fetch operation of a MySQL server replication channel.
|
31196
|
+
"""
|
31197
|
+
return pulumi.get(self, "fetch_errors")
|
31198
|
+
|
31199
|
+
@property
|
31200
|
+
@pulumi.getter(name="fetchStatus")
|
31201
|
+
def fetch_status(self) -> builtins.str:
|
31202
|
+
"""
|
31203
|
+
The current status of fetch operations.
|
31204
|
+
"""
|
31205
|
+
return pulumi.get(self, "fetch_status")
|
31206
|
+
|
31207
|
+
@property
|
31208
|
+
@pulumi.getter(name="gtidAssignment")
|
31209
|
+
def gtid_assignment(self) -> builtins.str:
|
31210
|
+
"""
|
31211
|
+
Whether the channel assigns global transaction identifiers (GTIDs) to anonymous replicated transactions. OFF means no GTIDs are assigned. LOCAL means a GTID is assigned that includes this replica's own universally unique identifier (UUID). A UUID as value indicates that a GTID is assigned which includes that manually set UUID value.
|
31212
|
+
"""
|
31213
|
+
return pulumi.get(self, "gtid_assignment")
|
31214
|
+
|
31215
|
+
@property
|
31216
|
+
@pulumi.getter(name="relayLogStorageSpaceUsed")
|
31217
|
+
def relay_log_storage_space_used(self) -> builtins.str:
|
31218
|
+
"""
|
31219
|
+
The total size in bytes of all the existing relay log files pertaining to this channel.
|
31220
|
+
"""
|
31221
|
+
return pulumi.get(self, "relay_log_storage_space_used")
|
31222
|
+
|
31223
|
+
@property
|
31224
|
+
@pulumi.getter(name="remainingDelaySeconds")
|
31225
|
+
def remaining_delay_seconds(self) -> builtins.str:
|
31226
|
+
"""
|
31227
|
+
If the replica is waiting for the desired delay seconds to pass since the source applied an event, this field contains the number of delay seconds remaining.
|
31228
|
+
"""
|
31229
|
+
return pulumi.get(self, "remaining_delay_seconds")
|
31230
|
+
|
31231
|
+
@property
|
31232
|
+
@pulumi.getter(name="retrievedGtidSet")
|
31233
|
+
def retrieved_gtid_set(self) -> builtins.str:
|
31234
|
+
"""
|
31235
|
+
The set of global transaction IDs corresponding to all transactions received by this replica from the source server. Empty if GTIDs are not in use.
|
31236
|
+
"""
|
31237
|
+
return pulumi.get(self, "retrieved_gtid_set")
|
31238
|
+
|
31239
|
+
@property
|
31240
|
+
@pulumi.getter(name="secondsBehindSource")
|
31241
|
+
def seconds_behind_source(self) -> builtins.str:
|
31242
|
+
"""
|
31243
|
+
The number of seconds the replica is behind the source server.
|
31244
|
+
"""
|
31245
|
+
return pulumi.get(self, "seconds_behind_source")
|
31246
|
+
|
31247
|
+
@property
|
31248
|
+
@pulumi.getter(name="sourceHost")
|
31249
|
+
def source_host(self) -> builtins.str:
|
31250
|
+
"""
|
31251
|
+
The host name or IP address of the source this replica is connected to.
|
31252
|
+
"""
|
31253
|
+
return pulumi.get(self, "source_host")
|
31254
|
+
|
31255
|
+
@property
|
31256
|
+
@pulumi.getter(name="sourcePort")
|
31257
|
+
def source_port(self) -> builtins.int:
|
31258
|
+
"""
|
31259
|
+
The port used to connect to the source.
|
31260
|
+
"""
|
31261
|
+
return pulumi.get(self, "source_port")
|
31262
|
+
|
31263
|
+
@property
|
31264
|
+
@pulumi.getter(name="sourceServerId")
|
31265
|
+
def source_server_id(self) -> builtins.str:
|
31266
|
+
"""
|
31267
|
+
The server ID value from the source server.
|
31268
|
+
"""
|
31269
|
+
return pulumi.get(self, "source_server_id")
|
31270
|
+
|
31271
|
+
@property
|
31272
|
+
@pulumi.getter(name="sourceUuid")
|
31273
|
+
def source_uuid(self) -> builtins.str:
|
31274
|
+
"""
|
31275
|
+
The Universally Unique Identifier (UUID) value from the source server.
|
31276
|
+
"""
|
31277
|
+
return pulumi.get(self, "source_uuid")
|
31278
|
+
|
31279
|
+
@property
|
31280
|
+
@pulumi.getter(name="transactionsReceived")
|
31281
|
+
def transactions_received(self) -> builtins.str:
|
31282
|
+
"""
|
31283
|
+
The number of transactions received by this replica from the source server.
|
31284
|
+
"""
|
31285
|
+
return pulumi.get(self, "transactions_received")
|
31286
|
+
|
31287
|
+
|
31288
|
+
@pulumi.output_type
|
31289
|
+
class GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilterResult(dict):
|
31290
|
+
def __init__(__self__, *,
|
31291
|
+
filter_name: builtins.str,
|
31292
|
+
filter_rule: builtins.str):
|
30374
31293
|
"""
|
30375
|
-
:param builtins.str
|
30376
|
-
:param builtins.str
|
30377
|
-
:param builtins.str time_created: The date and time the HeatWave node was created.
|
31294
|
+
:param builtins.str filter_name: Type of replication filter that has been configured for the replication channel.
|
31295
|
+
:param builtins.str filter_rule: The rules configured for the replication filter type.
|
30378
31296
|
"""
|
30379
|
-
pulumi.set(__self__, "
|
30380
|
-
pulumi.set(__self__, "
|
30381
|
-
|
31297
|
+
pulumi.set(__self__, "filter_name", filter_name)
|
31298
|
+
pulumi.set(__self__, "filter_rule", filter_rule)
|
31299
|
+
|
31300
|
+
@property
|
31301
|
+
@pulumi.getter(name="filterName")
|
31302
|
+
def filter_name(self) -> builtins.str:
|
31303
|
+
"""
|
31304
|
+
Type of replication filter that has been configured for the replication channel.
|
31305
|
+
"""
|
31306
|
+
return pulumi.get(self, "filter_name")
|
31307
|
+
|
31308
|
+
@property
|
31309
|
+
@pulumi.getter(name="filterRule")
|
31310
|
+
def filter_rule(self) -> builtins.str:
|
31311
|
+
"""
|
31312
|
+
The rules configured for the replication filter type.
|
31313
|
+
"""
|
31314
|
+
return pulumi.get(self, "filter_rule")
|
31315
|
+
|
31316
|
+
|
31317
|
+
@pulumi.output_type
|
31318
|
+
class GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorResult(dict):
|
31319
|
+
def __init__(__self__, *,
|
31320
|
+
last_error_message: builtins.str,
|
31321
|
+
last_error_number: builtins.int,
|
31322
|
+
time_last_error: builtins.str,
|
31323
|
+
worker_errors: Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerErrorResult']):
|
31324
|
+
"""
|
31325
|
+
:param builtins.str last_error_message: The error message of the most recent error that caused the I/O thread to stop.
|
31326
|
+
:param builtins.int last_error_number: The error number of the most recent error that caused the I/O thread to stop.
|
31327
|
+
:param builtins.str time_last_error: The timestamp when the most recent I/O error occurred.
|
31328
|
+
:param Sequence['GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerErrorArgs'] worker_errors: A list of MySqlApplyErrorWorker records.
|
31329
|
+
"""
|
31330
|
+
pulumi.set(__self__, "last_error_message", last_error_message)
|
31331
|
+
pulumi.set(__self__, "last_error_number", last_error_number)
|
31332
|
+
pulumi.set(__self__, "time_last_error", time_last_error)
|
31333
|
+
pulumi.set(__self__, "worker_errors", worker_errors)
|
31334
|
+
|
31335
|
+
@property
|
31336
|
+
@pulumi.getter(name="lastErrorMessage")
|
31337
|
+
def last_error_message(self) -> builtins.str:
|
31338
|
+
"""
|
31339
|
+
The error message of the most recent error that caused the I/O thread to stop.
|
31340
|
+
"""
|
31341
|
+
return pulumi.get(self, "last_error_message")
|
31342
|
+
|
31343
|
+
@property
|
31344
|
+
@pulumi.getter(name="lastErrorNumber")
|
31345
|
+
def last_error_number(self) -> builtins.int:
|
31346
|
+
"""
|
31347
|
+
The error number of the most recent error that caused the I/O thread to stop.
|
31348
|
+
"""
|
31349
|
+
return pulumi.get(self, "last_error_number")
|
31350
|
+
|
31351
|
+
@property
|
31352
|
+
@pulumi.getter(name="timeLastError")
|
31353
|
+
def time_last_error(self) -> builtins.str:
|
31354
|
+
"""
|
31355
|
+
The timestamp when the most recent I/O error occurred.
|
31356
|
+
"""
|
31357
|
+
return pulumi.get(self, "time_last_error")
|
31358
|
+
|
31359
|
+
@property
|
31360
|
+
@pulumi.getter(name="workerErrors")
|
31361
|
+
def worker_errors(self) -> Sequence['outputs.GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerErrorResult']:
|
31362
|
+
"""
|
31363
|
+
A list of MySqlApplyErrorWorker records.
|
31364
|
+
"""
|
31365
|
+
return pulumi.get(self, "worker_errors")
|
31366
|
+
|
31367
|
+
|
31368
|
+
@pulumi.output_type
|
31369
|
+
class GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerErrorResult(dict):
|
31370
|
+
def __init__(__self__, *,
|
31371
|
+
last_error_message: builtins.str,
|
31372
|
+
last_error_number: builtins.int,
|
31373
|
+
time_last_error: builtins.str):
|
31374
|
+
"""
|
31375
|
+
:param builtins.str last_error_message: The error message of the most recent error that caused the I/O thread to stop.
|
31376
|
+
:param builtins.int last_error_number: The error number of the most recent error that caused the I/O thread to stop.
|
31377
|
+
:param builtins.str time_last_error: The timestamp when the most recent I/O error occurred.
|
31378
|
+
"""
|
31379
|
+
pulumi.set(__self__, "last_error_message", last_error_message)
|
31380
|
+
pulumi.set(__self__, "last_error_number", last_error_number)
|
31381
|
+
pulumi.set(__self__, "time_last_error", time_last_error)
|
31382
|
+
|
31383
|
+
@property
|
31384
|
+
@pulumi.getter(name="lastErrorMessage")
|
31385
|
+
def last_error_message(self) -> builtins.str:
|
31386
|
+
"""
|
31387
|
+
The error message of the most recent error that caused the I/O thread to stop.
|
31388
|
+
"""
|
31389
|
+
return pulumi.get(self, "last_error_message")
|
31390
|
+
|
31391
|
+
@property
|
31392
|
+
@pulumi.getter(name="lastErrorNumber")
|
31393
|
+
def last_error_number(self) -> builtins.int:
|
31394
|
+
"""
|
31395
|
+
The error number of the most recent error that caused the I/O thread to stop.
|
31396
|
+
"""
|
31397
|
+
return pulumi.get(self, "last_error_number")
|
31398
|
+
|
31399
|
+
@property
|
31400
|
+
@pulumi.getter(name="timeLastError")
|
31401
|
+
def time_last_error(self) -> builtins.str:
|
31402
|
+
"""
|
31403
|
+
The timestamp when the most recent I/O error occurred.
|
31404
|
+
"""
|
31405
|
+
return pulumi.get(self, "time_last_error")
|
31406
|
+
|
31407
|
+
|
31408
|
+
@pulumi.output_type
|
31409
|
+
class GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchErrorResult(dict):
|
31410
|
+
def __init__(__self__, *,
|
31411
|
+
last_error_message: builtins.str,
|
31412
|
+
last_error_number: builtins.int,
|
31413
|
+
time_last_error: builtins.str):
|
31414
|
+
"""
|
31415
|
+
:param builtins.str last_error_message: The error message of the most recent error that caused the I/O thread to stop.
|
31416
|
+
:param builtins.int last_error_number: The error number of the most recent error that caused the I/O thread to stop.
|
31417
|
+
:param builtins.str time_last_error: The timestamp when the most recent I/O error occurred.
|
31418
|
+
"""
|
31419
|
+
pulumi.set(__self__, "last_error_message", last_error_message)
|
31420
|
+
pulumi.set(__self__, "last_error_number", last_error_number)
|
31421
|
+
pulumi.set(__self__, "time_last_error", time_last_error)
|
31422
|
+
|
31423
|
+
@property
|
31424
|
+
@pulumi.getter(name="lastErrorMessage")
|
31425
|
+
def last_error_message(self) -> builtins.str:
|
31426
|
+
"""
|
31427
|
+
The error message of the most recent error that caused the I/O thread to stop.
|
31428
|
+
"""
|
31429
|
+
return pulumi.get(self, "last_error_message")
|
31430
|
+
|
31431
|
+
@property
|
31432
|
+
@pulumi.getter(name="lastErrorNumber")
|
31433
|
+
def last_error_number(self) -> builtins.int:
|
31434
|
+
"""
|
31435
|
+
The error number of the most recent error that caused the I/O thread to stop.
|
31436
|
+
"""
|
31437
|
+
return pulumi.get(self, "last_error_number")
|
31438
|
+
|
31439
|
+
@property
|
31440
|
+
@pulumi.getter(name="timeLastError")
|
31441
|
+
def time_last_error(self) -> builtins.str:
|
31442
|
+
"""
|
31443
|
+
The timestamp when the most recent I/O error occurred.
|
31444
|
+
"""
|
31445
|
+
return pulumi.get(self, "time_last_error")
|
31446
|
+
|
31447
|
+
|
31448
|
+
@pulumi.output_type
|
31449
|
+
class GetManagedMySqlDatabaseOutboundReplicationsFilterResult(dict):
|
31450
|
+
def __init__(__self__, *,
|
31451
|
+
name: builtins.str,
|
31452
|
+
values: Sequence[builtins.str],
|
31453
|
+
regex: Optional[builtins.bool] = None):
|
31454
|
+
pulumi.set(__self__, "name", name)
|
31455
|
+
pulumi.set(__self__, "values", values)
|
31456
|
+
if regex is not None:
|
31457
|
+
pulumi.set(__self__, "regex", regex)
|
30382
31458
|
|
30383
31459
|
@property
|
30384
31460
|
@pulumi.getter
|
30385
|
-
def
|
31461
|
+
def name(self) -> builtins.str:
|
31462
|
+
return pulumi.get(self, "name")
|
31463
|
+
|
31464
|
+
@property
|
31465
|
+
@pulumi.getter
|
31466
|
+
def values(self) -> Sequence[builtins.str]:
|
31467
|
+
return pulumi.get(self, "values")
|
31468
|
+
|
31469
|
+
@property
|
31470
|
+
@pulumi.getter
|
31471
|
+
def regex(self) -> Optional[builtins.bool]:
|
31472
|
+
return pulumi.get(self, "regex")
|
31473
|
+
|
31474
|
+
|
31475
|
+
@pulumi.output_type
|
31476
|
+
class GetManagedMySqlDatabaseOutboundReplicationsManagedMySqlDatabaseOutboundReplicationCollectionResult(dict):
|
31477
|
+
def __init__(__self__, *,
|
31478
|
+
items: Sequence['outputs.GetManagedMySqlDatabaseOutboundReplicationsManagedMySqlDatabaseOutboundReplicationCollectionItemResult'],
|
31479
|
+
outbound_replications_count: builtins.int):
|
30386
31480
|
"""
|
30387
|
-
|
31481
|
+
:param Sequence['GetManagedMySqlDatabaseOutboundReplicationsManagedMySqlDatabaseOutboundReplicationCollectionItemArgs'] items: The list of ManagedMySqlDatabaseOutboundReplicationSummary records.
|
31482
|
+
:param builtins.int outbound_replications_count: The number of outbound replications from this server.
|
30388
31483
|
"""
|
30389
|
-
|
31484
|
+
pulumi.set(__self__, "items", items)
|
31485
|
+
pulumi.set(__self__, "outbound_replications_count", outbound_replications_count)
|
30390
31486
|
|
30391
31487
|
@property
|
30392
31488
|
@pulumi.getter
|
30393
|
-
def
|
31489
|
+
def items(self) -> Sequence['outputs.GetManagedMySqlDatabaseOutboundReplicationsManagedMySqlDatabaseOutboundReplicationCollectionItemResult']:
|
30394
31490
|
"""
|
30395
|
-
The
|
31491
|
+
The list of ManagedMySqlDatabaseOutboundReplicationSummary records.
|
30396
31492
|
"""
|
30397
|
-
return pulumi.get(self, "
|
31493
|
+
return pulumi.get(self, "items")
|
30398
31494
|
|
30399
31495
|
@property
|
30400
|
-
@pulumi.getter(name="
|
30401
|
-
def
|
31496
|
+
@pulumi.getter(name="outboundReplicationsCount")
|
31497
|
+
def outbound_replications_count(self) -> builtins.int:
|
30402
31498
|
"""
|
30403
|
-
The
|
31499
|
+
The number of outbound replications from this server.
|
30404
31500
|
"""
|
30405
|
-
return pulumi.get(self, "
|
31501
|
+
return pulumi.get(self, "outbound_replications_count")
|
31502
|
+
|
31503
|
+
|
31504
|
+
@pulumi.output_type
|
31505
|
+
class GetManagedMySqlDatabaseOutboundReplicationsManagedMySqlDatabaseOutboundReplicationCollectionItemResult(dict):
|
31506
|
+
def __init__(__self__, *,
|
31507
|
+
replica_host: builtins.str,
|
31508
|
+
replica_port: builtins.int,
|
31509
|
+
replica_server_id: builtins.str,
|
31510
|
+
replica_uuid: builtins.str):
|
31511
|
+
"""
|
31512
|
+
:param builtins.str replica_host: The host name of the replica server, as specified on the replica with the --report-host option. This can differ from the machine name as configured in the operating system.
|
31513
|
+
:param builtins.int replica_port: The port on the replica server, as specified on the replica with the --report-port option. A zero in this column means that the replica port (--report-port) was not set.
|
31514
|
+
:param builtins.str replica_server_id: The server ID value of the replica.
|
31515
|
+
:param builtins.str replica_uuid: The Universally Unique Identifier (UUID) value of the replica server.
|
31516
|
+
"""
|
31517
|
+
pulumi.set(__self__, "replica_host", replica_host)
|
31518
|
+
pulumi.set(__self__, "replica_port", replica_port)
|
31519
|
+
pulumi.set(__self__, "replica_server_id", replica_server_id)
|
31520
|
+
pulumi.set(__self__, "replica_uuid", replica_uuid)
|
31521
|
+
|
31522
|
+
@property
|
31523
|
+
@pulumi.getter(name="replicaHost")
|
31524
|
+
def replica_host(self) -> builtins.str:
|
31525
|
+
"""
|
31526
|
+
The host name of the replica server, as specified on the replica with the --report-host option. This can differ from the machine name as configured in the operating system.
|
31527
|
+
"""
|
31528
|
+
return pulumi.get(self, "replica_host")
|
31529
|
+
|
31530
|
+
@property
|
31531
|
+
@pulumi.getter(name="replicaPort")
|
31532
|
+
def replica_port(self) -> builtins.int:
|
31533
|
+
"""
|
31534
|
+
The port on the replica server, as specified on the replica with the --report-port option. A zero in this column means that the replica port (--report-port) was not set.
|
31535
|
+
"""
|
31536
|
+
return pulumi.get(self, "replica_port")
|
31537
|
+
|
31538
|
+
@property
|
31539
|
+
@pulumi.getter(name="replicaServerId")
|
31540
|
+
def replica_server_id(self) -> builtins.str:
|
31541
|
+
"""
|
31542
|
+
The server ID value of the replica.
|
31543
|
+
"""
|
31544
|
+
return pulumi.get(self, "replica_server_id")
|
31545
|
+
|
31546
|
+
@property
|
31547
|
+
@pulumi.getter(name="replicaUuid")
|
31548
|
+
def replica_uuid(self) -> builtins.str:
|
31549
|
+
"""
|
31550
|
+
The Universally Unique Identifier (UUID) value of the replica server.
|
31551
|
+
"""
|
31552
|
+
return pulumi.get(self, "replica_uuid")
|
31553
|
+
|
31554
|
+
|
31555
|
+
@pulumi.output_type
|
31556
|
+
class GetManagedMySqlDatabaseQueryDetailQueryExplainPlanResult(dict):
|
31557
|
+
def __init__(__self__, *,
|
31558
|
+
json_explain: builtins.str,
|
31559
|
+
json_explain_version: builtins.str):
|
31560
|
+
"""
|
31561
|
+
:param builtins.str json_explain: The json format of the explain plan.
|
31562
|
+
:param builtins.str json_explain_version: The version of the Json format of MySQL Explain.
|
31563
|
+
"""
|
31564
|
+
pulumi.set(__self__, "json_explain", json_explain)
|
31565
|
+
pulumi.set(__self__, "json_explain_version", json_explain_version)
|
31566
|
+
|
31567
|
+
@property
|
31568
|
+
@pulumi.getter(name="jsonExplain")
|
31569
|
+
def json_explain(self) -> builtins.str:
|
31570
|
+
"""
|
31571
|
+
The json format of the explain plan.
|
31572
|
+
"""
|
31573
|
+
return pulumi.get(self, "json_explain")
|
31574
|
+
|
31575
|
+
@property
|
31576
|
+
@pulumi.getter(name="jsonExplainVersion")
|
31577
|
+
def json_explain_version(self) -> builtins.str:
|
31578
|
+
"""
|
31579
|
+
The version of the Json format of MySQL Explain.
|
31580
|
+
"""
|
31581
|
+
return pulumi.get(self, "json_explain_version")
|
31582
|
+
|
31583
|
+
|
31584
|
+
@pulumi.output_type
|
31585
|
+
class GetManagedMySqlDatabaseQueryDetailQueryMessageResult(dict):
|
31586
|
+
def __init__(__self__, *,
|
31587
|
+
code: builtins.int,
|
31588
|
+
level: builtins.str,
|
31589
|
+
message_text: builtins.str):
|
31590
|
+
"""
|
31591
|
+
:param builtins.int code: The MySQL code of the raised error, warning or note.
|
31592
|
+
:param builtins.str level: The level of severity of the MySQL message.
|
31593
|
+
:param builtins.str message_text: The MySQL message text of the raised error, warning or note.
|
31594
|
+
"""
|
31595
|
+
pulumi.set(__self__, "code", code)
|
31596
|
+
pulumi.set(__self__, "level", level)
|
31597
|
+
pulumi.set(__self__, "message_text", message_text)
|
31598
|
+
|
31599
|
+
@property
|
31600
|
+
@pulumi.getter
|
31601
|
+
def code(self) -> builtins.int:
|
31602
|
+
"""
|
31603
|
+
The MySQL code of the raised error, warning or note.
|
31604
|
+
"""
|
31605
|
+
return pulumi.get(self, "code")
|
31606
|
+
|
31607
|
+
@property
|
31608
|
+
@pulumi.getter
|
31609
|
+
def level(self) -> builtins.str:
|
31610
|
+
"""
|
31611
|
+
The level of severity of the MySQL message.
|
31612
|
+
"""
|
31613
|
+
return pulumi.get(self, "level")
|
31614
|
+
|
31615
|
+
@property
|
31616
|
+
@pulumi.getter(name="messageText")
|
31617
|
+
def message_text(self) -> builtins.str:
|
31618
|
+
"""
|
31619
|
+
The MySQL message text of the raised error, warning or note.
|
31620
|
+
"""
|
31621
|
+
return pulumi.get(self, "message_text")
|
31622
|
+
|
31623
|
+
|
31624
|
+
@pulumi.output_type
|
31625
|
+
class GetManagedMySqlDatabaseQueryDetailQuerySampleDetailResult(dict):
|
31626
|
+
def __init__(__self__, *,
|
31627
|
+
execution_time: builtins.str,
|
31628
|
+
host: builtins.str,
|
31629
|
+
mysql_instance: builtins.str,
|
31630
|
+
query_sample_text: builtins.str,
|
31631
|
+
thread_id: builtins.int,
|
31632
|
+
time_query_sample_seen: builtins.str,
|
31633
|
+
user: builtins.str):
|
31634
|
+
"""
|
31635
|
+
:param builtins.str execution_time: The total amount of time that has been spent executing the query sample.
|
31636
|
+
:param builtins.str host: The host from which the query sample was run.
|
31637
|
+
:param builtins.str mysql_instance: The MySQL instance against which the query sample was run.
|
31638
|
+
:param builtins.str query_sample_text: The query sample mapped by MySQL to a given normalized query.
|
31639
|
+
:param builtins.int thread_id: The thread id of the connection.
|
31640
|
+
:param builtins.str time_query_sample_seen: The date and time the query sample was last seen.
|
31641
|
+
:param builtins.str user: The user who ran the query sample.
|
31642
|
+
"""
|
31643
|
+
pulumi.set(__self__, "execution_time", execution_time)
|
31644
|
+
pulumi.set(__self__, "host", host)
|
31645
|
+
pulumi.set(__self__, "mysql_instance", mysql_instance)
|
31646
|
+
pulumi.set(__self__, "query_sample_text", query_sample_text)
|
31647
|
+
pulumi.set(__self__, "thread_id", thread_id)
|
31648
|
+
pulumi.set(__self__, "time_query_sample_seen", time_query_sample_seen)
|
31649
|
+
pulumi.set(__self__, "user", user)
|
31650
|
+
|
31651
|
+
@property
|
31652
|
+
@pulumi.getter(name="executionTime")
|
31653
|
+
def execution_time(self) -> builtins.str:
|
31654
|
+
"""
|
31655
|
+
The total amount of time that has been spent executing the query sample.
|
31656
|
+
"""
|
31657
|
+
return pulumi.get(self, "execution_time")
|
31658
|
+
|
31659
|
+
@property
|
31660
|
+
@pulumi.getter
|
31661
|
+
def host(self) -> builtins.str:
|
31662
|
+
"""
|
31663
|
+
The host from which the query sample was run.
|
31664
|
+
"""
|
31665
|
+
return pulumi.get(self, "host")
|
31666
|
+
|
31667
|
+
@property
|
31668
|
+
@pulumi.getter(name="mysqlInstance")
|
31669
|
+
def mysql_instance(self) -> builtins.str:
|
31670
|
+
"""
|
31671
|
+
The MySQL instance against which the query sample was run.
|
31672
|
+
"""
|
31673
|
+
return pulumi.get(self, "mysql_instance")
|
31674
|
+
|
31675
|
+
@property
|
31676
|
+
@pulumi.getter(name="querySampleText")
|
31677
|
+
def query_sample_text(self) -> builtins.str:
|
31678
|
+
"""
|
31679
|
+
The query sample mapped by MySQL to a given normalized query.
|
31680
|
+
"""
|
31681
|
+
return pulumi.get(self, "query_sample_text")
|
31682
|
+
|
31683
|
+
@property
|
31684
|
+
@pulumi.getter(name="threadId")
|
31685
|
+
def thread_id(self) -> builtins.int:
|
31686
|
+
"""
|
31687
|
+
The thread id of the connection.
|
31688
|
+
"""
|
31689
|
+
return pulumi.get(self, "thread_id")
|
31690
|
+
|
31691
|
+
@property
|
31692
|
+
@pulumi.getter(name="timeQuerySampleSeen")
|
31693
|
+
def time_query_sample_seen(self) -> builtins.str:
|
31694
|
+
"""
|
31695
|
+
The date and time the query sample was last seen.
|
31696
|
+
"""
|
31697
|
+
return pulumi.get(self, "time_query_sample_seen")
|
31698
|
+
|
31699
|
+
@property
|
31700
|
+
@pulumi.getter
|
31701
|
+
def user(self) -> builtins.str:
|
31702
|
+
"""
|
31703
|
+
The user who ran the query sample.
|
31704
|
+
"""
|
31705
|
+
return pulumi.get(self, "user")
|
30406
31706
|
|
30407
31707
|
|
30408
31708
|
@pulumi.output_type
|
@@ -30917,6 +32217,7 @@ class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult(dict):
|
|
30917
32217
|
db_name: builtins.str,
|
30918
32218
|
db_version: builtins.str,
|
30919
32219
|
heat_wave_cluster_display_name: builtins.str,
|
32220
|
+
heat_wave_management_type: builtins.str,
|
30920
32221
|
heat_wave_memory_size: builtins.int,
|
30921
32222
|
heat_wave_node_shape: builtins.str,
|
30922
32223
|
heat_wave_nodes: Sequence['outputs.GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemHeatWaveNodeResult'],
|
@@ -30936,6 +32237,7 @@ class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult(dict):
|
|
30936
32237
|
:param builtins.str db_name: The name of the MySQL Database.
|
30937
32238
|
:param builtins.str db_version: The version of the MySQL Database.
|
30938
32239
|
:param builtins.str heat_wave_cluster_display_name: The name of the HeatWave cluster.
|
32240
|
+
:param builtins.str heat_wave_management_type: The customer's selected type for HeatWave management.
|
30939
32241
|
:param builtins.int heat_wave_memory_size: The total memory belonging to the HeatWave cluster in GBs.
|
30940
32242
|
:param builtins.str heat_wave_node_shape: Shape of the nodes in the HeatWave cluster.
|
30941
32243
|
:param Sequence['GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemHeatWaveNodeArgs'] heat_wave_nodes: The information about an individual HeatWave nodes in the cluster.
|
@@ -30954,6 +32256,7 @@ class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult(dict):
|
|
30954
32256
|
pulumi.set(__self__, "db_name", db_name)
|
30955
32257
|
pulumi.set(__self__, "db_version", db_version)
|
30956
32258
|
pulumi.set(__self__, "heat_wave_cluster_display_name", heat_wave_cluster_display_name)
|
32259
|
+
pulumi.set(__self__, "heat_wave_management_type", heat_wave_management_type)
|
30957
32260
|
pulumi.set(__self__, "heat_wave_memory_size", heat_wave_memory_size)
|
30958
32261
|
pulumi.set(__self__, "heat_wave_node_shape", heat_wave_node_shape)
|
30959
32262
|
pulumi.set(__self__, "heat_wave_nodes", heat_wave_nodes)
|
@@ -31008,6 +32311,14 @@ class GetManagedMySqlDatabasesManagedMySqlDatabaseCollectionItemResult(dict):
|
|
31008
32311
|
"""
|
31009
32312
|
return pulumi.get(self, "heat_wave_cluster_display_name")
|
31010
32313
|
|
32314
|
+
@property
|
32315
|
+
@pulumi.getter(name="heatWaveManagementType")
|
32316
|
+
def heat_wave_management_type(self) -> builtins.str:
|
32317
|
+
"""
|
32318
|
+
The customer's selected type for HeatWave management.
|
32319
|
+
"""
|
32320
|
+
return pulumi.get(self, "heat_wave_management_type")
|
32321
|
+
|
31011
32322
|
@property
|
31012
32323
|
@pulumi.getter(name="heatWaveMemorySize")
|
31013
32324
|
def heat_wave_memory_size(self) -> builtins.int:
|