Show / Hide Table of Contents

Class VolumeAttachArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VolumeAttachArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.OpenStack.Compute
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class VolumeAttachArgs : ResourceArgs

Constructors

View Source

VolumeAttachArgs()

Declaration
public VolumeAttachArgs()

Properties

View Source

Device

See Argument Reference above. NOTE: The correctness of this information is dependent upon the hypervisor in use. In some cases, this should not be used as an authoritative piece of information.

Declaration
public Input<string> Device { get; set; }
Property Value
Type Description
Input<System.String>
View Source

InstanceId

The ID of the Instance to attach the Volume to.

Declaration
public Input<string> InstanceId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Multiattach

Enable attachment of multiattach-capable volumes.

Declaration
public Input<bool> Multiattach { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Region

The region in which to obtain the V2 Compute client. A Compute client is needed to create a volume attachment. If omitted, the region argument of the provider is used. Changing this creates a new volume attachment.

Declaration
public Input<string> Region { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VolumeId

The ID of the Volume to attach to an Instance.

Declaration
public Input<string> VolumeId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.