Share feedback
Answers are generated based on the documentation.

Experimental

Schema

EffectiveVolumeAttachment

Type: object

EffectiveVolumeAttachment retains the identity, not a reusable name lookup.
mode · required

Schema: AttachmentMode

mode is explicit and survives sandbox stop/start and backend restart.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/AttachmentMode",
  "description": "mode is explicit and survives sandbox stop/start and backend restart.",
  "not": {
    "enum": [
      "unspecified"
    ]
  }
}
target · required

Type: string

target is the accepted normalized absolute guest path.
All schema constraints and annotations
{
  "description": "target is the accepted normalized absolute guest path.",
  "minLength": 1,
  "type": "string"
}
volume

Type: string

volume is the resource name recorded for this reference.
All schema constraints and annotations
{
  "description": "volume is the resource name recorded for this reference.",
  "type": "string"
}
volumeUid · response only

Type: string | null

volume_uid retains the observed backing incarnation when the backend provides one.
All schema constraints and annotations
{
  "description": "volume_uid retains the observed backing incarnation when the backend provides one.",
  "readOnly": true,
  "type": [
    "string",
    "null"
  ]
}
All schema constraints and annotations
{
  "description": "EffectiveVolumeAttachment retains the identity, not a reusable name lookup.",
  "properties": {
    "mode": {
      "$ref": "#/components/schemas/AttachmentMode",
      "description": "mode is explicit and survives sandbox stop/start and backend restart.",
      "not": {
        "enum": [
          "unspecified"
        ]
      }
    },
    "target": {
      "description": "target is the accepted normalized absolute guest path.",
      "minLength": 1,
      "type": "string"
    },
    "volume": {
      "description": "volume is the resource name recorded for this reference.",
      "type": "string"
    },
    "volumeUid": {
      "description": "volume_uid retains the observed backing incarnation when the backend provides one.",
      "readOnly": true,
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "target",
    "mode"
  ],
  "title": "EffectiveVolumeAttachment",
  "type": "object"
}