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 Waas Policies in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets a list of WAAS policies. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWaasPolicies = oci.waas.getWaasPolicies({ * compartmentId: compartmentId, * displayNames: waasPolicyDisplayNames, * ids: waasPolicyIds, * states: waasPolicyStates, * timeCreatedGreaterThanOrEqualTo: waasPolicyTimeCreatedGreaterThanOrEqualTo, * timeCreatedLessThan: waasPolicyTimeCreatedLessThan, * }); * ``` */ export declare function getWaasPolicies(args: GetWaasPoliciesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWaasPolicies. */ export interface GetWaasPoliciesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This number is generated when the compartment is created. */ compartmentId: string; /** * Filter policies using a list of display names. */ displayNames?: string[]; filters?: inputs.Waas.GetWaasPoliciesFilter[]; /** * Filter policies using a list of policy OCIDs. */ ids?: string[]; /** * Filter policies using a list of lifecycle states. */ states?: string[]; /** * A filter that matches policies created on or after the specified date and time. */ timeCreatedGreaterThanOrEqualTo?: string; /** * A filter that matches policies created before the specified date-time. */ timeCreatedLessThan?: string; } /** * A collection of values returned by getWaasPolicies. */ export interface GetWaasPoliciesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WAAS policy's compartment. */ readonly compartmentId: string; readonly displayNames?: string[]; readonly filters?: outputs.Waas.GetWaasPoliciesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ids?: string[]; readonly states?: string[]; readonly timeCreatedGreaterThanOrEqualTo?: string; readonly timeCreatedLessThan?: string; /** * The list of waas_policies. */ readonly waasPolicies: outputs.Waas.GetWaasPoliciesWaasPolicy[]; } /** * This data source provides the list of Waas Policies in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets a list of WAAS policies. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWaasPolicies = oci.waas.getWaasPolicies({ * compartmentId: compartmentId, * displayNames: waasPolicyDisplayNames, * ids: waasPolicyIds, * states: waasPolicyStates, * timeCreatedGreaterThanOrEqualTo: waasPolicyTimeCreatedGreaterThanOrEqualTo, * timeCreatedLessThan: waasPolicyTimeCreatedLessThan, * }); * ``` */ export declare function getWaasPoliciesOutput(args: GetWaasPoliciesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWaasPolicies. */ export interface GetWaasPoliciesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This number is generated when the compartment is created. */ compartmentId: pulumi.Input; /** * Filter policies using a list of display names. */ displayNames?: pulumi.Input[] | undefined>; filters?: pulumi.Input[] | undefined>; /** * Filter policies using a list of policy OCIDs. */ ids?: pulumi.Input[] | undefined>; /** * Filter policies using a list of lifecycle states. */ states?: pulumi.Input[] | undefined>; /** * A filter that matches policies created on or after the specified date and time. */ timeCreatedGreaterThanOrEqualTo?: pulumi.Input; /** * A filter that matches policies created before the specified date-time. */ timeCreatedLessThan?: pulumi.Input; } //# sourceMappingURL=getWaasPolicies.d.ts.map