Class Device
Device Path corresponding to the block devices attached to instances having a name and isAvailable flag.
Inherited Members
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