Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: common/api/logdog_coordinator/logs/v1/logs.pb.go

Issue 1909073002: LogDog: Add project namespace to logs endpoint. (Closed) Base URL: https://github.com/luci/luci-go@logdog-project-storage
Patch Set: Rebase? Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Code generated by protoc-gen-go. 1 // Code generated by protoc-gen-go.
2 // source: logs.proto 2 // source: logs.proto
3 // DO NOT EDIT! 3 // DO NOT EDIT!
4 4
5 /* 5 /*
6 Package logdog is a generated protocol buffer package. 6 Package logdog is a generated protocol buffer package.
7 7
8 It is generated from these files: 8 It is generated from these files:
9 logs.proto 9 logs.proto
10 state.proto 10 state.proto
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 func (QueryRequest_Trinary) EnumDescriptor() ([]byte, []int) { return fileDescri ptor0, []int{3, 0} } 73 func (QueryRequest_Trinary) EnumDescriptor() ([]byte, []int) { return fileDescri ptor0, []int{3, 0} }
74 74
75 // GetRequest is the request structure for the user Get endpoint. 75 // GetRequest is the request structure for the user Get endpoint.
76 // 76 //
77 // If the requested log stream exists, a valid GetRequest will succeed 77 // If the requested log stream exists, a valid GetRequest will succeed
78 // regardless of whether the requested log range was available. 78 // regardless of whether the requested log range was available.
79 // 79 //
80 // Note that this endpoint may return fewer logs than requested due to either 80 // Note that this endpoint may return fewer logs than requested due to either
81 // availability or internal constraints. 81 // availability or internal constraints.
82 type GetRequest struct { 82 type GetRequest struct {
83 // The request project to request.
84 Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitem pty"`
83 // The path of the log stream to get. 85 // The path of the log stream to get.
84 // 86 //
85 // This can either be a LogDog stream path or the SHA256 hash of a LogDo g 87 // This can either be a LogDog stream path or the SHA256 hash of a LogDo g
86 // stream path. 88 // stream path.
87 // 89 //
88 // Some utilities may find passing around a full LogDog path to be cumbe rsome 90 // Some utilities may find passing around a full LogDog path to be cumbe rsome
89 // due to its length. They can opt to pass around the hash instead and 91 // due to its length. They can opt to pass around the hash instead and
90 // retrieve logs using it. 92 // retrieve logs using it.
91 » Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"` 93 » Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
92 // If true, requests that the log stream's state is returned. 94 // If true, requests that the log stream's state is returned.
93 » State bool `protobuf:"varint,2,opt,name=state" json:"state,omitempty"` 95 » State bool `protobuf:"varint,3,opt,name=state" json:"state,omitempty"`
94 // The initial log stream index to retrieve. 96 // The initial log stream index to retrieve.
95 » Index int64 `protobuf:"varint,10,opt,name=index" json:"index,omitempty"` 97 » Index int64 `protobuf:"varint,4,opt,name=index" json:"index,omitempty"`
96 // The maximum number of bytes to return. If non-zero, it is applied as a 98 // The maximum number of bytes to return. If non-zero, it is applied as a
97 // constraint to limit the number of logs that are returned. 99 // constraint to limit the number of logs that are returned.
98 // 100 //
99 // This only returns complete logs. Assuming logs are available, it will 101 // This only returns complete logs. Assuming logs are available, it will
100 // return at least one log (even if it violates the size constraint) and as 102 // return at least one log (even if it violates the size constraint) and as
101 // many additional logs as it can without exceeding this constraint. 103 // many additional logs as it can without exceeding this constraint.
102 » ByteCount int32 `protobuf:"varint,11,opt,name=byte_count,json=byteCount" json:"byte_count,omitempty"` 104 » ByteCount int32 `protobuf:"varint,5,opt,name=byte_count,json=byteCount" json:"byte_count,omitempty"`
103 // The maximum number of log records to request. 105 // The maximum number of log records to request.
104 // 106 //
105 // If this value is zero, no count constraint will be applied. If this v alue 107 // If this value is zero, no count constraint will be applied. If this v alue
106 // is less than zero, no log entries will be returned. This can be used to 108 // is less than zero, no log entries will be returned. This can be used to
107 // fetch log stream descriptors without fetching any log records. 109 // fetch log stream descriptors without fetching any log records.
108 » LogCount int32 `protobuf:"varint,12,opt,name=log_count,json=logCount" js on:"log_count,omitempty"` 110 » LogCount int32 `protobuf:"varint,6,opt,name=log_count,json=logCount" jso n:"log_count,omitempty"`
109 // If true, allows the range request to return non-contiguous records. 111 // If true, allows the range request to return non-contiguous records.
110 // 112 //
111 // A contiguous request (default) will iterate forwards from the supplie d 113 // A contiguous request (default) will iterate forwards from the supplie d
112 // Index and stop if either the end of stream is encountered or there is a 114 // Index and stop if either the end of stream is encountered or there is a
113 // missing stream index. A NonContiguous request will remove the latter 115 // missing stream index. A NonContiguous request will remove the latter
114 // condition. 116 // condition.
115 // 117 //
116 // For example, say the log stream consists of: 118 // For example, say the log stream consists of:
117 // [3, 4, 6, 7] 119 // [3, 4, 6, 7]
118 // 120 //
119 // A contiguous request with Index 3 will return: [3, 4], stopping becau se 121 // A contiguous request with Index 3 will return: [3, 4], stopping becau se
120 // 5 is missing. A non-contiguous request will return [3, 4, 6, 7]. 122 // 5 is missing. A non-contiguous request will return [3, 4, 6, 7].
121 » NonContiguous bool `protobuf:"varint,13,opt,name=non_contiguous,json=non Contiguous" json:"non_contiguous,omitempty"` 123 » NonContiguous bool `protobuf:"varint,7,opt,name=non_contiguous,json=nonC ontiguous" json:"non_contiguous,omitempty"`
122 } 124 }
123 125
124 func (m *GetRequest) Reset() { *m = GetRequest{} } 126 func (m *GetRequest) Reset() { *m = GetRequest{} }
125 func (m *GetRequest) String() string { return proto.CompactTextString (m) } 127 func (m *GetRequest) String() string { return proto.CompactTextString (m) }
126 func (*GetRequest) ProtoMessage() {} 128 func (*GetRequest) ProtoMessage() {}
127 func (*GetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{ 0} } 129 func (*GetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{ 0} }
128 130
129 // TailRequest is the request structure for the user Tail endpoint. It returns 131 // TailRequest is the request structure for the user Tail endpoint. It returns
130 // the last log in a given log stream at the time of the request. 132 // the last log in a given log stream at the time of the request.
131 type TailRequest struct { 133 type TailRequest struct {
134 // The request project to request.
135 Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitem pty"`
132 // The path of the log stream to get. 136 // The path of the log stream to get.
133 // 137 //
134 // This can either be a LogDog stream path or the SHA256 hash of a LogDo g 138 // This can either be a LogDog stream path or the SHA256 hash of a LogDo g
135 // stream path. 139 // stream path.
136 // 140 //
137 // Some utilities may find passing around a full LogDog path to be cumbe rsome 141 // Some utilities may find passing around a full LogDog path to be cumbe rsome
138 // due to its length. They can opt to pass around the hash instead and 142 // due to its length. They can opt to pass around the hash instead and
139 // retrieve logs using it. 143 // retrieve logs using it.
140 » Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"` 144 » Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
141 // If true, requests that the log stream's state is returned. 145 // If true, requests that the log stream's state is returned.
142 » State bool `protobuf:"varint,2,opt,name=state" json:"state,omitempty"` 146 » State bool `protobuf:"varint,3,opt,name=state" json:"state,omitempty"`
143 } 147 }
144 148
145 func (m *TailRequest) Reset() { *m = TailRequest{} } 149 func (m *TailRequest) Reset() { *m = TailRequest{} }
146 func (m *TailRequest) String() string { return proto.CompactTextStrin g(m) } 150 func (m *TailRequest) String() string { return proto.CompactTextStrin g(m) }
147 func (*TailRequest) ProtoMessage() {} 151 func (*TailRequest) ProtoMessage() {}
148 func (*TailRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int {1} } 152 func (*TailRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int {1} }
149 153
150 // GetResponse is the response structure for the user Get endpoint. 154 // GetResponse is the response structure for the user Get endpoint.
151 type GetResponse struct { 155 type GetResponse struct {
152 // The log stream descriptor and state for this stream. 156 // The log stream descriptor and state for this stream.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 190
187 func (m *GetResponse) GetLogs() []*logpb.LogEntry { 191 func (m *GetResponse) GetLogs() []*logpb.LogEntry {
188 if m != nil { 192 if m != nil {
189 return m.Logs 193 return m.Logs
190 } 194 }
191 return nil 195 return nil
192 } 196 }
193 197
194 // QueryRequest is the request structure for the user Query endpoint. 198 // QueryRequest is the request structure for the user Query endpoint.
195 type QueryRequest struct { 199 type QueryRequest struct {
200 // The request project to request.
201 Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitem pty"`
196 // The query parameter. 202 // The query parameter.
197 // 203 //
198 // The path expression may substitute a glob ("*") for a specific path 204 // The path expression may substitute a glob ("*") for a specific path
199 // component. That is, any stream that matches the remaining structure q ualifies 205 // component. That is, any stream that matches the remaining structure q ualifies
200 // regardless of its value in that specific positional field. 206 // regardless of its value in that specific positional field.
201 // 207 //
202 // An unbounded wildcard may appear as a component at the end of both th e 208 // An unbounded wildcard may appear as a component at the end of both th e
203 // prefix and name query components. "**" matches all remaining componen ts. 209 // prefix and name query components. "**" matches all remaining componen ts.
204 // 210 //
205 // If the supplied path query does not contain a path separator ("+"), i t will 211 // If the supplied path query does not contain a path separator ("+"), i t will
206 // be treated as if the prefix is "**". 212 // be treated as if the prefix is "**".
207 // 213 //
208 // Examples: 214 // Examples:
209 // - Empty ("") will return all streams. 215 // - Empty ("") will return all streams.
210 // - **/+/** will return all streams. 216 // - **/+/** will return all streams.
211 // - foo/bar/** will return all streams with the "foo/bar" prefix. 217 // - foo/bar/** will return all streams with the "foo/bar" prefix.
212 // - foo/bar/**/+/baz will return all streams beginning with the "foo/ bar" 218 // - foo/bar/**/+/baz will return all streams beginning with the "foo/ bar"
213 // prefix and named "baz" (e.g., "foo/bar/qux/lol/+/baz") 219 // prefix and named "baz" (e.g., "foo/bar/qux/lol/+/baz")
214 // - foo/bar/+/** will return all streams with a "foo/bar" prefix. 220 // - foo/bar/+/** will return all streams with a "foo/bar" prefix.
215 // - foo/*/+/baz will return all streams with a two-component prefix w hose 221 // - foo/*/+/baz will return all streams with a two-component prefix w hose
216 // first value is "foo" and whose name is "baz". 222 // first value is "foo" and whose name is "baz".
217 // - foo/bar will return all streams whose name is "foo/bar". 223 // - foo/bar will return all streams whose name is "foo/bar".
218 // - */* will return all streams with two-component names. 224 // - */* will return all streams with two-component names.
219 » Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"` 225 » Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
220 // ContentType, if not empty, restricts results to streams with the supp lied 226 // ContentType, if not empty, restricts results to streams with the supp lied
221 // content type. 227 // content type.
222 » ContentType string `protobuf:"bytes,2,opt,name=c ontent_type,json=contentType" json:"content_type,omitempty"` 228 » ContentType string `protobuf:"bytes,3,opt,name=c ontent_type,json=contentType" json:"content_type,omitempty"`
223 » StreamType *QueryRequest_StreamTypeFilter `protobuf:"bytes,3,opt,name=s tream_type,json=streamType" json:"stream_type,omitempty"` 229 » StreamType *QueryRequest_StreamTypeFilter `protobuf:"bytes,4,opt,name=s tream_type,json=streamType" json:"stream_type,omitempty"`
224 // Terminated, if not nil, restricts the query to streams that have or h aven't 230 // Terminated, if not nil, restricts the query to streams that have or h aven't
225 // been terminated. 231 // been terminated.
226 » Terminated QueryRequest_Trinary `protobuf:"varint,4,opt,name=terminated, enum=logdog.QueryRequest_Trinary" json:"terminated,omitempty"` 232 » Terminated QueryRequest_Trinary `protobuf:"varint,5,opt,name=terminated, enum=logdog.QueryRequest_Trinary" json:"terminated,omitempty"`
227 // Archived, if not nil, restricts the query to streams that have or hav en't 233 // Archived, if not nil, restricts the query to streams that have or hav en't
228 // been archived. 234 // been archived.
229 » Archived QueryRequest_Trinary `protobuf:"varint,5,opt,name=archived,enum =logdog.QueryRequest_Trinary" json:"archived,omitempty"` 235 » Archived QueryRequest_Trinary `protobuf:"varint,6,opt,name=archived,enum =logdog.QueryRequest_Trinary" json:"archived,omitempty"`
230 // Purged, if not nil, restricts the query to streams that have or haven 't 236 // Purged, if not nil, restricts the query to streams that have or haven 't
231 // been purged. 237 // been purged.
232 » Purged QueryRequest_Trinary `protobuf:"varint,6,opt,name=purged,enum=log dog.QueryRequest_Trinary" json:"purged,omitempty"` 238 » Purged QueryRequest_Trinary `protobuf:"varint,7,opt,name=purged,enum=log dog.QueryRequest_Trinary" json:"purged,omitempty"`
233 // Newer restricts results to streams created after the specified date. 239 // Newer restricts results to streams created after the specified date.
234 » Newer *google_protobuf.Timestamp `protobuf:"bytes,7,opt,name=newer" json :"newer,omitempty"` 240 » Newer *google_protobuf.Timestamp `protobuf:"bytes,8,opt,name=newer" json :"newer,omitempty"`
235 // Older restricts results to streams created before the specified date. 241 // Older restricts results to streams created before the specified date.
236 » Older *google_protobuf.Timestamp `protobuf:"bytes,8,opt,name=older" json :"older,omitempty"` 242 » Older *google_protobuf.Timestamp `protobuf:"bytes,9,opt,name=older" json :"older,omitempty"`
237 // If not empty, constrains the results to those whose protobuf version string 243 // If not empty, constrains the results to those whose protobuf version string
238 // matches the supplied version. 244 // matches the supplied version.
239 » ProtoVersion string `protobuf:"bytes,9,opt,name=proto_version,json=proto Version" json:"proto_version,omitempty"` 245 » ProtoVersion string `protobuf:"bytes,10,opt,name=proto_version,json=prot oVersion" json:"proto_version,omitempty"`
240 // Tags is the set of tags to constrain the query with. 246 // Tags is the set of tags to constrain the query with.
241 // 247 //
242 // A Tag entry may either be: 248 // A Tag entry may either be:
243 // - A key/value query, in which case the results are constrained by log s 249 // - A key/value query, in which case the results are constrained by log s
244 // whose tag includes that key/value pair. 250 // whose tag includes that key/value pair.
245 // - A key with an missing (nil) value, in which case the results are 251 // - A key with an missing (nil) value, in which case the results are
246 // constraints by logs that have that tag key, regardless of its value . 252 // constraints by logs that have that tag key, regardless of its value .
247 » Tags map[string]string `protobuf:"bytes,10,rep,name=tags" json:"tags,omi tempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value "` 253 » Tags map[string]string `protobuf:"bytes,11,rep,name=tags" json:"tags,omi tempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value "`
248 // Next, if not empty, indicates that this query should continue at the point 254 // Next, if not empty, indicates that this query should continue at the point
249 // where the previous query left off. 255 // where the previous query left off.
250 » Next string `protobuf:"bytes,11,opt,name=next" json:"next,omitempty"` 256 » Next string `protobuf:"bytes,12,opt,name=next" json:"next,omitempty"`
251 // MaxResults is the maximum number of query results to return. 257 // MaxResults is the maximum number of query results to return.
252 // 258 //
253 // If MaxResults is zero, no upper bound will be indicated. However, the 259 // If MaxResults is zero, no upper bound will be indicated. However, the
254 // returned result count is still be subject to internal constraints. 260 // returned result count is still be subject to internal constraints.
255 » MaxResults int32 `protobuf:"varint,12,opt,name=max_results,json=maxResul ts" json:"max_results,omitempty"` 261 » MaxResults int32 `protobuf:"varint,13,opt,name=max_results,json=maxResul ts" json:"max_results,omitempty"`
256 // If true, returns that the streams' full state is returned instead of just 262 // If true, returns that the streams' full state is returned instead of just
257 // its Path. 263 // its Path.
258 » State bool `protobuf:"varint,13,opt,name=state" json:"state,omitempty"` 264 » State bool `protobuf:"varint,14,opt,name=state" json:"state,omitempty"`
259 // If true, causes the requested state to be returned as serialized prot obuf 265 // If true, causes the requested state to be returned as serialized prot obuf
260 // data instead of deserialized JSON structures. 266 // data instead of deserialized JSON structures.
261 » Proto bool `protobuf:"varint,14,opt,name=proto" json:"proto,omitempty"` 267 » Proto bool `protobuf:"varint,15,opt,name=proto" json:"proto,omitempty"`
262 } 268 }
263 269
264 func (m *QueryRequest) Reset() { *m = QueryRequest{} } 270 func (m *QueryRequest) Reset() { *m = QueryRequest{} }
265 func (m *QueryRequest) String() string { return proto.CompactTextStri ng(m) } 271 func (m *QueryRequest) String() string { return proto.CompactTextStri ng(m) }
266 func (*QueryRequest) ProtoMessage() {} 272 func (*QueryRequest) ProtoMessage() {}
267 func (*QueryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []in t{3} } 273 func (*QueryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []in t{3} }
268 274
269 func (m *QueryRequest) GetStreamType() *QueryRequest_StreamTypeFilter { 275 func (m *QueryRequest) GetStreamType() *QueryRequest_StreamTypeFilter {
270 if m != nil { 276 if m != nil {
271 return m.StreamType 277 return m.StreamType
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 371
366 func (m *QueryResponse_Stream) GetDesc() *logpb.LogStreamDescriptor { 372 func (m *QueryResponse_Stream) GetDesc() *logpb.LogStreamDescriptor {
367 if m != nil { 373 if m != nil {
368 return m.Desc 374 return m.Desc
369 } 375 }
370 return nil 376 return nil
371 } 377 }
372 378
373 // ListRequest is the request structure for the user List endpoint. 379 // ListRequest is the request structure for the user List endpoint.
374 type ListRequest struct { 380 type ListRequest struct {
381 // The request project to request.
382 Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitem pty"`
375 // Path is the query parameter. 383 // Path is the query parameter.
376 // 384 //
377 // Path should be a prefix fragment of a the valid stream path hierarchy 385 // Path should be a prefix fragment of a the valid stream path hierarchy
378 // root to query. 386 // root to query.
379 » Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"` 387 » Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
380 // If true, returns streams under the specified root recursively. Otherw ise, 388 // If true, returns streams under the specified root recursively. Otherw ise,
381 // only path components immediately under the specified root will be ret urned. 389 // only path components immediately under the specified root will be ret urned.
382 » Recursive bool `protobuf:"varint,2,opt,name=recursive" json:"recursive,o mitempty"` 390 » Recursive bool `protobuf:"varint,3,opt,name=recursive" json:"recursive,o mitempty"`
383 // If true, will return only streams. Otherwise, intermediate path compo nents 391 // If true, will return only streams. Otherwise, intermediate path compo nents
384 // will also be returned. 392 // will also be returned.
385 » StreamOnly bool `protobuf:"varint,3,opt,name=stream_only,json=streamOnly " json:"stream_only,omitempty"` 393 » StreamOnly bool `protobuf:"varint,4,opt,name=stream_only,json=streamOnly " json:"stream_only,omitempty"`
386 // If true, indicates that purged streams should show up in the listing. It is 394 // If true, indicates that purged streams should show up in the listing. It is
387 // an error if a non-admin user requests this option. 395 // an error if a non-admin user requests this option.
388 » IncludePurged bool `protobuf:"varint,4,opt,name=include_purged,json=incl udePurged" json:"include_purged,omitempty"` 396 » IncludePurged bool `protobuf:"varint,5,opt,name=include_purged,json=incl udePurged" json:"include_purged,omitempty"`
389 // The maximum number of componts to return. 397 // The maximum number of componts to return.
390 // 398 //
391 // If <= 0, no upper bound will be indicated. However, the returned resu lt 399 // If <= 0, no upper bound will be indicated. However, the returned resu lt
392 // count is still be subject to internal constraints. 400 // count is still be subject to internal constraints.
393 » MaxResults int32 `protobuf:"varint,5,opt,name=max_results,json=maxResult s" json:"max_results,omitempty"` 401 » MaxResults int32 `protobuf:"varint,6,opt,name=max_results,json=maxResult s" json:"max_results,omitempty"`
394 // If not empty, indicates that this query should continue at the point where 402 // If not empty, indicates that this query should continue at the point where
395 // the previous query left off. 403 // the previous query left off.
396 » Next string `protobuf:"bytes,6,opt,name=next" json:"next,omitempty"` 404 » Next string `protobuf:"bytes,7,opt,name=next" json:"next,omitempty"`
397 // State, if true, returns that the streams' full state instead of just its 405 // State, if true, returns that the streams' full state instead of just its
398 // Path. 406 // Path.
399 » State bool `protobuf:"varint,7,opt,name=state" json:"state,omitempty"` 407 » State bool `protobuf:"varint,8,opt,name=state" json:"state,omitempty"`
400 // Offset, if >= 0, instructs the list operation to skip the supplied nu mber 408 // Offset, if >= 0, instructs the list operation to skip the supplied nu mber
401 // of results. This can be used for pagination. 409 // of results. This can be used for pagination.
402 » Offset int32 `protobuf:"varint,8,opt,name=offset" json:"offset,omitempty "` 410 » Offset int32 `protobuf:"varint,9,opt,name=offset" json:"offset,omitempty "`
403 } 411 }
404 412
405 func (m *ListRequest) Reset() { *m = ListRequest{} } 413 func (m *ListRequest) Reset() { *m = ListRequest{} }
406 func (m *ListRequest) String() string { return proto.CompactTextStrin g(m) } 414 func (m *ListRequest) String() string { return proto.CompactTextStrin g(m) }
407 func (*ListRequest) ProtoMessage() {} 415 func (*ListRequest) ProtoMessage() {}
408 func (*ListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int {5} } 416 func (*ListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int {5} }
409 417
410 // ListResponse is the response structure for the user List endpoint. 418 // ListResponse is the response structure for the user List endpoint.
411 type ListResponse struct { 419 type ListResponse struct {
420 // The request project to request.
421 Project string `protobuf:"bytes,1,opt,name=project" json:"project,omitem pty"`
412 // Base is the hierarchy base that was requested. 422 // Base is the hierarchy base that was requested.
413 » Base string `protobuf:"bytes,1,opt,name=base" json:"base,omitempty"` 423 » Base string `protobuf:"bytes,2,opt,name=base" json:"base,omitempty"`
414 // If not empty, indicates that there are more list results available. 424 // If not empty, indicates that there are more list results available.
415 // These results can be requested by repeating the List request with the 425 // These results can be requested by repeating the List request with the
416 // same Path field and supplying this value in the Next field. 426 // same Path field and supplying this value in the Next field.
417 » Next string `protobuf:"bytes,2,opt,name=next" j son:"next,omitempty"` 427 » Next string `protobuf:"bytes,3,opt,name=next" j son:"next,omitempty"`
418 » Components []*ListResponse_Component `protobuf:"bytes,3,rep,name=compone nts" json:"components,omitempty"` 428 » Components []*ListResponse_Component `protobuf:"bytes,4,rep,name=compone nts" json:"components,omitempty"`
419 } 429 }
420 430
421 func (m *ListResponse) Reset() { *m = ListResponse{} } 431 func (m *ListResponse) Reset() { *m = ListResponse{} }
422 func (m *ListResponse) String() string { return proto.CompactTextStri ng(m) } 432 func (m *ListResponse) String() string { return proto.CompactTextStri ng(m) }
423 func (*ListResponse) ProtoMessage() {} 433 func (*ListResponse) ProtoMessage() {}
424 func (*ListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []in t{6} } 434 func (*ListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []in t{6} }
425 435
426 func (m *ListResponse) GetComponents() []*ListResponse_Component { 436 func (m *ListResponse) GetComponents() []*ListResponse_Component {
427 if m != nil { 437 if m != nil {
428 return m.Components 438 return m.Components
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 }, 712 },
703 { 713 {
704 MethodName: "List", 714 MethodName: "List",
705 Handler: _Logs_List_Handler, 715 Handler: _Logs_List_Handler,
706 }, 716 },
707 }, 717 },
708 Streams: []grpc.StreamDesc{}, 718 Streams: []grpc.StreamDesc{},
709 } 719 }
710 720
711 var fileDescriptor0 = []byte{ 721 var fileDescriptor0 = []byte{
712 // 930 bytes of a gzipped FileDescriptorProto 722 // 951 bytes of a gzipped FileDescriptorProto
713 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x94, 0x55, 0xcd, 0x92, 0xdb, 0x44, 723 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x56, 0xcd, 0x92, 0xdb, 0x44,
714 0x10, 0x46, 0xb6, 0x64, 0x5b, 0x6d, 0x7b, 0x31, 0xc3, 0x92, 0x52, 0x89, 0x40, 0x82, 0x21, 0x45, 724 0x10, 0x46, 0x96, 0x2c, 0x5b, 0x2d, 0xef, 0xc6, 0x0c, 0x4b, 0x4a, 0x25, 0x02, 0x01, 0x43, 0x0a,
715 0x0e, 0x41, 0x0e, 0x26, 0x45, 0x52, 0x40, 0x71, 0x60, 0x49, 0xe0, 0x90, 0x62, 0x83, 0xd6, 0x45, 725 0x0e, 0x20, 0x07, 0x93, 0x82, 0x14, 0x50, 0x1c, 0x58, 0x12, 0x38, 0xa4, 0xd8, 0x64, 0xd6, 0x45,
716 0x15, 0x27, 0x97, 0x6c, 0xcf, 0x6a, 0x55, 0xc8, 0x1a, 0xa3, 0x19, 0x2d, 0xeb, 0x97, 0xa0, 0xb8, 726 0x15, 0x27, 0x97, 0x6c, 0xcf, 0x6a, 0x05, 0xb2, 0xc6, 0x48, 0xa3, 0x65, 0x7d, 0xe7, 0x0e, 0x17,
717 0x70, 0xe0, 0x29, 0x78, 0x16, 0x5e, 0x83, 0x3b, 0xc5, 0x95, 0x9e, 0x1f, 0xfd, 0x64, 0x51, 0x25, 727 0x0e, 0xbc, 0x01, 0xaf, 0xc2, 0x91, 0xa7, 0xe1, 0x4a, 0xcf, 0x8f, 0x7e, 0x58, 0x5c, 0xb0, 0x49,
718 0xce, 0xc5, 0xd6, 0x7c, 0xfd, 0xf5, 0x4c, 0x4f, 0xf7, 0xd7, 0x3d, 0x00, 0x29, 0x8b, 0x79, 0xb0, 728 0xe5, 0xb2, 0x9e, 0xf9, 0xfa, 0xeb, 0x99, 0x9e, 0xee, 0xaf, 0x5b, 0x0b, 0x90, 0xf1, 0xa4, 0x8c,
719 0xcb, 0x99, 0x60, 0xa4, 0x87, 0xdf, 0x1b, 0x16, 0xfb, 0x43, 0x2e, 0x22, 0x41, 0x35, 0xe8, 0x7f, 729 0xb6, 0x05, 0x17, 0x9c, 0xb8, 0xb8, 0x5e, 0xf3, 0x24, 0xf4, 0x4b, 0x11, 0x0b, 0xa6, 0xc1, 0xf0,
720 0x1e, 0x27, 0xe2, 0xa2, 0x58, 0x05, 0x6b, 0xb6, 0x9d, 0xa5, 0xc5, 0x3a, 0x51, 0x3f, 0x1f, 0xc5, 730 0x93, 0x24, 0x15, 0xe7, 0xd5, 0x32, 0x5a, 0xf1, 0xcd, 0x34, 0xab, 0x56, 0xa9, 0xfa, 0xf3, 0x5e,
721 0x6c, 0x86, 0xc0, 0x96, 0x65, 0x33, 0xc5, 0x9a, 0x69, 0x4f, 0xf9, 0xb7, 0x5b, 0xc9, 0x5f, 0xe3, 731 0xc2, 0xa7, 0x08, 0x6c, 0x78, 0x3e, 0x55, 0xac, 0xa9, 0xf6, 0x94, 0x3f, 0xdb, 0xa5, 0xfc, 0x6b,
722 0x7c, 0x2b, 0x66, 0x2c, 0x4e, 0xa9, 0x26, 0xad, 0x8a, 0xf3, 0x99, 0x48, 0xb6, 0x14, 0x77, 0xdf, 732 0x9c, 0x6f, 0x27, 0x9c, 0x27, 0x19, 0xd3, 0xa4, 0x65, 0x75, 0x36, 0x15, 0xe9, 0x86, 0xe1, 0xe9,
723 0xee, 0x34, 0x61, 0xfa, 0xa7, 0x05, 0xf0, 0x0d, 0x15, 0x21, 0xfd, 0xb9, 0x40, 0x9c, 0x10, 0xb0, 733 0x9b, 0xad, 0x26, 0x4c, 0xfe, 0xb0, 0x00, 0xbe, 0x64, 0x82, 0xb2, 0x1f, 0x2a, 0xc4, 0x49, 0x00,
724 0x77, 0x91, 0xb8, 0xf0, 0xac, 0xdb, 0xd6, 0x5d, 0x37, 0x54, 0xdf, 0xe4, 0x18, 0x1c, 0x15, 0x8f, 734 0x03, 0xc4, 0xbf, 0x63, 0x2b, 0x11, 0x58, 0xaf, 0x5b, 0xef, 0x78, 0xb4, 0xde, 0x12, 0x02, 0xce,
725 0xd7, 0x41, 0x70, 0x10, 0xea, 0x85, 0x44, 0x93, 0x6c, 0x43, 0xaf, 0x3c, 0x40, 0xb4, 0x1b, 0xea, 735 0x36, 0x16, 0xe7, 0x41, 0x4f, 0xc1, 0x6a, 0x4d, 0x8e, 0xa0, 0xaf, 0x22, 0x0d, 0x6c, 0x04, 0x87,
726 0x05, 0x79, 0x07, 0x60, 0xb5, 0x17, 0x74, 0xb9, 0x66, 0x45, 0x26, 0xbc, 0x21, 0x9a, 0x9c, 0xd0, 736 0x54, 0x6f, 0x24, 0x9a, 0xe6, 0x6b, 0x76, 0x19, 0x38, 0x88, 0xda, 0x54, 0x6f, 0xc8, 0xab, 0x00,
727 0x95, 0xc8, 0x89, 0x04, 0xc8, 0xdb, 0xe0, 0x62, 0x6c, 0xc6, 0x3a, 0x52, 0xd6, 0x01, 0x02, 0xda, 737 0xcb, 0x9d, 0x60, 0x8b, 0x15, 0xaf, 0x72, 0x11, 0xf4, 0xd1, 0xd4, 0xa7, 0x9e, 0x44, 0x8e, 0x25,
728 0x78, 0x07, 0x8e, 0x32, 0x96, 0xa1, 0x31, 0x13, 0x49, 0x5c, 0xb0, 0x82, 0x7b, 0x63, 0x75, 0xe0, 738 0x40, 0x5e, 0x01, 0x0f, 0xa3, 0x36, 0x56, 0x57, 0x59, 0x87, 0x08, 0x68, 0xe3, 0x1d, 0x38, 0xcc,
729 0x18, 0xd1, 0x93, 0x0a, 0x9c, 0x3e, 0x84, 0xe1, 0x22, 0x4a, 0xd2, 0x57, 0x8e, 0x78, 0xfa, 0x9b, 739 0x79, 0x8e, 0xc6, 0x5c, 0xa4, 0x49, 0xc5, 0xab, 0x32, 0x18, 0xa8, 0x0b, 0x0f, 0x10, 0x3d, 0x6e,
730 0x05, 0x43, 0x75, 0x55, 0xbe, 0x63, 0x19, 0xa7, 0xe4, 0x5e, 0xc9, 0x92, 0xae, 0xc3, 0xf9, 0x8d, 740 0xc0, 0xc9, 0x13, 0xf0, 0xe7, 0x71, 0x9a, 0x3d, 0xc7, 0xb7, 0x4c, 0x7e, 0xb1, 0xc0, 0x57, 0xe9,
731 0x40, 0xe7, 0x30, 0x78, 0xca, 0xe2, 0x33, 0x91, 0xd3, 0x68, 0x7b, 0x26, 0xad, 0xe5, 0x7d, 0x03, 741 0x29, 0xb7, 0x3c, 0x2f, 0x19, 0x79, 0xb7, 0x66, 0xc9, 0x13, 0xfd, 0xd9, 0xcd, 0x48, 0xe7, 0x3d,
732 0xb0, 0x37, 0x94, 0xaf, 0xd5, 0x96, 0xc3, 0xb9, 0x1f, 0xa8, 0x4c, 0xd7, 0xdc, 0xaf, 0xd1, 0x96, 742 0x7a, 0xc4, 0x93, 0x53, 0x51, 0xb0, 0x78, 0x73, 0x2a, 0xad, 0x75, 0x26, 0x22, 0x70, 0xd6, 0xac,
733 0x27, 0x3b, 0xc1, 0xf2, 0x50, 0xf1, 0xc8, 0xfb, 0x60, 0xcb, 0xca, 0x7a, 0xf6, 0xed, 0x2e, 0xf2, 743 0x5c, 0xa9, 0x7b, 0xfc, 0x59, 0x18, 0xa9, 0xea, 0xb4, 0xdc, 0x2f, 0xd0, 0x56, 0xa4, 0x5b, 0xc1,
734 0x5f, 0xaf, 0xf9, 0x8f, 0x33, 0x91, 0xef, 0x43, 0x65, 0x9c, 0xfe, 0xe3, 0xc0, 0xe8, 0xfb, 0x82, 744 0x0b, 0xaa, 0x78, 0xe4, 0x4d, 0x70, 0xa4, 0x1a, 0x30, 0x71, 0x36, 0xf2, 0x6f, 0xb4, 0xfc, 0x07,
735 0xe2, 0xfa, 0x05, 0xb7, 0x79, 0x0f, 0x46, 0x32, 0x27, 0x34, 0x13, 0x4b, 0xb1, 0xdf, 0xe9, 0x4b, 745 0xb9, 0x28, 0x76, 0x54, 0x19, 0x27, 0x3f, 0xbb, 0x30, 0x7a, 0x52, 0x31, 0xdc, 0x3f, 0xd3, 0x3b,
736 0xb9, 0xe1, 0xd0, 0x60, 0x0b, 0x84, 0xc8, 0x13, 0x40, 0xc9, 0xc8, 0x30, 0x34, 0xa3, 0xab, 0x62, 746 0xdf, 0x80, 0x91, 0xcc, 0x23, 0xcb, 0xc5, 0x42, 0xec, 0xb6, 0xfa, 0xb9, 0x1e, 0xf5, 0x0d, 0x36,
737 0xbc, 0x53, 0x5e, 0xa8, 0x79, 0x42, 0xa0, 0xc3, 0x95, 0x5e, 0x4f, 0x92, 0x54, 0xd0, 0x3c, 0x04, 747 0x47, 0x88, 0x3c, 0x04, 0x14, 0xa0, 0x0c, 0x50, 0x33, 0x1c, 0x15, 0xfd, 0x9d, 0xfa, 0xa9, 0xdd,
738 0x5e, 0x21, 0xe4, 0x0b, 0x00, 0x84, 0xb6, 0x49, 0x86, 0x37, 0xde, 0x60, 0xe8, 0xd6, 0xdd, 0xa3, 748 0xbb, 0x23, 0xfd, 0x10, 0xe9, 0xf5, 0x30, 0xcd, 0x04, 0x2b, 0x28, 0x94, 0x0d, 0x42, 0x3e, 0x05,
739 0xf9, 0xcd, 0xd6, 0x6d, 0x16, 0x39, 0x92, 0x70, 0xd9, 0xe0, 0x93, 0x47, 0x30, 0x88, 0xf2, 0xf5, 749 0x40, 0x68, 0x93, 0xe6, 0x98, 0x8b, 0xb5, 0x2a, 0xf9, 0xe1, 0xec, 0xd6, 0xde, 0x63, 0xe6, 0x05,
740 0x45, 0x72, 0x89, 0xbe, 0xce, 0x01, 0xbe, 0x15, 0x9b, 0x3c, 0x80, 0xde, 0xae, 0xc8, 0x63, 0xf4, 750 0x92, 0x70, 0xdb, 0xe1, 0x93, 0xfb, 0x30, 0x8c, 0x8b, 0xd5, 0x79, 0x7a, 0x81, 0xbe, 0xee, 0x35,
741 0xeb, 0x1d, 0xe0, 0x67, 0xb8, 0xe4, 0x3e, 0x38, 0x19, 0xfd, 0x85, 0xe6, 0x5e, 0xdf, 0xd4, 0x44, 751 0x7c, 0x1b, 0x36, 0xb9, 0x07, 0xee, 0xb6, 0x2a, 0x12, 0xf4, 0x1b, 0x5c, 0xc3, 0xcf, 0x70, 0xc9,
742 0x8b, 0x3d, 0x28, 0xc5, 0x1e, 0x2c, 0x4a, 0xb1, 0x87, 0x9a, 0x28, 0x3d, 0x58, 0xba, 0x41, 0x8f, 752 0x5d, 0xe8, 0xe7, 0xec, 0x47, 0x56, 0x04, 0x43, 0x53, 0x2d, 0xdd, 0x3a, 0x51, 0xdd, 0x3a, 0xd1,
743 0xc1, 0xcb, 0x3d, 0x14, 0x11, 0xcb, 0x38, 0x56, 0xc6, 0xe5, 0x25, 0xcd, 0x79, 0xc2, 0x32, 0xcf, 753 0xbc, 0x6e, 0x1d, 0xaa, 0x89, 0xd2, 0x83, 0x67, 0x6b, 0xf4, 0xf0, 0xfe, 0xdf, 0x43, 0x11, 0xb1,
744 0x55, 0xd9, 0x1f, 0x29, 0xf0, 0x07, 0x8d, 0x91, 0x39, 0xd8, 0x22, 0xc2, 0x5a, 0x83, 0xaa, 0xf5, 754 0xc0, 0x07, 0xca, 0xb8, 0xb8, 0x60, 0x45, 0x99, 0xf2, 0x3c, 0x00, 0x95, 0xfd, 0x91, 0x02, 0xbf,
745 0xbb, 0xed, 0xc1, 0x23, 0xc1, 0x94, 0x5e, 0x72, 0x65, 0xa5, 0x33, 0x7a, 0xa5, 0x7b, 0x04, 0x2b, 755 0xd1, 0x18, 0x99, 0x81, 0x23, 0x62, 0x54, 0x81, 0xaf, 0x54, 0xf0, 0xda, 0xfe, 0xe0, 0x91, 0x60,
746 0x2d, 0xbf, 0xc9, 0x2d, 0x18, 0x6e, 0xa3, 0xab, 0x65, 0x4e, 0x79, 0x91, 0x0a, 0x6e, 0x1a, 0x04, 756 0x44, 0x21, 0xb9, 0xb2, 0xd2, 0x39, 0xbb, 0x14, 0xc1, 0x48, 0x57, 0x5a, 0xae, 0xc9, 0x6d, 0xf0,
747 0x10, 0x0a, 0x35, 0x52, 0x0b, 0x7b, 0x7c, 0xad, 0x15, 0x55, 0x38, 0xde, 0x91, 0x46, 0xcd, 0xdc, 757 0x37, 0xf1, 0xe5, 0xa2, 0x60, 0x65, 0x95, 0x89, 0x32, 0x38, 0x50, 0x4d, 0x05, 0x08, 0x51, 0x8d,
748 0x80, 0xc9, 0xf5, 0x5a, 0x93, 0x0f, 0xc1, 0xb9, 0x8c, 0xd2, 0x42, 0x4b, 0xfe, 0x68, 0xfe, 0x86, 758 0xb4, 0x92, 0x3f, 0xbc, 0xd2, 0xbe, 0x2a, 0x9c, 0xe0, 0x86, 0x46, 0xcd, 0x14, 0x82, 0xf1, 0xd5,
749 0x51, 0x65, 0xcd, 0x0b, 0xb5, 0xdd, 0x7f, 0x08, 0x6e, 0x15, 0x30, 0x99, 0x40, 0xf7, 0x27, 0xba, 759 0x5a, 0x93, 0xb7, 0xa1, 0x7f, 0x11, 0x67, 0x95, 0x6e, 0x86, 0xc3, 0xd9, 0x8b, 0x46, 0xaf, 0x2d,
750 0x37, 0x9a, 0x94, 0x9f, 0xf2, 0x44, 0xbd, 0x8f, 0xd6, 0xa2, 0x5e, 0x7c, 0xd6, 0x79, 0x64, 0x4d, 760 0x8f, 0x6a, 0x7b, 0xf8, 0x11, 0x78, 0x4d, 0xc0, 0x64, 0x0c, 0xf6, 0xf7, 0x6c, 0x67, 0xa4, 0x2a,
751 0x3f, 0x80, 0xbe, 0x29, 0x13, 0x19, 0x80, 0xfd, 0xd5, 0xe9, 0xe2, 0xdb, 0xc9, 0x6b, 0xa4, 0x0f, 761 0x97, 0xf2, 0x46, 0x7d, 0x8e, 0xd6, 0xa9, 0xde, 0x7c, 0xdc, 0xbb, 0x6f, 0x4d, 0xde, 0x82, 0x81,
752 0xdd, 0x1f, 0x1f, 0x9f, 0x4d, 0x2c, 0xd2, 0x83, 0xce, 0x77, 0xa7, 0x93, 0xce, 0xf4, 0x5f, 0x0b, 762 0x29, 0x13, 0x19, 0x82, 0xf3, 0xf9, 0xc9, 0xfc, 0xab, 0xf1, 0x0b, 0x64, 0x00, 0xf6, 0xb7, 0x0f,
753 0xc6, 0x26, 0x3b, 0xa6, 0x19, 0x3f, 0x85, 0xbe, 0xd6, 0x21, 0xc7, 0x73, 0x64, 0x16, 0xaf, 0x4b, 763 0x4e, 0xc7, 0x16, 0x71, 0xa1, 0xf7, 0xf5, 0xc9, 0xb8, 0x37, 0xf9, 0xcb, 0x82, 0x03, 0x93, 0x1d,
754 0x40, 0xf3, 0x4c, 0xa8, 0x61, 0x49, 0xae, 0xd2, 0xd8, 0xa9, 0xd3, 0xe8, 0xff, 0x61, 0x41, 0x4f, 764 0xd3, 0xa6, 0x1f, 0xc2, 0x40, 0xeb, 0xb0, 0xc4, 0x7b, 0x64, 0x16, 0xaf, 0x4a, 0x40, 0xf3, 0x4c,
755 0xf3, 0x5a, 0xfb, 0xe9, 0x5e, 0x73, 0x3a, 0x1c, 0xdc, 0xf7, 0xdd, 0x03, 0xfb, 0x1e, 0x27, 0xa0, 765 0xa8, 0xb4, 0x26, 0x37, 0x69, 0xec, 0xb5, 0x69, 0x0c, 0x7f, 0xb3, 0xc0, 0xd5, 0xbc, 0xa6, 0x9f,
756 0xfc, 0x5f, 0xea, 0x8a, 0xc8, 0x16, 0x1a, 0x85, 0xae, 0x44, 0x9e, 0xa9, 0x79, 0xfb, 0x37, 0x0e, 766 0xac, 0x4e, 0x3f, 0x35, 0x13, 0xa1, 0xf7, 0x34, 0x13, 0xc1, 0xbe, 0xe6, 0x44, 0xc0, 0xa9, 0x29,
757 0xa1, 0xa7, 0x09, 0x7f, 0xe1, 0xc0, 0xbd, 0x09, 0x6e, 0x4e, 0xd7, 0x05, 0x6a, 0xeb, 0xb2, 0x1c, 767 0x7f, 0x17, 0xba, 0x22, 0xb2, 0x13, 0x47, 0xd4, 0x93, 0xc8, 0x63, 0x35, 0xbd, 0x7f, 0xea, 0x81,
758 0x61, 0x35, 0x20, 0x45, 0x62, 0x7a, 0x9d, 0x65, 0xe9, 0x5e, 0xc5, 0x35, 0x28, 0x9b, 0xf8, 0x14, 768 0xff, 0x28, 0x2d, 0x9f, 0x71, 0x7c, 0xdf, 0x02, 0xaf, 0x60, 0xab, 0x0a, 0x55, 0x77, 0x51, 0x8f,
759 0x11, 0x39, 0x47, 0x93, 0x6c, 0x9d, 0x16, 0x1b, 0xba, 0x34, 0x4d, 0x65, 0xeb, 0x39, 0x6a, 0xd0, 769 0xbd, 0x16, 0x90, 0xf2, 0x31, 0x53, 0x80, 0xe7, 0xd9, 0x4e, 0xdd, 0x3d, 0xac, 0xdb, 0xfb, 0x04,
760 0x67, 0xba, 0x7b, 0xae, 0x89, 0xcd, 0xf9, 0x9f, 0xd8, 0xca, 0xd4, 0xf6, 0x1a, 0x0a, 0xad, 0x04, 770 0x11, 0x39, 0x95, 0xd3, 0x7c, 0x95, 0x55, 0x6b, 0xb6, 0x30, 0xed, 0xd6, 0xd7, 0x53, 0xd9, 0xa0,
761 0xd8, 0x6f, 0x0a, 0xf0, 0x06, 0xf4, 0xd8, 0xf9, 0x39, 0xa7, 0x42, 0xf5, 0x95, 0x13, 0x9a, 0xd5, 771 0x8f, 0x75, 0x5f, 0x5d, 0x91, 0xa1, 0xfb, 0x2f, 0x19, 0xd6, 0x49, 0x1f, 0x74, 0xb4, 0xdb, 0x48,
762 0xf4, 0xd7, 0x0e, 0x8c, 0xf4, 0x65, 0x4d, 0x95, 0x71, 0xcb, 0x55, 0xc4, 0x69, 0x79, 0x5b, 0xf9, 772 0x73, 0xd8, 0x95, 0xe6, 0x4d, 0x70, 0xf9, 0xd9, 0x59, 0xc9, 0x84, 0xea, 0xb8, 0x3e, 0x35, 0xbb,
763 0xdd, 0x56, 0x41, 0xf2, 0x25, 0x00, 0xbe, 0x6e, 0xe8, 0x83, 0x03, 0x8e, 0xe3, 0x15, 0x9f, 0x6b, 773 0xc9, 0xef, 0x3d, 0x18, 0xe9, 0x34, 0x98, 0xfa, 0xff, 0x67, 0x1e, 0x96, 0x71, 0x59, 0x4b, 0x4d,
764 0xab, 0xe6, 0x8e, 0xc1, 0x49, 0x49, 0x0b, 0x1b, 0x1e, 0xfe, 0xef, 0x16, 0xb8, 0x95, 0xa5, 0x35, 774 0xad, 0x9b, 0x00, 0xec, 0x4e, 0x00, 0x9f, 0x01, 0xe0, 0xf7, 0x15, 0x4f, 0xc3, 0xa1, 0x58, 0x0f,
765 0xc7, 0x18, 0xb2, 0x4e, 0x99, 0x49, 0xb0, 0x59, 0xd5, 0xe2, 0xe8, 0xbe, 0x8a, 0x38, 0xec, 0xc3, 775 0xe4, 0xa6, 0x15, 0xbb, 0x77, 0x45, 0xc7, 0x35, 0x8d, 0x76, 0x3c, 0xc2, 0x5f, 0x2d, 0xf0, 0x1a,
766 0xc4, 0x31, 0xff, 0xcb, 0x02, 0x1b, 0xad, 0x1c, 0x1d, 0xbb, 0xf8, 0x14, 0x11, 0x52, 0x6e, 0x5f, 776 0xcb, 0x5e, 0xe1, 0xe0, 0x63, 0x74, 0x32, 0x55, 0x2c, 0x43, 0x6a, 0x76, 0xad, 0xa0, 0xec, 0xa7,
767 0x3f, 0xc1, 0xfe, 0x9b, 0xcf, 0x61, 0x26, 0x71, 0xf7, 0xc1, 0x96, 0x8f, 0x1e, 0xa9, 0x8c, 0x8d, 777 0x11, 0x94, 0x73, 0x3d, 0x41, 0xcd, 0xfe, 0xb4, 0xc0, 0x41, 0x6b, 0x89, 0x8e, 0x36, 0x7e, 0xd8,
768 0x27, 0xb0, 0xdd, 0xe3, 0x01, 0x38, 0xaa, 0x73, 0xc8, 0x71, 0xdb, 0x38, 0xf2, 0xdf, 0x6a, 0x6d, 778 0x08, 0xa9, 0x8f, 0x6f, 0xff, 0x09, 0x08, 0x5f, 0xfa, 0x07, 0x66, 0x52, 0x7a, 0x17, 0x1c, 0xf9,
769 0x2f, 0xf2, 0x31, 0xc6, 0x87, 0xe9, 0xad, 0xcf, 0x69, 0x68, 0xd5, 0x3f, 0x6e, 0xab, 0xc0, 0xaa, 779 0x71, 0x25, 0x8d, 0xb1, 0xf3, 0xa9, 0xdd, 0xef, 0x71, 0x0f, 0xfa, 0xaa, 0xdb, 0xc8, 0xd1, 0xbe,
770 0xa7, 0x94, 0xfe, 0xc9, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4d, 0x03, 0x53, 0x37, 0xc9, 0x08, 780 0x11, 0x16, 0xbe, 0xbc, 0xb7, 0x25, 0xc9, 0xfb, 0x18, 0x1f, 0xa6, 0xb7, 0xbd, 0xa7, 0xa3, 0xef,
771 0x00, 0x00, 781 0xf0, 0x68, 0x5f, 0x05, 0x96, 0xae, 0xea, 0x8e, 0x0f, 0xfe, 0x0e, 0x00, 0x00, 0xff, 0xff, 0xda,
782 0x8b, 0xe9, 0x2d, 0x4b, 0x09, 0x00, 0x00,
772 } 783 }
OLDNEW
« no previous file with comments | « common/api/logdog_coordinator/logs/v1/logs.proto ('k') | common/api/logdog_coordinator/logs/v1/pb.discovery.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698