AttachVolumeDetails

Details for attaching a volume.

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
instanceId string The OCID of the instance.
volumeId string The OCID of the volume.
type string The type of volume attachment.
displayName string A user-friendly name.
isReadOnly boolean Whether the attachment is read-only.
View JSON Schema on GitHub

JSON Schema

oracle-cloud-attachvolumedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachVolumeDetails",
  "title": "AttachVolumeDetails",
  "type": "object",
  "description": "Details for attaching a volume.",
  "required": [
    "instanceId",
    "volumeId",
    "type"
  ],
  "properties": {
    "instanceId": {
      "type": "string",
      "description": "The OCID of the instance.",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "volumeId": {
      "type": "string",
      "description": "The OCID of the volume.",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "type": {
      "type": "string",
      "description": "The type of volume attachment.",
      "enum": [
        "iscsi",
        "paravirtualized"
      ],
      "example": "iscsi"
    },
    "displayName": {
      "type": "string",
      "description": "A user-friendly name.",
      "example": "my-resource"
    },
    "isReadOnly": {
      "type": "boolean",
      "description": "Whether the attachment is read-only.",
      "default": false,
      "example": false
    }
  }
}