blob: 15e2cf0e2a7056442ccf375fa6174b59ceaff071 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
syntax = "proto3";
package yandex.cloud.api;
import "google/protobuf/descriptor.proto";
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/api;api";
extend google.protobuf.MethodOptions { Operation operation = 87334; }
// Operation is annotation for rpc that returns longrunning operation, describes
// message types that will be returned in metadata [google.protobuf.Any], and
// in response [google.protobuf.Any] (for successful operation).
message Operation {
// Optional. If present, rpc returns operation which metadata field will
// contains message of specified type.
string metadata = 1; // Optional.
// Required. rpc returns operation, in case of success response will contains message of
// specified field.
string response = 2; // Required.
}
|