cdx-proto
    Preparing search index...

    Type Alias Volume

    Volume: Message<"cyclonedx.v1_6.Volume"> & {
        mode?: Volume_VolumeMode;
        name?: string;
        path?: string;
        persistent?: boolean;
        properties: Property[];
        remote?: boolean;
        sizeAllocated?: string;
        uid?: string;
    }

    An identifiable, logical unit of data storage tied to a physical device.

    Type declaration

    • Optionalmode?: Volume_VolumeMode

      The volume mode for the volume instance.

      from field: optional cyclonedx.v1_6.Volume.VolumeMode mode = 3;

    • Optionalname?: string

      The name of the volume instance

      from field: optional string name = 2;

    • Optionalpath?: string

      The underlying path created from the actual volume.

      from field: optional string path = 4;

    • Optionalpersistent?: boolean

      Indicates if the volume persists beyond the life of the resource it is associated with.

      from field: optional bool persistent = 6;

    • properties: Property[]

      Domain-specific volume instance properties.

      from field: repeated cyclonedx.v1_6.Property properties = 8;

    • Optionalremote?: boolean

      Indicates if the volume is remotely (i.e., network) attached.

      from field: optional bool remote = 7;

    • OptionalsizeAllocated?: string

      The allocated size of the volume accessible to the associated workspace. This should include the scalar size as well as the IEC standard unit in either decimal or binary form.

      from field: optional string sizeAllocated = 5;

    • Optionaluid?: string

      The unique identifier for the volume instance within its deployment context.

      from field: optional string uid = 1;

    from message cyclonedx.v1_6.Volume