import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
 * Manages an org's IpSet.
 *
 * ## Declaration
 *
 * ### Required
 *
 * - **name** (String) Name of the IpSet.
 *
 * ### Optional
 *
 * - **description** - (String) Description of the IpSet.
 * - **tags** (Map of String) Key-value map of resource tags.
 * - **link** (String) The self link of a workload or a GVC.
 * - **location** (Block List) (see below).
 *
 * <a id="nestedblock--location"></a>
 *
 * ### `location`
 *
 * Required:
 *
 * - **name** (String) The self link of a location.
 * - **retention_policy** (String) Exactly one of: `keep` and `free`.
 *
 * ## Outputs
 *
 * The following attributes are exported:
 *
 * - **cpln_id** (String) The ID, in GUID format, of the IpSet.
 * - **self_link** (String) Full link to this resource. Can be referenced by other resources.
 * - **status** (Block List, Max: 1) (see below).
 *
 * <a id="nestedblock--status"></a>
 *
 * ### `status`
 *
 * Status of the IpSet.
 *
 * Read-Only:
 *
 * - **ip_address** (Block List) (see below)
 * - **error** (String)
 * - **warning** (String)
 *
 * <a id="nestedblock--status--ip_address"></a>
 *
 * ### `status.ip_address`
 *
 * - **name** (String)
 * - **ip** (String)
 * - **id** (String)
 * - **state** (String)
 * - **created** (String)
 *
 * ## Example Usage
 */
export declare class IpSet extends pulumi.CustomResource {
    /**
     * Get an existing IpSet resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IpSetState, opts?: pulumi.CustomResourceOptions): IpSet;
    /**
     * Returns true if the given object is an instance of IpSet.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is IpSet;
    /**
     * The ID, in GUID format, of the IP Set.
     */
    readonly cplnId: pulumi.Output<string>;
    /**
     * Description of the IP Set.
     */
    readonly description: pulumi.Output<string>;
    /**
     * The self link of a workload or a GVC.
     */
    readonly link: pulumi.Output<string | undefined>;
    readonly locations: pulumi.Output<outputs.IpSetLocation[] | undefined>;
    /**
     * Name of the IP Set.
     */
    readonly name: pulumi.Output<string>;
    /**
     * Full link to this resource. Can be referenced by other resources.
     */
    readonly selfLink: pulumi.Output<string>;
    /**
     * The status of the IP Set.
     */
    readonly statuses: pulumi.Output<outputs.IpSetStatus[]>;
    /**
     * Key-value map of resource tags.
     */
    readonly tags: pulumi.Output<{
        [key: string]: string;
    }>;
    /**
     * Create a IpSet resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args?: IpSetArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering IpSet resources.
 */
export interface IpSetState {
    /**
     * The ID, in GUID format, of the IP Set.
     */
    cplnId?: pulumi.Input<string>;
    /**
     * Description of the IP Set.
     */
    description?: pulumi.Input<string>;
    /**
     * The self link of a workload or a GVC.
     */
    link?: pulumi.Input<string>;
    locations?: pulumi.Input<pulumi.Input<inputs.IpSetLocation>[]>;
    /**
     * Name of the IP Set.
     */
    name?: pulumi.Input<string>;
    /**
     * Full link to this resource. Can be referenced by other resources.
     */
    selfLink?: pulumi.Input<string>;
    /**
     * The status of the IP Set.
     */
    statuses?: pulumi.Input<pulumi.Input<inputs.IpSetStatus>[]>;
    /**
     * Key-value map of resource tags.
     */
    tags?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
}
/**
 * The set of arguments for constructing a IpSet resource.
 */
export interface IpSetArgs {
    /**
     * Description of the IP Set.
     */
    description?: pulumi.Input<string>;
    /**
     * The self link of a workload or a GVC.
     */
    link?: pulumi.Input<string>;
    locations?: pulumi.Input<pulumi.Input<inputs.IpSetLocation>[]>;
    /**
     * Name of the IP Set.
     */
    name?: pulumi.Input<string>;
    /**
     * Key-value map of resource tags.
     */
    tags?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
}
