/** * Data Safe API * APIs for using Oracle Data Safe. * OpenAPI spec version: 20181201 * * * 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. */ import * as model from "../model"; /** * Collection of target override summary. */ export interface TargetOverrideCollection { /** * Number of target databases within the target database group. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "targetsCount": number; /** * Number of target databases within the target database group that override the audit profile of the target database group. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "targetsOverridingCount": number; /** * Number of target databases within the target database group that conform with the audit profile of the target database group. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "targetsConformingCount": number; /** * Number of target databases within the group that override the paid usage setting of the audit profile for the target database group. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "targetsOverridingPaidUsageCount": number; /** * Number of target databases within the group that override the online retention setting of the audit profile for the target database group. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "targetsOverridingOnlineMonthsCount": number; /** * Number of target databases within the group that override the offline retention setting of the audit profile for the target database group. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "targetsOverridingOfflineMonthsCount": number; /** * Array of target database override summary. */ "items": Array; } export declare namespace TargetOverrideCollection { function getJsonObj(obj: TargetOverrideCollection): object; function getDeserializedJsonObj(obj: TargetOverrideCollection): object; }