import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a Nutanix Virtual Machine resource to Assign IP. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const nicAssignIp = new nutanix.VmNetworkDeviceAssignIpV2("nic_assign_ip", { * vmExtId: "246f6e8a-ff05-4057-af6b-b1fd23a46d7d", * extId: "eb0157e7-4a87-4ba6-ac8f-62cfe6251b8b", * ipAddresses: [{ * value: "10.10.10.10", * prefixLength: 32, * }], * }); * ``` * */ export declare class VmNetworkDeviceAssignIpV2 extends pulumi.CustomResource { /** * Get an existing VmNetworkDeviceAssignIpV2 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?: VmNetworkDeviceAssignIpV2State, opts?: pulumi.CustomResourceOptions): VmNetworkDeviceAssignIpV2; /** * Returns true if the given object is an instance of VmNetworkDeviceAssignIpV2. 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 VmNetworkDeviceAssignIpV2; /** * - (Required) The globally unique identifier of a Nic. It should be of type UUID. */ readonly extId: pulumi.Output; /** * - (Optional) Ip config settings. */ readonly ipAddresses: pulumi.Output; /** * - (Required) The globally unique identifier of a VM. It should be of type UUID. */ readonly vmExtId: pulumi.Output; /** * Create a VmNetworkDeviceAssignIpV2 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: VmNetworkDeviceAssignIpV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VmNetworkDeviceAssignIpV2 resources. */ export interface VmNetworkDeviceAssignIpV2State { /** * - (Required) The globally unique identifier of a Nic. It should be of type UUID. */ extId?: pulumi.Input; /** * - (Optional) Ip config settings. */ ipAddresses?: pulumi.Input[] | undefined>; /** * - (Required) The globally unique identifier of a VM. It should be of type UUID. */ vmExtId?: pulumi.Input; } /** * The set of arguments for constructing a VmNetworkDeviceAssignIpV2 resource. */ export interface VmNetworkDeviceAssignIpV2Args { /** * - (Required) The globally unique identifier of a Nic. It should be of type UUID. */ extId: pulumi.Input; /** * - (Optional) Ip config settings. */ ipAddresses?: pulumi.Input[] | undefined>; /** * - (Required) The globally unique identifier of a VM. It should be of type UUID. */ vmExtId: pulumi.Input; } //# sourceMappingURL=vmNetworkDeviceAssignIpV2.d.ts.map