1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getManagedMySqlDatabaseInboundReplications
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

oci.DatabaseManagement.getManagedMySqlDatabaseInboundReplications

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

    This data source provides the list of Managed My Sql Database Inbound Replications in Oracle Cloud Infrastructure Database Management service.

    Retrieves information about the inbound replications of a specific MySQL server.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testManagedMySqlDatabaseInboundReplications = oci.DatabaseManagement.getManagedMySqlDatabaseInboundReplications({
        managedMySqlDatabaseId: testManagedMySqlDatabase.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_managed_my_sql_database_inbound_replications = oci.DatabaseManagement.get_managed_my_sql_database_inbound_replications(managed_my_sql_database_id=test_managed_my_sql_database["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/databasemanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasemanagement.GetManagedMySqlDatabaseInboundReplications(ctx, &databasemanagement.GetManagedMySqlDatabaseInboundReplicationsArgs{
    			ManagedMySqlDatabaseId: testManagedMySqlDatabase.Id,
    		}, 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 testManagedMySqlDatabaseInboundReplications = Oci.DatabaseManagement.GetManagedMySqlDatabaseInboundReplications.Invoke(new()
        {
            ManagedMySqlDatabaseId = testManagedMySqlDatabase.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
    import com.pulumi.oci.DatabaseManagement.inputs.GetManagedMySqlDatabaseInboundReplicationsArgs;
    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 testManagedMySqlDatabaseInboundReplications = DatabaseManagementFunctions.getManagedMySqlDatabaseInboundReplications(GetManagedMySqlDatabaseInboundReplicationsArgs.builder()
                .managedMySqlDatabaseId(testManagedMySqlDatabase.id())
                .build());
    
        }
    }
    
    variables:
      testManagedMySqlDatabaseInboundReplications:
        fn::invoke:
          function: oci:DatabaseManagement:getManagedMySqlDatabaseInboundReplications
          arguments:
            managedMySqlDatabaseId: ${testManagedMySqlDatabase.id}
    

    Using getManagedMySqlDatabaseInboundReplications

    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 getManagedMySqlDatabaseInboundReplications(args: GetManagedMySqlDatabaseInboundReplicationsArgs, opts?: InvokeOptions): Promise<GetManagedMySqlDatabaseInboundReplicationsResult>
    function getManagedMySqlDatabaseInboundReplicationsOutput(args: GetManagedMySqlDatabaseInboundReplicationsOutputArgs, opts?: InvokeOptions): Output<GetManagedMySqlDatabaseInboundReplicationsResult>
    def get_managed_my_sql_database_inbound_replications(filters: Optional[Sequence[GetManagedMySqlDatabaseInboundReplicationsFilter]] = None,
                                                         managed_my_sql_database_id: Optional[str] = None,
                                                         opts: Optional[InvokeOptions] = None) -> GetManagedMySqlDatabaseInboundReplicationsResult
    def get_managed_my_sql_database_inbound_replications_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetManagedMySqlDatabaseInboundReplicationsFilterArgs]]]] = None,
                                                         managed_my_sql_database_id: Optional[pulumi.Input[str]] = None,
                                                         opts: Optional[InvokeOptions] = None) -> Output[GetManagedMySqlDatabaseInboundReplicationsResult]
    func GetManagedMySqlDatabaseInboundReplications(ctx *Context, args *GetManagedMySqlDatabaseInboundReplicationsArgs, opts ...InvokeOption) (*GetManagedMySqlDatabaseInboundReplicationsResult, error)
    func GetManagedMySqlDatabaseInboundReplicationsOutput(ctx *Context, args *GetManagedMySqlDatabaseInboundReplicationsOutputArgs, opts ...InvokeOption) GetManagedMySqlDatabaseInboundReplicationsResultOutput

    > Note: This function is named GetManagedMySqlDatabaseInboundReplications in the Go SDK.

    public static class GetManagedMySqlDatabaseInboundReplications 
    {
        public static Task<GetManagedMySqlDatabaseInboundReplicationsResult> InvokeAsync(GetManagedMySqlDatabaseInboundReplicationsArgs args, InvokeOptions? opts = null)
        public static Output<GetManagedMySqlDatabaseInboundReplicationsResult> Invoke(GetManagedMySqlDatabaseInboundReplicationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagedMySqlDatabaseInboundReplicationsResult> getManagedMySqlDatabaseInboundReplications(GetManagedMySqlDatabaseInboundReplicationsArgs args, InvokeOptions options)
    public static Output<GetManagedMySqlDatabaseInboundReplicationsResult> getManagedMySqlDatabaseInboundReplications(GetManagedMySqlDatabaseInboundReplicationsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseManagement/getManagedMySqlDatabaseInboundReplications:getManagedMySqlDatabaseInboundReplications
      arguments:
        # arguments dictionary

    The following arguments are supported:

    managedMySqlDatabaseId String
    The OCID of the Managed MySQL Database.
    filters List<Property Map>

    getManagedMySqlDatabaseInboundReplications Result

    The following output properties are available:

    id String
    The provider-assigned unique ID for this managed resource.
    managedMySqlDatabaseId String
    managedMySqlDatabaseInboundReplicationCollections List<Property Map>
    The list of managed_my_sql_database_inbound_replication_collection.
    filters List<Property Map>

    Supporting Types

    GetManagedMySqlDatabaseInboundReplicationsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollection

    InboundReplicationsCount int
    The number of sources this server is replicating from.
    Items List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItem>
    A list of ManagedMySqlDatabaseInboundReplicationSummary records.
    ParallelWorkers int
    The number of applier threads for executing replication transactions in parallel.
    PreserveCommitOrder string
    For multi-threaded replicas, indicates if transactions are executed and committed on the replica in the same order as they appear in the relay log.
    ReplicaServerId string
    The server ID value of this replica.
    ReplicaUuid string
    The Universally Unique Identifier (UUID) value of this replica server.
    InboundReplicationsCount int
    The number of sources this server is replicating from.
    Items []GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItem
    A list of ManagedMySqlDatabaseInboundReplicationSummary records.
    ParallelWorkers int
    The number of applier threads for executing replication transactions in parallel.
    PreserveCommitOrder string
    For multi-threaded replicas, indicates if transactions are executed and committed on the replica in the same order as they appear in the relay log.
    ReplicaServerId string
    The server ID value of this replica.
    ReplicaUuid string
    The Universally Unique Identifier (UUID) value of this replica server.
    inboundReplicationsCount Integer
    The number of sources this server is replicating from.
    items List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItem>
    A list of ManagedMySqlDatabaseInboundReplicationSummary records.
    parallelWorkers Integer
    The number of applier threads for executing replication transactions in parallel.
    preserveCommitOrder String
    For multi-threaded replicas, indicates if transactions are executed and committed on the replica in the same order as they appear in the relay log.
    replicaServerId String
    The server ID value of this replica.
    replicaUuid String
    The Universally Unique Identifier (UUID) value of this replica server.
    inboundReplicationsCount number
    The number of sources this server is replicating from.
    items GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItem[]
    A list of ManagedMySqlDatabaseInboundReplicationSummary records.
    parallelWorkers number
    The number of applier threads for executing replication transactions in parallel.
    preserveCommitOrder string
    For multi-threaded replicas, indicates if transactions are executed and committed on the replica in the same order as they appear in the relay log.
    replicaServerId string
    The server ID value of this replica.
    replicaUuid string
    The Universally Unique Identifier (UUID) value of this replica server.
    inbound_replications_count int
    The number of sources this server is replicating from.
    items Sequence[GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItem]
    A list of ManagedMySqlDatabaseInboundReplicationSummary records.
    parallel_workers int
    The number of applier threads for executing replication transactions in parallel.
    preserve_commit_order str
    For multi-threaded replicas, indicates if transactions are executed and committed on the replica in the same order as they appear in the relay log.
    replica_server_id str
    The server ID value of this replica.
    replica_uuid str
    The Universally Unique Identifier (UUID) value of this replica server.
    inboundReplicationsCount Number
    The number of sources this server is replicating from.
    items List<Property Map>
    A list of ManagedMySqlDatabaseInboundReplicationSummary records.
    parallelWorkers Number
    The number of applier threads for executing replication transactions in parallel.
    preserveCommitOrder String
    For multi-threaded replicas, indicates if transactions are executed and committed on the replica in the same order as they appear in the relay log.
    replicaServerId String
    The server ID value of this replica.
    replicaUuid String
    The Universally Unique Identifier (UUID) value of this replica server.

    GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItem

    ApplierFilters List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilter>
    A list of MySqlReplicationApplierFilter records.
    ApplyDelay double
    Time in seconds it took for the transaction that is currently being applied between being committed on the source and applied on the replica.
    ApplyErrors List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyError>
    Error from apply operation of a MySQL server replication channel.
    ApplyStatus string
    The current status of apply operations.
    BusyWorkers int
    The number of workers currently busy applying transactions from the source server.
    ChannelName string
    The name of the replication channel.
    DesiredDelaySeconds string
    The desired number of seconds that the replica must lag the source.
    FetchErrors List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchError>
    Error from fetch operation of a MySQL server replication channel.
    FetchStatus string
    The current status of fetch operations.
    GtidAssignment string
    Whether the channel assigns global transaction identifiers (GTIDs) to anonymous replicated transactions. OFF means no GTIDs are assigned. LOCAL means a GTID is assigned that includes this replica's own universally unique identifier (UUID). A UUID as value indicates that a GTID is assigned which includes that manually set UUID value.
    RelayLogStorageSpaceUsed string
    The total size in bytes of all the existing relay log files pertaining to this channel.
    RemainingDelaySeconds string
    If the replica is waiting for the desired delay seconds to pass since the source applied an event, this field contains the number of delay seconds remaining.
    RetrievedGtidSet string
    The set of global transaction IDs corresponding to all transactions received by this replica from the source server. Empty if GTIDs are not in use.
    SecondsBehindSource string
    The number of seconds the replica is behind the source server.
    SourceHost string
    The host name or IP address of the source this replica is connected to.
    SourcePort int
    The port used to connect to the source.
    SourceServerId string
    The server ID value from the source server.
    SourceUuid string
    The Universally Unique Identifier (UUID) value from the source server.
    TransactionsReceived string
    The number of transactions received by this replica from the source server.
    ApplierFilters []GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilter
    A list of MySqlReplicationApplierFilter records.
    ApplyDelay float64
    Time in seconds it took for the transaction that is currently being applied between being committed on the source and applied on the replica.
    ApplyErrors []GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyError
    Error from apply operation of a MySQL server replication channel.
    ApplyStatus string
    The current status of apply operations.
    BusyWorkers int
    The number of workers currently busy applying transactions from the source server.
    ChannelName string
    The name of the replication channel.
    DesiredDelaySeconds string
    The desired number of seconds that the replica must lag the source.
    FetchErrors []GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchError
    Error from fetch operation of a MySQL server replication channel.
    FetchStatus string
    The current status of fetch operations.
    GtidAssignment string
    Whether the channel assigns global transaction identifiers (GTIDs) to anonymous replicated transactions. OFF means no GTIDs are assigned. LOCAL means a GTID is assigned that includes this replica's own universally unique identifier (UUID). A UUID as value indicates that a GTID is assigned which includes that manually set UUID value.
    RelayLogStorageSpaceUsed string
    The total size in bytes of all the existing relay log files pertaining to this channel.
    RemainingDelaySeconds string
    If the replica is waiting for the desired delay seconds to pass since the source applied an event, this field contains the number of delay seconds remaining.
    RetrievedGtidSet string
    The set of global transaction IDs corresponding to all transactions received by this replica from the source server. Empty if GTIDs are not in use.
    SecondsBehindSource string
    The number of seconds the replica is behind the source server.
    SourceHost string
    The host name or IP address of the source this replica is connected to.
    SourcePort int
    The port used to connect to the source.
    SourceServerId string
    The server ID value from the source server.
    SourceUuid string
    The Universally Unique Identifier (UUID) value from the source server.
    TransactionsReceived string
    The number of transactions received by this replica from the source server.
    applierFilters List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilter>
    A list of MySqlReplicationApplierFilter records.
    applyDelay Double
    Time in seconds it took for the transaction that is currently being applied between being committed on the source and applied on the replica.
    applyErrors List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyError>
    Error from apply operation of a MySQL server replication channel.
    applyStatus String
    The current status of apply operations.
    busyWorkers Integer
    The number of workers currently busy applying transactions from the source server.
    channelName String
    The name of the replication channel.
    desiredDelaySeconds String
    The desired number of seconds that the replica must lag the source.
    fetchErrors List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchError>
    Error from fetch operation of a MySQL server replication channel.
    fetchStatus String
    The current status of fetch operations.
    gtidAssignment String
    Whether the channel assigns global transaction identifiers (GTIDs) to anonymous replicated transactions. OFF means no GTIDs are assigned. LOCAL means a GTID is assigned that includes this replica's own universally unique identifier (UUID). A UUID as value indicates that a GTID is assigned which includes that manually set UUID value.
    relayLogStorageSpaceUsed String
    The total size in bytes of all the existing relay log files pertaining to this channel.
    remainingDelaySeconds String
    If the replica is waiting for the desired delay seconds to pass since the source applied an event, this field contains the number of delay seconds remaining.
    retrievedGtidSet String
    The set of global transaction IDs corresponding to all transactions received by this replica from the source server. Empty if GTIDs are not in use.
    secondsBehindSource String
    The number of seconds the replica is behind the source server.
    sourceHost String
    The host name or IP address of the source this replica is connected to.
    sourcePort Integer
    The port used to connect to the source.
    sourceServerId String
    The server ID value from the source server.
    sourceUuid String
    The Universally Unique Identifier (UUID) value from the source server.
    transactionsReceived String
    The number of transactions received by this replica from the source server.
    applierFilters GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilter[]
    A list of MySqlReplicationApplierFilter records.
    applyDelay number
    Time in seconds it took for the transaction that is currently being applied between being committed on the source and applied on the replica.
    applyErrors GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyError[]
    Error from apply operation of a MySQL server replication channel.
    applyStatus string
    The current status of apply operations.
    busyWorkers number
    The number of workers currently busy applying transactions from the source server.
    channelName string
    The name of the replication channel.
    desiredDelaySeconds string
    The desired number of seconds that the replica must lag the source.
    fetchErrors GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchError[]
    Error from fetch operation of a MySQL server replication channel.
    fetchStatus string
    The current status of fetch operations.
    gtidAssignment string
    Whether the channel assigns global transaction identifiers (GTIDs) to anonymous replicated transactions. OFF means no GTIDs are assigned. LOCAL means a GTID is assigned that includes this replica's own universally unique identifier (UUID). A UUID as value indicates that a GTID is assigned which includes that manually set UUID value.
    relayLogStorageSpaceUsed string
    The total size in bytes of all the existing relay log files pertaining to this channel.
    remainingDelaySeconds string
    If the replica is waiting for the desired delay seconds to pass since the source applied an event, this field contains the number of delay seconds remaining.
    retrievedGtidSet string
    The set of global transaction IDs corresponding to all transactions received by this replica from the source server. Empty if GTIDs are not in use.
    secondsBehindSource string
    The number of seconds the replica is behind the source server.
    sourceHost string
    The host name or IP address of the source this replica is connected to.
    sourcePort number
    The port used to connect to the source.
    sourceServerId string
    The server ID value from the source server.
    sourceUuid string
    The Universally Unique Identifier (UUID) value from the source server.
    transactionsReceived string
    The number of transactions received by this replica from the source server.
    applier_filters Sequence[GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilter]
    A list of MySqlReplicationApplierFilter records.
    apply_delay float
    Time in seconds it took for the transaction that is currently being applied between being committed on the source and applied on the replica.
    apply_errors Sequence[GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyError]
    Error from apply operation of a MySQL server replication channel.
    apply_status str
    The current status of apply operations.
    busy_workers int
    The number of workers currently busy applying transactions from the source server.
    channel_name str
    The name of the replication channel.
    desired_delay_seconds str
    The desired number of seconds that the replica must lag the source.
    fetch_errors Sequence[GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchError]
    Error from fetch operation of a MySQL server replication channel.
    fetch_status str
    The current status of fetch operations.
    gtid_assignment str
    Whether the channel assigns global transaction identifiers (GTIDs) to anonymous replicated transactions. OFF means no GTIDs are assigned. LOCAL means a GTID is assigned that includes this replica's own universally unique identifier (UUID). A UUID as value indicates that a GTID is assigned which includes that manually set UUID value.
    relay_log_storage_space_used str
    The total size in bytes of all the existing relay log files pertaining to this channel.
    remaining_delay_seconds str
    If the replica is waiting for the desired delay seconds to pass since the source applied an event, this field contains the number of delay seconds remaining.
    retrieved_gtid_set str
    The set of global transaction IDs corresponding to all transactions received by this replica from the source server. Empty if GTIDs are not in use.
    seconds_behind_source str
    The number of seconds the replica is behind the source server.
    source_host str
    The host name or IP address of the source this replica is connected to.
    source_port int
    The port used to connect to the source.
    source_server_id str
    The server ID value from the source server.
    source_uuid str
    The Universally Unique Identifier (UUID) value from the source server.
    transactions_received str
    The number of transactions received by this replica from the source server.
    applierFilters List<Property Map>
    A list of MySqlReplicationApplierFilter records.
    applyDelay Number
    Time in seconds it took for the transaction that is currently being applied between being committed on the source and applied on the replica.
    applyErrors List<Property Map>
    Error from apply operation of a MySQL server replication channel.
    applyStatus String
    The current status of apply operations.
    busyWorkers Number
    The number of workers currently busy applying transactions from the source server.
    channelName String
    The name of the replication channel.
    desiredDelaySeconds String
    The desired number of seconds that the replica must lag the source.
    fetchErrors List<Property Map>
    Error from fetch operation of a MySQL server replication channel.
    fetchStatus String
    The current status of fetch operations.
    gtidAssignment String
    Whether the channel assigns global transaction identifiers (GTIDs) to anonymous replicated transactions. OFF means no GTIDs are assigned. LOCAL means a GTID is assigned that includes this replica's own universally unique identifier (UUID). A UUID as value indicates that a GTID is assigned which includes that manually set UUID value.
    relayLogStorageSpaceUsed String
    The total size in bytes of all the existing relay log files pertaining to this channel.
    remainingDelaySeconds String
    If the replica is waiting for the desired delay seconds to pass since the source applied an event, this field contains the number of delay seconds remaining.
    retrievedGtidSet String
    The set of global transaction IDs corresponding to all transactions received by this replica from the source server. Empty if GTIDs are not in use.
    secondsBehindSource String
    The number of seconds the replica is behind the source server.
    sourceHost String
    The host name or IP address of the source this replica is connected to.
    sourcePort Number
    The port used to connect to the source.
    sourceServerId String
    The server ID value from the source server.
    sourceUuid String
    The Universally Unique Identifier (UUID) value from the source server.
    transactionsReceived String
    The number of transactions received by this replica from the source server.

    GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplierFilter

    FilterName string
    Type of replication filter that has been configured for the replication channel.
    FilterRule string
    The rules configured for the replication filter type.
    FilterName string
    Type of replication filter that has been configured for the replication channel.
    FilterRule string
    The rules configured for the replication filter type.
    filterName String
    Type of replication filter that has been configured for the replication channel.
    filterRule String
    The rules configured for the replication filter type.
    filterName string
    Type of replication filter that has been configured for the replication channel.
    filterRule string
    The rules configured for the replication filter type.
    filter_name str
    Type of replication filter that has been configured for the replication channel.
    filter_rule str
    The rules configured for the replication filter type.
    filterName String
    Type of replication filter that has been configured for the replication channel.
    filterRule String
    The rules configured for the replication filter type.

    GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyError

    LastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    LastErrorNumber int
    The error number of the most recent error that caused the I/O thread to stop.
    TimeLastError string
    The timestamp when the most recent I/O error occurred.
    WorkerErrors List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerError>
    A list of MySqlApplyErrorWorker records.
    LastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    LastErrorNumber int
    The error number of the most recent error that caused the I/O thread to stop.
    TimeLastError string
    The timestamp when the most recent I/O error occurred.
    WorkerErrors []GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerError
    A list of MySqlApplyErrorWorker records.
    lastErrorMessage String
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber Integer
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError String
    The timestamp when the most recent I/O error occurred.
    workerErrors List<GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerError>
    A list of MySqlApplyErrorWorker records.
    lastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber number
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError string
    The timestamp when the most recent I/O error occurred.
    workerErrors GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerError[]
    A list of MySqlApplyErrorWorker records.
    last_error_message str
    The error message of the most recent error that caused the I/O thread to stop.
    last_error_number int
    The error number of the most recent error that caused the I/O thread to stop.
    time_last_error str
    The timestamp when the most recent I/O error occurred.
    worker_errors Sequence[GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerError]
    A list of MySqlApplyErrorWorker records.
    lastErrorMessage String
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber Number
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError String
    The timestamp when the most recent I/O error occurred.
    workerErrors List<Property Map>
    A list of MySqlApplyErrorWorker records.

    GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemApplyErrorWorkerError

    LastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    LastErrorNumber int
    The error number of the most recent error that caused the I/O thread to stop.
    TimeLastError string
    The timestamp when the most recent I/O error occurred.
    LastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    LastErrorNumber int
    The error number of the most recent error that caused the I/O thread to stop.
    TimeLastError string
    The timestamp when the most recent I/O error occurred.
    lastErrorMessage String
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber Integer
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError String
    The timestamp when the most recent I/O error occurred.
    lastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber number
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError string
    The timestamp when the most recent I/O error occurred.
    last_error_message str
    The error message of the most recent error that caused the I/O thread to stop.
    last_error_number int
    The error number of the most recent error that caused the I/O thread to stop.
    time_last_error str
    The timestamp when the most recent I/O error occurred.
    lastErrorMessage String
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber Number
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError String
    The timestamp when the most recent I/O error occurred.

    GetManagedMySqlDatabaseInboundReplicationsManagedMySqlDatabaseInboundReplicationCollectionItemFetchError

    LastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    LastErrorNumber int
    The error number of the most recent error that caused the I/O thread to stop.
    TimeLastError string
    The timestamp when the most recent I/O error occurred.
    LastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    LastErrorNumber int
    The error number of the most recent error that caused the I/O thread to stop.
    TimeLastError string
    The timestamp when the most recent I/O error occurred.
    lastErrorMessage String
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber Integer
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError String
    The timestamp when the most recent I/O error occurred.
    lastErrorMessage string
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber number
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError string
    The timestamp when the most recent I/O error occurred.
    last_error_message str
    The error message of the most recent error that caused the I/O thread to stop.
    last_error_number int
    The error number of the most recent error that caused the I/O thread to stop.
    time_last_error str
    The timestamp when the most recent I/O error occurred.
    lastErrorMessage String
    The error message of the most recent error that caused the I/O thread to stop.
    lastErrorNumber Number
    The error number of the most recent error that caused the I/O thread to stop.
    timeLastError String
    The timestamp when the most recent I/O error occurred.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi