Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Mysql.getMysqlDbSystems
Explore with Pulumi AI
This data source provides the list of Mysql Db Systems in Oracle Cloud Infrastructure MySQL Database service.
Get a list of DB Systems in the specified compartment. The default sort order is by timeUpdated, descending.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testMysqlDbSystems = oci.Mysql.getMysqlDbSystems({
    compartmentId: compartmentId,
    configurationId: mysqlConfigurationId,
    databaseManagements: mysqlDbSystemDatabaseManagement,
    dbSystemId: testDbSystem.id,
    displayName: mysqlDbSystemDisplayName,
    isHeatWaveClusterAttached: mysqlDbSystemIsHeatWaveClusterAttached,
    isUpToDate: mysqlDbSystemIsUpToDate,
    state: mysqlDbSystemState,
});
import pulumi
import pulumi_oci as oci
test_mysql_db_systems = oci.Mysql.get_mysql_db_systems(compartment_id=compartment_id,
    configuration_id=mysql_configuration_id,
    database_managements=mysql_db_system_database_management,
    db_system_id=test_db_system["id"],
    display_name=mysql_db_system_display_name,
    is_heat_wave_cluster_attached=mysql_db_system_is_heat_wave_cluster_attached,
    is_up_to_date=mysql_db_system_is_up_to_date,
    state=mysql_db_system_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/mysql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mysql.GetMysqlDbSystems(ctx, &mysql.GetMysqlDbSystemsArgs{
			CompartmentId:             compartmentId,
			ConfigurationId:           pulumi.StringRef(mysqlConfigurationId),
			DatabaseManagements:       mysqlDbSystemDatabaseManagement,
			DbSystemId:                pulumi.StringRef(testDbSystem.Id),
			DisplayName:               pulumi.StringRef(mysqlDbSystemDisplayName),
			IsHeatWaveClusterAttached: pulumi.BoolRef(mysqlDbSystemIsHeatWaveClusterAttached),
			IsUpToDate:                pulumi.BoolRef(mysqlDbSystemIsUpToDate),
			State:                     pulumi.StringRef(mysqlDbSystemState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testMysqlDbSystems = Oci.Mysql.GetMysqlDbSystems.Invoke(new()
    {
        CompartmentId = compartmentId,
        ConfigurationId = mysqlConfigurationId,
        DatabaseManagements = mysqlDbSystemDatabaseManagement,
        DbSystemId = testDbSystem.Id,
        DisplayName = mysqlDbSystemDisplayName,
        IsHeatWaveClusterAttached = mysqlDbSystemIsHeatWaveClusterAttached,
        IsUpToDate = mysqlDbSystemIsUpToDate,
        State = mysqlDbSystemState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Mysql.MysqlFunctions;
import com.pulumi.oci.Mysql.inputs.GetMysqlDbSystemsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testMysqlDbSystems = MysqlFunctions.getMysqlDbSystems(GetMysqlDbSystemsArgs.builder()
            .compartmentId(compartmentId)
            .configurationId(mysqlConfigurationId)
            .databaseManagements(mysqlDbSystemDatabaseManagement)
            .dbSystemId(testDbSystem.id())
            .displayName(mysqlDbSystemDisplayName)
            .isHeatWaveClusterAttached(mysqlDbSystemIsHeatWaveClusterAttached)
            .isUpToDate(mysqlDbSystemIsUpToDate)
            .state(mysqlDbSystemState)
            .build());
    }
}
variables:
  testMysqlDbSystems:
    fn::invoke:
      function: oci:Mysql:getMysqlDbSystems
      arguments:
        compartmentId: ${compartmentId}
        configurationId: ${mysqlConfigurationId}
        databaseManagements: ${mysqlDbSystemDatabaseManagement}
        dbSystemId: ${testDbSystem.id}
        displayName: ${mysqlDbSystemDisplayName}
        isHeatWaveClusterAttached: ${mysqlDbSystemIsHeatWaveClusterAttached}
        isUpToDate: ${mysqlDbSystemIsUpToDate}
        state: ${mysqlDbSystemState}
Using getMysqlDbSystems
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getMysqlDbSystems(args: GetMysqlDbSystemsArgs, opts?: InvokeOptions): Promise<GetMysqlDbSystemsResult>
function getMysqlDbSystemsOutput(args: GetMysqlDbSystemsOutputArgs, opts?: InvokeOptions): Output<GetMysqlDbSystemsResult>def get_mysql_db_systems(compartment_id: Optional[str] = None,
                         configuration_id: Optional[str] = None,
                         database_managements: Optional[Sequence[str]] = None,
                         db_system_id: Optional[str] = None,
                         display_name: Optional[str] = None,
                         filters: Optional[Sequence[GetMysqlDbSystemsFilter]] = None,
                         is_heat_wave_cluster_attached: Optional[bool] = None,
                         is_up_to_date: Optional[bool] = None,
                         state: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetMysqlDbSystemsResult
def get_mysql_db_systems_output(compartment_id: Optional[pulumi.Input[str]] = None,
                         configuration_id: Optional[pulumi.Input[str]] = None,
                         database_managements: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         db_system_id: Optional[pulumi.Input[str]] = None,
                         display_name: Optional[pulumi.Input[str]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetMysqlDbSystemsFilterArgs]]]] = None,
                         is_heat_wave_cluster_attached: Optional[pulumi.Input[bool]] = None,
                         is_up_to_date: Optional[pulumi.Input[bool]] = None,
                         state: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetMysqlDbSystemsResult]func GetMysqlDbSystems(ctx *Context, args *GetMysqlDbSystemsArgs, opts ...InvokeOption) (*GetMysqlDbSystemsResult, error)
func GetMysqlDbSystemsOutput(ctx *Context, args *GetMysqlDbSystemsOutputArgs, opts ...InvokeOption) GetMysqlDbSystemsResultOutput> Note: This function is named GetMysqlDbSystems in the Go SDK.
public static class GetMysqlDbSystems 
{
    public static Task<GetMysqlDbSystemsResult> InvokeAsync(GetMysqlDbSystemsArgs args, InvokeOptions? opts = null)
    public static Output<GetMysqlDbSystemsResult> Invoke(GetMysqlDbSystemsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMysqlDbSystemsResult> getMysqlDbSystems(GetMysqlDbSystemsArgs args, InvokeOptions options)
public static Output<GetMysqlDbSystemsResult> getMysqlDbSystems(GetMysqlDbSystemsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Mysql/getMysqlDbSystems:getMysqlDbSystems
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The compartment OCID.
- ConfigurationId string
- The requested Configuration instance.
- DatabaseManagements List<string>
- Filter DB Systems by their Database Management configuration.
- DbSystem stringId 
- The DB System OCID.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Filters
List<GetMysql Db Systems Filter> 
- IsHeat boolWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- IsUp boolTo Date 
- Filter instances if they are using the latest revision of the Configuration they are associated with.
- State string
- DbSystem Lifecycle State
- CompartmentId string
- The compartment OCID.
- ConfigurationId string
- The requested Configuration instance.
- DatabaseManagements []string
- Filter DB Systems by their Database Management configuration.
- DbSystem stringId 
- The DB System OCID.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Filters
[]GetMysql Db Systems Filter 
- IsHeat boolWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- IsUp boolTo Date 
- Filter instances if they are using the latest revision of the Configuration they are associated with.
- State string
- DbSystem Lifecycle State
- compartmentId String
- The compartment OCID.
- configurationId String
- The requested Configuration instance.
- databaseManagements List<String>
- Filter DB Systems by their Database Management configuration.
- dbSystem StringId 
- The DB System OCID.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- filters
List<GetDb Systems Filter> 
- isHeat BooleanWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- isUp BooleanTo Date 
- Filter instances if they are using the latest revision of the Configuration they are associated with.
- state String
- DbSystem Lifecycle State
- compartmentId string
- The compartment OCID.
- configurationId string
- The requested Configuration instance.
- databaseManagements string[]
- Filter DB Systems by their Database Management configuration.
- dbSystem stringId 
- The DB System OCID.
- displayName string
- A filter to return only the resource matching the given display name exactly.
- filters
GetMysql Db Systems Filter[] 
- isHeat booleanWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- isUp booleanTo Date 
- Filter instances if they are using the latest revision of the Configuration they are associated with.
- state string
- DbSystem Lifecycle State
- compartment_id str
- The compartment OCID.
- configuration_id str
- The requested Configuration instance.
- database_managements Sequence[str]
- Filter DB Systems by their Database Management configuration.
- db_system_ strid 
- The DB System OCID.
- display_name str
- A filter to return only the resource matching the given display name exactly.
- filters
Sequence[GetMysql Db Systems Filter] 
- is_heat_ boolwave_ cluster_ attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- is_up_ boolto_ date 
- Filter instances if they are using the latest revision of the Configuration they are associated with.
- state str
- DbSystem Lifecycle State
- compartmentId String
- The compartment OCID.
- configurationId String
- The requested Configuration instance.
- databaseManagements List<String>
- Filter DB Systems by their Database Management configuration.
- dbSystem StringId 
- The DB System OCID.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- filters List<Property Map>
- isHeat BooleanWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- isUp BooleanTo Date 
- Filter instances if they are using the latest revision of the Configuration they are associated with.
- state String
- DbSystem Lifecycle State
getMysqlDbSystems Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment the DB System belongs in.
- DbSystems List<GetMysql Db Systems Db System> 
- The list of db_systems.
- Id string
- The provider-assigned unique ID for this managed resource.
- ConfigurationId string
- The OCID of the Configuration to be used for Instances in this DB System.
- DatabaseManagements List<string>
- Whether to enable monitoring via the Database Management service.
- DbSystem stringId 
- The OCID of the DB System from which a backup shall be selected to be restored when creating the new DB System. Use this together with recovery point to perform a point in time recovery operation.
- DisplayName string
- The user-friendly name for the DB System. It does not have to be unique.
- Filters
List<GetMysql Db Systems Filter> 
- IsHeat boolWave Cluster Attached 
- If the DB System has a HeatWave Cluster attached.
- IsUp boolTo Date 
- State string
- The current state of the DB System.
- CompartmentId string
- The OCID of the compartment the DB System belongs in.
- DbSystems []GetMysql Db Systems Db System 
- The list of db_systems.
- Id string
- The provider-assigned unique ID for this managed resource.
- ConfigurationId string
- The OCID of the Configuration to be used for Instances in this DB System.
- DatabaseManagements []string
- Whether to enable monitoring via the Database Management service.
- DbSystem stringId 
- The OCID of the DB System from which a backup shall be selected to be restored when creating the new DB System. Use this together with recovery point to perform a point in time recovery operation.
- DisplayName string
- The user-friendly name for the DB System. It does not have to be unique.
- Filters
[]GetMysql Db Systems Filter 
- IsHeat boolWave Cluster Attached 
- If the DB System has a HeatWave Cluster attached.
- IsUp boolTo Date 
- State string
- The current state of the DB System.
- compartmentId String
- The OCID of the compartment the DB System belongs in.
- dbSystems List<GetDb Systems Db System> 
- The list of db_systems.
- id String
- The provider-assigned unique ID for this managed resource.
- configurationId String
- The OCID of the Configuration to be used for Instances in this DB System.
- databaseManagements List<String>
- Whether to enable monitoring via the Database Management service.
- dbSystem StringId 
- The OCID of the DB System from which a backup shall be selected to be restored when creating the new DB System. Use this together with recovery point to perform a point in time recovery operation.
- displayName String
- The user-friendly name for the DB System. It does not have to be unique.
- filters
List<GetDb Systems Filter> 
- isHeat BooleanWave Cluster Attached 
- If the DB System has a HeatWave Cluster attached.
- isUp BooleanTo Date 
- state String
- The current state of the DB System.
- compartmentId string
- The OCID of the compartment the DB System belongs in.
- dbSystems GetMysql Db Systems Db System[] 
- The list of db_systems.
- id string
- The provider-assigned unique ID for this managed resource.
- configurationId string
- The OCID of the Configuration to be used for Instances in this DB System.
- databaseManagements string[]
- Whether to enable monitoring via the Database Management service.
- dbSystem stringId 
- The OCID of the DB System from which a backup shall be selected to be restored when creating the new DB System. Use this together with recovery point to perform a point in time recovery operation.
- displayName string
- The user-friendly name for the DB System. It does not have to be unique.
- filters
GetMysql Db Systems Filter[] 
- isHeat booleanWave Cluster Attached 
- If the DB System has a HeatWave Cluster attached.
- isUp booleanTo Date 
- state string
- The current state of the DB System.
- compartment_id str
- The OCID of the compartment the DB System belongs in.
- db_systems Sequence[GetMysql Db Systems Db System] 
- The list of db_systems.
- id str
- The provider-assigned unique ID for this managed resource.
- configuration_id str
- The OCID of the Configuration to be used for Instances in this DB System.
- database_managements Sequence[str]
- Whether to enable monitoring via the Database Management service.
- db_system_ strid 
- The OCID of the DB System from which a backup shall be selected to be restored when creating the new DB System. Use this together with recovery point to perform a point in time recovery operation.
- display_name str
- The user-friendly name for the DB System. It does not have to be unique.
- filters
Sequence[GetMysql Db Systems Filter] 
- is_heat_ boolwave_ cluster_ attached 
- If the DB System has a HeatWave Cluster attached.
- is_up_ boolto_ date 
- state str
- The current state of the DB System.
- compartmentId String
- The OCID of the compartment the DB System belongs in.
- dbSystems List<Property Map>
- The list of db_systems.
- id String
- The provider-assigned unique ID for this managed resource.
- configurationId String
- The OCID of the Configuration to be used for Instances in this DB System.
- databaseManagements List<String>
- Whether to enable monitoring via the Database Management service.
- dbSystem StringId 
- The OCID of the DB System from which a backup shall be selected to be restored when creating the new DB System. Use this together with recovery point to perform a point in time recovery operation.
- displayName String
- The user-friendly name for the DB System. It does not have to be unique.
- filters List<Property Map>
- isHeat BooleanWave Cluster Attached 
- If the DB System has a HeatWave Cluster attached.
- isUp BooleanTo Date 
- state String
- The current state of the DB System.
Supporting Types
GetMysqlDbSystemsDbSystem     
- AccessMode string
- The access mode indicating if the database access is unrestricted (to all MySQL user accounts), or restricted (to only certain users with specific privileges):- UNRESTRICTED: the access to the database is not restricted;
- RESTRICTED: the access is allowed only to users with specific privileges; RESTRICTED will correspond to setting the MySQL system variable offline_mode to ON.
 
- AdminPassword string
- AdminUsername string
- AvailabilityDomain string
- The availability domain in which the DB System is placed.
- BackupPolicies List<GetMysql Db Systems Db System Backup Policy> 
- The Backup policy for the DB System.
- Channels
List<GetMysql Db Systems Db System Channel> 
- A list with a summary of all the Channels attached to the DB System.
- CompartmentId string
- The compartment OCID.
- ConfigurationId string
- The requested Configuration instance.
- CrashRecovery string
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- CurrentPlacements List<GetMysql Db Systems Db System Current Placement> 
- The availability domain and fault domain a DB System is placed in.
- CustomerContacts List<GetMysql Db Systems Db System Customer Contact> 
- The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
- DataStorage intSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- DataStorages List<GetMysql Db Systems Db System Data Storage> 
- Data Storage information.
- DatabaseManagement string
- Filter DB Systems by their Database Management configuration.
- DatabaseMode string
- The database mode indicating the types of statements that are allowed to run in the the DB system. This mode applies only to statements run by user connections. Replicated write statements continue to be allowed regardless of the DatabaseMode.- READ_WRITE: allow running read and write statements on the DB system;
- READ_ONLY: only allow running read statements on the DB system.
 
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DeletionPolicies List<GetMysql Db Systems Db System Deletion Policy> 
- The Deletion policy for the DB System.
- Description string
- User-provided data about the DB System.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Endpoints
List<GetMysql Db Systems Db System Endpoint> 
- The network endpoints available for this DB System.
- FaultDomain string
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- HeatWave List<GetClusters Mysql Db Systems Db System Heat Wave Cluster> 
- A summary of a HeatWave cluster.
- HostnameLabel string
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- Id string
- The OCID of the DB System.
- IpAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- IsHeat boolWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- IsHighly boolAvailable 
- Specifies if the DB System is highly available.
- LifecycleDetails string
- Additional information about the current lifecycleState.
- Maintenances
List<GetMysql Db Systems Db System Maintenance> 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- MysqlVersion string
- Name of the MySQL Version in use for the DB System.
- PointIn List<GetTime Recovery Details Mysql Db Systems Db System Point In Time Recovery Detail> 
- Point-in-time Recovery details like earliest and latest recovery time point for the DB System.
- Port int
- The port for primary endpoint of the DB System to listen on.
- PortX int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- ReadEndpoints List<GetMysql Db Systems Db System Read Endpoint> 
- The read endpoint of a DB System.
- SecureConnections List<GetMysql Db Systems Db System Secure Connection> 
- Secure connection configuration details.
- ShapeName string
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- ShutdownType string
- Sources
List<GetMysql Db Systems Db System Source> 
- Parameters detailing how to provision the initial data of the DB System.
- State string
- DbSystem Lifecycle State
- SubnetId string
- The OCID of the subnet the DB System is associated with.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the DB System was created.
- TimeUpdated string
- The time the DB System was last updated.
- AccessMode string
- The access mode indicating if the database access is unrestricted (to all MySQL user accounts), or restricted (to only certain users with specific privileges):- UNRESTRICTED: the access to the database is not restricted;
- RESTRICTED: the access is allowed only to users with specific privileges; RESTRICTED will correspond to setting the MySQL system variable offline_mode to ON.
 
- AdminPassword string
- AdminUsername string
- AvailabilityDomain string
- The availability domain in which the DB System is placed.
- BackupPolicies []GetMysql Db Systems Db System Backup Policy 
- The Backup policy for the DB System.
- Channels
[]GetMysql Db Systems Db System Channel 
- A list with a summary of all the Channels attached to the DB System.
- CompartmentId string
- The compartment OCID.
- ConfigurationId string
- The requested Configuration instance.
- CrashRecovery string
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- CurrentPlacements []GetMysql Db Systems Db System Current Placement 
- The availability domain and fault domain a DB System is placed in.
- CustomerContacts []GetMysql Db Systems Db System Customer Contact 
- The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
- DataStorage intSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- DataStorages []GetMysql Db Systems Db System Data Storage 
- Data Storage information.
- DatabaseManagement string
- Filter DB Systems by their Database Management configuration.
- DatabaseMode string
- The database mode indicating the types of statements that are allowed to run in the the DB system. This mode applies only to statements run by user connections. Replicated write statements continue to be allowed regardless of the DatabaseMode.- READ_WRITE: allow running read and write statements on the DB system;
- READ_ONLY: only allow running read statements on the DB system.
 
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DeletionPolicies []GetMysql Db Systems Db System Deletion Policy 
- The Deletion policy for the DB System.
- Description string
- User-provided data about the DB System.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Endpoints
[]GetMysql Db Systems Db System Endpoint 
- The network endpoints available for this DB System.
- FaultDomain string
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- HeatWave []GetClusters Mysql Db Systems Db System Heat Wave Cluster 
- A summary of a HeatWave cluster.
- HostnameLabel string
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- Id string
- The OCID of the DB System.
- IpAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- IsHeat boolWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- IsHighly boolAvailable 
- Specifies if the DB System is highly available.
- LifecycleDetails string
- Additional information about the current lifecycleState.
- Maintenances
[]GetMysql Db Systems Db System Maintenance 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- MysqlVersion string
- Name of the MySQL Version in use for the DB System.
- PointIn []GetTime Recovery Details Mysql Db Systems Db System Point In Time Recovery Detail 
- Point-in-time Recovery details like earliest and latest recovery time point for the DB System.
- Port int
- The port for primary endpoint of the DB System to listen on.
- PortX int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- ReadEndpoints []GetMysql Db Systems Db System Read Endpoint 
- The read endpoint of a DB System.
- SecureConnections []GetMysql Db Systems Db System Secure Connection 
- Secure connection configuration details.
- ShapeName string
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- ShutdownType string
- Sources
[]GetMysql Db Systems Db System Source 
- Parameters detailing how to provision the initial data of the DB System.
- State string
- DbSystem Lifecycle State
- SubnetId string
- The OCID of the subnet the DB System is associated with.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the DB System was created.
- TimeUpdated string
- The time the DB System was last updated.
- accessMode String
- The access mode indicating if the database access is unrestricted (to all MySQL user accounts), or restricted (to only certain users with specific privileges):- UNRESTRICTED: the access to the database is not restricted;
- RESTRICTED: the access is allowed only to users with specific privileges; RESTRICTED will correspond to setting the MySQL system variable offline_mode to ON.
 
- adminPassword String
- adminUsername String
- availabilityDomain String
- The availability domain in which the DB System is placed.
- backupPolicies List<GetDb Systems Db System Backup Policy> 
- The Backup policy for the DB System.
- channels
List<GetDb Systems Db System Channel> 
- A list with a summary of all the Channels attached to the DB System.
- compartmentId String
- The compartment OCID.
- configurationId String
- The requested Configuration instance.
- crashRecovery String
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- currentPlacements List<GetDb Systems Db System Current Placement> 
- The availability domain and fault domain a DB System is placed in.
- customerContacts List<GetDb Systems Db System Customer Contact> 
- The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
- dataStorage IntegerSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- dataStorages List<GetDb Systems Db System Data Storage> 
- Data Storage information.
- databaseManagement String
- Filter DB Systems by their Database Management configuration.
- databaseMode String
- The database mode indicating the types of statements that are allowed to run in the the DB system. This mode applies only to statements run by user connections. Replicated write statements continue to be allowed regardless of the DatabaseMode.- READ_WRITE: allow running read and write statements on the DB system;
- READ_ONLY: only allow running read statements on the DB system.
 
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deletionPolicies List<GetDb Systems Db System Deletion Policy> 
- The Deletion policy for the DB System.
- description String
- User-provided data about the DB System.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- endpoints
List<GetDb Systems Db System Endpoint> 
- The network endpoints available for this DB System.
- faultDomain String
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- heatWave List<GetClusters Db Systems Db System Heat Wave Cluster> 
- A summary of a HeatWave cluster.
- hostnameLabel String
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- id String
- The OCID of the DB System.
- ipAddress String
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- isHeat BooleanWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- isHighly BooleanAvailable 
- Specifies if the DB System is highly available.
- lifecycleDetails String
- Additional information about the current lifecycleState.
- maintenances
List<GetDb Systems Db System Maintenance> 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- mysqlVersion String
- Name of the MySQL Version in use for the DB System.
- pointIn List<GetTime Recovery Details Db Systems Db System Point In Time Recovery Detail> 
- Point-in-time Recovery details like earliest and latest recovery time point for the DB System.
- port Integer
- The port for primary endpoint of the DB System to listen on.
- portX Integer
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- readEndpoints List<GetDb Systems Db System Read Endpoint> 
- The read endpoint of a DB System.
- secureConnections List<GetDb Systems Db System Secure Connection> 
- Secure connection configuration details.
- shapeName String
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- shutdownType String
- sources
List<GetDb Systems Db System Source> 
- Parameters detailing how to provision the initial data of the DB System.
- state String
- DbSystem Lifecycle State
- subnetId String
- The OCID of the subnet the DB System is associated with.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the DB System was created.
- timeUpdated String
- The time the DB System was last updated.
- accessMode string
- The access mode indicating if the database access is unrestricted (to all MySQL user accounts), or restricted (to only certain users with specific privileges):- UNRESTRICTED: the access to the database is not restricted;
- RESTRICTED: the access is allowed only to users with specific privileges; RESTRICTED will correspond to setting the MySQL system variable offline_mode to ON.
 
- adminPassword string
- adminUsername string
- availabilityDomain string
- The availability domain in which the DB System is placed.
- backupPolicies GetMysql Db Systems Db System Backup Policy[] 
- The Backup policy for the DB System.
- channels
GetMysql Db Systems Db System Channel[] 
- A list with a summary of all the Channels attached to the DB System.
- compartmentId string
- The compartment OCID.
- configurationId string
- The requested Configuration instance.
- crashRecovery string
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- currentPlacements GetMysql Db Systems Db System Current Placement[] 
- The availability domain and fault domain a DB System is placed in.
- customerContacts GetMysql Db Systems Db System Customer Contact[] 
- The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
- dataStorage numberSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- dataStorages GetMysql Db Systems Db System Data Storage[] 
- Data Storage information.
- databaseManagement string
- Filter DB Systems by their Database Management configuration.
- databaseMode string
- The database mode indicating the types of statements that are allowed to run in the the DB system. This mode applies only to statements run by user connections. Replicated write statements continue to be allowed regardless of the DatabaseMode.- READ_WRITE: allow running read and write statements on the DB system;
- READ_ONLY: only allow running read statements on the DB system.
 
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deletionPolicies GetMysql Db Systems Db System Deletion Policy[] 
- The Deletion policy for the DB System.
- description string
- User-provided data about the DB System.
- displayName string
- A filter to return only the resource matching the given display name exactly.
- endpoints
GetMysql Db Systems Db System Endpoint[] 
- The network endpoints available for this DB System.
- faultDomain string
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- heatWave GetClusters Mysql Db Systems Db System Heat Wave Cluster[] 
- A summary of a HeatWave cluster.
- hostnameLabel string
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- id string
- The OCID of the DB System.
- ipAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- isHeat booleanWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- isHighly booleanAvailable 
- Specifies if the DB System is highly available.
- lifecycleDetails string
- Additional information about the current lifecycleState.
- maintenances
GetMysql Db Systems Db System Maintenance[] 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- mysqlVersion string
- Name of the MySQL Version in use for the DB System.
- pointIn GetTime Recovery Details Mysql Db Systems Db System Point In Time Recovery Detail[] 
- Point-in-time Recovery details like earliest and latest recovery time point for the DB System.
- port number
- The port for primary endpoint of the DB System to listen on.
- portX number
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- readEndpoints GetMysql Db Systems Db System Read Endpoint[] 
- The read endpoint of a DB System.
- secureConnections GetMysql Db Systems Db System Secure Connection[] 
- Secure connection configuration details.
- shapeName string
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- shutdownType string
- sources
GetMysql Db Systems Db System Source[] 
- Parameters detailing how to provision the initial data of the DB System.
- state string
- DbSystem Lifecycle State
- subnetId string
- The OCID of the subnet the DB System is associated with.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the DB System was created.
- timeUpdated string
- The time the DB System was last updated.
- access_mode str
- The access mode indicating if the database access is unrestricted (to all MySQL user accounts), or restricted (to only certain users with specific privileges):- UNRESTRICTED: the access to the database is not restricted;
- RESTRICTED: the access is allowed only to users with specific privileges; RESTRICTED will correspond to setting the MySQL system variable offline_mode to ON.
 
- admin_password str
- admin_username str
- availability_domain str
- The availability domain in which the DB System is placed.
- backup_policies Sequence[GetMysql Db Systems Db System Backup Policy] 
- The Backup policy for the DB System.
- channels
Sequence[GetMysql Db Systems Db System Channel] 
- A list with a summary of all the Channels attached to the DB System.
- compartment_id str
- The compartment OCID.
- configuration_id str
- The requested Configuration instance.
- crash_recovery str
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- current_placements Sequence[GetMysql Db Systems Db System Current Placement] 
- The availability domain and fault domain a DB System is placed in.
- customer_contacts Sequence[GetMysql Db Systems Db System Customer Contact] 
- The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
- data_storage_ intsize_ in_ gb 
- Initial size of the data volume in GiBs that will be created and attached.
- data_storages Sequence[GetMysql Db Systems Db System Data Storage] 
- Data Storage information.
- database_management str
- Filter DB Systems by their Database Management configuration.
- database_mode str
- The database mode indicating the types of statements that are allowed to run in the the DB system. This mode applies only to statements run by user connections. Replicated write statements continue to be allowed regardless of the DatabaseMode.- READ_WRITE: allow running read and write statements on the DB system;
- READ_ONLY: only allow running read statements on the DB system.
 
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deletion_policies Sequence[GetMysql Db Systems Db System Deletion Policy] 
- The Deletion policy for the DB System.
- description str
- User-provided data about the DB System.
- display_name str
- A filter to return only the resource matching the given display name exactly.
- endpoints
Sequence[GetMysql Db Systems Db System Endpoint] 
- The network endpoints available for this DB System.
- fault_domain str
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- heat_wave_ Sequence[Getclusters Mysql Db Systems Db System Heat Wave Cluster] 
- A summary of a HeatWave cluster.
- hostname_label str
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- id str
- The OCID of the DB System.
- ip_address str
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- is_heat_ boolwave_ cluster_ attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- is_highly_ boolavailable 
- Specifies if the DB System is highly available.
- lifecycle_details str
- Additional information about the current lifecycleState.
- maintenances
Sequence[GetMysql Db Systems Db System Maintenance] 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- mysql_version str
- Name of the MySQL Version in use for the DB System.
- point_in_ Sequence[Gettime_ recovery_ details Mysql Db Systems Db System Point In Time Recovery Detail] 
- Point-in-time Recovery details like earliest and latest recovery time point for the DB System.
- port int
- The port for primary endpoint of the DB System to listen on.
- port_x int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- read_endpoints Sequence[GetMysql Db Systems Db System Read Endpoint] 
- The read endpoint of a DB System.
- secure_connections Sequence[GetMysql Db Systems Db System Secure Connection] 
- Secure connection configuration details.
- shape_name str
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- shutdown_type str
- sources
Sequence[GetMysql Db Systems Db System Source] 
- Parameters detailing how to provision the initial data of the DB System.
- state str
- DbSystem Lifecycle State
- subnet_id str
- The OCID of the subnet the DB System is associated with.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the DB System was created.
- time_updated str
- The time the DB System was last updated.
- accessMode String
- The access mode indicating if the database access is unrestricted (to all MySQL user accounts), or restricted (to only certain users with specific privileges):- UNRESTRICTED: the access to the database is not restricted;
- RESTRICTED: the access is allowed only to users with specific privileges; RESTRICTED will correspond to setting the MySQL system variable offline_mode to ON.
 
- adminPassword String
- adminUsername String
- availabilityDomain String
- The availability domain in which the DB System is placed.
- backupPolicies List<Property Map>
- The Backup policy for the DB System.
- channels List<Property Map>
- A list with a summary of all the Channels attached to the DB System.
- compartmentId String
- The compartment OCID.
- configurationId String
- The requested Configuration instance.
- crashRecovery String
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- currentPlacements List<Property Map>
- The availability domain and fault domain a DB System is placed in.
- customerContacts List<Property Map>
- The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
- dataStorage NumberSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- dataStorages List<Property Map>
- Data Storage information.
- databaseManagement String
- Filter DB Systems by their Database Management configuration.
- databaseMode String
- The database mode indicating the types of statements that are allowed to run in the the DB system. This mode applies only to statements run by user connections. Replicated write statements continue to be allowed regardless of the DatabaseMode.- READ_WRITE: allow running read and write statements on the DB system;
- READ_ONLY: only allow running read statements on the DB system.
 
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deletionPolicies List<Property Map>
- The Deletion policy for the DB System.
- description String
- User-provided data about the DB System.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- endpoints List<Property Map>
- The network endpoints available for this DB System.
- faultDomain String
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- heatWave List<Property Map>Clusters 
- A summary of a HeatWave cluster.
- hostnameLabel String
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- id String
- The OCID of the DB System.
- ipAddress String
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- isHeat BooleanWave Cluster Attached 
- If true, return only DB Systems with a HeatWave cluster attached, if false return only DB Systems with no HeatWave cluster attached. If not present, return all DB Systems.
- isHighly BooleanAvailable 
- Specifies if the DB System is highly available.
- lifecycleDetails String
- Additional information about the current lifecycleState.
- maintenances List<Property Map>
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- mysqlVersion String
- Name of the MySQL Version in use for the DB System.
- pointIn List<Property Map>Time Recovery Details 
- Point-in-time Recovery details like earliest and latest recovery time point for the DB System.
- port Number
- The port for primary endpoint of the DB System to listen on.
- portX Number
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- readEndpoints List<Property Map>
- The read endpoint of a DB System.
- secureConnections List<Property Map>
- Secure connection configuration details.
- shapeName String
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- shutdownType String
- sources List<Property Map>
- Parameters detailing how to provision the initial data of the DB System.
- state String
- DbSystem Lifecycle State
- subnetId String
- The OCID of the subnet the DB System is associated with.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the DB System was created.
- timeUpdated String
- The time the DB System was last updated.
GetMysqlDbSystemsDbSystemBackupPolicy       
- CopyPolicies List<GetMysql Db Systems Db System Backup Policy Copy Policy> 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- PitrPolicies List<GetMysql Db Systems Db System Backup Policy Pitr Policy> 
- The PITR policy for the DB System.
- RetentionIn intDays 
- The number of days automated backups are retained.
- WindowStart stringTime 
- The start time of the maintenance window.
- CopyPolicies []GetMysql Db Systems Db System Backup Policy Copy Policy 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- PitrPolicies []GetMysql Db Systems Db System Backup Policy Pitr Policy 
- The PITR policy for the DB System.
- RetentionIn intDays 
- The number of days automated backups are retained.
- WindowStart stringTime 
- The start time of the maintenance window.
- copyPolicies List<GetDb Systems Db System Backup Policy Copy Policy> 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- pitrPolicies List<GetDb Systems Db System Backup Policy Pitr Policy> 
- The PITR policy for the DB System.
- retentionIn IntegerDays 
- The number of days automated backups are retained.
- windowStart StringTime 
- The start time of the maintenance window.
- copyPolicies GetMysql Db Systems Db System Backup Policy Copy Policy[] 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isEnabled boolean
- Specifies if the DB System read endpoint is enabled or not.
- pitrPolicies GetMysql Db Systems Db System Backup Policy Pitr Policy[] 
- The PITR policy for the DB System.
- retentionIn numberDays 
- The number of days automated backups are retained.
- windowStart stringTime 
- The start time of the maintenance window.
- copy_policies Sequence[GetMysql Db Systems Db System Backup Policy Copy Policy] 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- is_enabled bool
- Specifies if the DB System read endpoint is enabled or not.
- pitr_policies Sequence[GetMysql Db Systems Db System Backup Policy Pitr Policy] 
- The PITR policy for the DB System.
- retention_in_ intdays 
- The number of days automated backups are retained.
- window_start_ strtime 
- The start time of the maintenance window.
- copyPolicies List<Property Map>
- List of policies of a DB system to schedule cross-region DB system backup copy.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- pitrPolicies List<Property Map>
- The PITR policy for the DB System.
- retentionIn NumberDays 
- The number of days automated backups are retained.
- windowStart StringTime 
- The start time of the maintenance window.
GetMysqlDbSystemsDbSystemBackupPolicyCopyPolicy         
- BackupCopy intRetention In Days 
- Number of days to retain the copied DB system backup.
- CopyTo stringRegion 
- The destination region name to which the DB system backup will be copied.
- BackupCopy intRetention In Days 
- Number of days to retain the copied DB system backup.
- CopyTo stringRegion 
- The destination region name to which the DB system backup will be copied.
- backupCopy IntegerRetention In Days 
- Number of days to retain the copied DB system backup.
- copyTo StringRegion 
- The destination region name to which the DB system backup will be copied.
- backupCopy numberRetention In Days 
- Number of days to retain the copied DB system backup.
- copyTo stringRegion 
- The destination region name to which the DB system backup will be copied.
- backup_copy_ intretention_ in_ days 
- Number of days to retain the copied DB system backup.
- copy_to_ strregion 
- The destination region name to which the DB system backup will be copied.
- backupCopy NumberRetention In Days 
- Number of days to retain the copied DB system backup.
- copyTo StringRegion 
- The destination region name to which the DB system backup will be copied.
GetMysqlDbSystemsDbSystemBackupPolicyPitrPolicy         
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- isEnabled boolean
- Specifies if the DB System read endpoint is enabled or not.
- is_enabled bool
- Specifies if the DB System read endpoint is enabled or not.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
GetMysqlDbSystemsDbSystemChannel      
- CompartmentId string
- The compartment OCID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- The OCID of the DB System.
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- LifecycleDetails string
- Additional information about the current lifecycleState.
- Sources
List<GetMysql Db Systems Db System Channel Source> 
- Parameters detailing how to provision the initial data of the DB System.
- State string
- DbSystem Lifecycle State
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- Targets
List<GetMysql Db Systems Db System Channel Target> 
- Details about the Channel target.
- TimeCreated string
- The date and time the DB System was created.
- TimeUpdated string
- The time the DB System was last updated.
- CompartmentId string
- The compartment OCID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- The OCID of the DB System.
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- LifecycleDetails string
- Additional information about the current lifecycleState.
- Sources
[]GetMysql Db Systems Db System Channel Source 
- Parameters detailing how to provision the initial data of the DB System.
- State string
- DbSystem Lifecycle State
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- Targets
[]GetMysql Db Systems Db System Channel Target 
- Details about the Channel target.
- TimeCreated string
- The date and time the DB System was created.
- TimeUpdated string
- The time the DB System was last updated.
- compartmentId String
- The compartment OCID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- A filter to return only the resource matching the given display name exactly.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- The OCID of the DB System.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- lifecycleDetails String
- Additional information about the current lifecycleState.
- sources
List<GetDb Systems Db System Channel Source> 
- Parameters detailing how to provision the initial data of the DB System.
- state String
- DbSystem Lifecycle State
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- targets
List<GetDb Systems Db System Channel Target> 
- Details about the Channel target.
- timeCreated String
- The date and time the DB System was created.
- timeUpdated String
- The time the DB System was last updated.
- compartmentId string
- The compartment OCID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName string
- A filter to return only the resource matching the given display name exactly.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id string
- The OCID of the DB System.
- isEnabled boolean
- Specifies if the DB System read endpoint is enabled or not.
- lifecycleDetails string
- Additional information about the current lifecycleState.
- sources
GetMysql Db Systems Db System Channel Source[] 
- Parameters detailing how to provision the initial data of the DB System.
- state string
- DbSystem Lifecycle State
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- targets
GetMysql Db Systems Db System Channel Target[] 
- Details about the Channel target.
- timeCreated string
- The date and time the DB System was created.
- timeUpdated string
- The time the DB System was last updated.
- compartment_id str
- The compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- display_name str
- A filter to return only the resource matching the given display name exactly.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- The OCID of the DB System.
- is_enabled bool
- Specifies if the DB System read endpoint is enabled or not.
- lifecycle_details str
- Additional information about the current lifecycleState.
- sources
Sequence[GetMysql Db Systems Db System Channel Source] 
- Parameters detailing how to provision the initial data of the DB System.
- state str
- DbSystem Lifecycle State
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- targets
Sequence[GetMysql Db Systems Db System Channel Target] 
- Details about the Channel target.
- time_created str
- The date and time the DB System was created.
- time_updated str
- The time the DB System was last updated.
- compartmentId String
- The compartment OCID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- A filter to return only the resource matching the given display name exactly.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- The OCID of the DB System.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- lifecycleDetails String
- Additional information about the current lifecycleState.
- sources List<Property Map>
- Parameters detailing how to provision the initial data of the DB System.
- state String
- DbSystem Lifecycle State
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- targets List<Property Map>
- Details about the Channel target.
- timeCreated String
- The date and time the DB System was created.
- timeUpdated String
- The time the DB System was last updated.
GetMysqlDbSystemsDbSystemChannelSource       
- AnonymousTransactions List<GetHandlings Mysql Db Systems Db System Channel Source Anonymous Transactions Handling> 
- Specifies how the replication channel handles replicated transactions without an identifier, enabling replication from a source that does not use transaction-id-based replication to a replica that does.
- Hostname string
- The network address of the DB System.
- Port int
- The port for primary endpoint of the DB System to listen on.
- SourceType string
- The specific source identifier.
- SslCa List<GetCertificates Mysql Db Systems Db System Channel Source Ssl Ca Certificate> 
- The CA certificate of the server used for VERIFY_IDENTITY and VERIFY_CA ssl modes.
- SslMode string
- The SSL mode of the Channel.
- Username string
- The name of the replication user on the source MySQL instance. The username has a maximum length of 96 characters. For more information, please see the MySQL documentation
- AnonymousTransactions []GetHandlings Mysql Db Systems Db System Channel Source Anonymous Transactions Handling 
- Specifies how the replication channel handles replicated transactions without an identifier, enabling replication from a source that does not use transaction-id-based replication to a replica that does.
- Hostname string
- The network address of the DB System.
- Port int
- The port for primary endpoint of the DB System to listen on.
- SourceType string
- The specific source identifier.
- SslCa []GetCertificates Mysql Db Systems Db System Channel Source Ssl Ca Certificate 
- The CA certificate of the server used for VERIFY_IDENTITY and VERIFY_CA ssl modes.
- SslMode string
- The SSL mode of the Channel.
- Username string
- The name of the replication user on the source MySQL instance. The username has a maximum length of 96 characters. For more information, please see the MySQL documentation
- anonymousTransactions List<GetHandlings Db Systems Db System Channel Source Anonymous Transactions Handling> 
- Specifies how the replication channel handles replicated transactions without an identifier, enabling replication from a source that does not use transaction-id-based replication to a replica that does.
- hostname String
- The network address of the DB System.
- port Integer
- The port for primary endpoint of the DB System to listen on.
- sourceType String
- The specific source identifier.
- sslCa List<GetCertificates Db Systems Db System Channel Source Ssl Ca Certificate> 
- The CA certificate of the server used for VERIFY_IDENTITY and VERIFY_CA ssl modes.
- sslMode String
- The SSL mode of the Channel.
- username String
- The name of the replication user on the source MySQL instance. The username has a maximum length of 96 characters. For more information, please see the MySQL documentation
- anonymousTransactions GetHandlings Mysql Db Systems Db System Channel Source Anonymous Transactions Handling[] 
- Specifies how the replication channel handles replicated transactions without an identifier, enabling replication from a source that does not use transaction-id-based replication to a replica that does.
- hostname string
- The network address of the DB System.
- port number
- The port for primary endpoint of the DB System to listen on.
- sourceType string
- The specific source identifier.
- sslCa GetCertificates Mysql Db Systems Db System Channel Source Ssl Ca Certificate[] 
- The CA certificate of the server used for VERIFY_IDENTITY and VERIFY_CA ssl modes.
- sslMode string
- The SSL mode of the Channel.
- username string
- The name of the replication user on the source MySQL instance. The username has a maximum length of 96 characters. For more information, please see the MySQL documentation
- anonymous_transactions_ Sequence[Gethandlings Mysql Db Systems Db System Channel Source Anonymous Transactions Handling] 
- Specifies how the replication channel handles replicated transactions without an identifier, enabling replication from a source that does not use transaction-id-based replication to a replica that does.
- hostname str
- The network address of the DB System.
- port int
- The port for primary endpoint of the DB System to listen on.
- source_type str
- The specific source identifier.
- ssl_ca_ Sequence[Getcertificates Mysql Db Systems Db System Channel Source Ssl Ca Certificate] 
- The CA certificate of the server used for VERIFY_IDENTITY and VERIFY_CA ssl modes.
- ssl_mode str
- The SSL mode of the Channel.
- username str
- The name of the replication user on the source MySQL instance. The username has a maximum length of 96 characters. For more information, please see the MySQL documentation
- anonymousTransactions List<Property Map>Handlings 
- Specifies how the replication channel handles replicated transactions without an identifier, enabling replication from a source that does not use transaction-id-based replication to a replica that does.
- hostname String
- The network address of the DB System.
- port Number
- The port for primary endpoint of the DB System to listen on.
- sourceType String
- The specific source identifier.
- sslCa List<Property Map>Certificates 
- The CA certificate of the server used for VERIFY_IDENTITY and VERIFY_CA ssl modes.
- sslMode String
- The SSL mode of the Channel.
- username String
- The name of the replication user on the source MySQL instance. The username has a maximum length of 96 characters. For more information, please see the MySQL documentation
GetMysqlDbSystemsDbSystemChannelSourceAnonymousTransactionsHandling          
- LastConfigured stringLog Filename 
- Specifies one of the coordinates (file) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- LastConfigured stringLog Offset 
- Specifies one of the coordinates (offset) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- Policy string
- Specifies how the replication channel handles anonymous transactions.
- Uuid string
- The UUID that is used as a prefix when generating transaction identifiers for anonymous transactions coming from the source. You can change the UUID later.
- LastConfigured stringLog Filename 
- Specifies one of the coordinates (file) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- LastConfigured stringLog Offset 
- Specifies one of the coordinates (offset) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- Policy string
- Specifies how the replication channel handles anonymous transactions.
- Uuid string
- The UUID that is used as a prefix when generating transaction identifiers for anonymous transactions coming from the source. You can change the UUID later.
- lastConfigured StringLog Filename 
- Specifies one of the coordinates (file) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- lastConfigured StringLog Offset 
- Specifies one of the coordinates (offset) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- policy String
- Specifies how the replication channel handles anonymous transactions.
- uuid String
- The UUID that is used as a prefix when generating transaction identifiers for anonymous transactions coming from the source. You can change the UUID later.
- lastConfigured stringLog Filename 
- Specifies one of the coordinates (file) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- lastConfigured stringLog Offset 
- Specifies one of the coordinates (offset) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- policy string
- Specifies how the replication channel handles anonymous transactions.
- uuid string
- The UUID that is used as a prefix when generating transaction identifiers for anonymous transactions coming from the source. You can change the UUID later.
- last_configured_ strlog_ filename 
- Specifies one of the coordinates (file) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- last_configured_ strlog_ offset 
- Specifies one of the coordinates (offset) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- policy str
- Specifies how the replication channel handles anonymous transactions.
- uuid str
- The UUID that is used as a prefix when generating transaction identifiers for anonymous transactions coming from the source. You can change the UUID later.
- lastConfigured StringLog Filename 
- Specifies one of the coordinates (file) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- lastConfigured StringLog Offset 
- Specifies one of the coordinates (offset) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.
- policy String
- Specifies how the replication channel handles anonymous transactions.
- uuid String
- The UUID that is used as a prefix when generating transaction identifiers for anonymous transactions coming from the source. You can change the UUID later.
GetMysqlDbSystemsDbSystemChannelSourceSslCaCertificate          
- CertificateType string
- The type of CA certificate.
- Contents string
- The string containing the CA certificate in PEM format.
- CertificateType string
- The type of CA certificate.
- Contents string
- The string containing the CA certificate in PEM format.
- certificateType String
- The type of CA certificate.
- contents String
- The string containing the CA certificate in PEM format.
- certificateType string
- The type of CA certificate.
- contents string
- The string containing the CA certificate in PEM format.
- certificate_type str
- The type of CA certificate.
- contents str
- The string containing the CA certificate in PEM format.
- certificateType String
- The type of CA certificate.
- contents String
- The string containing the CA certificate in PEM format.
GetMysqlDbSystemsDbSystemChannelTarget       
- ApplierUsername string
- The username for the replication applier of the target MySQL DB System.
- ChannelName string
- The case-insensitive name that identifies the replication channel. Channel names must follow the rules defined for MySQL identifiers. The names of non-Deleted Channels must be unique for each DB System.
- DbSystem stringId 
- The DB System OCID.
- DelayIn intSeconds 
- Specifies the amount of time, in seconds, that the channel waits before applying a transaction received from the source.
- Filters
List<GetMysql Db Systems Db System Channel Target Filter> 
- Replication filter rules to be applied at the DB System Channel target.
- TablesWithout stringPrimary Key Handling 
- Specifies how a replication channel handles the creation and alteration of tables that do not have a primary key.
- TargetType string
- The specific target identifier.
- ApplierUsername string
- The username for the replication applier of the target MySQL DB System.
- ChannelName string
- The case-insensitive name that identifies the replication channel. Channel names must follow the rules defined for MySQL identifiers. The names of non-Deleted Channels must be unique for each DB System.
- DbSystem stringId 
- The DB System OCID.
- DelayIn intSeconds 
- Specifies the amount of time, in seconds, that the channel waits before applying a transaction received from the source.
- Filters
[]GetMysql Db Systems Db System Channel Target Filter 
- Replication filter rules to be applied at the DB System Channel target.
- TablesWithout stringPrimary Key Handling 
- Specifies how a replication channel handles the creation and alteration of tables that do not have a primary key.
- TargetType string
- The specific target identifier.
- applierUsername String
- The username for the replication applier of the target MySQL DB System.
- channelName String
- The case-insensitive name that identifies the replication channel. Channel names must follow the rules defined for MySQL identifiers. The names of non-Deleted Channels must be unique for each DB System.
- dbSystem StringId 
- The DB System OCID.
- delayIn IntegerSeconds 
- Specifies the amount of time, in seconds, that the channel waits before applying a transaction received from the source.
- filters
List<GetDb Systems Db System Channel Target Filter> 
- Replication filter rules to be applied at the DB System Channel target.
- tablesWithout StringPrimary Key Handling 
- Specifies how a replication channel handles the creation and alteration of tables that do not have a primary key.
- targetType String
- The specific target identifier.
- applierUsername string
- The username for the replication applier of the target MySQL DB System.
- channelName string
- The case-insensitive name that identifies the replication channel. Channel names must follow the rules defined for MySQL identifiers. The names of non-Deleted Channels must be unique for each DB System.
- dbSystem stringId 
- The DB System OCID.
- delayIn numberSeconds 
- Specifies the amount of time, in seconds, that the channel waits before applying a transaction received from the source.
- filters
GetMysql Db Systems Db System Channel Target Filter[] 
- Replication filter rules to be applied at the DB System Channel target.
- tablesWithout stringPrimary Key Handling 
- Specifies how a replication channel handles the creation and alteration of tables that do not have a primary key.
- targetType string
- The specific target identifier.
- applier_username str
- The username for the replication applier of the target MySQL DB System.
- channel_name str
- The case-insensitive name that identifies the replication channel. Channel names must follow the rules defined for MySQL identifiers. The names of non-Deleted Channels must be unique for each DB System.
- db_system_ strid 
- The DB System OCID.
- delay_in_ intseconds 
- Specifies the amount of time, in seconds, that the channel waits before applying a transaction received from the source.
- filters
Sequence[GetMysql Db Systems Db System Channel Target Filter] 
- Replication filter rules to be applied at the DB System Channel target.
- tables_without_ strprimary_ key_ handling 
- Specifies how a replication channel handles the creation and alteration of tables that do not have a primary key.
- target_type str
- The specific target identifier.
- applierUsername String
- The username for the replication applier of the target MySQL DB System.
- channelName String
- The case-insensitive name that identifies the replication channel. Channel names must follow the rules defined for MySQL identifiers. The names of non-Deleted Channels must be unique for each DB System.
- dbSystem StringId 
- The DB System OCID.
- delayIn NumberSeconds 
- Specifies the amount of time, in seconds, that the channel waits before applying a transaction received from the source.
- filters List<Property Map>
- Replication filter rules to be applied at the DB System Channel target.
- tablesWithout StringPrimary Key Handling 
- Specifies how a replication channel handles the creation and alteration of tables that do not have a primary key.
- targetType String
- The specific target identifier.
GetMysqlDbSystemsDbSystemChannelTargetFilter        
- Type string
- The type of the filter rule.
- Value string
- The body of the filter rule. This can represent a database, a table, or a database pair (represented as "db1->db2"). For more information, see Replication Filtering Rules.
- Type string
- The type of the filter rule.
- Value string
- The body of the filter rule. This can represent a database, a table, or a database pair (represented as "db1->db2"). For more information, see Replication Filtering Rules.
- type String
- The type of the filter rule.
- value String
- The body of the filter rule. This can represent a database, a table, or a database pair (represented as "db1->db2"). For more information, see Replication Filtering Rules.
- type string
- The type of the filter rule.
- value string
- The body of the filter rule. This can represent a database, a table, or a database pair (represented as "db1->db2"). For more information, see Replication Filtering Rules.
- type str
- The type of the filter rule.
- value str
- The body of the filter rule. This can represent a database, a table, or a database pair (represented as "db1->db2"). For more information, see Replication Filtering Rules.
- type String
- The type of the filter rule.
- value String
- The body of the filter rule. This can represent a database, a table, or a database pair (represented as "db1->db2"). For more information, see Replication Filtering Rules.
GetMysqlDbSystemsDbSystemCurrentPlacement       
- AvailabilityDomain string
- The availability domain in which the DB System is placed.
- FaultDomain string
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- AvailabilityDomain string
- The availability domain in which the DB System is placed.
- FaultDomain string
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- availabilityDomain String
- The availability domain in which the DB System is placed.
- faultDomain String
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- availabilityDomain string
- The availability domain in which the DB System is placed.
- faultDomain string
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- availability_domain str
- The availability domain in which the DB System is placed.
- fault_domain str
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
- availabilityDomain String
- The availability domain in which the DB System is placed.
- faultDomain String
- The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
GetMysqlDbSystemsDbSystemCustomerContact       
- Email string
- The email address used by Oracle to send notifications regarding the DB System.
- Email string
- The email address used by Oracle to send notifications regarding the DB System.
- email String
- The email address used by Oracle to send notifications regarding the DB System.
- email string
- The email address used by Oracle to send notifications regarding the DB System.
- email str
- The email address used by Oracle to send notifications regarding the DB System.
- email String
- The email address used by Oracle to send notifications regarding the DB System.
GetMysqlDbSystemsDbSystemDataStorage       
- AllocatedStorage intSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- DataStorage intSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- DataStorage intSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- IsAuto boolExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- MaxStorage intSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- AllocatedStorage intSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- DataStorage intSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- DataStorage intSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- IsAuto boolExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- MaxStorage intSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- allocatedStorage IntegerSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- dataStorage IntegerSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- dataStorage IntegerSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- isAuto BooleanExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- maxStorage IntegerSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- allocatedStorage numberSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- dataStorage numberSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- dataStorage numberSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- isAuto booleanExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- maxStorage numberSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- allocated_storage_ intsize_ in_ gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- data_storage_ intsize_ in_ gb 
- Initial size of the data volume in GiBs that will be created and attached.
- data_storage_ intsize_ limit_ in_ gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- is_auto_ boolexpand_ storage_ enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- max_storage_ intsize_ in_ gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- allocatedStorage NumberSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- dataStorage NumberSize In Gb 
- Initial size of the data volume in GiBs that will be created and attached.
- dataStorage NumberSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- isAuto BooleanExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- maxStorage NumberSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
GetMysqlDbSystemsDbSystemDeletionPolicy       
- AutomaticBackup stringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- FinalBackup string
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- IsDelete boolProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- AutomaticBackup stringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- FinalBackup string
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- IsDelete boolProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- automaticBackup StringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- finalBackup String
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- isDelete BooleanProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- automaticBackup stringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- finalBackup string
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- isDelete booleanProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- automatic_backup_ strretention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- final_backup str
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- is_delete_ boolprotected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- automaticBackup StringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- finalBackup String
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- isDelete BooleanProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
GetMysqlDbSystemsDbSystemEndpoint      
- Hostname string
- The network address of the DB System.
- IpAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- Modes List<string>
- The access modes from the client that this endpoint supports.
- Port int
- The port for primary endpoint of the DB System to listen on.
- PortX int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- ResourceId string
- The OCID of the resource that this endpoint is attached to.
- ResourceType string
- The type of endpoint that clients and connectors can connect to.
- Status string
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- StatusDetails string
- Additional information about the current endpoint status.
- Hostname string
- The network address of the DB System.
- IpAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- Modes []string
- The access modes from the client that this endpoint supports.
- Port int
- The port for primary endpoint of the DB System to listen on.
- PortX int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- ResourceId string
- The OCID of the resource that this endpoint is attached to.
- ResourceType string
- The type of endpoint that clients and connectors can connect to.
- Status string
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- StatusDetails string
- Additional information about the current endpoint status.
- hostname String
- The network address of the DB System.
- ipAddress String
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- modes List<String>
- The access modes from the client that this endpoint supports.
- port Integer
- The port for primary endpoint of the DB System to listen on.
- portX Integer
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- resourceId String
- The OCID of the resource that this endpoint is attached to.
- resourceType String
- The type of endpoint that clients and connectors can connect to.
- status String
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- statusDetails String
- Additional information about the current endpoint status.
- hostname string
- The network address of the DB System.
- ipAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- modes string[]
- The access modes from the client that this endpoint supports.
- port number
- The port for primary endpoint of the DB System to listen on.
- portX number
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- resourceId string
- The OCID of the resource that this endpoint is attached to.
- resourceType string
- The type of endpoint that clients and connectors can connect to.
- status string
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- statusDetails string
- Additional information about the current endpoint status.
- hostname str
- The network address of the DB System.
- ip_address str
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- modes Sequence[str]
- The access modes from the client that this endpoint supports.
- port int
- The port for primary endpoint of the DB System to listen on.
- port_x int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- resource_id str
- The OCID of the resource that this endpoint is attached to.
- resource_type str
- The type of endpoint that clients and connectors can connect to.
- status str
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- status_details str
- Additional information about the current endpoint status.
- hostname String
- The network address of the DB System.
- ipAddress String
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- modes List<String>
- The access modes from the client that this endpoint supports.
- port Number
- The port for primary endpoint of the DB System to listen on.
- portX Number
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- resourceId String
- The OCID of the resource that this endpoint is attached to.
- resourceType String
- The type of endpoint that clients and connectors can connect to.
- status String
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- statusDetails String
- Additional information about the current endpoint status.
GetMysqlDbSystemsDbSystemHeatWaveCluster        
- ClusterSize int
- The number of analytics-processing compute instances, of the specified shape, in the HeatWave cluster.
- IsLakehouse boolEnabled 
- Lakehouse enabled status for the HeatWave cluster.
- ShapeName string
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- State string
- DbSystem Lifecycle State
- TimeCreated string
- The date and time the DB System was created.
- TimeUpdated string
- The time the DB System was last updated.
- ClusterSize int
- The number of analytics-processing compute instances, of the specified shape, in the HeatWave cluster.
- IsLakehouse boolEnabled 
- Lakehouse enabled status for the HeatWave cluster.
- ShapeName string
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- State string
- DbSystem Lifecycle State
- TimeCreated string
- The date and time the DB System was created.
- TimeUpdated string
- The time the DB System was last updated.
- clusterSize Integer
- The number of analytics-processing compute instances, of the specified shape, in the HeatWave cluster.
- isLakehouse BooleanEnabled 
- Lakehouse enabled status for the HeatWave cluster.
- shapeName String
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- state String
- DbSystem Lifecycle State
- timeCreated String
- The date and time the DB System was created.
- timeUpdated String
- The time the DB System was last updated.
- clusterSize number
- The number of analytics-processing compute instances, of the specified shape, in the HeatWave cluster.
- isLakehouse booleanEnabled 
- Lakehouse enabled status for the HeatWave cluster.
- shapeName string
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- state string
- DbSystem Lifecycle State
- timeCreated string
- The date and time the DB System was created.
- timeUpdated string
- The time the DB System was last updated.
- cluster_size int
- The number of analytics-processing compute instances, of the specified shape, in the HeatWave cluster.
- is_lakehouse_ boolenabled 
- Lakehouse enabled status for the HeatWave cluster.
- shape_name str
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- state str
- DbSystem Lifecycle State
- time_created str
- The date and time the DB System was created.
- time_updated str
- The time the DB System was last updated.
- clusterSize Number
- The number of analytics-processing compute instances, of the specified shape, in the HeatWave cluster.
- isLakehouse BooleanEnabled 
- Lakehouse enabled status for the HeatWave cluster.
- shapeName String
- The shape of the primary instances of the DB System. The shape determines resources allocated to a DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use (the ListShapes operation.
- state String
- DbSystem Lifecycle State
- timeCreated String
- The date and time the DB System was created.
- timeUpdated String
- The time the DB System was last updated.
GetMysqlDbSystemsDbSystemMaintenance      
- WindowStart stringTime 
- The start time of the maintenance window.
- WindowStart stringTime 
- The start time of the maintenance window.
- windowStart StringTime 
- The start time of the maintenance window.
- windowStart stringTime 
- The start time of the maintenance window.
- window_start_ strtime 
- The start time of the maintenance window.
- windowStart StringTime 
- The start time of the maintenance window.
GetMysqlDbSystemsDbSystemPointInTimeRecoveryDetail          
- TimeEarliest stringRecovery Point 
- Earliest recovery time point for the DB System, as described by RFC 3339.
- TimeLatest stringRecovery Point 
- Latest recovery time point for the DB System, as described by RFC 3339.
- TimeEarliest stringRecovery Point 
- Earliest recovery time point for the DB System, as described by RFC 3339.
- TimeLatest stringRecovery Point 
- Latest recovery time point for the DB System, as described by RFC 3339.
- timeEarliest StringRecovery Point 
- Earliest recovery time point for the DB System, as described by RFC 3339.
- timeLatest StringRecovery Point 
- Latest recovery time point for the DB System, as described by RFC 3339.
- timeEarliest stringRecovery Point 
- Earliest recovery time point for the DB System, as described by RFC 3339.
- timeLatest stringRecovery Point 
- Latest recovery time point for the DB System, as described by RFC 3339.
- time_earliest_ strrecovery_ point 
- Earliest recovery time point for the DB System, as described by RFC 3339.
- time_latest_ strrecovery_ point 
- Latest recovery time point for the DB System, as described by RFC 3339.
- timeEarliest StringRecovery Point 
- Earliest recovery time point for the DB System, as described by RFC 3339.
- timeLatest StringRecovery Point 
- Latest recovery time point for the DB System, as described by RFC 3339.
GetMysqlDbSystemsDbSystemReadEndpoint       
- ExcludeIps List<string>
- A list of IP addresses of read replicas that are excluded from serving read requests.
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- ReadEndpoint stringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- ReadEndpoint stringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- ExcludeIps []string
- A list of IP addresses of read replicas that are excluded from serving read requests.
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- ReadEndpoint stringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- ReadEndpoint stringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- excludeIps List<String>
- A list of IP addresses of read replicas that are excluded from serving read requests.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- readEndpoint StringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- readEndpoint StringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- excludeIps string[]
- A list of IP addresses of read replicas that are excluded from serving read requests.
- isEnabled boolean
- Specifies if the DB System read endpoint is enabled or not.
- readEndpoint stringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- readEndpoint stringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- exclude_ips Sequence[str]
- A list of IP addresses of read replicas that are excluded from serving read requests.
- is_enabled bool
- Specifies if the DB System read endpoint is enabled or not.
- read_endpoint_ strhostname_ label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- read_endpoint_ strip_ address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- excludeIps List<String>
- A list of IP addresses of read replicas that are excluded from serving read requests.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- readEndpoint StringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- readEndpoint StringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
GetMysqlDbSystemsDbSystemSecureConnection       
- CertificateGeneration stringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- CertificateId string
- The OCID of the certificate to use.
- CertificateGeneration stringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- CertificateId string
- The OCID of the certificate to use.
- certificateGeneration StringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- certificateId String
- The OCID of the certificate to use.
- certificateGeneration stringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- certificateId string
- The OCID of the certificate to use.
- certificate_generation_ strtype 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- certificate_id str
- The OCID of the certificate to use.
- certificateGeneration StringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- certificateId String
- The OCID of the certificate to use.
GetMysqlDbSystemsDbSystemSource      
- BackupId string
- The OCID of the backup to be used as the source for the new DB System.
- DbSystem stringId 
- The DB System OCID.
- RecoveryPoint string
- The date and time, as per RFC 3339, of the change up to which the new DB System shall be restored to, using a backup and logs from the original DB System. In case no point in time is specified, then this new DB System shall be restored up to the latest change recorded for the original DB System.
- SourceType string
- The specific source identifier.
- SourceUrl string
- BackupId string
- The OCID of the backup to be used as the source for the new DB System.
- DbSystem stringId 
- The DB System OCID.
- RecoveryPoint string
- The date and time, as per RFC 3339, of the change up to which the new DB System shall be restored to, using a backup and logs from the original DB System. In case no point in time is specified, then this new DB System shall be restored up to the latest change recorded for the original DB System.
- SourceType string
- The specific source identifier.
- SourceUrl string
- backupId String
- The OCID of the backup to be used as the source for the new DB System.
- dbSystem StringId 
- The DB System OCID.
- recoveryPoint String
- The date and time, as per RFC 3339, of the change up to which the new DB System shall be restored to, using a backup and logs from the original DB System. In case no point in time is specified, then this new DB System shall be restored up to the latest change recorded for the original DB System.
- sourceType String
- The specific source identifier.
- sourceUrl String
- backupId string
- The OCID of the backup to be used as the source for the new DB System.
- dbSystem stringId 
- The DB System OCID.
- recoveryPoint string
- The date and time, as per RFC 3339, of the change up to which the new DB System shall be restored to, using a backup and logs from the original DB System. In case no point in time is specified, then this new DB System shall be restored up to the latest change recorded for the original DB System.
- sourceType string
- The specific source identifier.
- sourceUrl string
- backup_id str
- The OCID of the backup to be used as the source for the new DB System.
- db_system_ strid 
- The DB System OCID.
- recovery_point str
- The date and time, as per RFC 3339, of the change up to which the new DB System shall be restored to, using a backup and logs from the original DB System. In case no point in time is specified, then this new DB System shall be restored up to the latest change recorded for the original DB System.
- source_type str
- The specific source identifier.
- source_url str
- backupId String
- The OCID of the backup to be used as the source for the new DB System.
- dbSystem StringId 
- The DB System OCID.
- recoveryPoint String
- The date and time, as per RFC 3339, of the change up to which the new DB System shall be restored to, using a backup and logs from the original DB System. In case no point in time is specified, then this new DB System shall be restored up to the latest change recorded for the original DB System.
- sourceType String
- The specific source identifier.
- sourceUrl String
GetMysqlDbSystemsFilter    
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.