次の方法で共有


Workload Groups - Create Or Update

ワークロード グループを作成または更新します。

PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/workloadGroups/{workloadGroupName}?api-version=2021-11-01

URI パラメーター

名前 / 必須 説明
databaseName
path True

string

データベースの名前。

resourceGroupName
path True

string

リソースが含まれているリソース グループの名前。 この値は、Azure リソース マネージャー API またはポータルから取得できます。

serverName
path True

string

サーバーの名前。

subscriptionId
path True

string

Azure サブスクリプションを識別するサブスクリプション ID。

workloadGroupName
path True

string

ワークロード グループの名前。

api-version
query True

string

要求で使用する API のバージョン。

要求本文

名前 必須 説明
properties.maxResourcePercent True

integer

ワークロード グループの上限の割合リソース。

properties.minResourcePercent True

integer

ワークロード グループの最小割合リソース。

properties.minResourcePercentPerRequest True

number

ワークロード グループ要求の最小付与割合。

properties.importance

string

ワークロード グループの重要度レベル。

properties.maxResourcePercentPerRequest

number

ワークロード グループ要求の最大付与割合。

properties.queryExecutionTimeout

integer

ワークロード グループクエリの実行タイムアウト。

応答

名前 説明
200 OK

WorkloadGroup

ワークロード グループが正常に更新されました。

201 Created

WorkloadGroup

ワークロード グループが正常に作成されました。

202 Accepted

受け入れられたワークロード グループの作成または更新。

Other Status Codes

エラー応答: ***

  • 400 OperationNotAllowedOnPausedDatabase - 一時停止しているデータベースでは操作を許可しません。

  • 400 FeatureDisabledOnSelectedEdition - ユーザーは、現在のデータベース エディションで無効になっている機能を使用しようとしました。

  • 400 InvalidWorkloadGroupNameParameter - ワークロード グループ名が無効です

  • 400 InvalidMinResourcePercentParameter - このワークロード グループの最小リソース割合が無効です。

  • 400 InvalidMinResourcePercentPerRequestParameter - このワークロード グループのクエリあたりの最小リソース割合が無効です。

  • 400 InvalidMaxResourcePercentParameter - このワークロード グループに割り当てる最大リソース割合が無効です。

  • 400 InvalidMaxResourcePercentPerRequestParameter - このワークロード グループのクエリあたりの最大リソース割合が無効です。

  • 400 InvalidImportanceParameter - 重要度は、Low、Below_Normal、Normal、Above_Normal、High のいずれかの文字列である必要があります。

  • 400 InvalidQueryExecutionTimeoutParameter - このワークロード グループのクエリ実行タイムアウト値が無効です。

  • 400 InvalidResourceRequestBody - 要求本文のリソースまたはリソースのプロパティが空または無効です。

  • 404 SubscriptionDoesNotHaveServer - 要求されたサーバーが見つかりませんでした

  • 404 ServerNotInSubscriptionResourceGroup - 指定されたサーバーが、指定されたリソース グループとサブスクリプションに存在しません。

  • 404 DatabaseDoesNotExist - ユーザーがこのサーバー インスタンスに存在しないデータベース名を指定しました。

  • 404 ResourceNotFound - 要求されたリソースが見つかりませんでした。

  • 404 OperationIdNotFound - Id を持つ操作が存在しません。

  • 409 ConflictingDatabaseOperation - データベースには既にいくつかの操作があり、現在の操作は完了するまで待機する必要があります。

  • 409 ConflictingSystemOperationInProgress - データベースでシステム メンテナンス操作が進行中であり、それ以上の操作が完了するまで待機する必要があります。

  • 409 OperationCancelled - 操作がユーザーによって取り消されました。

  • 409 OperationInterrupted - 同じリソースに対する別の操作によって中断されたため、リソースに対する操作を完了できませんでした。

  • 429 SubscriptionTooManyCreateUpdateRequests - 使用可能なリソースで処理できる最大要求を超える要求。

  • 429 SubscriptionTooManyRequests - 使用可能なリソースで処理できる最大要求を超える要求。

  • 500 OperationTimedOut - 操作がタイムアウトし、自動的にロールバックされました。 操作をやり直してください。

  • 503 TooManyRequests - 使用可能なリソースで処理できる最大要求を超える要求。

  • 503 DatabaseUnavailable - データベースが使用できないため、操作に失敗しました。

  • 503 TooManyRequests - 使用可能なリソースで処理できる最大要求を超える要求。

  • 504 RequestTimeout - サービス要求が許可されたタイムアウトを超えました。

Create a workload group with all properties specified.
Create a workload group with the required properties specified.

Create a workload group with all properties specified.

要求のサンプル

PUT https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/workloadGroups/smallrc?api-version=2021-11-01

{
  "properties": {
    "minResourcePercent": 0,
    "maxResourcePercent": 100,
    "minResourcePercentPerRequest": 3,
    "maxResourcePercentPerRequest": 3,
    "importance": "normal",
    "queryExecutionTimeout": 0
  }
}

応答のサンプル

{
  "properties": {
    "minResourcePercent": 0,
    "maxResourcePercent": 100,
    "minResourcePercentPerRequest": 3,
    "maxResourcePercentPerRequest": 3,
    "importance": "normal",
    "queryExecutionTimeout": 0
  },
  "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/workloadGroups/smallrc",
  "name": "smallrc",
  "type": "Microsoft.Sql/servers/databases/workloadGroups"
}
{
  "properties": {
    "minResourcePercent": 0,
    "maxResourcePercent": 100,
    "minResourcePercentPerRequest": 3,
    "maxResourcePercentPerRequest": 3,
    "importance": "normal",
    "queryExecutionTimeout": 0
  },
  "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/workloadGroups/smallrc",
  "name": "smallrc",
  "type": "Microsoft.Sql/servers/databases/workloadGroups"
}

Create a workload group with the required properties specified.

要求のサンプル

PUT https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/workloadGroups/smallrc?api-version=2021-11-01

{
  "properties": {
    "minResourcePercent": 0,
    "maxResourcePercent": 100,
    "minResourcePercentPerRequest": 3
  }
}

応答のサンプル

{
  "properties": {
    "minResourcePercent": 0,
    "maxResourcePercent": 100,
    "minResourcePercentPerRequest": 3,
    "maxResourcePercentPerRequest": 3,
    "importance": "normal",
    "queryExecutionTimeout": 0
  },
  "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/workloadGroups/smallrc",
  "name": "smallrc",
  "type": "Microsoft.Sql/servers/databases/workloadGroups"
}
{
  "properties": {
    "minResourcePercent": 0,
    "maxResourcePercent": 100,
    "minResourcePercentPerRequest": 3,
    "maxResourcePercentPerRequest": 3,
    "importance": "normal",
    "queryExecutionTimeout": 0
  },
  "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/workloadGroups/smallrc",
  "name": "smallrc",
  "type": "Microsoft.Sql/servers/databases/workloadGroups"
}

定義

WorkloadGroup

データ ウェアハウスのワークロード グループ操作

名前 説明
id

string

リソースの ID

name

string

リソース名。

properties.importance

string

ワークロード グループの重要度レベル。

properties.maxResourcePercent

integer

ワークロード グループの上限の割合リソース。

properties.maxResourcePercentPerRequest

number

ワークロード グループ要求の最大付与割合。

properties.minResourcePercent

integer

ワークロード グループの最小割合リソース。

properties.minResourcePercentPerRequest

number

ワークロード グループ要求の最小付与割合。

properties.queryExecutionTimeout

integer

ワークロード グループクエリの実行タイムアウト。

type

string

リソースの種類。