app_configuration_kv_delete
Remove a key-value pair from Azure App Configuration using the specified key and optional label. Supports secure and auditable deletion of configuration data.
Instructions
Delete a key-value from Azure App Configuration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The key to delete | |
| label | No | The label of the key-value to delete (optional) |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "The key to delete",
"type": "string"
},
"label": {
"description": "The label of the key-value to delete (optional)",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}