Packages

Docker Engine API client for Elixir.

Current section

Files

Jump to
ex_docker_api lib docker_engine_api model containerd_info_namespaces.ex
Raw

lib/docker_engine_api/model/containerd_info_namespaces.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.ContainerdInfoNamespaces do
@moduledoc """
The namespaces that the daemon uses for running containers and plugins in containerd. These namespaces can be configured in the daemon configuration, and are considered to be used exclusively by the daemon, Tampering with the containerd instance may cause unexpected behavior. As these namespaces are considered to be exclusively accessed by the daemon, it is not recommended to change these values, or to change them to a value that is used by other systems, such as cri-containerd.
"""
@derive Jason.Encoder
defstruct [
:Containers,
:Plugins
]
@type t :: %__MODULE__{
:Containers => String.t | nil,
:Plugins => String.t | nil
}
def decode(value) do
value
end
end