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 Address Lists in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets a list of address lists that can be used in a WAAS policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAddressLists = oci.waas.getAddressLists({ * compartmentId: compartmentId, * ids: addressListIds, * names: addressListNames, * states: addressListStates, * timeCreatedGreaterThanOrEqualTo: addressListTimeCreatedGreaterThanOrEqualTo, * timeCreatedLessThan: addressListTimeCreatedLessThan, * }); * ``` */ export declare function getAddressLists(args: GetAddressListsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAddressLists. */ export interface GetAddressListsArgs { /** * 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; filters?: inputs.Waas.GetAddressListsFilter[]; /** * Filter address lists using a list of address lists OCIDs. */ ids?: string[]; /** * Filter address lists using a list of names. */ names?: string[]; /** * Filter address lists using a list of lifecycle states. */ states?: string[]; /** * A filter that matches address lists created on or after the specified date-time. */ timeCreatedGreaterThanOrEqualTo?: string; /** * A filter that matches address lists created before the specified date-time. */ timeCreatedLessThan?: string; } /** * A collection of values returned by getAddressLists. */ export interface GetAddressListsResult { /** * The list of address_lists. */ readonly addressLists: outputs.Waas.GetAddressListsAddressList[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the address list's compartment. */ readonly compartmentId: string; readonly filters?: outputs.Waas.GetAddressListsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ids?: string[]; readonly names?: string[]; readonly states?: string[]; readonly timeCreatedGreaterThanOrEqualTo?: string; readonly timeCreatedLessThan?: string; } /** * This data source provides the list of Address Lists in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets a list of address lists that can be used in a WAAS policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAddressLists = oci.waas.getAddressLists({ * compartmentId: compartmentId, * ids: addressListIds, * names: addressListNames, * states: addressListStates, * timeCreatedGreaterThanOrEqualTo: addressListTimeCreatedGreaterThanOrEqualTo, * timeCreatedLessThan: addressListTimeCreatedLessThan, * }); * ``` */ export declare function getAddressListsOutput(args: GetAddressListsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAddressLists. */ export interface GetAddressListsOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; /** * Filter address lists using a list of address lists OCIDs. */ ids?: pulumi.Input[] | undefined>; /** * Filter address lists using a list of names. */ names?: pulumi.Input[] | undefined>; /** * Filter address lists using a list of lifecycle states. */ states?: pulumi.Input[] | undefined>; /** * A filter that matches address lists created on or after the specified date-time. */ timeCreatedGreaterThanOrEqualTo?: pulumi.Input; /** * A filter that matches address lists created before the specified date-time. */ timeCreatedLessThan?: pulumi.Input; } //# sourceMappingURL=getAddressLists.d.ts.map