update_wiki_page_safe
Update Azure DevOps wiki pages with automatic retry on version conflicts to prevent data loss during concurrent edits.
Instructions
Safely updates a wiki page with automatic retry on version conflicts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the wiki page. | |
max_retries | No | Maximum number of retry attempts (default: 3). | |
path | Yes | The path of the wiki page. | |
project | Yes | The name or ID of the project. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content of the wiki page.",
"type": "string"
},
"max_retries": {
"description": "Maximum number of retry attempts (default: 3).",
"type": "integer"
},
"path": {
"description": "The path of the wiki page.",
"type": "string"
},
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"wiki_identifier": {
"description": "The name or ID of the wiki.",
"type": "string"
}
},
"required": [
"project",
"wiki_identifier",
"path",
"content"
],
"type": "object"
}