/** * ManagementDashboard API * API for the Management Dashboard micro-service. Use this API for dashboard and saved search metadata preservation and to perform tasks such as creating a dashboard, creating a saved search, and obtaining a list of dashboards and saved searches in a compartment. * OpenAPI spec version: 20200901 * * * 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"; /** * Summary of the properties of a dashboard. */ export interface ManagementDashboardSummary { /** * ID of the dashboard. Same as id. */ "dashboardId": string; /** * ID of the dashboard. Same as dashboardId. */ "id": string; /** * Display name of the dashboard. */ "displayName": string; /** * Description of the dashboard. */ "description": string; /** * OCID of the compartment in which the dashboard resides. */ "compartmentId": string; /** * ID of the service (for example, log-analytics) that owns the dashboard. Each service has a unique ID. */ "providerId": string; /** * The user friendly name of the service (for example, Logging Analytics) that owns the dashboard. */ "providerName": string; /** * The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0. */ "providerVersion": string; /** * Determines whether the dashboard is an Out-of-the-Box (OOB) dashboard. Note that OOB dashboards are only provided by Oracle and cannot be modified. */ "isOobDashboard": boolean; /** * User who created the dashboard. */ "createdBy": string; /** * Date and time the dashboard was created. */ "timeCreated": Date; /** * User who updated the dashboard. */ "updatedBy": string; /** * Date and time the dashboard was updated. */ "timeUpdated": Date; /** * The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0. */ "metadataVersion": string; /** * Screen image of the dashboard. */ "screenImage": string; /** * JSON that contains internationalization options. */ "nls": any; /** * Type of dashboard. NORMAL denotes a single dashboard and SET denotes a dashboard set. */ "type": string; /** * Contains configuration for enabling features. */ "featuresConfig"?: any; /** * Current lifecycle state of the dashboard. */ "lifecycleState": model.LifecycleStates; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. * Example: {@code {\"bar-key\": \"value\"}} * */ "freeformTags": { [key: string]: string; }; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}} * */ "definedTags": { [key: string]: { [key: string]: any; }; }; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. * Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}} * */ "systemTags"?: { [key: string]: { [key: string]: any; }; }; } export declare namespace ManagementDashboardSummary { function getJsonObj(obj: ManagementDashboardSummary): object; function getDeserializedJsonObj(obj: ManagementDashboardSummary): object; }