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 Log Saved Searches in Oracle Cloud Infrastructure Logging service. * * Lists LogSavedSearches for this compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogSavedSearches = oci.logging.getLogSavedSearches({ * compartmentId: compartmentId, * logSavedSearchId: testLogSavedSearch.id, * name: logSavedSearchName, * }); * ``` */ export declare function getLogSavedSearches(args: GetLogSavedSearchesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogSavedSearches. */ export interface GetLogSavedSearchesArgs { /** * Compartment OCID to list resources in. See compartmentIdInSubtree for nested compartments traversal. */ compartmentId: string; filters?: inputs.Logging.GetLogSavedSearchesFilter[]; /** * OCID of the LogSavedSearch. */ logSavedSearchId?: string; /** * Resource name. */ name?: string; } /** * A collection of values returned by getLogSavedSearches. */ export interface GetLogSavedSearchesResult { /** * The OCID of the compartment that the resource belongs to. */ readonly compartmentId: string; readonly filters?: outputs.Logging.GetLogSavedSearchesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly logSavedSearchId?: string; /** * The list of log_saved_search_summary_collection. */ readonly logSavedSearchSummaryCollections: outputs.Logging.GetLogSavedSearchesLogSavedSearchSummaryCollection[]; /** * The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. */ readonly name?: string; } /** * This data source provides the list of Log Saved Searches in Oracle Cloud Infrastructure Logging service. * * Lists LogSavedSearches for this compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogSavedSearches = oci.logging.getLogSavedSearches({ * compartmentId: compartmentId, * logSavedSearchId: testLogSavedSearch.id, * name: logSavedSearchName, * }); * ``` */ export declare function getLogSavedSearchesOutput(args: GetLogSavedSearchesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogSavedSearches. */ export interface GetLogSavedSearchesOutputArgs { /** * Compartment OCID to list resources in. See compartmentIdInSubtree for nested compartments traversal. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * OCID of the LogSavedSearch. */ logSavedSearchId?: pulumi.Input; /** * Resource name. */ name?: pulumi.Input; } //# sourceMappingURL=getLogSavedSearches.d.ts.map