Show / Hide Table of Contents

    Class DedicatedHostInstanceView

    The instance view of a dedicated host.

    Inheritance
    Object
    DedicatedHostInstanceView
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Compute.dll
    Syntax
    public class DedicatedHostInstanceView

    Constructors

    DedicatedHostInstanceView()

    Initializes a new instance of the DedicatedHostInstanceView class.

    Declaration
    public DedicatedHostInstanceView ();

    DedicatedHostInstanceView(String, DedicatedHostAvailableCapacity, IList<InstanceViewStatus>)

    Initializes a new instance of the DedicatedHostInstanceView class.

    Declaration
    public DedicatedHostInstanceView (string assetId = null, Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity availableCapacity = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.InstanceViewStatus> statuses = null);
    Parameters
    String assetId

    Specifies the unique id of the dedicated physical machine on which the dedicated host resides.

    DedicatedHostAvailableCapacity availableCapacity

    Unutilized capacity of the dedicated host.

    IList<InstanceViewStatus> statuses

    The resource status information.

    Properties

    AssetId

    Gets specifies the unique id of the dedicated physical machine on which the dedicated host resides.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="assetId")]
    public string AssetId { get; }
    Property Value
    String

    AvailableCapacity

    Gets or sets unutilized capacity of the dedicated host.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="availableCapacity")]
    public Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity AvailableCapacity { get; set; }
    Property Value
    DedicatedHostAvailableCapacity

    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>

    Back to top Azure SDK for Net