app_configuration_kv_write
Use this tool to write or update key-value pairs in Azure App Configuration, including optional labels and content types, enabling efficient configuration management.
Instructions
Write or update a key-value in Azure App Configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type | No | Content type of the value (optional, e.g. 'application/json') | |
key | Yes | The key to write | |
label | No | The label for the key-value (optional) | |
value | Yes | The value to store |
Input Schema (JSON Schema)
{
"properties": {
"content_type": {
"description": "Content type of the value (optional, e.g. 'application/json')",
"type": "string"
},
"key": {
"description": "The key to write",
"type": "string"
},
"label": {
"description": "The label for the key-value (optional)",
"type": "string"
},
"value": {
"description": "The value to store",
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
}