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 Wlp Agents in Oracle Cloud Infrastructure Cloud Guard service. * * Returns a list of WLP agents in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlpAgents = oci.cloudguard.getWlpAgents({ * compartmentId: compartmentId, * }); * ``` */ export declare function getWlpAgents(args: GetWlpAgentsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlpAgents. */ export interface GetWlpAgentsArgs { /** * The OCID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.CloudGuard.GetWlpAgentsFilter[]; } /** * A collection of values returned by getWlpAgents. */ export interface GetWlpAgentsResult { /** * Compartment OCID of WlpAgent. */ readonly compartmentId: string; readonly filters?: outputs.CloudGuard.GetWlpAgentsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of wlp_agent_collection. */ readonly wlpAgentCollections: outputs.CloudGuard.GetWlpAgentsWlpAgentCollection[]; } /** * This data source provides the list of Wlp Agents in Oracle Cloud Infrastructure Cloud Guard service. * * Returns a list of WLP agents in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlpAgents = oci.cloudguard.getWlpAgents({ * compartmentId: compartmentId, * }); * ``` */ export declare function getWlpAgentsOutput(args: GetWlpAgentsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlpAgents. */ export interface GetWlpAgentsOutputArgs { /** * The OCID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getWlpAgents.d.ts.map