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 Network Address Lists in Oracle Cloud Infrastructure Waf service. * * Gets a list of all NetworkAddressLists in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkAddressLists = oci.waf.getNetworkAddressLists({ * compartmentId: compartmentId, * displayName: networkAddressListDisplayName, * id: networkAddressListId, * states: networkAddressListState, * }); * ``` */ export declare function getNetworkAddressLists(args: GetNetworkAddressListsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkAddressLists. */ export interface GetNetworkAddressListsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.Waf.GetNetworkAddressListsFilter[]; /** * A filter to return only the NetworkAddressList with the given [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ id?: string; /** * A filter to return only resources that match the given lifecycleState. */ states?: string[]; } /** * A collection of values returned by getNetworkAddressLists. */ export interface GetNetworkAddressListsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * NetworkAddressList display name, can be renamed. */ readonly displayName?: string; readonly filters?: outputs.Waf.GetNetworkAddressListsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the NetworkAddressList. */ readonly id?: string; /** * The list of network_address_list_collection. */ readonly networkAddressListCollections: outputs.Waf.GetNetworkAddressListsNetworkAddressListCollection[]; /** * The current state of the NetworkAddressList. */ readonly states?: string[]; } /** * This data source provides the list of Network Address Lists in Oracle Cloud Infrastructure Waf service. * * Gets a list of all NetworkAddressLists in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkAddressLists = oci.waf.getNetworkAddressLists({ * compartmentId: compartmentId, * displayName: networkAddressListDisplayName, * id: networkAddressListId, * states: networkAddressListState, * }); * ``` */ export declare function getNetworkAddressListsOutput(args: GetNetworkAddressListsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkAddressLists. */ export interface GetNetworkAddressListsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only the NetworkAddressList with the given [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ id?: pulumi.Input; /** * A filter to return only resources that match the given lifecycleState. */ states?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getNetworkAddressLists.d.ts.map