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