detach_from_instance
Detach a VPC or VPC 2.0 network from a Vultr cloud instance using human-readable identifiers like labels or hostnames instead of UUIDs.
Instructions
Detach VPC or VPC 2.0 from an instance.
Smart identifier resolution: Use VPC/instance description/label/hostname or ID.
Args: vpc_identifier: VPC/VPC 2.0 description or ID to detach instance_identifier: Instance label, hostname, or ID to detach from vpc_type: Type of VPC ("vpc" or "vpc2", defaults to "vpc")
Returns: Success confirmation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_identifier | Yes | ||
vpc_identifier | Yes | ||
vpc_type | No | vpc |
Input Schema (JSON Schema)
{
"properties": {
"instance_identifier": {
"title": "Instance Identifier",
"type": "string"
},
"vpc_identifier": {
"title": "Vpc Identifier",
"type": "string"
},
"vpc_type": {
"default": "vpc",
"title": "Vpc Type",
"type": "string"
}
},
"required": [
"vpc_identifier",
"instance_identifier"
],
"type": "object"
}