Class DiskInstanceView
The instance view of the disk.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class DiskInstanceView
Constructors
DiskInstanceView()
Initializes a new instance of the DiskInstanceView class.
Declaration
public DiskInstanceView ();
DiskInstanceView(String, IList<DiskEncryptionSettings>, IList<InstanceViewStatus>)
Initializes a new instance of the DiskInstanceView class.
Declaration
public DiskInstanceView (string name = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings> encryptionSettings = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.InstanceViewStatus> statuses = null);
Parameters
|
String
name
The disk name. |
|
IList<DiskEncryptionSettings>
encryptionSettings
Specifies the encryption settings for the OS Disk. <br><br> Minimum api-version: 2015-06-15 |
|
IList<InstanceViewStatus>
statuses
The resource status information. |
Properties
EncryptionSettings
Gets or sets specifies the encryption settings for the OS Disk. <br><br> Minimum api-version: 2015-06-15
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="encryptionSettings")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings> EncryptionSettings { get; set; }
Property Value
|
IList<DiskEncryptionSettings>
|
Name
Gets or sets the disk name.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; set; }
Property Value
|
String
|
Statuses
Gets or sets the resource status information.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="statuses")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.InstanceViewStatus> Statuses { get; set; }
Property Value
|
IList<InstanceViewStatus>
|