RecoverableSqlPool Constructors

Definition

Overloads

RecoverableSqlPool()

Initializes a new instance of the RecoverableSqlPool class.

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

Initializes a new instance of the RecoverableSqlPool class.

RecoverableSqlPool()

Initializes a new instance of the RecoverableSqlPool class.

public RecoverableSqlPool ();
Public Sub New ()

Applies to

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

Initializes a new instance of the RecoverableSqlPool class.

public RecoverableSqlPool (string id = default, string name = default, string type = default, string edition = default, string serviceLevelObjective = default, string elasticPoolName = default, DateTime? lastAvailableBackupDate = default);
new Microsoft.Azure.Management.Synapse.Models.RecoverableSqlPool : string * string * string * string * string * string * Nullable<DateTime> -> Microsoft.Azure.Management.Synapse.Models.RecoverableSqlPool
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional edition As String = Nothing, Optional serviceLevelObjective As String = Nothing, Optional elasticPoolName As String = Nothing, Optional lastAvailableBackupDate As Nullable(Of DateTime) = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

edition
String

The edition of the database

serviceLevelObjective
String

The service level objective name of the database

elasticPoolName
String

The elastic pool name of the database

lastAvailableBackupDate
Nullable<DateTime>

The last available backup date of the database (ISO8601 format)

Applies to