import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Address List resource in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets the details of an address list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAddressList = oci.waas.getAddressList({ * addressListId: testAddressListOciWaasAddressList.id, * }); * ``` */ export declare function getAddressList(args: GetAddressListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAddressList. */ export interface GetAddressListArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the address list. This number is generated when the address list is added to the compartment. */ addressListId: string; } /** * A collection of values returned by getAddressList. */ export interface GetAddressListResult { /** * The total number of unique IP addresses in the address list. */ readonly addressCount: number; readonly addressListId: string; /** * The list of IP addresses or CIDR notations. */ readonly addresses: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the address list's compartment. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The user-friendly name of the address list. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the address list. */ readonly id: string; /** * The current lifecycle state of the address list. */ readonly state: string; /** * The date and time the address list was created, expressed in RFC 3339 timestamp format. */ readonly timeCreated: string; } /** * This data source provides details about a specific Address List resource in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets the details of an address list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAddressList = oci.waas.getAddressList({ * addressListId: testAddressListOciWaasAddressList.id, * }); * ``` */ export declare function getAddressListOutput(args: GetAddressListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAddressList. */ export interface GetAddressListOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the address list. This number is generated when the address list is added to the compartment. */ addressListId: pulumi.Input; } //# sourceMappingURL=getAddressList.d.ts.map