Managed Database Sensitivity Labels - Update
使用作批处理更新给定数据库的敏感度标签。
PATCH https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/databases/{databaseName}/currentSensitivityLabels?api-version=2023-08-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=2023-08-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"
}
}
]
}
示例响应
定义
| 名称 | 说明 |
|---|---|
|
Client |
|
|
Error |
资源管理错误附加信息。 |
|
Error |
错误详细信息。 |
|
Error |
错误响应 |
|
Sensitivity |
敏感度标签。 |
|
Sensitivity |
|
|
Sensitivity |
敏感度标签更新作。 |
|
Sensitivity |
|
|
Sensitivity |
敏感度标签更新作的列表。 |
ClientClassificationSource
| 值 | 说明 |
|---|---|
| None | |
| Native | |
| Recommended | |
| MIP |
ErrorAdditionalInfo
资源管理错误附加信息。
| 名称 | 类型 | 说明 |
|---|---|---|
| info |
object |
其他信息。 |
| type |
string |
其他信息类型。 |
ErrorDetail
错误详细信息。
| 名称 | 类型 | 说明 |
|---|---|---|
| additionalInfo |
错误附加信息。 |
|
| code |
string |
错误代码。 |
| details |
错误详细信息。 |
|
| message |
string |
错误消息。 |
| target |
string |
错误目标。 |
ErrorResponse
错误响应
| 名称 | 类型 | 说明 |
|---|---|---|
| error |
错误对象。 |
SensitivityLabel
敏感度标签。
| 名称 | 类型 | 说明 |
|---|---|---|
| id |
string |
资源 ID。 |
| managedBy |
string |
管理敏感度标签的资源。 |
| name |
string |
资源名称。 |
| properties.clientClassificationSource | ||
| 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
| 值 | 说明 |
|---|---|
| None | |
| Low | |
| Medium | |
| High | |
| Critical |
SensitivityLabelUpdate
敏感度标签更新作。
| 名称 | 类型 | 说明 |
|---|---|---|
| id |
string |
资源 ID。 |
| name |
string |
资源名称。 |
| properties.column |
string |
要更新的列名。 |
| properties.op | ||
| properties.schema |
string |
要更新的列的架构名称。 |
| properties.sensitivityLabel |
要应用于列的敏感度标签信息。 |
|
| properties.table |
string |
要更新的列的表名。 |
| type |
string |
资源类型。 |
SensitivityLabelUpdateKind
| 值 | 说明 |
|---|---|
| set | |
| remove |
SensitivityLabelUpdateList
敏感度标签更新作的列表。
| 名称 | 类型 | 说明 |
|---|---|---|
| operations |
敏感度标签更新作。 |