import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Management Saved Searches in Oracle Cloud Infrastructure Management Dashboard service. * * Gets the list of saved searches in a compartment with pagination. Returned properties are the summary. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementSavedSearches = oci.managementdashboard.getManagementSavedSearches({ * compartmentId: compartmentId, * displayName: managementSavedSearchDisplayName, * }); * ``` */ export declare function getManagementSavedSearches(args: GetManagementSavedSearchesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagementSavedSearches. */ export interface GetManagementSavedSearchesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.ManagementDashboard.GetManagementSavedSearchesFilter[]; } /** * A collection of values returned by getManagementSavedSearches. */ export interface GetManagementSavedSearchesResult { /** * OCID of the compartment in which the saved search resides. */ readonly compartmentId: string; /** * Display name of the saved search. */ readonly displayName?: string; readonly filters?: outputs.ManagementDashboard.GetManagementSavedSearchesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of management_saved_search_collection. */ readonly managementSavedSearchCollections: outputs.ManagementDashboard.GetManagementSavedSearchesManagementSavedSearchCollection[]; } /** * This data source provides the list of Management Saved Searches in Oracle Cloud Infrastructure Management Dashboard service. * * Gets the list of saved searches in a compartment with pagination. Returned properties are the summary. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementSavedSearches = oci.managementdashboard.getManagementSavedSearches({ * compartmentId: compartmentId, * displayName: managementSavedSearchDisplayName, * }); * ``` */ export declare function getManagementSavedSearchesOutput(args: GetManagementSavedSearchesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagementSavedSearches. */ export interface GetManagementSavedSearchesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getManagementSavedSearches.d.ts.map