Show / Hide Table of Contents

Class Device

Device Path corresponding to the block devices attached to instances having a name and isAvailable flag.

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

Properties

IsAvailable

Declaration
[Required(ErrorMessage = "IsAvailable is required.")]
[JsonProperty(PropertyName = "isAvailable")]
public bool? IsAvailable { get; set; }
Property Value
Type Description
bool?

The flag denoting whether device is available.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The device name.

Remarks

Required

In this article
Back to top