Condividi tramite


SqlPoolUpdate Constructors

Definition

Overloads

Name Description
SqlPoolUpdate()

Initializes a new instance of the SqlPoolUpdate class.

SqlPoolUpdate(SkuV3, IDictionary<String,String>, String, Nullable<Guid>, String, String, String, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the SqlPoolUpdate class.

SqlPoolUpdate()

Initializes a new instance of the SqlPoolUpdate class.

public SqlPoolUpdate();
Public Sub New ()

Applies to

SqlPoolUpdate(SkuV3, IDictionary<String,String>, String, Nullable<Guid>, String, String, String, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the SqlPoolUpdate class.

public SqlPoolUpdate(Microsoft.Azure.Management.Synapse.Models.SkuV3 sku = default, System.Collections.Generic.IDictionary<string,string> tags = default, string status = default, Guid? sqlPoolGuid = default, string currentServiceObjectiveName = default, string requestedServiceObjectiveName = default, string maxServiceObjectiveName = default, int? autoPauseTimer = default, bool? autoResume = default);
new Microsoft.Azure.Management.Synapse.Models.SqlPoolUpdate : Microsoft.Azure.Management.Synapse.Models.SkuV3 * System.Collections.Generic.IDictionary<string, string> * string * Nullable<Guid> * string * string * string * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Management.Synapse.Models.SqlPoolUpdate
Public Sub New (Optional sku As SkuV3 = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional status As String = Nothing, Optional sqlPoolGuid As Nullable(Of Guid) = Nothing, Optional currentServiceObjectiveName As String = Nothing, Optional requestedServiceObjectiveName As String = Nothing, Optional maxServiceObjectiveName As String = Nothing, Optional autoPauseTimer As Nullable(Of Integer) = Nothing, Optional autoResume As Nullable(Of Boolean) = Nothing)

Parameters

sku
SkuV3

The name and tier of the SKU.

tags
IDictionary<String,String>

Resource tags.

status
String

The status of the sql pool. Possible values include: 'Invisible', 'Online', 'Offline', 'Creating', 'Inaccessible', 'Pausing', 'Paused', 'Resuming', 'Scaling', 'Dropping', 'Error', 'Unknown'

sqlPoolGuid
Nullable<Guid>

The Guid of the sql pool.

currentServiceObjectiveName
String

The current service level objective name of the sql pool.

requestedServiceObjectiveName
String

The requested service level objective name of the sql pool.

maxServiceObjectiveName
String

The max service level objective name of the sql pool.

autoPauseTimer
Nullable<Int32>

The period of inactivity in minutes before automatically pausing the sql pool.

autoResume
Nullable<Boolean>

Indicates whether the sql pool can automatically resume when connection attempts are made.

Applies to