Managed Database Sensitivity Labels - Update
操作バッチを使用して、特定のデータベースの秘密度ラベルを更新します。
PATCH https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/databases/{databaseName}/currentSensitivityLabels?api-version=2021-11-01
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
database
|
path | True |
string |
データベースの名前。 |
managed
|
path | True |
string |
マネージド インスタンスの名前。 |
resource
|
path | True |
string |
リソースが含まれているリソース グループの名前。 この値は、Azure リソース マネージャー API またはポータルから取得できます。 |
subscription
|
path | True |
string |
Azure サブスクリプションを識別するサブスクリプション ID。 |
api-version
|
query | True |
string |
要求で使用する API のバージョン。 |
要求本文
名前 | 型 | 説明 |
---|---|---|
operations |
秘密度ラベルの更新操作。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
秘密度ラベルが正常に更新されました。 |
|
Other Status Codes |
エラー応答: ***
|
例
Update sensitivity labels of a given database using an operations batch.
要求のサンプル
PATCH https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/myRG/providers/Microsoft.Sql/managedInstances/myManagedInstanceName/databases/myDatabase/currentSensitivityLabels?api-version=2021-11-01
{
"operations": [
{
"properties": {
"op": "set",
"schema": "dbo",
"table": "table1",
"column": "column1",
"sensitivityLabel": {
"properties": {
"labelName": "Highly Confidential",
"labelId": "3A477B16-9423-432B-AA97-6069B481CEC3",
"informationType": "Financial",
"informationTypeId": "1D3652D6-422C-4115-82F1-65DAEBC665C8"
}
}
}
},
{
"properties": {
"op": "set",
"schema": "dbo",
"table": "table2",
"column": "column2",
"sensitivityLabel": {
"properties": {
"informationType": "PhoneNumber",
"informationTypeId": "d22fa6e9-5ee4-3bde-4c2b-a409604c4646",
"labelId": "bf91e08c-f4f0-478a-b016-25164b2a65ff",
"labelName": "PII"
}
}
}
},
{
"properties": {
"op": "remove",
"schema": "dbo",
"table": "Table1",
"column": "Column3"
}
}
]
}
応答のサンプル
定義
名前 | 説明 |
---|---|
Sensitivity |
秘密度ラベル。 |
Sensitivity |
|
Sensitivity |
秘密度ラベルの更新操作。 |
Sensitivity |
|
Sensitivity |
秘密度ラベルの更新操作の一覧。 |
SensitivityLabel
秘密度ラベル。
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの ID |
managedBy |
string |
秘密度ラベルを管理するリソース。 |
name |
string |
リソース名。 |
properties.columnName |
string |
列名。 |
properties.informationType |
string |
情報の種類。 |
properties.informationTypeId |
string |
情報の種類 ID。 |
properties.isDisabled |
boolean |
秘密度の推奨事項が無効になっています。 推奨される秘密度ラベルにのみ適用されます。 この列の秘密度の推奨事項を無効 (無視) するかどうかを指定します。 |
properties.labelId |
string |
ラベル ID。 |
properties.labelName |
string |
ラベル名。 |
properties.rank | ||
properties.schemaName |
string |
スキーマ名。 |
properties.tableName |
string |
テーブル名。 |
type |
string |
リソースの種類。 |
SensitivityLabelRank
名前 | 型 | 説明 |
---|---|---|
Critical |
string |
|
High |
string |
|
Low |
string |
|
Medium |
string |
|
None |
string |
SensitivityLabelUpdate
秘密度ラベルの更新操作。
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの ID |
name |
string |
リソース名。 |
properties.column |
string |
更新する列名。 |
properties.op | ||
properties.schema |
string |
更新する列のスキーマ名。 |
properties.sensitivityLabel |
列に適用する秘密度ラベル情報。 |
|
properties.table |
string |
更新する列のテーブル名。 |
type |
string |
リソースの種類。 |
SensitivityLabelUpdateKind
名前 | 型 | 説明 |
---|---|---|
remove |
string |
|
set |
string |
SensitivityLabelUpdateList
秘密度ラベルの更新操作の一覧。
名前 | 型 | 説明 |
---|---|---|
operations |
秘密度ラベルの更新操作。 |