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 Zpr Policies in Oracle Cloud Infrastructure Zpr service. * * Gets a list of ZprPolicies. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testZprPolicies = oci.zpr.getZprPolicies({ * compartmentId: tenancyOcid, * name: zprPolicyName, * state: zprPolicyState, * }); * ``` */ export declare function getZprPolicies(args?: GetZprPoliciesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getZprPolicies. */ export interface GetZprPoliciesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; filters?: inputs.Zpr.GetZprPoliciesFilter[]; /** * A filter to return only resources that match the entire display name given. */ name?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getZprPolicies. */ export interface GetZprPoliciesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; readonly filters?: outputs.Zpr.GetZprPoliciesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name you assign to the ZprPolicy during creation. The name must be unique across all ZPL policies in the tenancy. */ readonly name?: string; /** * The current state of the ZprPolicy. */ readonly state?: string; /** * The list of zpr_policies. */ readonly zprPolicies: outputs.Zpr.GetZprPoliciesZprPolicy[]; } /** * This data source provides the list of Zpr Policies in Oracle Cloud Infrastructure Zpr service. * * Gets a list of ZprPolicies. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testZprPolicies = oci.zpr.getZprPolicies({ * compartmentId: tenancyOcid, * name: zprPolicyName, * state: zprPolicyState, * }); * ``` */ export declare function getZprPoliciesOutput(args?: GetZprPoliciesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getZprPolicies. */ export interface GetZprPoliciesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the entire display name given. */ name?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getZprPolicies.d.ts.map