Packages

Docker Engine API client for Elixir.

Current section

Files

Jump to
ex_docker_api lib docker_engine_api model container_pids_stats.ex
Raw

lib/docker_engine_api/model/container_pids_stats.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.23.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DockerEngineAPI.Model.ContainerPidsStats do
@moduledoc """
PidsStats contains Linux-specific stats of a container's process-IDs (PIDs). This type is Linux-specific and omitted for Windows containers.
"""
@derive JSON.Encoder
defstruct [
:current,
:limit
]
@type t :: %__MODULE__{
:current => integer() | nil,
:limit => integer() | nil
}
def decode(value) do
value
end
end