Index: common/api/logdog_coordinator/logs/v1/logs.pb.go |
diff --git a/common/api/logdog_coordinator/logs/v1/logs.pb.go b/common/api/logdog_coordinator/logs/v1/logs.pb.go |
index 78da531e8c1df4e0fddd78c9545ad9795697cb85..d7c000adfa3c8d251fa6c63ecd78223bc21a58d9 100644 |
--- a/common/api/logdog_coordinator/logs/v1/logs.pb.go |
+++ b/common/api/logdog_coordinator/logs/v1/logs.pb.go |
@@ -80,6 +80,8 @@ func (QueryRequest_Trinary) EnumDescriptor() ([]byte, []int) { return fileDescri |
// Note that this endpoint may return fewer logs than requested due to either |
// availability or internal constraints. |
type GetRequest struct { |
+ // The request project to request. |
+ Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitempty"` |
// The path of the log stream to get. |
// |
// This can either be a LogDog stream path or the SHA256 hash of a LogDog |
@@ -88,24 +90,24 @@ type GetRequest struct { |
// Some utilities may find passing around a full LogDog path to be cumbersome |
// due to its length. They can opt to pass around the hash instead and |
// retrieve logs using it. |
- Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"` |
+ Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"` |
// If true, requests that the log stream's state is returned. |
- State bool `protobuf:"varint,2,opt,name=state" json:"state,omitempty"` |
+ State bool `protobuf:"varint,3,opt,name=state" json:"state,omitempty"` |
// The initial log stream index to retrieve. |
- Index int64 `protobuf:"varint,10,opt,name=index" json:"index,omitempty"` |
+ Index int64 `protobuf:"varint,4,opt,name=index" json:"index,omitempty"` |
// The maximum number of bytes to return. If non-zero, it is applied as a |
// constraint to limit the number of logs that are returned. |
// |
// This only returns complete logs. Assuming logs are available, it will |
// return at least one log (even if it violates the size constraint) and as |
// many additional logs as it can without exceeding this constraint. |
- ByteCount int32 `protobuf:"varint,11,opt,name=byte_count,json=byteCount" json:"byte_count,omitempty"` |
+ ByteCount int32 `protobuf:"varint,5,opt,name=byte_count,json=byteCount" json:"byte_count,omitempty"` |
// The maximum number of log records to request. |
// |
// If this value is zero, no count constraint will be applied. If this value |
// is less than zero, no log entries will be returned. This can be used to |
// fetch log stream descriptors without fetching any log records. |
- LogCount int32 `protobuf:"varint,12,opt,name=log_count,json=logCount" json:"log_count,omitempty"` |
+ LogCount int32 `protobuf:"varint,6,opt,name=log_count,json=logCount" json:"log_count,omitempty"` |
// If true, allows the range request to return non-contiguous records. |
// |
// A contiguous request (default) will iterate forwards from the supplied |
@@ -118,7 +120,7 @@ type GetRequest struct { |
// |
// A contiguous request with Index 3 will return: [3, 4], stopping because |
// 5 is missing. A non-contiguous request will return [3, 4, 6, 7]. |
- NonContiguous bool `protobuf:"varint,13,opt,name=non_contiguous,json=nonContiguous" json:"non_contiguous,omitempty"` |
+ NonContiguous bool `protobuf:"varint,7,opt,name=non_contiguous,json=nonContiguous" json:"non_contiguous,omitempty"` |
} |
func (m *GetRequest) Reset() { *m = GetRequest{} } |
@@ -129,6 +131,8 @@ func (*GetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{ |
// TailRequest is the request structure for the user Tail endpoint. It returns |
// the last log in a given log stream at the time of the request. |
type TailRequest struct { |
+ // The request project to request. |
+ Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitempty"` |
// The path of the log stream to get. |
// |
// This can either be a LogDog stream path or the SHA256 hash of a LogDog |
@@ -137,9 +141,9 @@ type TailRequest struct { |
// Some utilities may find passing around a full LogDog path to be cumbersome |
// due to its length. They can opt to pass around the hash instead and |
// retrieve logs using it. |
- Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"` |
+ Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"` |
// If true, requests that the log stream's state is returned. |
- State bool `protobuf:"varint,2,opt,name=state" json:"state,omitempty"` |
+ State bool `protobuf:"varint,3,opt,name=state" json:"state,omitempty"` |
} |
func (m *TailRequest) Reset() { *m = TailRequest{} } |
@@ -193,6 +197,8 @@ func (m *GetResponse) GetLogs() []*logpb.LogEntry { |
// QueryRequest is the request structure for the user Query endpoint. |
type QueryRequest struct { |
+ // The request project to request. |
+ Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitempty"` |
// The query parameter. |
// |
// The path expression may substitute a glob ("*") for a specific path |
@@ -216,27 +222,27 @@ type QueryRequest struct { |
// first value is "foo" and whose name is "baz". |
// - foo/bar will return all streams whose name is "foo/bar". |
// - */* will return all streams with two-component names. |
- Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"` |
+ Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"` |
// ContentType, if not empty, restricts results to streams with the supplied |
// content type. |
- ContentType string `protobuf:"bytes,2,opt,name=content_type,json=contentType" json:"content_type,omitempty"` |
- StreamType *QueryRequest_StreamTypeFilter `protobuf:"bytes,3,opt,name=stream_type,json=streamType" json:"stream_type,omitempty"` |
+ ContentType string `protobuf:"bytes,3,opt,name=content_type,json=contentType" json:"content_type,omitempty"` |
+ StreamType *QueryRequest_StreamTypeFilter `protobuf:"bytes,4,opt,name=stream_type,json=streamType" json:"stream_type,omitempty"` |
// Terminated, if not nil, restricts the query to streams that have or haven't |
// been terminated. |
- Terminated QueryRequest_Trinary `protobuf:"varint,4,opt,name=terminated,enum=logdog.QueryRequest_Trinary" json:"terminated,omitempty"` |
+ Terminated QueryRequest_Trinary `protobuf:"varint,5,opt,name=terminated,enum=logdog.QueryRequest_Trinary" json:"terminated,omitempty"` |
// Archived, if not nil, restricts the query to streams that have or haven't |
// been archived. |
- Archived QueryRequest_Trinary `protobuf:"varint,5,opt,name=archived,enum=logdog.QueryRequest_Trinary" json:"archived,omitempty"` |
+ Archived QueryRequest_Trinary `protobuf:"varint,6,opt,name=archived,enum=logdog.QueryRequest_Trinary" json:"archived,omitempty"` |
// Purged, if not nil, restricts the query to streams that have or haven't |
// been purged. |
- Purged QueryRequest_Trinary `protobuf:"varint,6,opt,name=purged,enum=logdog.QueryRequest_Trinary" json:"purged,omitempty"` |
+ Purged QueryRequest_Trinary `protobuf:"varint,7,opt,name=purged,enum=logdog.QueryRequest_Trinary" json:"purged,omitempty"` |
// Newer restricts results to streams created after the specified date. |
- Newer *google_protobuf.Timestamp `protobuf:"bytes,7,opt,name=newer" json:"newer,omitempty"` |
+ Newer *google_protobuf.Timestamp `protobuf:"bytes,8,opt,name=newer" json:"newer,omitempty"` |
// Older restricts results to streams created before the specified date. |
- Older *google_protobuf.Timestamp `protobuf:"bytes,8,opt,name=older" json:"older,omitempty"` |
+ Older *google_protobuf.Timestamp `protobuf:"bytes,9,opt,name=older" json:"older,omitempty"` |
// If not empty, constrains the results to those whose protobuf version string |
// matches the supplied version. |
- ProtoVersion string `protobuf:"bytes,9,opt,name=proto_version,json=protoVersion" json:"proto_version,omitempty"` |
+ ProtoVersion string `protobuf:"bytes,10,opt,name=proto_version,json=protoVersion" json:"proto_version,omitempty"` |
// Tags is the set of tags to constrain the query with. |
// |
// A Tag entry may either be: |
@@ -244,21 +250,21 @@ type QueryRequest struct { |
// whose tag includes that key/value pair. |
// - A key with an missing (nil) value, in which case the results are |
// constraints by logs that have that tag key, regardless of its value. |
- Tags map[string]string `protobuf:"bytes,10,rep,name=tags" json:"tags,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` |
+ Tags map[string]string `protobuf:"bytes,11,rep,name=tags" json:"tags,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` |
// Next, if not empty, indicates that this query should continue at the point |
// where the previous query left off. |
- Next string `protobuf:"bytes,11,opt,name=next" json:"next,omitempty"` |
+ Next string `protobuf:"bytes,12,opt,name=next" json:"next,omitempty"` |
// MaxResults is the maximum number of query results to return. |
// |
// If MaxResults is zero, no upper bound will be indicated. However, the |
// returned result count is still be subject to internal constraints. |
- MaxResults int32 `protobuf:"varint,12,opt,name=max_results,json=maxResults" json:"max_results,omitempty"` |
+ MaxResults int32 `protobuf:"varint,13,opt,name=max_results,json=maxResults" json:"max_results,omitempty"` |
// If true, returns that the streams' full state is returned instead of just |
// its Path. |
- State bool `protobuf:"varint,13,opt,name=state" json:"state,omitempty"` |
+ State bool `protobuf:"varint,14,opt,name=state" json:"state,omitempty"` |
// If true, causes the requested state to be returned as serialized protobuf |
// data instead of deserialized JSON structures. |
- Proto bool `protobuf:"varint,14,opt,name=proto" json:"proto,omitempty"` |
+ Proto bool `protobuf:"varint,15,opt,name=proto" json:"proto,omitempty"` |
} |
func (m *QueryRequest) Reset() { *m = QueryRequest{} } |
@@ -372,34 +378,36 @@ func (m *QueryResponse_Stream) GetDesc() *logpb.LogStreamDescriptor { |
// ListRequest is the request structure for the user List endpoint. |
type ListRequest struct { |
+ // The request project to request. |
+ Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitempty"` |
// Path is the query parameter. |
// |
// Path should be a prefix fragment of a the valid stream path hierarchy |
// root to query. |
- Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"` |
+ Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"` |
// If true, returns streams under the specified root recursively. Otherwise, |
// only path components immediately under the specified root will be returned. |
- Recursive bool `protobuf:"varint,2,opt,name=recursive" json:"recursive,omitempty"` |
+ Recursive bool `protobuf:"varint,3,opt,name=recursive" json:"recursive,omitempty"` |
// If true, will return only streams. Otherwise, intermediate path components |
// will also be returned. |
- StreamOnly bool `protobuf:"varint,3,opt,name=stream_only,json=streamOnly" json:"stream_only,omitempty"` |
+ StreamOnly bool `protobuf:"varint,4,opt,name=stream_only,json=streamOnly" json:"stream_only,omitempty"` |
// If true, indicates that purged streams should show up in the listing. It is |
// an error if a non-admin user requests this option. |
- IncludePurged bool `protobuf:"varint,4,opt,name=include_purged,json=includePurged" json:"include_purged,omitempty"` |
+ IncludePurged bool `protobuf:"varint,5,opt,name=include_purged,json=includePurged" json:"include_purged,omitempty"` |
// The maximum number of componts to return. |
// |
// If <= 0, no upper bound will be indicated. However, the returned result |
// count is still be subject to internal constraints. |
- MaxResults int32 `protobuf:"varint,5,opt,name=max_results,json=maxResults" json:"max_results,omitempty"` |
+ MaxResults int32 `protobuf:"varint,6,opt,name=max_results,json=maxResults" json:"max_results,omitempty"` |
// If not empty, indicates that this query should continue at the point where |
// the previous query left off. |
- Next string `protobuf:"bytes,6,opt,name=next" json:"next,omitempty"` |
+ Next string `protobuf:"bytes,7,opt,name=next" json:"next,omitempty"` |
// State, if true, returns that the streams' full state instead of just its |
// Path. |
- State bool `protobuf:"varint,7,opt,name=state" json:"state,omitempty"` |
+ State bool `protobuf:"varint,8,opt,name=state" json:"state,omitempty"` |
// Offset, if >= 0, instructs the list operation to skip the supplied number |
// of results. This can be used for pagination. |
- Offset int32 `protobuf:"varint,8,opt,name=offset" json:"offset,omitempty"` |
+ Offset int32 `protobuf:"varint,9,opt,name=offset" json:"offset,omitempty"` |
} |
func (m *ListRequest) Reset() { *m = ListRequest{} } |
@@ -409,13 +417,15 @@ func (*ListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int |
// ListResponse is the response structure for the user List endpoint. |
type ListResponse struct { |
+ // The request project to request. |
+ Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitempty"` |
// Base is the hierarchy base that was requested. |
- Base string `protobuf:"bytes,1,opt,name=base" json:"base,omitempty"` |
+ Base string `protobuf:"bytes,2,opt,name=base" json:"base,omitempty"` |
// If not empty, indicates that there are more list results available. |
// These results can be requested by repeating the List request with the |
// same Path field and supplying this value in the Next field. |
- Next string `protobuf:"bytes,2,opt,name=next" json:"next,omitempty"` |
- Components []*ListResponse_Component `protobuf:"bytes,3,rep,name=components" json:"components,omitempty"` |
+ Next string `protobuf:"bytes,3,opt,name=next" json:"next,omitempty"` |
+ Components []*ListResponse_Component `protobuf:"bytes,4,rep,name=components" json:"components,omitempty"` |
} |
func (m *ListResponse) Reset() { *m = ListResponse{} } |
@@ -709,64 +719,65 @@ var _Logs_serviceDesc = grpc.ServiceDesc{ |
} |
var fileDescriptor0 = []byte{ |
- // 930 bytes of a gzipped FileDescriptorProto |
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x94, 0x55, 0xcd, 0x92, 0xdb, 0x44, |
- 0x10, 0x46, 0xb6, 0x64, 0x5b, 0x6d, 0x7b, 0x31, 0xc3, 0x92, 0x52, 0x89, 0x40, 0x82, 0x21, 0x45, |
- 0x0e, 0x41, 0x0e, 0x26, 0x45, 0x52, 0x40, 0x71, 0x60, 0x49, 0xe0, 0x90, 0x62, 0x83, 0xd6, 0x45, |
- 0x15, 0x27, 0x97, 0x6c, 0xcf, 0x6a, 0x55, 0xc8, 0x1a, 0xa3, 0x19, 0x2d, 0xeb, 0x97, 0xa0, 0xb8, |
- 0x70, 0xe0, 0x29, 0x78, 0x16, 0x5e, 0x83, 0x3b, 0xc5, 0x95, 0x9e, 0x1f, 0xfd, 0x64, 0x51, 0x25, |
- 0xce, 0xc5, 0xd6, 0x7c, 0xfd, 0xf5, 0x4c, 0x4f, 0xf7, 0xd7, 0x3d, 0x00, 0x29, 0x8b, 0x79, 0xb0, |
- 0xcb, 0x99, 0x60, 0xa4, 0x87, 0xdf, 0x1b, 0x16, 0xfb, 0x43, 0x2e, 0x22, 0x41, 0x35, 0xe8, 0x7f, |
- 0x1e, 0x27, 0xe2, 0xa2, 0x58, 0x05, 0x6b, 0xb6, 0x9d, 0xa5, 0xc5, 0x3a, 0x51, 0x3f, 0x1f, 0xc5, |
- 0x6c, 0x86, 0xc0, 0x96, 0x65, 0x33, 0xc5, 0x9a, 0x69, 0x4f, 0xf9, 0xb7, 0x5b, 0xc9, 0x5f, 0xe3, |
- 0x7c, 0x2b, 0x66, 0x2c, 0x4e, 0xa9, 0x26, 0xad, 0x8a, 0xf3, 0x99, 0x48, 0xb6, 0x14, 0x77, 0xdf, |
- 0xee, 0x34, 0x61, 0xfa, 0xa7, 0x05, 0xf0, 0x0d, 0x15, 0x21, 0xfd, 0xb9, 0x40, 0x9c, 0x10, 0xb0, |
- 0x77, 0x91, 0xb8, 0xf0, 0xac, 0xdb, 0xd6, 0x5d, 0x37, 0x54, 0xdf, 0xe4, 0x18, 0x1c, 0x15, 0x8f, |
- 0xd7, 0x41, 0x70, 0x10, 0xea, 0x85, 0x44, 0x93, 0x6c, 0x43, 0xaf, 0x3c, 0x40, 0xb4, 0x1b, 0xea, |
- 0x05, 0x79, 0x07, 0x60, 0xb5, 0x17, 0x74, 0xb9, 0x66, 0x45, 0x26, 0xbc, 0x21, 0x9a, 0x9c, 0xd0, |
- 0x95, 0xc8, 0x89, 0x04, 0xc8, 0xdb, 0xe0, 0x62, 0x6c, 0xc6, 0x3a, 0x52, 0xd6, 0x01, 0x02, 0xda, |
- 0x78, 0x07, 0x8e, 0x32, 0x96, 0xa1, 0x31, 0x13, 0x49, 0x5c, 0xb0, 0x82, 0x7b, 0x63, 0x75, 0xe0, |
- 0x18, 0xd1, 0x93, 0x0a, 0x9c, 0x3e, 0x84, 0xe1, 0x22, 0x4a, 0xd2, 0x57, 0x8e, 0x78, 0xfa, 0x9b, |
- 0x05, 0x43, 0x75, 0x55, 0xbe, 0x63, 0x19, 0xa7, 0xe4, 0x5e, 0xc9, 0x92, 0xae, 0xc3, 0xf9, 0x8d, |
- 0x40, 0xe7, 0x30, 0x78, 0xca, 0xe2, 0x33, 0x91, 0xd3, 0x68, 0x7b, 0x26, 0xad, 0xe5, 0x7d, 0x03, |
- 0xb0, 0x37, 0x94, 0xaf, 0xd5, 0x96, 0xc3, 0xb9, 0x1f, 0xa8, 0x4c, 0xd7, 0xdc, 0xaf, 0xd1, 0x96, |
- 0x27, 0x3b, 0xc1, 0xf2, 0x50, 0xf1, 0xc8, 0xfb, 0x60, 0xcb, 0xca, 0x7a, 0xf6, 0xed, 0x2e, 0xf2, |
- 0x5f, 0xaf, 0xf9, 0x8f, 0x33, 0x91, 0xef, 0x43, 0x65, 0x9c, 0xfe, 0xe3, 0xc0, 0xe8, 0xfb, 0x82, |
- 0xe2, 0xfa, 0x05, 0xb7, 0x79, 0x0f, 0x46, 0x32, 0x27, 0x34, 0x13, 0x4b, 0xb1, 0xdf, 0xe9, 0x4b, |
- 0xb9, 0xe1, 0xd0, 0x60, 0x0b, 0x84, 0xc8, 0x13, 0x40, 0xc9, 0xc8, 0x30, 0x34, 0xa3, 0xab, 0x62, |
- 0xbc, 0x53, 0x5e, 0xa8, 0x79, 0x42, 0xa0, 0xc3, 0x95, 0x5e, 0x4f, 0x92, 0x54, 0xd0, 0x3c, 0x04, |
- 0x5e, 0x21, 0xe4, 0x0b, 0x00, 0x84, 0xb6, 0x49, 0x86, 0x37, 0xde, 0x60, 0xe8, 0xd6, 0xdd, 0xa3, |
- 0xf9, 0xcd, 0xd6, 0x6d, 0x16, 0x39, 0x92, 0x70, 0xd9, 0xe0, 0x93, 0x47, 0x30, 0x88, 0xf2, 0xf5, |
- 0x45, 0x72, 0x89, 0xbe, 0xce, 0x01, 0xbe, 0x15, 0x9b, 0x3c, 0x80, 0xde, 0xae, 0xc8, 0x63, 0xf4, |
- 0xeb, 0x1d, 0xe0, 0x67, 0xb8, 0xe4, 0x3e, 0x38, 0x19, 0xfd, 0x85, 0xe6, 0x5e, 0xdf, 0xd4, 0x44, |
- 0x8b, 0x3d, 0x28, 0xc5, 0x1e, 0x2c, 0x4a, 0xb1, 0x87, 0x9a, 0x28, 0x3d, 0x58, 0xba, 0x41, 0x8f, |
- 0xc1, 0xcb, 0x3d, 0x14, 0x11, 0xcb, 0x38, 0x56, 0xc6, 0xe5, 0x25, 0xcd, 0x79, 0xc2, 0x32, 0xcf, |
- 0x55, 0xd9, 0x1f, 0x29, 0xf0, 0x07, 0x8d, 0x91, 0x39, 0xd8, 0x22, 0xc2, 0x5a, 0x83, 0xaa, 0xf5, |
- 0xbb, 0xed, 0xc1, 0x23, 0xc1, 0x94, 0x5e, 0x72, 0x65, 0xa5, 0x33, 0x7a, 0xa5, 0x7b, 0x04, 0x2b, |
- 0x2d, 0xbf, 0xc9, 0x2d, 0x18, 0x6e, 0xa3, 0xab, 0x65, 0x4e, 0x79, 0x91, 0x0a, 0x6e, 0x1a, 0x04, |
- 0x10, 0x0a, 0x35, 0x52, 0x0b, 0x7b, 0x7c, 0xad, 0x15, 0x55, 0x38, 0xde, 0x91, 0x46, 0xcd, 0xdc, |
- 0x80, 0xc9, 0xf5, 0x5a, 0x93, 0x0f, 0xc1, 0xb9, 0x8c, 0xd2, 0x42, 0x4b, 0xfe, 0x68, 0xfe, 0x86, |
- 0x51, 0x65, 0xcd, 0x0b, 0xb5, 0xdd, 0x7f, 0x08, 0x6e, 0x15, 0x30, 0x99, 0x40, 0xf7, 0x27, 0xba, |
- 0x37, 0x9a, 0x94, 0x9f, 0xf2, 0x44, 0xbd, 0x8f, 0xd6, 0xa2, 0x5e, 0x7c, 0xd6, 0x79, 0x64, 0x4d, |
- 0x3f, 0x80, 0xbe, 0x29, 0x13, 0x19, 0x80, 0xfd, 0xd5, 0xe9, 0xe2, 0xdb, 0xc9, 0x6b, 0xa4, 0x0f, |
- 0xdd, 0x1f, 0x1f, 0x9f, 0x4d, 0x2c, 0xd2, 0x83, 0xce, 0x77, 0xa7, 0x93, 0xce, 0xf4, 0x5f, 0x0b, |
- 0xc6, 0x26, 0x3b, 0xa6, 0x19, 0x3f, 0x85, 0xbe, 0xd6, 0x21, 0xc7, 0x73, 0x64, 0x16, 0xaf, 0x4b, |
- 0x40, 0xf3, 0x4c, 0xa8, 0x61, 0x49, 0xae, 0xd2, 0xd8, 0xa9, 0xd3, 0xe8, 0xff, 0x61, 0x41, 0x4f, |
- 0xf3, 0x5a, 0xfb, 0xe9, 0x5e, 0x73, 0x3a, 0x1c, 0xdc, 0xf7, 0xdd, 0x03, 0xfb, 0x1e, 0x27, 0xa0, |
- 0xfc, 0x5f, 0xea, 0x8a, 0xc8, 0x16, 0x1a, 0x85, 0xae, 0x44, 0x9e, 0xa9, 0x79, 0xfb, 0x37, 0x0e, |
- 0xa1, 0xa7, 0x09, 0x7f, 0xe1, 0xc0, 0xbd, 0x09, 0x6e, 0x4e, 0xd7, 0x05, 0x6a, 0xeb, 0xb2, 0x1c, |
- 0x61, 0x35, 0x20, 0x45, 0x62, 0x7a, 0x9d, 0x65, 0xe9, 0x5e, 0xc5, 0x35, 0x28, 0x9b, 0xf8, 0x14, |
- 0x11, 0x39, 0x47, 0x93, 0x6c, 0x9d, 0x16, 0x1b, 0xba, 0x34, 0x4d, 0x65, 0xeb, 0x39, 0x6a, 0xd0, |
- 0x67, 0xba, 0x7b, 0xae, 0x89, 0xcd, 0xf9, 0x9f, 0xd8, 0xca, 0xd4, 0xf6, 0x1a, 0x0a, 0xad, 0x04, |
- 0xd8, 0x6f, 0x0a, 0xf0, 0x06, 0xf4, 0xd8, 0xf9, 0x39, 0xa7, 0x42, 0xf5, 0x95, 0x13, 0x9a, 0xd5, |
- 0xf4, 0xd7, 0x0e, 0x8c, 0xf4, 0x65, 0x4d, 0x95, 0x71, 0xcb, 0x55, 0xc4, 0x69, 0x79, 0x5b, 0xf9, |
- 0xdd, 0x56, 0x41, 0xf2, 0x25, 0x00, 0xbe, 0x6e, 0xe8, 0x83, 0x03, 0x8e, 0xe3, 0x15, 0x9f, 0x6b, |
- 0xab, 0xe6, 0x8e, 0xc1, 0x49, 0x49, 0x0b, 0x1b, 0x1e, 0xfe, 0xef, 0x16, 0xb8, 0x95, 0xa5, 0x35, |
- 0xc7, 0x18, 0xb2, 0x4e, 0x99, 0x49, 0xb0, 0x59, 0xd5, 0xe2, 0xe8, 0xbe, 0x8a, 0x38, 0xec, 0xc3, |
- 0xc4, 0x31, 0xff, 0xcb, 0x02, 0x1b, 0xad, 0x1c, 0x1d, 0xbb, 0xf8, 0x14, 0x11, 0x52, 0x6e, 0x5f, |
- 0x3f, 0xc1, 0xfe, 0x9b, 0xcf, 0x61, 0x26, 0x71, 0xf7, 0xc1, 0x96, 0x8f, 0x1e, 0xa9, 0x8c, 0x8d, |
- 0x27, 0xb0, 0xdd, 0xe3, 0x01, 0x38, 0xaa, 0x73, 0xc8, 0x71, 0xdb, 0x38, 0xf2, 0xdf, 0x6a, 0x6d, |
- 0x2f, 0xf2, 0x31, 0xc6, 0x87, 0xe9, 0xad, 0xcf, 0x69, 0x68, 0xd5, 0x3f, 0x6e, 0xab, 0xc0, 0xaa, |
- 0xa7, 0x94, 0xfe, 0xc9, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4d, 0x03, 0x53, 0x37, 0xc9, 0x08, |
- 0x00, 0x00, |
+ // 951 bytes of a gzipped FileDescriptorProto |
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x56, 0xcd, 0x92, 0xdb, 0x44, |
+ 0x10, 0x46, 0x96, 0x2c, 0x5b, 0x2d, 0xef, 0xc6, 0x0c, 0x4b, 0x4a, 0x25, 0x02, 0x01, 0x43, 0x0a, |
+ 0x0e, 0x20, 0x07, 0x93, 0x82, 0x14, 0x50, 0x1c, 0x58, 0x12, 0x38, 0xa4, 0xd8, 0x64, 0xd6, 0x45, |
+ 0x15, 0x27, 0x97, 0x6c, 0xcf, 0x6a, 0x05, 0xb2, 0xc6, 0x48, 0xa3, 0x65, 0x7d, 0xe7, 0x0e, 0x17, |
+ 0x0e, 0xbc, 0x01, 0xaf, 0xc2, 0x91, 0xa7, 0xe1, 0x4a, 0xcf, 0x8f, 0x7e, 0x58, 0x5c, 0xb0, 0x49, |
+ 0xe5, 0xb2, 0x9e, 0xf9, 0xfa, 0xeb, 0x99, 0x9e, 0xee, 0xaf, 0x5b, 0x0b, 0x90, 0xf1, 0xa4, 0x8c, |
+ 0xb6, 0x05, 0x17, 0x9c, 0xb8, 0xb8, 0x5e, 0xf3, 0x24, 0xf4, 0x4b, 0x11, 0x0b, 0xa6, 0xc1, 0xf0, |
+ 0x93, 0x24, 0x15, 0xe7, 0xd5, 0x32, 0x5a, 0xf1, 0xcd, 0x34, 0xab, 0x56, 0xa9, 0xfa, 0xf3, 0x5e, |
+ 0xc2, 0xa7, 0x08, 0x6c, 0x78, 0x3e, 0x55, 0xac, 0xa9, 0xf6, 0x94, 0x3f, 0xdb, 0xa5, 0xfc, 0x6b, |
+ 0x9c, 0x6f, 0x27, 0x9c, 0x27, 0x19, 0xd3, 0xa4, 0x65, 0x75, 0x36, 0x15, 0xe9, 0x86, 0xe1, 0xe9, |
+ 0x9b, 0xad, 0x26, 0x4c, 0xfe, 0xb0, 0x00, 0xbe, 0x64, 0x82, 0xb2, 0x1f, 0x2a, 0xc4, 0x49, 0x00, |
+ 0x03, 0xc4, 0xbf, 0x63, 0x2b, 0x11, 0x58, 0xaf, 0x5b, 0xef, 0x78, 0xb4, 0xde, 0x12, 0x02, 0xce, |
+ 0x36, 0x16, 0xe7, 0x41, 0x4f, 0xc1, 0x6a, 0x4d, 0x8e, 0xa0, 0xaf, 0x22, 0x0d, 0x6c, 0x04, 0x87, |
+ 0x54, 0x6f, 0x24, 0x9a, 0xe6, 0x6b, 0x76, 0x19, 0x38, 0x88, 0xda, 0x54, 0x6f, 0xc8, 0xab, 0x00, |
+ 0xcb, 0x9d, 0x60, 0x8b, 0x15, 0xaf, 0x72, 0x11, 0xf4, 0xd1, 0xd4, 0xa7, 0x9e, 0x44, 0x8e, 0x25, |
+ 0x40, 0x5e, 0x01, 0x0f, 0xa3, 0x36, 0x56, 0x57, 0x59, 0x87, 0x08, 0x68, 0xe3, 0x1d, 0x38, 0xcc, |
+ 0x79, 0x8e, 0xc6, 0x5c, 0xa4, 0x49, 0xc5, 0xab, 0x32, 0x18, 0xa8, 0x0b, 0x0f, 0x10, 0x3d, 0x6e, |
+ 0xc0, 0xc9, 0x13, 0xf0, 0xe7, 0x71, 0x9a, 0x3d, 0xc7, 0xb7, 0x4c, 0x7e, 0xb1, 0xc0, 0x57, 0xe9, |
+ 0x29, 0xb7, 0x3c, 0x2f, 0x19, 0x79, 0xb7, 0x66, 0xc9, 0x13, 0xfd, 0xd9, 0xcd, 0x48, 0xe7, 0x3d, |
+ 0x7a, 0xc4, 0x93, 0x53, 0x51, 0xb0, 0x78, 0x73, 0x2a, 0xad, 0x75, 0x26, 0x22, 0x70, 0xd6, 0xac, |
+ 0x5c, 0xa9, 0x7b, 0xfc, 0x59, 0x18, 0xa9, 0xea, 0xb4, 0xdc, 0x2f, 0xd0, 0x56, 0xa4, 0x5b, 0xc1, |
+ 0x0b, 0xaa, 0x78, 0xe4, 0x4d, 0x70, 0xa4, 0x1a, 0x30, 0x71, 0x36, 0xf2, 0x6f, 0xb4, 0xfc, 0x07, |
+ 0xb9, 0x28, 0x76, 0x54, 0x19, 0x27, 0x3f, 0xbb, 0x30, 0x7a, 0x52, 0x31, 0xdc, 0x3f, 0xd3, 0x3b, |
+ 0xdf, 0x80, 0x91, 0xcc, 0x23, 0xcb, 0xc5, 0x42, 0xec, 0xb6, 0xfa, 0xb9, 0x1e, 0xf5, 0x0d, 0x36, |
+ 0x47, 0x88, 0x3c, 0x04, 0x14, 0xa0, 0x0c, 0x50, 0x33, 0x1c, 0x15, 0xfd, 0x9d, 0xfa, 0xa9, 0xdd, |
+ 0xbb, 0x23, 0xfd, 0x10, 0xe9, 0xf5, 0x30, 0xcd, 0x04, 0x2b, 0x28, 0x94, 0x0d, 0x42, 0x3e, 0x05, |
+ 0x40, 0x68, 0x93, 0xe6, 0x98, 0x8b, 0xb5, 0x2a, 0xf9, 0xe1, 0xec, 0xd6, 0xde, 0x63, 0xe6, 0x05, |
+ 0x92, 0x70, 0xdb, 0xe1, 0x93, 0xfb, 0x30, 0x8c, 0x8b, 0xd5, 0x79, 0x7a, 0x81, 0xbe, 0xee, 0x35, |
+ 0x7c, 0x1b, 0x36, 0xb9, 0x07, 0xee, 0xb6, 0x2a, 0x12, 0xf4, 0x1b, 0x5c, 0xc3, 0xcf, 0x70, 0xc9, |
+ 0x5d, 0xe8, 0xe7, 0xec, 0x47, 0x56, 0x04, 0x43, 0x53, 0x2d, 0xdd, 0x3a, 0x51, 0xdd, 0x3a, 0xd1, |
+ 0xbc, 0x6e, 0x1d, 0xaa, 0x89, 0xd2, 0x83, 0x67, 0x6b, 0xf4, 0xf0, 0xfe, 0xdf, 0x43, 0x11, 0xb1, |
+ 0xc0, 0x07, 0xca, 0xb8, 0xb8, 0x60, 0x45, 0x99, 0xf2, 0x3c, 0x00, 0x95, 0xfd, 0x91, 0x02, 0xbf, |
+ 0xd1, 0x18, 0x99, 0x81, 0x23, 0x62, 0x54, 0x81, 0xaf, 0x54, 0xf0, 0xda, 0xfe, 0xe0, 0x91, 0x60, |
+ 0x44, 0x21, 0xb9, 0xb2, 0xd2, 0x39, 0xbb, 0x14, 0xc1, 0x48, 0x57, 0x5a, 0xae, 0xc9, 0x6d, 0xf0, |
+ 0x37, 0xf1, 0xe5, 0xa2, 0x60, 0x65, 0x95, 0x89, 0x32, 0x38, 0x50, 0x4d, 0x05, 0x08, 0x51, 0x8d, |
+ 0xb4, 0x92, 0x3f, 0xbc, 0xd2, 0xbe, 0x2a, 0x9c, 0xe0, 0x86, 0x46, 0xcd, 0x14, 0x82, 0xf1, 0xd5, |
+ 0x5a, 0x93, 0xb7, 0xa1, 0x7f, 0x11, 0x67, 0x95, 0x6e, 0x86, 0xc3, 0xd9, 0x8b, 0x46, 0xaf, 0x2d, |
+ 0x8f, 0x6a, 0x7b, 0xf8, 0x11, 0x78, 0x4d, 0xc0, 0x64, 0x0c, 0xf6, 0xf7, 0x6c, 0x67, 0xa4, 0x2a, |
+ 0x97, 0xf2, 0x46, 0x7d, 0x8e, 0xd6, 0xa9, 0xde, 0x7c, 0xdc, 0xbb, 0x6f, 0x4d, 0xde, 0x82, 0x81, |
+ 0x29, 0x13, 0x19, 0x82, 0xf3, 0xf9, 0xc9, 0xfc, 0xab, 0xf1, 0x0b, 0x64, 0x00, 0xf6, 0xb7, 0x0f, |
+ 0x4e, 0xc7, 0x16, 0x71, 0xa1, 0xf7, 0xf5, 0xc9, 0xb8, 0x37, 0xf9, 0xcb, 0x82, 0x03, 0x93, 0x1d, |
+ 0xd3, 0xa6, 0x1f, 0xc2, 0x40, 0xeb, 0xb0, 0xc4, 0x7b, 0x64, 0x16, 0xaf, 0x4a, 0x40, 0xf3, 0x4c, |
+ 0xa8, 0xb4, 0x26, 0x37, 0x69, 0xec, 0xb5, 0x69, 0x0c, 0x7f, 0xb3, 0xc0, 0xd5, 0xbc, 0xa6, 0x9f, |
+ 0xac, 0x4e, 0x3f, 0x35, 0x13, 0xa1, 0xf7, 0x34, 0x13, 0xc1, 0xbe, 0xe6, 0x44, 0xc0, 0xa9, 0x29, |
+ 0x7f, 0x17, 0xba, 0x22, 0xb2, 0x13, 0x47, 0xd4, 0x93, 0xc8, 0x63, 0x35, 0xbd, 0x7f, 0xea, 0x81, |
+ 0xff, 0x28, 0x2d, 0x9f, 0x71, 0x7c, 0xdf, 0x02, 0xaf, 0x60, 0xab, 0x0a, 0x55, 0x77, 0x51, 0x8f, |
+ 0xbd, 0x16, 0x90, 0xf2, 0x31, 0x53, 0x80, 0xe7, 0xd9, 0x4e, 0xdd, 0x3d, 0xac, 0xdb, 0xfb, 0x04, |
+ 0x11, 0x39, 0x95, 0xd3, 0x7c, 0x95, 0x55, 0x6b, 0xb6, 0x30, 0xed, 0xd6, 0xd7, 0x53, 0xd9, 0xa0, |
+ 0x8f, 0x75, 0x5f, 0x5d, 0x91, 0xa1, 0xfb, 0x2f, 0x19, 0xd6, 0x49, 0x1f, 0x74, 0xb4, 0xdb, 0x48, |
+ 0x73, 0xd8, 0x95, 0xe6, 0x4d, 0x70, 0xf9, 0xd9, 0x59, 0xc9, 0x84, 0xea, 0xb8, 0x3e, 0x35, 0xbb, |
+ 0xc9, 0xef, 0x3d, 0x18, 0xe9, 0x34, 0x98, 0xfa, 0xff, 0x67, 0x1e, 0x96, 0x71, 0x59, 0x4b, 0x4d, |
+ 0xad, 0x9b, 0x00, 0xec, 0x4e, 0x00, 0x9f, 0x01, 0xe0, 0xf7, 0x15, 0x4f, 0xc3, 0xa1, 0x58, 0x0f, |
+ 0xe4, 0xa6, 0x15, 0xbb, 0x77, 0x45, 0xc7, 0x35, 0x8d, 0x76, 0x3c, 0xc2, 0x5f, 0x2d, 0xf0, 0x1a, |
+ 0xcb, 0x5e, 0xe1, 0xe0, 0x63, 0x74, 0x32, 0x55, 0x2c, 0x43, 0x6a, 0x76, 0xad, 0xa0, 0xec, 0xa7, |
+ 0x11, 0x94, 0x73, 0x3d, 0x41, 0xcd, 0xfe, 0xb4, 0xc0, 0x41, 0x6b, 0x89, 0x8e, 0x36, 0x7e, 0xd8, |
+ 0x08, 0xa9, 0x8f, 0x6f, 0xff, 0x09, 0x08, 0x5f, 0xfa, 0x07, 0x66, 0x52, 0x7a, 0x17, 0x1c, 0xf9, |
+ 0x71, 0x25, 0x8d, 0xb1, 0xf3, 0xa9, 0xdd, 0xef, 0x71, 0x0f, 0xfa, 0xaa, 0xdb, 0xc8, 0xd1, 0xbe, |
+ 0x11, 0x16, 0xbe, 0xbc, 0xb7, 0x25, 0xc9, 0xfb, 0x18, 0x1f, 0xa6, 0xb7, 0xbd, 0xa7, 0xa3, 0xef, |
+ 0xf0, 0x68, 0x5f, 0x05, 0x96, 0xae, 0xea, 0x8e, 0x0f, 0xfe, 0x0e, 0x00, 0x00, 0xff, 0xff, 0xda, |
+ 0x8b, 0xe9, 0x2d, 0x4b, 0x09, 0x00, 0x00, |
} |