Class VirtualMachineAgentInstanceView
The instance view of the VM Agent running on the virtual machine.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class VirtualMachineAgentInstanceView
Constructors
VirtualMachineAgentInstanceView()
Initializes a new instance of the VirtualMachineAgentInstanceView class.
Declaration
public VirtualMachineAgentInstanceView ();
VirtualMachineAgentInstanceView(String, IList<VirtualMachineExtensionHandlerInstanceView>, IList<InstanceViewStatus>)
Initializes a new instance of the VirtualMachineAgentInstanceView class.
Declaration
public VirtualMachineAgentInstanceView (string vmAgentVersion = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView> extensionHandlers = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.InstanceViewStatus> statuses = null);
Parameters
|
String
vmAgentVersion
The VM Agent full version. |
|
IList<VirtualMachineExtensionHandlerInstanceView>
extensionHandlers
The virtual machine extension handler instance view. |
|
IList<InstanceViewStatus>
statuses
The resource status information. |
Properties
ExtensionHandlers
Gets or sets the virtual machine extension handler instance view.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="extensionHandlers")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView> ExtensionHandlers { get; set; }
Property Value
|
IList<VirtualMachineExtensionHandlerInstanceView>
|
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>
|
VmAgentVersion
Gets or sets the VM Agent full version.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="vmAgentVersion")]
public string VmAgentVersion { get; set; }
Property Value
|
String
|