/** * 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. */ /** * Parameters for selecting which attributes to include in the DB System status. */ export interface GenerateDbSystemStatusDetails { /** * Specifies whether to collect the full set of GTIDs executed on the DB System * ([gtid_executed](https://dev.mysql.com/doc/en/replication-options-gtids.html#sysvar_gtid_executed)) * or the set of GTIDs available in the DB System binary logs, not part of * ([gtid_purged](https://dev.mysql.com/doc/en/replication-options-gtids.html#sysvar_gtid_purged)) * (GTID_AVAILABLE, which is gtid_executed - gtid_purged). * Use GTID_AVAILABLE if gtid_executed is too large to fit in the response. * */ "gtidSetType"?: GenerateDbSystemStatusDetails.GtidSetType; /** * Specifies the GTID set to be checked on the DB System to determine whether it has been applied. The result of * the check is isGtidSetApplied in the response. * */ "gtidSetToApply"?: string; /** * List of Channel IDs for which to collect status information. */ "channelIds"?: Array; } export declare namespace GenerateDbSystemStatusDetails { enum GtidSetType { GtidExecuted = "GTID_EXECUTED", GtidAvailable = "GTID_AVAILABLE" } function getJsonObj(obj: GenerateDbSystemStatusDetails): object; function getDeserializedJsonObj(obj: GenerateDbSystemStatusDetails): object; }