Aracılığıyla paylaş


SqlPool Constructors

Definition

Overloads

SqlPool()

Initializes a new instance of the SqlPool class.

SqlPool(String, String, String, String, IDictionary<String,String>, Sku, Nullable<Int64>, String, String, String, String, String, Nullable<DateTime>, String, Nullable<DateTime>, String)

Initializes a new instance of the SqlPool class.

SqlPool()

Initializes a new instance of the SqlPool class.

public SqlPool ();
Public Sub New ()

Applies to

SqlPool(String, String, String, String, IDictionary<String,String>, Sku, Nullable<Int64>, String, String, String, String, String, Nullable<DateTime>, String, Nullable<DateTime>, String)

Initializes a new instance of the SqlPool class.

public SqlPool (string location, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.Synapse.Models.Sku sku = default, long? maxSizeBytes = default, string collation = default, string sourceDatabaseId = default, string recoverableDatabaseId = default, string provisioningState = default, string status = default, DateTime? restorePointInTime = default, string createMode = default, DateTime? creationDate = default, string storageAccountType = default);
new Microsoft.Azure.Management.Synapse.Models.SqlPool : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.Synapse.Models.Sku * Nullable<int64> * string * string * string * string * string * Nullable<DateTime> * string * Nullable<DateTime> * string -> Microsoft.Azure.Management.Synapse.Models.SqlPool
Public Sub New (location As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional sku As Sku = Nothing, Optional maxSizeBytes As Nullable(Of Long) = Nothing, Optional collation As String = Nothing, Optional sourceDatabaseId As String = Nothing, Optional recoverableDatabaseId As String = Nothing, Optional provisioningState As String = Nothing, Optional status As String = Nothing, Optional restorePointInTime As Nullable(Of DateTime) = Nothing, Optional createMode As String = Nothing, Optional creationDate As Nullable(Of DateTime) = Nothing, Optional storageAccountType As String = Nothing)

Parameters

location
String

The geo-location where the resource lives

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"

tags
IDictionary<String,String>

Resource tags.

sku
Sku

SQL pool SKU

maxSizeBytes
Nullable<Int64>

Maximum size in bytes

collation
String

Collation mode

sourceDatabaseId
String

Source database to create from

recoverableDatabaseId
String

Backup database to restore from

provisioningState
String

Resource state

status
String

Resource status

restorePointInTime
Nullable<DateTime>

Snapshot time to restore

createMode
String

What is this?

creationDate
Nullable<DateTime>

Date the SQL pool was created

storageAccountType
String

The storage account type used to store backups for this sql pool. Possible values include: 'GRS', 'LRS', 'ZRS'

Applies to