import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Network Address List resource in Oracle Cloud Infrastructure Waf service. * * Gets a NetworkAddressList by OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkAddressList = oci.waf.getNetworkAddressList({ * networkAddressListId: testNetworkAddressListOciWafNetworkAddressList.id, * }); * ``` */ export declare function getNetworkAddressList(args: GetNetworkAddressListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkAddressList. */ export interface GetNetworkAddressListArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the NetworkAddressList. */ networkAddressListId: string; } /** * A collection of values returned by getNetworkAddressList. */ export interface GetNetworkAddressListResult { /** * A private IP address or CIDR IP address range. */ readonly addresses: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * NetworkAddressList display name, can be renamed. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the NetworkAddressList. */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in FAILED state. */ readonly lifecycleDetails: string; readonly networkAddressListId: string; /** * The current state of the NetworkAddressList. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the NetworkAddressList was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the NetworkAddressList was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * Type of NetworkAddressList. */ readonly type: string; /** * A list of private address prefixes, each associated with a particular VCN. To specify all addresses in a VCN, use "0.0.0.0/0" for IPv4 and "::/0" for IPv6. */ readonly vcnAddresses: outputs.Waf.GetNetworkAddressListVcnAddress[]; } /** * This data source provides details about a specific Network Address List resource in Oracle Cloud Infrastructure Waf service. * * Gets a NetworkAddressList by OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkAddressList = oci.waf.getNetworkAddressList({ * networkAddressListId: testNetworkAddressListOciWafNetworkAddressList.id, * }); * ``` */ export declare function getNetworkAddressListOutput(args: GetNetworkAddressListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkAddressList. */ export interface GetNetworkAddressListOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the NetworkAddressList. */ networkAddressListId: pulumi.Input; } //# sourceMappingURL=getNetworkAddressList.d.ts.map