import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides Nutanix resource to create Floating IPs. * * ## Example1 : create Floating IP with External Subnet * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * // create Floating IP with External Subnet UUID * const fip_ext_subnet = new nutanix.FloatingIpV2("fip-ext-subnet", { * name: "example-fip", * description: "example fip description", * externalSubnetReference: "ba250e3e-1db1-4950-917f-a9e2ea35b8e3", * }); * ``` * * * ## Example2 : create Floating IP with External Subnet with vm association * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const fip_ext_subnet_vm = new nutanix.FloatingIpV2("fip-ext-subnet-vm", { * name: "example-fip", * description: "example fip description", * externalSubnetReference: "ba250e3e-1db1-4950-917f-a9e2ea35b8e3", * associations: [{ * vmNicAssociations: [{ * vmNicReference: "31e4b3b1-4b3b-4b3b-4b3b-4b3b4b3b4b3b", * }], * }], * }); * ``` * */ export declare class FloatingIpV2 extends pulumi.CustomResource { /** * Get an existing FloatingIpV2 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?: FloatingIpV2State, opts?: pulumi.CustomResourceOptions): FloatingIpV2; /** * Returns true if the given object is an instance of FloatingIpV2. 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 FloatingIpV2; /** * Association status of floating IP. */ readonly associationStatus: pulumi.Output; /** * Association of the Floating IP with either NIC or Private IP */ readonly associations: pulumi.Output; /** * Description for the Floating IP. */ readonly description: pulumi.Output; readonly extId: pulumi.Output; /** * External subnet reference for the Floating IP to be allocated in on-prem only. */ readonly externalSubnetReference: pulumi.Output; /** * Networking common base object */ readonly externalSubnets: pulumi.Output; readonly floatingIpValue: pulumi.Output; /** * Floating IP address. */ readonly floatingIps: pulumi.Output; /** * A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource. */ readonly links: pulumi.Output; readonly loadBalancerSessionReference: pulumi.Output; /** * Metadata associated with this resource. */ readonly metadatas: pulumi.Output; /** * Name of the floating IP. */ readonly name: pulumi.Output; readonly privateIp: pulumi.Output; /** * A globally unique identifier that represents the tenant that owns this entity. */ readonly tenantId: pulumi.Output; /** * VM NIC reference. */ readonly vmNicReference: pulumi.Output; /** * Virtual NIC for projections */ readonly vmNics: pulumi.Output; /** * VPC reference UUID */ readonly vpcReference: pulumi.Output; /** * Networking common base object */ readonly vpcs: pulumi.Output; /** * Create a FloatingIpV2 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?: FloatingIpV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FloatingIpV2 resources. */ export interface FloatingIpV2State { /** * Association status of floating IP. */ associationStatus?: pulumi.Input; /** * Association of the Floating IP with either NIC or Private IP */ associations?: pulumi.Input[] | undefined>; /** * Description for the Floating IP. */ description?: pulumi.Input; extId?: pulumi.Input; /** * External subnet reference for the Floating IP to be allocated in on-prem only. */ externalSubnetReference?: pulumi.Input; /** * Networking common base object */ externalSubnets?: pulumi.Input[] | undefined>; floatingIpValue?: pulumi.Input; /** * Floating IP address. */ floatingIps?: pulumi.Input[] | undefined>; /** * A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource. */ links?: pulumi.Input[] | undefined>; loadBalancerSessionReference?: pulumi.Input; /** * Metadata associated with this resource. */ metadatas?: pulumi.Input[] | undefined>; /** * Name of the floating IP. */ name?: pulumi.Input; privateIp?: pulumi.Input; /** * A globally unique identifier that represents the tenant that owns this entity. */ tenantId?: pulumi.Input; /** * VM NIC reference. */ vmNicReference?: pulumi.Input; /** * Virtual NIC for projections */ vmNics?: pulumi.Input[] | undefined>; /** * VPC reference UUID */ vpcReference?: pulumi.Input; /** * Networking common base object */ vpcs?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a FloatingIpV2 resource. */ export interface FloatingIpV2Args { /** * Association of the Floating IP with either NIC or Private IP */ associations?: pulumi.Input[] | undefined>; /** * Description for the Floating IP. */ description?: pulumi.Input; extId?: pulumi.Input; /** * External subnet reference for the Floating IP to be allocated in on-prem only. */ externalSubnetReference?: pulumi.Input; /** * Networking common base object */ externalSubnets?: pulumi.Input[] | undefined>; /** * Floating IP address. */ floatingIps?: pulumi.Input[] | undefined>; loadBalancerSessionReference?: pulumi.Input; /** * Name of the floating IP. */ name?: pulumi.Input; /** * VM NIC reference. */ vmNicReference?: pulumi.Input; /** * Virtual NIC for projections */ vmNics?: pulumi.Input[] | undefined>; /** * VPC reference UUID */ vpcReference?: pulumi.Input; /** * Networking common base object */ vpcs?: pulumi.Input[] | undefined>; } //# sourceMappingURL=floatingIpV2.d.ts.map