Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi
oci.DatabaseManagement.getManagedMySqlDatabaseHighAvailabilityMembers
Explore with Pulumi AI
This data source provides the list of Managed My Sql Database High Availability Members in Oracle Cloud Infrastructure Database Management service.
Information about high availability members of a specific MySQL server’s replication group.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedMySqlDatabaseHighAvailabilityMembers = oci.DatabaseManagement.getManagedMySqlDatabaseHighAvailabilityMembers({
managedMySqlDatabaseId: testManagedMySqlDatabase.id,
});
import pulumi
import pulumi_oci as oci
test_managed_my_sql_database_high_availability_members = oci.DatabaseManagement.get_managed_my_sql_database_high_availability_members(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.GetManagedMySqlDatabaseHighAvailabilityMembers(ctx, &databasemanagement.GetManagedMySqlDatabaseHighAvailabilityMembersArgs{
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 testManagedMySqlDatabaseHighAvailabilityMembers = Oci.DatabaseManagement.GetManagedMySqlDatabaseHighAvailabilityMembers.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.GetManagedMySqlDatabaseHighAvailabilityMembersArgs;
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 testManagedMySqlDatabaseHighAvailabilityMembers = DatabaseManagementFunctions.getManagedMySqlDatabaseHighAvailabilityMembers(GetManagedMySqlDatabaseHighAvailabilityMembersArgs.builder()
.managedMySqlDatabaseId(testManagedMySqlDatabase.id())
.build());
}
}
variables:
testManagedMySqlDatabaseHighAvailabilityMembers:
fn::invoke:
function: oci:DatabaseManagement:getManagedMySqlDatabaseHighAvailabilityMembers
arguments:
managedMySqlDatabaseId: ${testManagedMySqlDatabase.id}
Using getManagedMySqlDatabaseHighAvailabilityMembers
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 getManagedMySqlDatabaseHighAvailabilityMembers(args: GetManagedMySqlDatabaseHighAvailabilityMembersArgs, opts?: InvokeOptions): Promise<GetManagedMySqlDatabaseHighAvailabilityMembersResult>
function getManagedMySqlDatabaseHighAvailabilityMembersOutput(args: GetManagedMySqlDatabaseHighAvailabilityMembersOutputArgs, opts?: InvokeOptions): Output<GetManagedMySqlDatabaseHighAvailabilityMembersResult>
def get_managed_my_sql_database_high_availability_members(filters: Optional[Sequence[GetManagedMySqlDatabaseHighAvailabilityMembersFilter]] = None,
managed_my_sql_database_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagedMySqlDatabaseHighAvailabilityMembersResult
def get_managed_my_sql_database_high_availability_members_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetManagedMySqlDatabaseHighAvailabilityMembersFilterArgs]]]] = None,
managed_my_sql_database_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagedMySqlDatabaseHighAvailabilityMembersResult]
func GetManagedMySqlDatabaseHighAvailabilityMembers(ctx *Context, args *GetManagedMySqlDatabaseHighAvailabilityMembersArgs, opts ...InvokeOption) (*GetManagedMySqlDatabaseHighAvailabilityMembersResult, error)
func GetManagedMySqlDatabaseHighAvailabilityMembersOutput(ctx *Context, args *GetManagedMySqlDatabaseHighAvailabilityMembersOutputArgs, opts ...InvokeOption) GetManagedMySqlDatabaseHighAvailabilityMembersResultOutput
> Note: This function is named GetManagedMySqlDatabaseHighAvailabilityMembers
in the Go SDK.
public static class GetManagedMySqlDatabaseHighAvailabilityMembers
{
public static Task<GetManagedMySqlDatabaseHighAvailabilityMembersResult> InvokeAsync(GetManagedMySqlDatabaseHighAvailabilityMembersArgs args, InvokeOptions? opts = null)
public static Output<GetManagedMySqlDatabaseHighAvailabilityMembersResult> Invoke(GetManagedMySqlDatabaseHighAvailabilityMembersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagedMySqlDatabaseHighAvailabilityMembersResult> getManagedMySqlDatabaseHighAvailabilityMembers(GetManagedMySqlDatabaseHighAvailabilityMembersArgs args, InvokeOptions options)
public static Output<GetManagedMySqlDatabaseHighAvailabilityMembersResult> getManagedMySqlDatabaseHighAvailabilityMembers(GetManagedMySqlDatabaseHighAvailabilityMembersArgs args, InvokeOptions options)
fn::invoke:
function: oci:DatabaseManagement/getManagedMySqlDatabaseHighAvailabilityMembers:getManagedMySqlDatabaseHighAvailabilityMembers
arguments:
# arguments dictionary
The following arguments are supported:
- Managed
My stringSql Database Id - The OCID of the Managed MySQL Database.
- Filters
List<Get
Managed My Sql Database High Availability Members Filter>
- Managed
My stringSql Database Id - The OCID of the Managed MySQL Database.
- Filters
[]Get
Managed My Sql Database High Availability Members Filter
- managed
My StringSql Database Id - The OCID of the Managed MySQL Database.
- filters
List<Get
Managed My Sql Database High Availability Members Filter>
- managed
My stringSql Database Id - The OCID of the Managed MySQL Database.
- filters
Get
Managed My Sql Database High Availability Members Filter[]
- managed_
my_ strsql_ database_ id - The OCID of the Managed MySQL Database.
- filters
Sequence[Get
Managed My Sql Database High Availability Members Filter]
- managed
My StringSql Database Id - The OCID of the Managed MySQL Database.
- filters List<Property Map>
getManagedMySqlDatabaseHighAvailabilityMembers Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
My List<GetSql Database High Availability Member Collections Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection> - The list of managed_my_sql_database_high_availability_member_collection.
- Managed
My stringSql Database Id - Filters
List<Get
Managed My Sql Database High Availability Members Filter>
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
My []GetSql Database High Availability Member Collections Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection - The list of managed_my_sql_database_high_availability_member_collection.
- Managed
My stringSql Database Id - Filters
[]Get
Managed My Sql Database High Availability Members Filter
- id String
- The provider-assigned unique ID for this managed resource.
- managed
My List<GetSql Database High Availability Member Collections Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection> - The list of managed_my_sql_database_high_availability_member_collection.
- managed
My StringSql Database Id - filters
List<Get
Managed My Sql Database High Availability Members Filter>
- id string
- The provider-assigned unique ID for this managed resource.
- managed
My GetSql Database High Availability Member Collections Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection[] - The list of managed_my_sql_database_high_availability_member_collection.
- managed
My stringSql Database Id - filters
Get
Managed My Sql Database High Availability Members Filter[]
- id str
- The provider-assigned unique ID for this managed resource.
- managed_
my_ Sequence[Getsql_ database_ high_ availability_ member_ collections Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection] - The list of managed_my_sql_database_high_availability_member_collection.
- managed_
my_ strsql_ database_ id - filters
Sequence[Get
Managed My Sql Database High Availability Members Filter]
- id String
- The provider-assigned unique ID for this managed resource.
- managed
My List<Property Map>Sql Database High Availability Member Collections - The list of managed_my_sql_database_high_availability_member_collection.
- managed
My StringSql Database Id - filters List<Property Map>
Supporting Types
GetManagedMySqlDatabaseHighAvailabilityMembersFilter
GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollection
- Flow
Control string - The mode used for flow control.
- Group
Auto intIncrement - The interval between successive values for auto-incremented columns for transactions that execute on this server instance.
- Group
Name string - The name of the group to which this server instance belongs.
- Items
List<Get
Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Item> - A list of MySqlHighAvailabilityMember records.
- Member
Role string - The role of this server as a group replication member.
- Member
State string - The state of this server as a group replication member.
- Single
Primary stringMode - Indicates if the replication group is running in single-primary mode.
- Status
Summaries List<GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary> - High availability status summary of a MySQL server.
- Transactions
In stringGtid Executed - Number of transactions that were replicated within the cluster.
- View
Id string - The current view identifier for this group.
- Flow
Control string - The mode used for flow control.
- Group
Auto intIncrement - The interval between successive values for auto-incremented columns for transactions that execute on this server instance.
- Group
Name string - The name of the group to which this server instance belongs.
- Items
[]Get
Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Item - A list of MySqlHighAvailabilityMember records.
- Member
Role string - The role of this server as a group replication member.
- Member
State string - The state of this server as a group replication member.
- Single
Primary stringMode - Indicates if the replication group is running in single-primary mode.
- Status
Summaries []GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary - High availability status summary of a MySQL server.
- Transactions
In stringGtid Executed - Number of transactions that were replicated within the cluster.
- View
Id string - The current view identifier for this group.
- flow
Control String - The mode used for flow control.
- group
Auto IntegerIncrement - The interval between successive values for auto-incremented columns for transactions that execute on this server instance.
- group
Name String - The name of the group to which this server instance belongs.
- items
List<Get
Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Item> - A list of MySqlHighAvailabilityMember records.
- member
Role String - The role of this server as a group replication member.
- member
State String - The state of this server as a group replication member.
- single
Primary StringMode - Indicates if the replication group is running in single-primary mode.
- status
Summaries List<GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary> - High availability status summary of a MySQL server.
- transactions
In StringGtid Executed - Number of transactions that were replicated within the cluster.
- view
Id String - The current view identifier for this group.
- flow
Control string - The mode used for flow control.
- group
Auto numberIncrement - The interval between successive values for auto-incremented columns for transactions that execute on this server instance.
- group
Name string - The name of the group to which this server instance belongs.
- items
Get
Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Item[] - A list of MySqlHighAvailabilityMember records.
- member
Role string - The role of this server as a group replication member.
- member
State string - The state of this server as a group replication member.
- single
Primary stringMode - Indicates if the replication group is running in single-primary mode.
- status
Summaries GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary[] - High availability status summary of a MySQL server.
- transactions
In stringGtid Executed - Number of transactions that were replicated within the cluster.
- view
Id string - The current view identifier for this group.
- flow_
control str - The mode used for flow control.
- group_
auto_ intincrement - The interval between successive values for auto-incremented columns for transactions that execute on this server instance.
- group_
name str - The name of the group to which this server instance belongs.
- items
Sequence[Get
Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Item] - A list of MySqlHighAvailabilityMember records.
- member_
role str - The role of this server as a group replication member.
- member_
state str - The state of this server as a group replication member.
- single_
primary_ strmode - Indicates if the replication group is running in single-primary mode.
- status_
summaries Sequence[GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary] - High availability status summary of a MySQL server.
- transactions_
in_ strgtid_ executed - Number of transactions that were replicated within the cluster.
- view_
id str - The current view identifier for this group.
- flow
Control String - The mode used for flow control.
- group
Auto NumberIncrement - The interval between successive values for auto-incremented columns for transactions that execute on this server instance.
- group
Name String - The name of the group to which this server instance belongs.
- items List<Property Map>
- A list of MySqlHighAvailabilityMember records.
- member
Role String - The role of this server as a group replication member.
- member
State String - The state of this server as a group replication member.
- single
Primary StringMode - Indicates if the replication group is running in single-primary mode.
- status
Summaries List<Property Map> - High availability status summary of a MySQL server.
- transactions
In StringGtid Executed - Number of transactions that were replicated within the cluster.
- view
Id String - The current view identifier for this group.
GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionItem
- Member
Host string - The host name of the group member which clients use to connect to it.
- Member
Port int - The port number of the group member which clients to connect to it.
- Member
Role string - The role of this server as a group replication member.
- Member
State string - The state of this server as a group replication member.
- Member
Uuid string - The Universally Unique Identifier (UUID) of the member server.
- Member
Host string - The host name of the group member which clients use to connect to it.
- Member
Port int - The port number of the group member which clients to connect to it.
- Member
Role string - The role of this server as a group replication member.
- Member
State string - The state of this server as a group replication member.
- Member
Uuid string - The Universally Unique Identifier (UUID) of the member server.
- member
Host String - The host name of the group member which clients use to connect to it.
- member
Port Integer - The port number of the group member which clients to connect to it.
- member
Role String - The role of this server as a group replication member.
- member
State String - The state of this server as a group replication member.
- member
Uuid String - The Universally Unique Identifier (UUID) of the member server.
- member
Host string - The host name of the group member which clients use to connect to it.
- member
Port number - The port number of the group member which clients to connect to it.
- member
Role string - The role of this server as a group replication member.
- member
State string - The state of this server as a group replication member.
- member
Uuid string - The Universally Unique Identifier (UUID) of the member server.
- member_
host str - The host name of the group member which clients use to connect to it.
- member_
port int - The port number of the group member which clients to connect to it.
- member_
role str - The role of this server as a group replication member.
- member_
state str - The state of this server as a group replication member.
- member_
uuid str - The Universally Unique Identifier (UUID) of the member server.
- member
Host String - The host name of the group member which clients use to connect to it.
- member
Port Number - The port number of the group member which clients to connect to it.
- member
Role String - The role of this server as a group replication member.
- member
State String - The state of this server as a group replication member.
- member
Uuid String - The Universally Unique Identifier (UUID) of the member server.
GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummary
- Channel
Apply List<GetErrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error> - A list of MySqlChannelApplyError records.
- Channel
Fetch List<GetErrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error> - A list of MySqlChannelFetchError records.
- Channel
Apply []GetErrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error - A list of MySqlChannelApplyError records.
- Channel
Fetch []GetErrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error - A list of MySqlChannelFetchError records.
- channel
Apply List<GetErrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error> - A list of MySqlChannelApplyError records.
- channel
Fetch List<GetErrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error> - A list of MySqlChannelFetchError records.
- channel
Apply GetErrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error[] - A list of MySqlChannelApplyError records.
- channel
Fetch GetErrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error[] - A list of MySqlChannelFetchError records.
- channel_
apply_ Sequence[Geterrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error] - A list of MySqlChannelApplyError records.
- channel_
fetch_ Sequence[Geterrors Managed My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error] - A list of MySqlChannelFetchError records.
- channel
Apply List<Property Map>Errors - A list of MySqlChannelApplyError records.
- channel
Fetch List<Property Map>Errors - A list of MySqlChannelFetchError records.
GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyError
- Apply
Errors List<GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error> - Error from apply operation of a MySQL server replication channel.
- Channel
Name string - The name of the replication channel
- Apply
Errors []GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error - Error from apply operation of a MySQL server replication channel.
- Channel
Name string - The name of the replication channel
- apply
Errors List<GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error> - Error from apply operation of a MySQL server replication channel.
- channel
Name String - The name of the replication channel
- apply
Errors GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error[] - Error from apply operation of a MySQL server replication channel.
- channel
Name string - The name of the replication channel
- apply_
errors Sequence[GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error] - Error from apply operation of a MySQL server replication channel.
- channel_
name str - The name of the replication channel
- apply
Errors List<Property Map> - Error from apply operation of a MySQL server replication channel.
- channel
Name String - The name of the replication channel
GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyError
- Last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- Last
Error intNumber - The error number of the most recent error that caused the I/O thread to stop.
- Time
Last stringError - The timestamp when the most recent I/O error occurred.
- Worker
Errors List<GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error Worker Error> - A list of MySqlApplyErrorWorker records.
- Last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- Last
Error intNumber - The error number of the most recent error that caused the I/O thread to stop.
- Time
Last stringError - The timestamp when the most recent I/O error occurred.
- Worker
Errors []GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error Worker Error - A list of MySqlApplyErrorWorker records.
- last
Error StringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error IntegerNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last StringError - The timestamp when the most recent I/O error occurred.
- worker
Errors List<GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error Worker Error> - A list of MySqlApplyErrorWorker records.
- last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error numberNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last stringError - The timestamp when the most recent I/O error occurred.
- worker
Errors GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error Worker Error[] - A list of MySqlApplyErrorWorker records.
- last_
error_ strmessage - The error message of the most recent error that caused the I/O thread to stop.
- last_
error_ intnumber - The error number of the most recent error that caused the I/O thread to stop.
- time_
last_ strerror - The timestamp when the most recent I/O error occurred.
- worker_
errors Sequence[GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Apply Error Apply Error Worker Error] - A list of MySqlApplyErrorWorker records.
- last
Error StringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error NumberNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last StringError - The timestamp when the most recent I/O error occurred.
- worker
Errors List<Property Map> - A list of MySqlApplyErrorWorker records.
GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelApplyErrorApplyErrorWorkerError
- Last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- Last
Error intNumber - The error number of the most recent error that caused the I/O thread to stop.
- Time
Last stringError - The timestamp when the most recent I/O error occurred.
- Last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- Last
Error intNumber - The error number of the most recent error that caused the I/O thread to stop.
- Time
Last stringError - The timestamp when the most recent I/O error occurred.
- last
Error StringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error IntegerNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last StringError - The timestamp when the most recent I/O error occurred.
- last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error numberNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last stringError - The timestamp when the most recent I/O error occurred.
- last_
error_ strmessage - The error message of the most recent error that caused the I/O thread to stop.
- last_
error_ intnumber - The error number of the most recent error that caused the I/O thread to stop.
- time_
last_ strerror - The timestamp when the most recent I/O error occurred.
- last
Error StringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error NumberNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last StringError - The timestamp when the most recent I/O error occurred.
GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchError
- Channel
Name string - The name of the replication channel
- Fetch
Errors List<GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error Fetch Error> - Error from fetch operation of a MySQL server replication channel.
- Channel
Name string - The name of the replication channel
- Fetch
Errors []GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error Fetch Error - Error from fetch operation of a MySQL server replication channel.
- channel
Name String - The name of the replication channel
- fetch
Errors List<GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error Fetch Error> - Error from fetch operation of a MySQL server replication channel.
- channel
Name string - The name of the replication channel
- fetch
Errors GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error Fetch Error[] - Error from fetch operation of a MySQL server replication channel.
- channel_
name str - The name of the replication channel
- fetch_
errors Sequence[GetManaged My Sql Database High Availability Members Managed My Sql Database High Availability Member Collection Status Summary Channel Fetch Error Fetch Error] - Error from fetch operation of a MySQL server replication channel.
- channel
Name String - The name of the replication channel
- fetch
Errors List<Property Map> - Error from fetch operation of a MySQL server replication channel.
GetManagedMySqlDatabaseHighAvailabilityMembersManagedMySqlDatabaseHighAvailabilityMemberCollectionStatusSummaryChannelFetchErrorFetchError
- Last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- Last
Error intNumber - The error number of the most recent error that caused the I/O thread to stop.
- Time
Last stringError - The timestamp when the most recent I/O error occurred.
- Last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- Last
Error intNumber - The error number of the most recent error that caused the I/O thread to stop.
- Time
Last stringError - The timestamp when the most recent I/O error occurred.
- last
Error StringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error IntegerNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last StringError - The timestamp when the most recent I/O error occurred.
- last
Error stringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error numberNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last stringError - The timestamp when the most recent I/O error occurred.
- last_
error_ strmessage - The error message of the most recent error that caused the I/O thread to stop.
- last_
error_ intnumber - The error number of the most recent error that caused the I/O thread to stop.
- time_
last_ strerror - The timestamp when the most recent I/O error occurred.
- last
Error StringMessage - The error message of the most recent error that caused the I/O thread to stop.
- last
Error NumberNumber - The error number of the most recent error that caused the I/O thread to stop.
- time
Last StringError - 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.