bulk_configuration_update
Update security policies, retention settings, and access controls across multiple schemas or contexts using a single tool, with optional dry-run functionality for testing.
Instructions
Update configuration settings across multiple schemas or contexts.
Supports security policies, retention settings, and access controls.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config_type | No | security | |
dry_run | No | ||
pattern | No | ||
settings | No | ||
target_type | No | schemas |
Input Schema (JSON Schema)
{
"properties": {
"config_type": {
"default": "security",
"title": "Config Type",
"type": "string"
},
"dry_run": {
"default": true,
"title": "Dry Run",
"type": "boolean"
},
"pattern": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Pattern"
},
"settings": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Settings"
},
"target_type": {
"default": "schemas",
"title": "Target Type",
"type": "string"
}
},
"type": "object"
}