linode · Schema

VPCUpdateRequest

Properties

Name Type Description
label string The new label for the VPC.
description string The new description for the VPC.
View JSON Schema on GitHub

JSON Schema

linode-vpcupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VPCUpdateRequest",
  "title": "VPCUpdateRequest",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64,
      "description": "The new label for the VPC."
    },
    "description": {
      "type": "string",
      "maxLength": 255,
      "description": "The new description for the VPC."
    }
  }
}