Current section

Files

Jump to
spannex lib google longrunning operations.pb.ex
Raw

lib/google/longrunning/operations.pb.ex

defmodule Google.Longrunning.Operation do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
oneof(:result, 0)
field(:name, 1, type: :string)
field(:metadata, 2, type: Google.Protobuf.Any)
field(:done, 3, type: :bool)
field(:error, 4, type: Google.Rpc.Status, oneof: 0)
field(:response, 5, type: Google.Protobuf.Any, oneof: 0)
end
defmodule Google.Longrunning.GetOperationRequest do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field(:name, 1, type: :string)
end
defmodule Google.Longrunning.ListOperationsRequest do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field(:name, 4, type: :string)
field(:filter, 1, type: :string)
field(:page_size, 2, type: :int32, json_name: "pageSize")
field(:page_token, 3, type: :string, json_name: "pageToken")
end
defmodule Google.Longrunning.ListOperationsResponse do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field(:operations, 1, repeated: true, type: Google.Longrunning.Operation)
field(:next_page_token, 2, type: :string, json_name: "nextPageToken")
end
defmodule Google.Longrunning.CancelOperationRequest do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field(:name, 1, type: :string)
end
defmodule Google.Longrunning.DeleteOperationRequest do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field(:name, 1, type: :string)
end
defmodule Google.Longrunning.WaitOperationRequest do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field(:name, 1, type: :string)
field(:timeout, 2, type: Google.Protobuf.Duration)
end
defmodule Google.Longrunning.OperationInfo do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field(:response_type, 1, type: :string, json_name: "responseType")
field(:metadata_type, 2, type: :string, json_name: "metadataType")
end