Current section
Files
Jump to
Current section
Files
lib/flyteidl2/plugins/dask.pb.ex
defmodule Flyteidl2.Plugins.DaskJob do
@moduledoc false
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
field :scheduler, 1, type: Flyteidl2.Plugins.DaskScheduler
field :workers, 2, type: Flyteidl2.Plugins.DaskWorkerGroup
end
defmodule Flyteidl2.Plugins.DaskScheduler do
@moduledoc false
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
field :image, 1, type: :string
field :resources, 2, type: Flyteidl2.Core.Resources
end
defmodule Flyteidl2.Plugins.DaskWorkerGroup do
@moduledoc false
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
field :number_of_workers, 1, type: :uint32, json_name: "numberOfWorkers"
field :image, 2, type: :string
field :resources, 3, type: Flyteidl2.Core.Resources
end