Illumio MCP Server

update-ruleset

Update an existing ruleset in the PCE

Input Schema

NameRequiredDescriptionDefault
descriptionNoNew description for the ruleset
enabledNoWhether the ruleset is enabled
hrefNoHref of the ruleset to update
nameNoName of the ruleset to update (alternative to href)
scopesNoNew scopes for the ruleset

Input Schema (JSON Schema)

{ "oneOf": [ { "required": [ "href" ] }, { "required": [ "name" ] } ], "properties": { "description": { "description": "New description for the ruleset", "type": "string" }, "enabled": { "description": "Whether the ruleset is enabled", "type": "boolean" }, "href": { "description": "Href of the ruleset to update", "type": "string" }, "name": { "description": "Name of the ruleset to update (alternative to href)", "type": "string" }, "scopes": { "description": "New scopes for the ruleset", "items": { "items": { "oneOf": [ { "description": "Label href or key=value string", "type": "string" }, { "properties": { "href": { "description": "Label href", "type": "string" } }, "required": [ "href" ], "type": "object" } ] }, "type": "array" }, "type": "array" } }, "type": "object" }