Show / Hide Table of Contents

Class VolumeAttachment

Describes volume attachment details.

Inheritance
object
VolumeAttachment
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudbridgeService.Models
Assembly: OCI.DotNetSDK.Cloudbridge.dll
Syntax
public class VolumeAttachment

Properties

Device

Declaration
[JsonProperty(PropertyName = "device")]
public string Device { get; set; }
Property Value
Type Description
string

The device name.

InstanceKey

Declaration
[JsonProperty(PropertyName = "instanceKey")]
public string InstanceKey { get; set; }
Property Value
Type Description
string

The ID of the instance.

IsDeleteOnTermination

Declaration
[JsonProperty(PropertyName = "isDeleteOnTermination")]
public bool? IsDeleteOnTermination { get; set; }
Property Value
Type Description
bool?

Indicates whether the EBS volume is deleted on instance termination.

Status

Declaration
[JsonProperty(PropertyName = "status")]
public string Status { get; set; }
Property Value
Type Description
string

The attachment state of the volume.

VolumeKey

Declaration
[JsonProperty(PropertyName = "volumeKey")]
public string VolumeKey { get; set; }
Property Value
Type Description
string

The ID of the volume.

In this article
Back to top