Show / Hide Table of Contents

    Class RestorableDroppedDatabase

    A restorable dropped database

    Inheritance
    Object
    Resource
    ProxyResource
    RestorableDroppedDatabase
    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 RestorableDroppedDatabase : Microsoft.Azure.Management.Sql.Models.ProxyResource

    Constructors

    RestorableDroppedDatabase()

    Initializes a new instance of the RestorableDroppedDatabase class.

    Declaration
    public RestorableDroppedDatabase ();

    RestorableDroppedDatabase(String, String, String, String, String, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>)

    Initializes a new instance of the RestorableDroppedDatabase class.

    Declaration
    public RestorableDroppedDatabase (string id = null, string name = null, string type = null, string location = null, string databaseName = null, string edition = null, string maxSizeBytes = null, string serviceLevelObjective = null, string elasticPoolName = null, Nullable<DateTime> creationDate = null, Nullable<DateTime> deletionDate = null, Nullable<DateTime> earliestRestoreDate = null);
    Parameters
    String id

    Resource ID.

    String name

    Resource name.

    String type

    Resource type.

    String location

    The geo-location where the resource lives

    String databaseName

    The name of the database

    String edition

    The edition of the database

    String maxSizeBytes

    The max size in bytes of the database

    String serviceLevelObjective

    The service level objective name of the database

    String elasticPoolName

    The elastic pool name of the database

    Nullable<DateTime> creationDate

    The creation date of the database (ISO8601 format)

    Nullable<DateTime> deletionDate

    The deletion date of the database (ISO8601 format)

    Nullable<DateTime> earliestRestoreDate

    The earliest restore date of the database (ISO8601 format)

    Properties

    CreationDate

    Gets the creation date of the database (ISO8601 format)

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.creationDate")]
    public Nullable<DateTime> CreationDate { get; }
    Property Value
    Nullable<DateTime>

    DatabaseName

    Gets the name of the database

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

    DeletionDate

    Gets the deletion date of the database (ISO8601 format)

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.deletionDate")]
    public Nullable<DateTime> DeletionDate { get; }
    Property Value
    Nullable<DateTime>

    EarliestRestoreDate

    Gets the earliest restore date of the database (ISO8601 format)

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties.earliestRestoreDate")]
    public Nullable<DateTime> EarliestRestoreDate { get; }
    Property Value
    Nullable<DateTime>

    Edition

    Gets the edition of the database

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

    ElasticPoolName

    Gets the elastic pool name of the database

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

    Location

    Gets the geo-location where the resource lives

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

    MaxSizeBytes

    Gets the max size in bytes of the database

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

    ServiceLevelObjective

    Gets the service level objective name of the database

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

    Back to top Azure SDK for Net