import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Management Saved Search resource in Oracle Cloud Infrastructure Management Dashboard service. * * Gets a saved search by ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementSavedSearch = oci.managementdashboard.getManagementSavedSearch({ * managementSavedSearchId: testManagementSavedSearchOciManagementDashboardManagementSavedSearch.id, * }); * ``` */ export declare function getManagementSavedSearch(args: GetManagementSavedSearchArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagementSavedSearch. */ export interface GetManagementSavedSearchArgs { /** * A unique saved search identifier. */ managementSavedSearchId: string; } /** * A collection of values returned by getManagementSavedSearch. */ export interface GetManagementSavedSearchResult { /** * OCID of the compartment in which the saved search resides. */ readonly compartmentId: string; /** * The principal id of the user that created this saved search. This is automatically managed by the system. In Oracle Cloud Infrastructure the value is ignored. In EM it can skipped or otherwise it is ignored in both create and update API and system automatically sets its value. */ readonly createdBy: string; /** * It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources. */ readonly dataConfig: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Description of the saved search. */ readonly description: string; /** * Display name of the saved search. */ readonly displayName: string; /** * Drill-down configuration to define the destination of a drill-down action. */ readonly drilldownConfig: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * ID of the saved search. */ readonly id: string; /** * Determines whether the saved search is an Out-of-the-Box (OOB) saved search. Note that OOB saved searches are only provided by Oracle and cannot be modified. */ readonly isOobSavedSearch: boolean; readonly managementSavedSearchId: string; /** * The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0. */ readonly metadataVersion: string; /** * JSON that contains internationalization options. */ readonly nls: string; /** * Defines parameters for the saved search. */ readonly parametersConfig: string; /** * ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID. */ readonly providerId: string; /** * Name of the service (for example, Logging Analytics) that owns the saved search. */ readonly providerName: string; /** * Version of the service that owns this saved search. */ readonly providerVersion: string; /** * Screen image of the saved search. */ readonly screenImage: string; /** * Oracle Cloud Infrastructure lifecycle status. This is automatically managed by the system. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * Date and time the saved search was created. */ readonly timeCreated: string; /** * Date and time the saved search was updated. */ readonly timeUpdated: string; /** * Determines how the saved search is displayed in a dashboard. */ readonly type: string; /** * It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization. */ readonly uiConfig: string; /** * The principle id of the user that updated this saved search. */ readonly updatedBy: string; /** * The UI template that the saved search uses to render itself. */ readonly widgetTemplate: string; /** * The View Model that the saved search uses to render itself. */ readonly widgetVm: string; } /** * This data source provides details about a specific Management Saved Search resource in Oracle Cloud Infrastructure Management Dashboard service. * * Gets a saved search by ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementSavedSearch = oci.managementdashboard.getManagementSavedSearch({ * managementSavedSearchId: testManagementSavedSearchOciManagementDashboardManagementSavedSearch.id, * }); * ``` */ export declare function getManagementSavedSearchOutput(args: GetManagementSavedSearchOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagementSavedSearch. */ export interface GetManagementSavedSearchOutputArgs { /** * A unique saved search identifier. */ managementSavedSearchId: pulumi.Input; } //# sourceMappingURL=getManagementSavedSearch.d.ts.map