import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Creates a VMware vRealize Automation networkIpRange resource. * * ## Example Usage * * ## Import * * To import the vRA Network IP range, use the ID as in the following example * * ```sh * $ pulumi import vra:network/ipRange:IpRange new_ip_range 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class IpRange extends pulumi.CustomResource { /** * Get an existing IpRange 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?: IpRangeState, opts?: pulumi.CustomResourceOptions): IpRange; /** * Returns true if the given object is an instance of IpRange. 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 IpRange; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ readonly createdAt: pulumi.Output; /** * State object representing a network on a external cloud provider. */ readonly description: pulumi.Output; /** * End IP address of the range. */ readonly endIpAddress: pulumi.Output; /** * External entity Id on the provider side. */ readonly externalId: pulumi.Output; /** * Fabric network Id. */ readonly fabricNetworkId: pulumi.Output; /** * IP address version: IPv4 or IPv6. Default: IPv4. */ readonly ipVersion: pulumi.Output; /** * HATEOAS of the entity */ readonly links: pulumi.Output; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly name: pulumi.Output; /** * ID of organization that entity belongs to. */ readonly orgId: pulumi.Output; /** * Start IP address of the range. */ readonly startIpAddress: pulumi.Output; /** * Set of tag keys and values to apply to the resource. * Example:[ { "key" : "vmware", "value": "provider" } ] */ readonly tags: pulumi.Output; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Create a IpRange 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: IpRangeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IpRange resources. */ export interface IpRangeState { /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ createdAt?: pulumi.Input; /** * State object representing a network on a external cloud provider. */ description?: pulumi.Input; /** * End IP address of the range. */ endIpAddress?: pulumi.Input; /** * External entity Id on the provider side. */ externalId?: pulumi.Input; /** * Fabric network Id. */ fabricNetworkId?: pulumi.Input; /** * IP address version: IPv4 or IPv6. Default: IPv4. */ ipVersion?: pulumi.Input; /** * HATEOAS of the entity */ links?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * ID of organization that entity belongs to. */ orgId?: pulumi.Input; /** * Start IP address of the range. */ startIpAddress?: pulumi.Input; /** * Set of tag keys and values to apply to the resource. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a IpRange resource. */ export interface IpRangeArgs { /** * State object representing a network on a external cloud provider. */ description?: pulumi.Input; /** * End IP address of the range. */ endIpAddress: pulumi.Input; /** * Fabric network Id. */ fabricNetworkId?: pulumi.Input; /** * IP address version: IPv4 or IPv6. Default: IPv4. */ ipVersion: pulumi.Input; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * Start IP address of the range. */ startIpAddress: pulumi.Input; /** * Set of tag keys and values to apply to the resource. * Example:[ { "key" : "vmware", "value": "provider" } ] */ tags?: pulumi.Input[]>; }