recommended_sensitivity_labels
Creates, updates, deletes, gets or lists a recommended_sensitivity_labels
resource.
Overview
Name | recommended_sensitivity_labels |
Type | Resource |
Id | azure.sql.recommended_sensitivity_labels |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
update | update | resourceGroupName , serverName , databaseName , subscriptionId | Update recommended sensitivity labels states of a given database using an operations batch. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
databaseName | string | The name of the database. |
resourceGroupName | string | The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
serverName | string | The name of the server. |
subscriptionId | string | The subscription ID that identifies an Azure subscription. |
UPDATE
examples
- update
Update recommended sensitivity labels states of a given database using an operations batch.
UPDATE azure.sql.recommended_sensitivity_labels
SET
data__operations = '{{ operations }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND serverName = '{{ serverName }}' --required
AND databaseName = '{{ databaseName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required;