Current section

Files

Jump to
ex_google_stt lib protos google longrunning operations.pb.ex
Raw

lib/protos/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
defmodule Google.Longrunning.Operations.Service do
@moduledoc false
use GRPC.Service, name: "google.longrunning.Operations", protoc_gen_elixir_version: "0.12.0"
rpc :ListOperations,
Google.Longrunning.ListOperationsRequest,
Google.Longrunning.ListOperationsResponse
rpc :GetOperation, Google.Longrunning.GetOperationRequest, Google.Longrunning.Operation
rpc :DeleteOperation, Google.Longrunning.DeleteOperationRequest, Google.Protobuf.Empty
rpc :CancelOperation, Google.Longrunning.CancelOperationRequest, Google.Protobuf.Empty
rpc :WaitOperation, Google.Longrunning.WaitOperationRequest, Google.Longrunning.Operation
end
defmodule Google.Longrunning.Operations.Stub do
@moduledoc false
use GRPC.Stub, service: Google.Longrunning.Operations.Service
end