次の方法で共有


ElasticPool コンストラクター

定義

オーバーロード

ElasticPool()

ElasticPool クラスの新しいインスタンスを初期化します。

ElasticPool(String, String, String, String, IDictionary<String, String>, Sku, String, String, Nullable<DateTime>, Nullable<Int64>, ElasticPoolPerDatabaseSettings, Nullable<Boolean>, String, String, Nullable<Int32>)

ElasticPool クラスの新しいインスタンスを初期化します。

ElasticPool()

ElasticPool クラスの新しいインスタンスを初期化します。

public ElasticPool();
Public Sub New ()

適用対象

ElasticPool(String, String, String, String, IDictionary<String, String>, Sku, String, String, Nullable<DateTime>, Nullable<Int64>, ElasticPoolPerDatabaseSettings, Nullable<Boolean>, String, String, Nullable<Int32>)

ElasticPool クラスの新しいインスタンスを初期化します。

public ElasticPool(string location, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.Sql.Models.Sku sku = default, string kind = default, string state = default, DateTime? creationDate = default, long? maxSizeBytes = default, Microsoft.Azure.Management.Sql.Models.ElasticPoolPerDatabaseSettings perDatabaseSettings = default, bool? zoneRedundant = default, string licenseType = default, string maintenanceConfigurationId = default, int? highAvailabilityReplicaCount = default);
new Microsoft.Azure.Management.Sql.Models.ElasticPool : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.Sql.Models.Sku * string * string * Nullable<DateTime> * Nullable<int64> * Microsoft.Azure.Management.Sql.Models.ElasticPoolPerDatabaseSettings * Nullable<bool> * string * string * Nullable<int> -> Microsoft.Azure.Management.Sql.Models.ElasticPool
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 kind As String = Nothing, Optional state As String = Nothing, Optional creationDate As Nullable(Of DateTime) = Nothing, Optional maxSizeBytes As Nullable(Of Long) = Nothing, Optional perDatabaseSettings As ElasticPoolPerDatabaseSettings = Nothing, Optional zoneRedundant As Nullable(Of Boolean) = Nothing, Optional licenseType As String = Nothing, Optional maintenanceConfigurationId As String = Nothing, Optional highAvailabilityReplicaCount As Nullable(Of Integer) = Nothing)

パラメーター

location
String

リソースの場所。

id
String

リソースの ID

name
String

リソース名。

type
String

リソースの種類。

tags
IDictionary<String,String>

リソース タグ。

sku
Sku

エラスティック プール SKU。

         The list of SKUs may vary by region and support offer. To determine
         the SKUs (including the SKU name, tier/edition, family, and
         capacity) that are available to your subscription in an Azure
         region, use the `Capabilities_ListByLocation` REST API or the
         following command:

         ```azurecli
         az sql elastic-pool list-editions -l &lt;location&gt; -o table
         ````
kind
String

エラスティック プールの種類。 これは、Azure portal エクスペリエンスに使用されるメタデータです。

state
String

エラスティック プールの状態。 指定できる値は、'Creating'、'Ready'、'Disabled' です。

creationDate
Nullable<DateTime>

エラスティック プールの作成日 (ISO8601 形式)。

maxSizeBytes
Nullable<Int64>

データベース エラスティック プールのストレージ制限 (バイト単位)。

perDatabaseSettings
ElasticPoolPerDatabaseSettings

エラスティック プールのデータベースごとの設定。

zoneRedundant
Nullable<Boolean>

このエラスティック プールがゾーン冗長であるかどうか。つまり、このエラスティック プールのレプリカは複数の可用性ゾーンに分散されます。

licenseType
String

このエラスティック プールに適用するライセンスの種類。 使用可能な値は、'LicenseIncluded'、'BasePrice' です。

maintenanceConfigurationId
String

エラスティック プールに割り当てられたメンテナンス構成 ID。 この構成では、メンテナンス更新が発生する期間を定義します。

highAvailabilityReplicaCount
Nullable<Int32>

高可用性を提供するために使用されるエラスティック プールに関連付けられているセカンダリ レプリカの数。

適用対象