/** * MySQL Database Service API * The API for the MySQL Database Service * OpenAPI spec version: 20190415 * Contact: mysql-cloud-dev_ww_grp@oracle.com * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ /** * Status information for the channel attached to the DB System. * */ export interface ChannelStatusResult { /** * The OCID of the Channel for which the status is gathered. * */ "channelId": string; /** * Specifies if the channel is healthy or not. If healthy, replication target DB System is connected to the * source and no replication errors are seen. * */ "isHealthy"?: boolean; /** * Specifies if all transactions received by this channel are executed and their GTIDs are part of gtid_executed * set. * */ "isReceivedGtidSetApplied"?: boolean; /** * Channel errors identified, if there are any. */ "errors"?: Array; /** * The channel lag, with respect to the immediate source of the channel. * If the channel is configured with replication delay, the channel lag includes the replication delay. * */ "lagDuration"?: string; } export declare namespace ChannelStatusResult { function getJsonObj(obj: ChannelStatusResult): object; function getDeserializedJsonObj(obj: ChannelStatusResult): object; }