import * as pulumi from "@pulumi/pulumi"; /** * Provides a resource to Create a new Volume Group. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const vgVmExample = new nutanix.VolumeGroupVmV2("vg_vm_example", { * volumeGroupExtId: "1cdb5b48-fb2c-41b6-b751-b504117ee3e2", * vmExtId: "8a938cc5-282b-48c4-81be-de22de145d07", * }); * ``` * */ export declare class VolumeGroupVmV2 extends pulumi.CustomResource { /** * Get an existing VolumeGroupVmV2 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?: VolumeGroupVmV2State, opts?: pulumi.CustomResourceOptions): VolumeGroupVmV2; /** * Returns true if the given object is an instance of VolumeGroupVmV2. 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 VolumeGroupVmV2; /** * A globally unique identifier of a task. */ readonly extId: pulumi.Output; /** * -(Optional) The index on the SCSI bus to attach the VM to the Volume Group. * * * See detailed information in [Nutanix Attach VM to Volume Group V4](https://developers.nutanix.com/api-reference?namespace=volumes&version=v4.2#tag/VolumeGroups/operation/attachVm). */ readonly index: pulumi.Output; /** * -(Required) A globally unique identifier of an instance that is suitable for external consumption. */ readonly vmExtId: pulumi.Output; /** * -(Required) The external identifier of the volume group. */ readonly volumeGroupExtId: pulumi.Output; /** * Create a VolumeGroupVmV2 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: VolumeGroupVmV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VolumeGroupVmV2 resources. */ export interface VolumeGroupVmV2State { /** * A globally unique identifier of a task. */ extId?: pulumi.Input; /** * -(Optional) The index on the SCSI bus to attach the VM to the Volume Group. * * * See detailed information in [Nutanix Attach VM to Volume Group V4](https://developers.nutanix.com/api-reference?namespace=volumes&version=v4.2#tag/VolumeGroups/operation/attachVm). */ index?: pulumi.Input; /** * -(Required) A globally unique identifier of an instance that is suitable for external consumption. */ vmExtId?: pulumi.Input; /** * -(Required) The external identifier of the volume group. */ volumeGroupExtId?: pulumi.Input; } /** * The set of arguments for constructing a VolumeGroupVmV2 resource. */ export interface VolumeGroupVmV2Args { /** * -(Optional) The index on the SCSI bus to attach the VM to the Volume Group. * * * See detailed information in [Nutanix Attach VM to Volume Group V4](https://developers.nutanix.com/api-reference?namespace=volumes&version=v4.2#tag/VolumeGroups/operation/attachVm). */ index?: pulumi.Input; /** * -(Required) A globally unique identifier of an instance that is suitable for external consumption. */ vmExtId: pulumi.Input; /** * -(Required) The external identifier of the volume group. */ volumeGroupExtId: pulumi.Input; } //# sourceMappingURL=volumeGroupVmV2.d.ts.map