Share feedback
Answers are generated based on the documentation.

Experimental

Schema

VolumeAttachment

Type: object

VolumeAttachment binds an existing owner-scoped volume before guest execution.
mode

Schema: AttachmentMode

mode defaults to exclusive; it never silently enables shared writers.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/AttachmentMode",
  "description": "mode defaults to exclusive; it never silently enables shared writers."
}
target · required

Type: string

target is an absolute guest path and cannot overlap another mount target.
All schema constraints and annotations
{
  "description": "target is an absolute guest path and cannot overlap another mount target.",
  "minLength": 1,
  "type": "string"
}
volume · required

Type: string

volume is the complete resource name, in the form volumes/{volume}.
All schema constraints and annotations
{
  "description": "volume is the complete resource name, in the form volumes/{volume}.",
  "pattern": "^volumes/[^/]+$",
  "type": "string"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "VolumeAttachment binds an existing owner-scoped volume before guest execution.",
  "properties": {
    "mode": {
      "$ref": "#/components/schemas/AttachmentMode",
      "description": "mode defaults to exclusive; it never silently enables shared writers."
    },
    "target": {
      "description": "target is an absolute guest path and cannot overlap another mount target.",
      "minLength": 1,
      "type": "string"
    },
    "volume": {
      "description": "volume is the complete resource name, in the form volumes/{volume}.",
      "pattern": "^volumes/[^/]+$",
      "type": "string"
    }
  },
  "required": [
    "volume",
    "target"
  ],
  "title": "VolumeAttachment",
  "type": "object"
}