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). * * * * ### `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). * * * * ### `status` * * Status of the IpSet. * * Read-Only: * * - **ip_address** (Block List) (see below) * - **error** (String) * - **warning** (String) * * * * ### `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, 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; /** * Description of the IP Set. */ readonly description: pulumi.Output; /** * The self link of a workload or a GVC. */ readonly link: pulumi.Output; readonly locations: pulumi.Output; /** * Name of the IP Set. */ readonly name: pulumi.Output; /** * Full link to this resource. Can be referenced by other resources. */ readonly selfLink: pulumi.Output; /** * The status of the IP Set. */ readonly statuses: pulumi.Output; /** * 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; /** * Description of the IP Set. */ description?: pulumi.Input; /** * The self link of a workload or a GVC. */ link?: pulumi.Input; locations?: pulumi.Input[]>; /** * Name of the IP Set. */ name?: pulumi.Input; /** * Full link to this resource. Can be referenced by other resources. */ selfLink?: pulumi.Input; /** * The status of the IP Set. */ statuses?: pulumi.Input[]>; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a IpSet resource. */ export interface IpSetArgs { /** * Description of the IP Set. */ description?: pulumi.Input; /** * The self link of a workload or a GVC. */ link?: pulumi.Input; locations?: pulumi.Input[]>; /** * Name of the IP Set. */ name?: pulumi.Input; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }