Show / Hide Table of Contents

    Class ServiceObjective

    Represents a database service objective.

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

    Constructors

    ServiceObjective()

    Initializes a new instance of the ServiceObjective class.

    Declaration
    public ServiceObjective ();

    ServiceObjective(String, String, String, String, Boolean, Boolean, String, Boolean)

    Initializes a new instance of the ServiceObjective class.

    Declaration
    public ServiceObjective (string id = null, string name = null, string type = null, string serviceObjectiveName = null, bool isDefault = false, bool isSystem = false, string description = null, bool enabled = false);
    Parameters
    String id

    Resource ID.

    String name

    Resource name.

    String type

    Resource type.

    String serviceObjectiveName

    The name for the service objective.

    Boolean isDefault

    Gets whether the service level objective is the default service objective.

    Boolean isSystem

    Gets whether the service level objective is a system service objective.

    String description

    The description for the service level objective.

    Boolean enabled

    Gets whether the service level objective is enabled.

    Properties

    Description

    Gets the description for the service level objective.

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

    Enabled

    Gets whether the service level objective is enabled.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.enabled")]
    public bool Enabled { get; }
    Property Value
    Boolean

    IsDefault

    Gets whether the service level objective is the default service objective.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.isDefault")]
    public bool IsDefault { get; }
    Property Value
    Boolean

    IsSystem

    Gets whether the service level objective is a system service objective.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.isSystem")]
    public bool IsSystem { get; }
    Property Value
    Boolean

    ServiceObjectiveName

    Gets the name for the service objective.

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

    Back to top Azure SDK for Net