Class VirtualMachineExtensionInstanceView
The instance view of a virtual machine extension.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class VirtualMachineExtensionInstanceView
Constructors
VirtualMachineExtensionInstanceView()
Initializes a new instance of the VirtualMachineExtensionInstanceView class.
Declaration
public VirtualMachineExtensionInstanceView ();
VirtualMachineExtensionInstanceView(String, String, String, IList<InstanceViewStatus>, IList<InstanceViewStatus>)
Initializes a new instance of the VirtualMachineExtensionInstanceView class.
Declaration
public VirtualMachineExtensionInstanceView (string name = null, string type = null, string typeHandlerVersion = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.InstanceViewStatus> substatuses = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.InstanceViewStatus> statuses = null);
Parameters
|
String
name
The virtual machine extension name. |
|
String
type
Specifies the type of the extension; an example is "CustomScriptExtension". |
|
String
typeHandlerVersion
Specifies the version of the script handler. |
|
IList<InstanceViewStatus>
substatuses
The resource status information. |
|
IList<InstanceViewStatus>
statuses
The resource status information. |
Properties
Name
Gets or sets the virtual machine extension 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>
|
Substatuses
Gets or sets the resource status information.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="substatuses")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.InstanceViewStatus> Substatuses { get; set; }
Property Value
|
IList<InstanceViewStatus>
|
Type
Gets or sets specifies the type of the extension; an example is "CustomScriptExtension".
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="type")]
public string Type { get; set; }
Property Value
|
String
|
TypeHandlerVersion
Gets or sets specifies the version of the script handler.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="typeHandlerVersion")]
public string TypeHandlerVersion { get; set; }
Property Value
|
String
|