delete_resource
Remove specific resources like workspaces, layers, or styles from GeoServer by specifying the resource type, workspace, and name.
Instructions
Delete a resource from GeoServer.
Args:
resource_type: Type of resource to delete (workspace, layer, style, etc.)
workspace: The workspace containing the resource
name: The name of the resource
Returns:
Dict with status and result information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
resource_type | Yes | ||
workspace | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"resource_type": {
"title": "Resource Type",
"type": "string"
},
"workspace": {
"title": "Workspace",
"type": "string"
}
},
"required": [
"resource_type",
"workspace",
"name"
],
"title": "delete_resourceArguments",
"type": "object"
}