Show / Hide Table of Contents

    Class VirtualCluster

    An Azure SQL virtual cluster.

    Inheritance
    Object
    Resource
    TrackedResource
    VirtualCluster
    Inherited Members
    Resource.Id
    Resource.Name
    Resource.Type
    TrackedResource.Location
    TrackedResource.Tags
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Sql.dll
    Syntax
    [Microsoft.Rest.Serialization.JsonTransformation]
    public class VirtualCluster : Microsoft.Azure.Management.Sql.Models.TrackedResource

    Constructors

    VirtualCluster()

    Initializes a new instance of the VirtualCluster class.

    Declaration
    public VirtualCluster ();

    VirtualCluster(String, String, String, String, IDictionary<String,String>, String, String, IList<String>)

    Initializes a new instance of the VirtualCluster class.

    Declaration
    public VirtualCluster (string location, string id = null, string name = null, string type = null, System.Collections.Generic.IDictionary<string,string> tags = null, string subnetId = null, string family = null, System.Collections.Generic.IList<string> childResources = null);
    Parameters
    String location

    Resource location.

    String id

    Resource ID.

    String name

    Resource name.

    String type

    Resource type.

    IDictionary<String,String> tags

    Resource tags.

    String subnetId

    Subnet resource ID for the virtual cluster.

    String family

    If the service has different generations of hardware, for the same SKU, then that can be captured here.

    IList<String> childResources

    List of resources in this virtual cluster.

    Properties

    ChildResources

    Gets list of resources in this virtual cluster.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.childResources")]
    public System.Collections.Generic.IList<string> ChildResources { get; }
    Property Value
    IList<String>

    Family

    Gets or sets if the service has different generations of hardware, for the same SKU, then that can be captured here.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.family")]
    public string Family { get; set; }
    Property Value
    String

    SubnetId

    Gets subnet resource ID for the virtual cluster.

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

    Methods

    Validate()

    Validate the object.

    Declaration
    public override void Validate ();
    Exceptions
    ValidationException

    Thrown if validation fails

    Back to top Azure SDK for Net