SqlServer.DefinitionStages.WithElasticPool インターフェイス

public static interface SqlServer.DefinitionStages.WithElasticPool

エラスティック プールを指定するためのSQL Server定義。

メソッドの概要

修飾子と型 メソッドと説明
abstract Blank<WithCreate> defineElasticPool(String elasticPoolName)

このサーバーに追加する新しい SQL エラスティック プールの定義を開始します。

abstract WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition)

SQL Serverに新しいエラスティック プールを作成します。

abstract WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition, String[] databaseNames)

SQL Serverに新しいエラスティック プールを作成します。

メソッドの詳細

defineElasticPool

public abstract SqlElasticPool.DefinitionStages.Blank defineElasticPool(String elasticPoolName)

このサーバーに追加する新しい SQL エラスティック プールの定義を開始します。

Parameters:

elasticPoolName - 新しい SQL エラスティック プールの名前

Returns:

新しい SQL エラスティック プール定義の最初のステージ

withNewElasticPool


public abstract SqlServer.DefinitionStages.WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition)

SQL Serverに新しいエラスティック プールを作成します。

Parameters:

elasticPoolName - 作成するエラスティック プールの名前
elasticPoolEdition - エラスティック プールのエディション

Returns:

SQL Server定義の次のステージ

withNewElasticPool


public abstract SqlServer.DefinitionStages.WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition, String[] databaseNames)

SQL Serverに新しいエラスティック プールを作成します。

Parameters:

elasticPoolName - 作成するエラスティック プールの名前
elasticPoolEdition - エラスティック プールのエディション
databaseNames - エラスティック プールに含めるデータベースの名前

Returns:

SQL Server定義の次のステージ

適用対象