Illumio MCP Server

update-iplist

Modify an IP List in Illumio PCE by updating its name, description, IP ranges, or FQDN using either the list's href or name for identification.

Instructions

Update an existing IP List in the PCE

Input Schema

NameRequiredDescriptionDefault
descriptionNoNew description for the IP List (optional)
fqdnNoNew Fully Qualified Domain Name (optional)
hrefNoHref of the IP List to update
ip_rangesNoNew list of IP ranges
nameNoName of the IP List to update (alternative to href)

Input Schema (JSON Schema)

{ "oneOf": [ { "required": [ "href" ] }, { "required": [ "name" ] } ], "properties": { "description": { "description": "New description for the IP List (optional)", "type": "string" }, "fqdn": { "description": "New Fully Qualified Domain Name (optional)", "type": "string" }, "href": { "description": "Href of the IP List to update", "type": "string" }, "ip_ranges": { "description": "New list of IP ranges", "items": { "properties": { "description": { "description": "Description of this IP range (optional)", "type": "string" }, "exclusion": { "default": false, "description": "Whether this is an exclusion range", "type": "boolean" }, "from_ip": { "description": "Starting IP address (IPv4 or IPv6)", "type": "string" }, "to_ip": { "description": "Ending IP address (optional, for ranges)", "type": "string" } }, "required": [ "from_ip" ], "type": "object" }, "type": "array" }, "name": { "description": "Name of the IP List to update (alternative to href)", "type": "string" } }, "type": "object" }
ID: xhqzxlo9iy