Current section
Files
Jump to
Current section
Files
lib/docker_engine_api/model/cluster_volume_info.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DockerEngineAPI.Model.ClusterVolumeInfo do
@moduledoc """
Information about the global status of the volume.
"""
@derive JSON.Encoder
defstruct [
:CapacityBytes,
:VolumeContext,
:VolumeID,
:AccessibleTopology
]
@type t :: %__MODULE__{
:CapacityBytes => integer() | nil,
:VolumeContext => %{optional(String.t) => String.t} | nil,
:VolumeID => String.t | nil,
:AccessibleTopology => [DockerEngineAPI.Model.Map.t] | nil
}
def decode(value) do
value
end
end