Current section

Files

Jump to
flyte lib flyteidl2 core errors.pb.ex
Raw

lib/flyteidl2/core/errors.pb.ex

defmodule Flyteidl2.Core.ContainerError.Kind do
@moduledoc false
use Protobuf,
enum: true,
full_name: "flyteidl2.core.ContainerError.Kind",
protoc_gen_elixir_version: "0.16.0",
syntax: :proto3
field :NON_RECOVERABLE, 0
field :RECOVERABLE, 1
end
defmodule Flyteidl2.Core.ContainerError do
@moduledoc false
use Protobuf,
full_name: "flyteidl2.core.ContainerError",
protoc_gen_elixir_version: "0.16.0",
syntax: :proto3
field :code, 1, type: :string
field :message, 2, type: :string
field :kind, 3, type: Flyteidl2.Core.ContainerError.Kind, enum: true
field :origin, 4, type: Flyteidl2.Core.ExecutionError.ErrorKind, enum: true
end
defmodule Flyteidl2.Core.ErrorDocument do
@moduledoc false
use Protobuf,
full_name: "flyteidl2.core.ErrorDocument",
protoc_gen_elixir_version: "0.16.0",
syntax: :proto3
field :error, 1, type: Flyteidl2.Core.ContainerError
end