github.com/cloudwan/edgelq-sdk@v1.15.4/alerting/client/v1/document/document_service.pb.go (about) 1 // Code generated by protoc-gen-goten-go 2 // File: edgelq/alerting/proto/v1/document_service.proto 3 // DO NOT EDIT!!! 4 5 package document_client 6 7 import ( 8 "fmt" 9 "reflect" 10 "sync" 11 12 "google.golang.org/protobuf/encoding/protojson" 13 "google.golang.org/protobuf/proto" 14 preflect "google.golang.org/protobuf/reflect/protoreflect" 15 "google.golang.org/protobuf/runtime/protoimpl" 16 ) 17 18 // proto imports 19 import ( 20 document "github.com/cloudwan/edgelq-sdk/alerting/resources/v1/document" 21 iam_project "github.com/cloudwan/edgelq-sdk/iam/resources/v1/project" 22 view "github.com/cloudwan/goten-sdk/types/view" 23 watch_type "github.com/cloudwan/goten-sdk/types/watch_type" 24 emptypb "google.golang.org/protobuf/types/known/emptypb" 25 fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" 26 timestamppb "google.golang.org/protobuf/types/known/timestamppb" 27 ) 28 29 // Reference imports to suppress errors if they are not otherwise used. 30 var ( 31 _ = fmt.Errorf 32 _ = reflect.Method{} 33 _ = sync.Once{} 34 35 _ = protojson.MarshalOptions{} 36 _ = proto.MarshalOptions{} 37 _ = preflect.Value{} 38 _ = protoimpl.DescBuilder{} 39 ) 40 41 // make sure we're using proto imports 42 var ( 43 _ = &document.Document{} 44 _ = &iam_project.Project{} 45 _ = &emptypb.Empty{} 46 _ = &fieldmaskpb.FieldMask{} 47 _ = ×tamppb.Timestamp{} 48 _ = view.View(0) 49 _ = watch_type.WatchType(0) 50 ) 51 52 const ( 53 // Verify that this generated code is sufficiently up-to-date. 54 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) 55 // Verify that runtime/protoimpl is sufficiently up-to-date. 56 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) 57 ) 58 59 // A request message of the GetDocument method. 60 type GetDocumentRequest struct { 61 state protoimpl.MessageState 62 sizeCache protoimpl.SizeCache 63 unknownFields protoimpl.UnknownFields 64 // Name of ntt.alerting.v1.Document 65 Name *document.Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 66 // A list of extra fields to be obtained for each response item on top of 67 // fields defined by request field view 68 FieldMask *document.Document_FieldMask `protobuf:"bytes,3,opt,customtype=Document_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 69 // View defines list of standard response fields present in response items. 70 // Additional fields can be amended by request field field_mask 71 View view.View `protobuf:"varint,4,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 72 } 73 74 func (m *GetDocumentRequest) Reset() { 75 *m = GetDocumentRequest{} 76 if protoimpl.UnsafeEnabled { 77 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[0] 78 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 79 ms.StoreMessageInfo(mi) 80 } 81 } 82 83 func (m *GetDocumentRequest) String() string { 84 return protoimpl.X.MessageStringOf(m) 85 } 86 87 func (*GetDocumentRequest) ProtoMessage() {} 88 89 func (m *GetDocumentRequest) ProtoReflect() preflect.Message { 90 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[0] 91 if protoimpl.UnsafeEnabled && m != nil { 92 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 93 if ms.LoadMessageInfo() == nil { 94 ms.StoreMessageInfo(mi) 95 } 96 return ms 97 } 98 return mi.MessageOf(m) 99 } 100 101 func (*GetDocumentRequest) GotenMessage() {} 102 103 // Deprecated, Use GetDocumentRequest.ProtoReflect.Descriptor instead. 104 func (*GetDocumentRequest) Descriptor() ([]byte, []int) { 105 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{0} 106 } 107 108 func (m *GetDocumentRequest) Unmarshal(b []byte) error { 109 return proto.Unmarshal(b, m) 110 } 111 112 func (m *GetDocumentRequest) Marshal() ([]byte, error) { 113 return proto.Marshal(m) 114 } 115 116 func (m *GetDocumentRequest) MarshalJSON() ([]byte, error) { 117 return protojson.MarshalOptions{}.Marshal(m) 118 } 119 120 func (m *GetDocumentRequest) UnmarshalJSON(data []byte) error { 121 return protojson.Unmarshal(data, m) 122 } 123 124 func (m *GetDocumentRequest) GetName() *document.Name { 125 if m != nil { 126 return m.Name 127 } 128 return nil 129 } 130 131 func (m *GetDocumentRequest) GetFieldMask() *document.Document_FieldMask { 132 if m != nil { 133 return m.FieldMask 134 } 135 return nil 136 } 137 138 func (m *GetDocumentRequest) GetView() view.View { 139 if m != nil { 140 return m.View 141 } 142 return view.View_UNSPECIFIED 143 } 144 145 func (m *GetDocumentRequest) SetName(fv *document.Name) { 146 if m == nil { 147 panic(fmt.Errorf("can't set %s on nil %s", "Name", "GetDocumentRequest")) 148 } 149 m.Name = fv 150 } 151 152 func (m *GetDocumentRequest) SetFieldMask(fv *document.Document_FieldMask) { 153 if m == nil { 154 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "GetDocumentRequest")) 155 } 156 m.FieldMask = fv 157 } 158 159 func (m *GetDocumentRequest) SetView(fv view.View) { 160 if m == nil { 161 panic(fmt.Errorf("can't set %s on nil %s", "View", "GetDocumentRequest")) 162 } 163 m.View = fv 164 } 165 166 // A request message of the BatchGetDocuments method. 167 type BatchGetDocumentsRequest struct { 168 state protoimpl.MessageState 169 sizeCache protoimpl.SizeCache 170 unknownFields protoimpl.UnknownFields 171 // Names of Documents 172 Names []*document.Name `protobuf:"bytes,2,rep,customtype=Name,name=names,proto3" json:"names,omitempty"` 173 // A list of extra fields to be obtained for each response item on top of 174 // fields defined by request field view 175 FieldMask *document.Document_FieldMask `protobuf:"bytes,3,opt,customtype=Document_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 176 // View defines list of standard response fields present in response items. 177 // Additional fields can be amended by request field field_mask 178 View view.View `protobuf:"varint,4,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 179 } 180 181 func (m *BatchGetDocumentsRequest) Reset() { 182 *m = BatchGetDocumentsRequest{} 183 if protoimpl.UnsafeEnabled { 184 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[1] 185 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 186 ms.StoreMessageInfo(mi) 187 } 188 } 189 190 func (m *BatchGetDocumentsRequest) String() string { 191 return protoimpl.X.MessageStringOf(m) 192 } 193 194 func (*BatchGetDocumentsRequest) ProtoMessage() {} 195 196 func (m *BatchGetDocumentsRequest) ProtoReflect() preflect.Message { 197 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[1] 198 if protoimpl.UnsafeEnabled && m != nil { 199 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 200 if ms.LoadMessageInfo() == nil { 201 ms.StoreMessageInfo(mi) 202 } 203 return ms 204 } 205 return mi.MessageOf(m) 206 } 207 208 func (*BatchGetDocumentsRequest) GotenMessage() {} 209 210 // Deprecated, Use BatchGetDocumentsRequest.ProtoReflect.Descriptor instead. 211 func (*BatchGetDocumentsRequest) Descriptor() ([]byte, []int) { 212 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{1} 213 } 214 215 func (m *BatchGetDocumentsRequest) Unmarshal(b []byte) error { 216 return proto.Unmarshal(b, m) 217 } 218 219 func (m *BatchGetDocumentsRequest) Marshal() ([]byte, error) { 220 return proto.Marshal(m) 221 } 222 223 func (m *BatchGetDocumentsRequest) MarshalJSON() ([]byte, error) { 224 return protojson.MarshalOptions{}.Marshal(m) 225 } 226 227 func (m *BatchGetDocumentsRequest) UnmarshalJSON(data []byte) error { 228 return protojson.Unmarshal(data, m) 229 } 230 231 func (m *BatchGetDocumentsRequest) GetNames() []*document.Name { 232 if m != nil { 233 return m.Names 234 } 235 return nil 236 } 237 238 func (m *BatchGetDocumentsRequest) GetFieldMask() *document.Document_FieldMask { 239 if m != nil { 240 return m.FieldMask 241 } 242 return nil 243 } 244 245 func (m *BatchGetDocumentsRequest) GetView() view.View { 246 if m != nil { 247 return m.View 248 } 249 return view.View_UNSPECIFIED 250 } 251 252 func (m *BatchGetDocumentsRequest) SetNames(fv []*document.Name) { 253 if m == nil { 254 panic(fmt.Errorf("can't set %s on nil %s", "Names", "BatchGetDocumentsRequest")) 255 } 256 m.Names = fv 257 } 258 259 func (m *BatchGetDocumentsRequest) SetFieldMask(fv *document.Document_FieldMask) { 260 if m == nil { 261 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "BatchGetDocumentsRequest")) 262 } 263 m.FieldMask = fv 264 } 265 266 func (m *BatchGetDocumentsRequest) SetView(fv view.View) { 267 if m == nil { 268 panic(fmt.Errorf("can't set %s on nil %s", "View", "BatchGetDocumentsRequest")) 269 } 270 m.View = fv 271 } 272 273 // A response message of the BatchGetDocuments method. 274 type BatchGetDocumentsResponse struct { 275 state protoimpl.MessageState 276 sizeCache protoimpl.SizeCache 277 unknownFields protoimpl.UnknownFields 278 // found Documents 279 Documents []*document.Document `protobuf:"bytes,1,rep,name=documents,proto3" json:"documents,omitempty"` 280 // list of not found Documents 281 Missing []*document.Name `protobuf:"bytes,2,rep,customtype=Name,name=missing,proto3" json:"missing,omitempty"` 282 } 283 284 func (m *BatchGetDocumentsResponse) Reset() { 285 *m = BatchGetDocumentsResponse{} 286 if protoimpl.UnsafeEnabled { 287 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[2] 288 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 289 ms.StoreMessageInfo(mi) 290 } 291 } 292 293 func (m *BatchGetDocumentsResponse) String() string { 294 return protoimpl.X.MessageStringOf(m) 295 } 296 297 func (*BatchGetDocumentsResponse) ProtoMessage() {} 298 299 func (m *BatchGetDocumentsResponse) ProtoReflect() preflect.Message { 300 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[2] 301 if protoimpl.UnsafeEnabled && m != nil { 302 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 303 if ms.LoadMessageInfo() == nil { 304 ms.StoreMessageInfo(mi) 305 } 306 return ms 307 } 308 return mi.MessageOf(m) 309 } 310 311 func (*BatchGetDocumentsResponse) GotenMessage() {} 312 313 // Deprecated, Use BatchGetDocumentsResponse.ProtoReflect.Descriptor instead. 314 func (*BatchGetDocumentsResponse) Descriptor() ([]byte, []int) { 315 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{2} 316 } 317 318 func (m *BatchGetDocumentsResponse) Unmarshal(b []byte) error { 319 return proto.Unmarshal(b, m) 320 } 321 322 func (m *BatchGetDocumentsResponse) Marshal() ([]byte, error) { 323 return proto.Marshal(m) 324 } 325 326 func (m *BatchGetDocumentsResponse) MarshalJSON() ([]byte, error) { 327 return protojson.MarshalOptions{}.Marshal(m) 328 } 329 330 func (m *BatchGetDocumentsResponse) UnmarshalJSON(data []byte) error { 331 return protojson.Unmarshal(data, m) 332 } 333 334 func (m *BatchGetDocumentsResponse) GetDocuments() []*document.Document { 335 if m != nil { 336 return m.Documents 337 } 338 return nil 339 } 340 341 func (m *BatchGetDocumentsResponse) GetMissing() []*document.Name { 342 if m != nil { 343 return m.Missing 344 } 345 return nil 346 } 347 348 func (m *BatchGetDocumentsResponse) SetDocuments(fv []*document.Document) { 349 if m == nil { 350 panic(fmt.Errorf("can't set %s on nil %s", "Documents", "BatchGetDocumentsResponse")) 351 } 352 m.Documents = fv 353 } 354 355 func (m *BatchGetDocumentsResponse) SetMissing(fv []*document.Name) { 356 if m == nil { 357 panic(fmt.Errorf("can't set %s on nil %s", "Missing", "BatchGetDocumentsResponse")) 358 } 359 m.Missing = fv 360 } 361 362 // A request message of the ListDocuments method. 363 type ListDocumentsRequest struct { 364 state protoimpl.MessageState 365 sizeCache protoimpl.SizeCache 366 unknownFields protoimpl.UnknownFields 367 // Parent name of ntt.alerting.v1.Document 368 Parent *document.ParentName `protobuf:"bytes,1,opt,customtype=ParentName,name=parent,proto3" json:"parent,omitempty"` 369 // Requested page size. Server may return fewer Documents than requested. 370 // If unspecified, server will pick an appropriate default. 371 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` 372 // A token identifying a page of results the server should return. 373 // Typically, this is the value of 374 // ListDocumentsResponse.next_page_token. 375 PageToken *document.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` 376 // Order By - 377 // https://cloud.google.com/apis/design/design_patterns#list_pagination list 378 // of field path with order directive, either 'asc' or 'desc'. If direction is 379 // not provided, 'asc' is assumed. e.g. "state.nested_field asc, 380 // state.something.else desc, theme" 381 OrderBy *document.OrderBy `protobuf:"bytes,4,opt,customtype=OrderBy,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` 382 // Filter - filter results by field criteria. Simplified SQL-like syntax with 383 // following operators: 384 // <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS 385 // [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels 386 // CONTAINS "severity:important" OR (state.last_error_time > 387 // "2018-11-15T10:00:00Z" AND state.status = "ERROR")' 388 Filter *document.Filter `protobuf:"bytes,5,opt,customtype=Filter,name=filter,proto3" json:"filter,omitempty"` 389 // A list of extra fields to be obtained for each response item on top of 390 // fields defined by request field view 391 FieldMask *document.Document_FieldMask `protobuf:"bytes,6,opt,customtype=Document_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 392 // View defines list of standard response fields present in response items. 393 // Additional fields can be amended by request field field_mask 394 View view.View `protobuf:"varint,7,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 395 // Indicates if list response should contain total count and offset (fields 396 // current_offset and total_results_count). 397 IncludePagingInfo bool `protobuf:"varint,8,opt,name=include_paging_info,json=includePagingInfo,proto3" json:"include_paging_info,omitempty"` 398 } 399 400 func (m *ListDocumentsRequest) Reset() { 401 *m = ListDocumentsRequest{} 402 if protoimpl.UnsafeEnabled { 403 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[3] 404 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 405 ms.StoreMessageInfo(mi) 406 } 407 } 408 409 func (m *ListDocumentsRequest) String() string { 410 return protoimpl.X.MessageStringOf(m) 411 } 412 413 func (*ListDocumentsRequest) ProtoMessage() {} 414 415 func (m *ListDocumentsRequest) ProtoReflect() preflect.Message { 416 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[3] 417 if protoimpl.UnsafeEnabled && m != nil { 418 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 419 if ms.LoadMessageInfo() == nil { 420 ms.StoreMessageInfo(mi) 421 } 422 return ms 423 } 424 return mi.MessageOf(m) 425 } 426 427 func (*ListDocumentsRequest) GotenMessage() {} 428 429 // Deprecated, Use ListDocumentsRequest.ProtoReflect.Descriptor instead. 430 func (*ListDocumentsRequest) Descriptor() ([]byte, []int) { 431 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{3} 432 } 433 434 func (m *ListDocumentsRequest) Unmarshal(b []byte) error { 435 return proto.Unmarshal(b, m) 436 } 437 438 func (m *ListDocumentsRequest) Marshal() ([]byte, error) { 439 return proto.Marshal(m) 440 } 441 442 func (m *ListDocumentsRequest) MarshalJSON() ([]byte, error) { 443 return protojson.MarshalOptions{}.Marshal(m) 444 } 445 446 func (m *ListDocumentsRequest) UnmarshalJSON(data []byte) error { 447 return protojson.Unmarshal(data, m) 448 } 449 450 func (m *ListDocumentsRequest) GetParent() *document.ParentName { 451 if m != nil { 452 return m.Parent 453 } 454 return nil 455 } 456 457 func (m *ListDocumentsRequest) GetPageSize() int32 { 458 if m != nil { 459 return m.PageSize 460 } 461 return int32(0) 462 } 463 464 func (m *ListDocumentsRequest) GetPageToken() *document.PagerCursor { 465 if m != nil { 466 return m.PageToken 467 } 468 return nil 469 } 470 471 func (m *ListDocumentsRequest) GetOrderBy() *document.OrderBy { 472 if m != nil { 473 return m.OrderBy 474 } 475 return nil 476 } 477 478 func (m *ListDocumentsRequest) GetFilter() *document.Filter { 479 if m != nil { 480 return m.Filter 481 } 482 return nil 483 } 484 485 func (m *ListDocumentsRequest) GetFieldMask() *document.Document_FieldMask { 486 if m != nil { 487 return m.FieldMask 488 } 489 return nil 490 } 491 492 func (m *ListDocumentsRequest) GetView() view.View { 493 if m != nil { 494 return m.View 495 } 496 return view.View_UNSPECIFIED 497 } 498 499 func (m *ListDocumentsRequest) GetIncludePagingInfo() bool { 500 if m != nil { 501 return m.IncludePagingInfo 502 } 503 return false 504 } 505 506 func (m *ListDocumentsRequest) SetParent(fv *document.ParentName) { 507 if m == nil { 508 panic(fmt.Errorf("can't set %s on nil %s", "Parent", "ListDocumentsRequest")) 509 } 510 m.Parent = fv 511 } 512 513 func (m *ListDocumentsRequest) SetPageSize(fv int32) { 514 if m == nil { 515 panic(fmt.Errorf("can't set %s on nil %s", "PageSize", "ListDocumentsRequest")) 516 } 517 m.PageSize = fv 518 } 519 520 func (m *ListDocumentsRequest) SetPageToken(fv *document.PagerCursor) { 521 if m == nil { 522 panic(fmt.Errorf("can't set %s on nil %s", "PageToken", "ListDocumentsRequest")) 523 } 524 m.PageToken = fv 525 } 526 527 func (m *ListDocumentsRequest) SetOrderBy(fv *document.OrderBy) { 528 if m == nil { 529 panic(fmt.Errorf("can't set %s on nil %s", "OrderBy", "ListDocumentsRequest")) 530 } 531 m.OrderBy = fv 532 } 533 534 func (m *ListDocumentsRequest) SetFilter(fv *document.Filter) { 535 if m == nil { 536 panic(fmt.Errorf("can't set %s on nil %s", "Filter", "ListDocumentsRequest")) 537 } 538 m.Filter = fv 539 } 540 541 func (m *ListDocumentsRequest) SetFieldMask(fv *document.Document_FieldMask) { 542 if m == nil { 543 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "ListDocumentsRequest")) 544 } 545 m.FieldMask = fv 546 } 547 548 func (m *ListDocumentsRequest) SetView(fv view.View) { 549 if m == nil { 550 panic(fmt.Errorf("can't set %s on nil %s", "View", "ListDocumentsRequest")) 551 } 552 m.View = fv 553 } 554 555 func (m *ListDocumentsRequest) SetIncludePagingInfo(fv bool) { 556 if m == nil { 557 panic(fmt.Errorf("can't set %s on nil %s", "IncludePagingInfo", "ListDocumentsRequest")) 558 } 559 m.IncludePagingInfo = fv 560 } 561 562 // A response message of the ListDocuments method. 563 type ListDocumentsResponse struct { 564 state protoimpl.MessageState 565 sizeCache protoimpl.SizeCache 566 unknownFields protoimpl.UnknownFields 567 // The list of Documents 568 Documents []*document.Document `protobuf:"bytes,1,rep,name=documents,proto3" json:"documents,omitempty"` 569 // A token to retrieve previous page of results. 570 // 571 // Pass this value in the ListDocumentsRequest.page_token. 572 PrevPageToken *document.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=prev_page_token,json=prevPageToken,proto3" json:"prev_page_token,omitempty"` 573 // A token to retrieve next page of results. 574 // 575 // Pass this value in the ListDocumentsRequest.page_token. 576 NextPageToken *document.PagerCursor `protobuf:"bytes,4,opt,customtype=PagerCursor,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` 577 // Current offset from the first page or 0 if no page tokens were given, 578 // paging info was not requested or there was an error while trying to get 579 // it). Page index can be computed from offset and limit provided in a 580 // request. 581 CurrentOffset int32 `protobuf:"varint,5,opt,name=current_offset,json=currentOffset,proto3" json:"current_offset,omitempty"` 582 // Number of total Documents across all pages or 0, if there are no items, 583 // paging info was not requested or there was an error while trying to get it. 584 TotalResultsCount int32 `protobuf:"varint,6,opt,name=total_results_count,json=totalResultsCount,proto3" json:"total_results_count,omitempty"` 585 } 586 587 func (m *ListDocumentsResponse) Reset() { 588 *m = ListDocumentsResponse{} 589 if protoimpl.UnsafeEnabled { 590 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[4] 591 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 592 ms.StoreMessageInfo(mi) 593 } 594 } 595 596 func (m *ListDocumentsResponse) String() string { 597 return protoimpl.X.MessageStringOf(m) 598 } 599 600 func (*ListDocumentsResponse) ProtoMessage() {} 601 602 func (m *ListDocumentsResponse) ProtoReflect() preflect.Message { 603 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[4] 604 if protoimpl.UnsafeEnabled && m != nil { 605 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 606 if ms.LoadMessageInfo() == nil { 607 ms.StoreMessageInfo(mi) 608 } 609 return ms 610 } 611 return mi.MessageOf(m) 612 } 613 614 func (*ListDocumentsResponse) GotenMessage() {} 615 616 // Deprecated, Use ListDocumentsResponse.ProtoReflect.Descriptor instead. 617 func (*ListDocumentsResponse) Descriptor() ([]byte, []int) { 618 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{4} 619 } 620 621 func (m *ListDocumentsResponse) Unmarshal(b []byte) error { 622 return proto.Unmarshal(b, m) 623 } 624 625 func (m *ListDocumentsResponse) Marshal() ([]byte, error) { 626 return proto.Marshal(m) 627 } 628 629 func (m *ListDocumentsResponse) MarshalJSON() ([]byte, error) { 630 return protojson.MarshalOptions{}.Marshal(m) 631 } 632 633 func (m *ListDocumentsResponse) UnmarshalJSON(data []byte) error { 634 return protojson.Unmarshal(data, m) 635 } 636 637 func (m *ListDocumentsResponse) GetDocuments() []*document.Document { 638 if m != nil { 639 return m.Documents 640 } 641 return nil 642 } 643 644 func (m *ListDocumentsResponse) GetPrevPageToken() *document.PagerCursor { 645 if m != nil { 646 return m.PrevPageToken 647 } 648 return nil 649 } 650 651 func (m *ListDocumentsResponse) GetNextPageToken() *document.PagerCursor { 652 if m != nil { 653 return m.NextPageToken 654 } 655 return nil 656 } 657 658 func (m *ListDocumentsResponse) GetCurrentOffset() int32 { 659 if m != nil { 660 return m.CurrentOffset 661 } 662 return int32(0) 663 } 664 665 func (m *ListDocumentsResponse) GetTotalResultsCount() int32 { 666 if m != nil { 667 return m.TotalResultsCount 668 } 669 return int32(0) 670 } 671 672 func (m *ListDocumentsResponse) SetDocuments(fv []*document.Document) { 673 if m == nil { 674 panic(fmt.Errorf("can't set %s on nil %s", "Documents", "ListDocumentsResponse")) 675 } 676 m.Documents = fv 677 } 678 679 func (m *ListDocumentsResponse) SetPrevPageToken(fv *document.PagerCursor) { 680 if m == nil { 681 panic(fmt.Errorf("can't set %s on nil %s", "PrevPageToken", "ListDocumentsResponse")) 682 } 683 m.PrevPageToken = fv 684 } 685 686 func (m *ListDocumentsResponse) SetNextPageToken(fv *document.PagerCursor) { 687 if m == nil { 688 panic(fmt.Errorf("can't set %s on nil %s", "NextPageToken", "ListDocumentsResponse")) 689 } 690 m.NextPageToken = fv 691 } 692 693 func (m *ListDocumentsResponse) SetCurrentOffset(fv int32) { 694 if m == nil { 695 panic(fmt.Errorf("can't set %s on nil %s", "CurrentOffset", "ListDocumentsResponse")) 696 } 697 m.CurrentOffset = fv 698 } 699 700 func (m *ListDocumentsResponse) SetTotalResultsCount(fv int32) { 701 if m == nil { 702 panic(fmt.Errorf("can't set %s on nil %s", "TotalResultsCount", "ListDocumentsResponse")) 703 } 704 m.TotalResultsCount = fv 705 } 706 707 // A request message of the WatchDocument method. 708 type WatchDocumentRequest struct { 709 state protoimpl.MessageState 710 sizeCache protoimpl.SizeCache 711 unknownFields protoimpl.UnknownFields 712 // Name of ntt.alerting.v1.Document 713 Name *document.Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 714 // A list of extra fields to be obtained for each response item on top of 715 // fields defined by request field view 716 FieldMask *document.Document_FieldMask `protobuf:"bytes,2,opt,customtype=Document_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 717 // View defines list of standard response fields present in response items. 718 // Additional fields can be amended by request field field_mask 719 View view.View `protobuf:"varint,4,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 720 } 721 722 func (m *WatchDocumentRequest) Reset() { 723 *m = WatchDocumentRequest{} 724 if protoimpl.UnsafeEnabled { 725 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[5] 726 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 727 ms.StoreMessageInfo(mi) 728 } 729 } 730 731 func (m *WatchDocumentRequest) String() string { 732 return protoimpl.X.MessageStringOf(m) 733 } 734 735 func (*WatchDocumentRequest) ProtoMessage() {} 736 737 func (m *WatchDocumentRequest) ProtoReflect() preflect.Message { 738 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[5] 739 if protoimpl.UnsafeEnabled && m != nil { 740 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 741 if ms.LoadMessageInfo() == nil { 742 ms.StoreMessageInfo(mi) 743 } 744 return ms 745 } 746 return mi.MessageOf(m) 747 } 748 749 func (*WatchDocumentRequest) GotenMessage() {} 750 751 // Deprecated, Use WatchDocumentRequest.ProtoReflect.Descriptor instead. 752 func (*WatchDocumentRequest) Descriptor() ([]byte, []int) { 753 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{5} 754 } 755 756 func (m *WatchDocumentRequest) Unmarshal(b []byte) error { 757 return proto.Unmarshal(b, m) 758 } 759 760 func (m *WatchDocumentRequest) Marshal() ([]byte, error) { 761 return proto.Marshal(m) 762 } 763 764 func (m *WatchDocumentRequest) MarshalJSON() ([]byte, error) { 765 return protojson.MarshalOptions{}.Marshal(m) 766 } 767 768 func (m *WatchDocumentRequest) UnmarshalJSON(data []byte) error { 769 return protojson.Unmarshal(data, m) 770 } 771 772 func (m *WatchDocumentRequest) GetName() *document.Name { 773 if m != nil { 774 return m.Name 775 } 776 return nil 777 } 778 779 func (m *WatchDocumentRequest) GetFieldMask() *document.Document_FieldMask { 780 if m != nil { 781 return m.FieldMask 782 } 783 return nil 784 } 785 786 func (m *WatchDocumentRequest) GetView() view.View { 787 if m != nil { 788 return m.View 789 } 790 return view.View_UNSPECIFIED 791 } 792 793 func (m *WatchDocumentRequest) SetName(fv *document.Name) { 794 if m == nil { 795 panic(fmt.Errorf("can't set %s on nil %s", "Name", "WatchDocumentRequest")) 796 } 797 m.Name = fv 798 } 799 800 func (m *WatchDocumentRequest) SetFieldMask(fv *document.Document_FieldMask) { 801 if m == nil { 802 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "WatchDocumentRequest")) 803 } 804 m.FieldMask = fv 805 } 806 807 func (m *WatchDocumentRequest) SetView(fv view.View) { 808 if m == nil { 809 panic(fmt.Errorf("can't set %s on nil %s", "View", "WatchDocumentRequest")) 810 } 811 m.View = fv 812 } 813 814 // A response message of the WatchDocument method. 815 type WatchDocumentResponse struct { 816 state protoimpl.MessageState 817 sizeCache protoimpl.SizeCache 818 unknownFields protoimpl.UnknownFields 819 Change *document.DocumentChange `protobuf:"bytes,1,opt,name=change,proto3" json:"change,omitempty"` 820 } 821 822 func (m *WatchDocumentResponse) Reset() { 823 *m = WatchDocumentResponse{} 824 if protoimpl.UnsafeEnabled { 825 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[6] 826 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 827 ms.StoreMessageInfo(mi) 828 } 829 } 830 831 func (m *WatchDocumentResponse) String() string { 832 return protoimpl.X.MessageStringOf(m) 833 } 834 835 func (*WatchDocumentResponse) ProtoMessage() {} 836 837 func (m *WatchDocumentResponse) ProtoReflect() preflect.Message { 838 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[6] 839 if protoimpl.UnsafeEnabled && m != nil { 840 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 841 if ms.LoadMessageInfo() == nil { 842 ms.StoreMessageInfo(mi) 843 } 844 return ms 845 } 846 return mi.MessageOf(m) 847 } 848 849 func (*WatchDocumentResponse) GotenMessage() {} 850 851 // Deprecated, Use WatchDocumentResponse.ProtoReflect.Descriptor instead. 852 func (*WatchDocumentResponse) Descriptor() ([]byte, []int) { 853 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{6} 854 } 855 856 func (m *WatchDocumentResponse) Unmarshal(b []byte) error { 857 return proto.Unmarshal(b, m) 858 } 859 860 func (m *WatchDocumentResponse) Marshal() ([]byte, error) { 861 return proto.Marshal(m) 862 } 863 864 func (m *WatchDocumentResponse) MarshalJSON() ([]byte, error) { 865 return protojson.MarshalOptions{}.Marshal(m) 866 } 867 868 func (m *WatchDocumentResponse) UnmarshalJSON(data []byte) error { 869 return protojson.Unmarshal(data, m) 870 } 871 872 func (m *WatchDocumentResponse) GetChange() *document.DocumentChange { 873 if m != nil { 874 return m.Change 875 } 876 return nil 877 } 878 879 func (m *WatchDocumentResponse) SetChange(fv *document.DocumentChange) { 880 if m == nil { 881 panic(fmt.Errorf("can't set %s on nil %s", "Change", "WatchDocumentResponse")) 882 } 883 m.Change = fv 884 } 885 886 // A request message of the WatchDocuments method. 887 type WatchDocumentsRequest struct { 888 state protoimpl.MessageState 889 sizeCache protoimpl.SizeCache 890 unknownFields protoimpl.UnknownFields 891 // Type of a watch. Identifies how server stream data to a client, which 892 // fields in a request are allowed and which fields in response are relevant. 893 Type watch_type.WatchType `protobuf:"varint,9,opt,name=type,proto3,enum=goten.types.WatchType" json:"type,omitempty"` 894 // Parent name of ntt.alerting.v1.Document 895 Parent *document.ParentName `protobuf:"bytes,1,opt,customtype=ParentName,name=parent,proto3" json:"parent,omitempty"` 896 // Requested page size. Server may return fewer Documents than requested. 897 // If unspecified, server will pick an appropriate default. 898 // Can be populated only for stateful watch type. 899 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` 900 // A token identifying a page of results the server should return. 901 // Can be populated only for stateful watch type. 902 PageToken *document.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` 903 // Order By - 904 // https://cloud.google.com/apis/design/design_patterns#list_pagination Can be 905 // populated only for stateful watch type. 906 OrderBy *document.OrderBy `protobuf:"bytes,4,opt,customtype=OrderBy,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` 907 // A token identifying watch resume point from previous session. 908 // Can be populated only for stateless watch type. 909 ResumeToken string `protobuf:"bytes,10,opt,name=resume_token,json=resumeToken,proto3" json:"resume_token,omitempty"` 910 // Point in the time from which we want to start getting updates. This field 911 // can be populated only for stateless watch type and if resume token is not 912 // known yet. If specified, initial snapshot will NOT be provided. It is 913 // assumed client can obtain it using separate means. Watch responses will 914 // contain resume tokens which should be used to resume broken connection. 915 StartingTime *timestamppb.Timestamp `protobuf:"bytes,12,opt,name=starting_time,json=startingTime,proto3" json:"starting_time,omitempty"` 916 // Filter - filter results by field criteria. Simplified SQL-like syntax with 917 // following operators: 918 // <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS 919 // [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels 920 // CONTAINS "severity:important" OR (state.last_error_time > 921 // "2018-11-15T10:00:00Z" AND state.status = "ERROR")' 922 Filter *document.Filter `protobuf:"bytes,5,opt,customtype=Filter,name=filter,proto3" json:"filter,omitempty"` 923 // A list of extra fields to be obtained for each response item on top of 924 // fields defined by request field view Changes to Document that don't affect 925 // any of masked fields won't be sent back. 926 FieldMask *document.Document_FieldMask `protobuf:"bytes,6,opt,customtype=Document_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 927 // View defines list of standard response fields present in response items. 928 // Additional fields can be amended by request field field_mask Changes to 929 // Document that don't affect any of masked fields won't be sent back. 930 View view.View `protobuf:"varint,8,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 931 // Maximum amount of changes in each response message. Query result response 932 // is divided on the server side into chunks with size of a specified amount 933 // to limit memory footprint of each message. Responses will hold information 934 // whether more elements will continue for the actual change. If unspecified, 935 // server will pick an appropriate default. 936 MaxChunkSize int32 `protobuf:"varint,11,opt,name=max_chunk_size,json=maxChunkSize,proto3" json:"max_chunk_size,omitempty"` 937 } 938 939 func (m *WatchDocumentsRequest) Reset() { 940 *m = WatchDocumentsRequest{} 941 if protoimpl.UnsafeEnabled { 942 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[7] 943 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 944 ms.StoreMessageInfo(mi) 945 } 946 } 947 948 func (m *WatchDocumentsRequest) String() string { 949 return protoimpl.X.MessageStringOf(m) 950 } 951 952 func (*WatchDocumentsRequest) ProtoMessage() {} 953 954 func (m *WatchDocumentsRequest) ProtoReflect() preflect.Message { 955 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[7] 956 if protoimpl.UnsafeEnabled && m != nil { 957 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 958 if ms.LoadMessageInfo() == nil { 959 ms.StoreMessageInfo(mi) 960 } 961 return ms 962 } 963 return mi.MessageOf(m) 964 } 965 966 func (*WatchDocumentsRequest) GotenMessage() {} 967 968 // Deprecated, Use WatchDocumentsRequest.ProtoReflect.Descriptor instead. 969 func (*WatchDocumentsRequest) Descriptor() ([]byte, []int) { 970 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{7} 971 } 972 973 func (m *WatchDocumentsRequest) Unmarshal(b []byte) error { 974 return proto.Unmarshal(b, m) 975 } 976 977 func (m *WatchDocumentsRequest) Marshal() ([]byte, error) { 978 return proto.Marshal(m) 979 } 980 981 func (m *WatchDocumentsRequest) MarshalJSON() ([]byte, error) { 982 return protojson.MarshalOptions{}.Marshal(m) 983 } 984 985 func (m *WatchDocumentsRequest) UnmarshalJSON(data []byte) error { 986 return protojson.Unmarshal(data, m) 987 } 988 989 func (m *WatchDocumentsRequest) GetType() watch_type.WatchType { 990 if m != nil { 991 return m.Type 992 } 993 return watch_type.WatchType_STATEFUL 994 } 995 996 func (m *WatchDocumentsRequest) GetParent() *document.ParentName { 997 if m != nil { 998 return m.Parent 999 } 1000 return nil 1001 } 1002 1003 func (m *WatchDocumentsRequest) GetPageSize() int32 { 1004 if m != nil { 1005 return m.PageSize 1006 } 1007 return int32(0) 1008 } 1009 1010 func (m *WatchDocumentsRequest) GetPageToken() *document.PagerCursor { 1011 if m != nil { 1012 return m.PageToken 1013 } 1014 return nil 1015 } 1016 1017 func (m *WatchDocumentsRequest) GetOrderBy() *document.OrderBy { 1018 if m != nil { 1019 return m.OrderBy 1020 } 1021 return nil 1022 } 1023 1024 func (m *WatchDocumentsRequest) GetResumeToken() string { 1025 if m != nil { 1026 return m.ResumeToken 1027 } 1028 return "" 1029 } 1030 1031 func (m *WatchDocumentsRequest) GetStartingTime() *timestamppb.Timestamp { 1032 if m != nil { 1033 return m.StartingTime 1034 } 1035 return nil 1036 } 1037 1038 func (m *WatchDocumentsRequest) GetFilter() *document.Filter { 1039 if m != nil { 1040 return m.Filter 1041 } 1042 return nil 1043 } 1044 1045 func (m *WatchDocumentsRequest) GetFieldMask() *document.Document_FieldMask { 1046 if m != nil { 1047 return m.FieldMask 1048 } 1049 return nil 1050 } 1051 1052 func (m *WatchDocumentsRequest) GetView() view.View { 1053 if m != nil { 1054 return m.View 1055 } 1056 return view.View_UNSPECIFIED 1057 } 1058 1059 func (m *WatchDocumentsRequest) GetMaxChunkSize() int32 { 1060 if m != nil { 1061 return m.MaxChunkSize 1062 } 1063 return int32(0) 1064 } 1065 1066 func (m *WatchDocumentsRequest) SetType(fv watch_type.WatchType) { 1067 if m == nil { 1068 panic(fmt.Errorf("can't set %s on nil %s", "Type", "WatchDocumentsRequest")) 1069 } 1070 m.Type = fv 1071 } 1072 1073 func (m *WatchDocumentsRequest) SetParent(fv *document.ParentName) { 1074 if m == nil { 1075 panic(fmt.Errorf("can't set %s on nil %s", "Parent", "WatchDocumentsRequest")) 1076 } 1077 m.Parent = fv 1078 } 1079 1080 func (m *WatchDocumentsRequest) SetPageSize(fv int32) { 1081 if m == nil { 1082 panic(fmt.Errorf("can't set %s on nil %s", "PageSize", "WatchDocumentsRequest")) 1083 } 1084 m.PageSize = fv 1085 } 1086 1087 func (m *WatchDocumentsRequest) SetPageToken(fv *document.PagerCursor) { 1088 if m == nil { 1089 panic(fmt.Errorf("can't set %s on nil %s", "PageToken", "WatchDocumentsRequest")) 1090 } 1091 m.PageToken = fv 1092 } 1093 1094 func (m *WatchDocumentsRequest) SetOrderBy(fv *document.OrderBy) { 1095 if m == nil { 1096 panic(fmt.Errorf("can't set %s on nil %s", "OrderBy", "WatchDocumentsRequest")) 1097 } 1098 m.OrderBy = fv 1099 } 1100 1101 func (m *WatchDocumentsRequest) SetResumeToken(fv string) { 1102 if m == nil { 1103 panic(fmt.Errorf("can't set %s on nil %s", "ResumeToken", "WatchDocumentsRequest")) 1104 } 1105 m.ResumeToken = fv 1106 } 1107 1108 func (m *WatchDocumentsRequest) SetStartingTime(fv *timestamppb.Timestamp) { 1109 if m == nil { 1110 panic(fmt.Errorf("can't set %s on nil %s", "StartingTime", "WatchDocumentsRequest")) 1111 } 1112 m.StartingTime = fv 1113 } 1114 1115 func (m *WatchDocumentsRequest) SetFilter(fv *document.Filter) { 1116 if m == nil { 1117 panic(fmt.Errorf("can't set %s on nil %s", "Filter", "WatchDocumentsRequest")) 1118 } 1119 m.Filter = fv 1120 } 1121 1122 func (m *WatchDocumentsRequest) SetFieldMask(fv *document.Document_FieldMask) { 1123 if m == nil { 1124 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "WatchDocumentsRequest")) 1125 } 1126 m.FieldMask = fv 1127 } 1128 1129 func (m *WatchDocumentsRequest) SetView(fv view.View) { 1130 if m == nil { 1131 panic(fmt.Errorf("can't set %s on nil %s", "View", "WatchDocumentsRequest")) 1132 } 1133 m.View = fv 1134 } 1135 1136 func (m *WatchDocumentsRequest) SetMaxChunkSize(fv int32) { 1137 if m == nil { 1138 panic(fmt.Errorf("can't set %s on nil %s", "MaxChunkSize", "WatchDocumentsRequest")) 1139 } 1140 m.MaxChunkSize = fv 1141 } 1142 1143 // A response message of the WatchDocuments method. 1144 type WatchDocumentsResponse struct { 1145 state protoimpl.MessageState 1146 sizeCache protoimpl.SizeCache 1147 unknownFields protoimpl.UnknownFields 1148 // Changes of Documents 1149 DocumentChanges []*document.DocumentChange `protobuf:"bytes,2,rep,name=document_changes,json=documentChanges,proto3" json:"document_changes,omitempty"` 1150 // If request specified max_chunk_size (or this limit was enforced if 1151 // stateless watch has been chosen), then responses with "full changeset" will 1152 // be divided into chunks. Client should keep receiving messages and, once 1153 // is_current has value true, combine this recent message with all previous 1154 // ones where is_current is false. If this is the first is_current in a whole 1155 // watch stream, then it means that client should have, at this moment, 1156 // contain snapshot of the current situation (or more accurately, snapshot of 1157 // situation at the moment of request). All Documents will be of type 1158 // Added/Current (depending on watch_type specified in the request). Further 1159 // responses will be incremental - however messages may still be chunked and 1160 // is_current logic still applies. is_current is always true for stateful 1161 // watch if max_chunk_size was left to 0. 1162 IsCurrent bool `protobuf:"varint,4,opt,name=is_current,json=isCurrent,proto3" json:"is_current,omitempty"` 1163 // When present, PageTokens used for page navigation should be updated. 1164 // Present only if is_current is true (last chunk). 1165 PageTokenChange *WatchDocumentsResponse_PageTokenChange `protobuf:"bytes,3,opt,name=page_token_change,json=pageTokenChange,proto3" json:"page_token_change,omitempty"` 1166 // Token that can be used if current connection drops and client needs to 1167 // reconnect. Populated only for stateless watch type. Present only if 1168 // is_current is true (last chunk). 1169 ResumeToken string `protobuf:"bytes,5,opt,name=resume_token,json=resumeToken,proto3" json:"resume_token,omitempty"` 1170 // Server may occasionally send information how many resources should client 1171 // have in its state so far (response message without any changes, but with 1172 // snapshot_size field specified). If client has different value than the one 1173 // sent by the server, then it should be treated by a client as an error and 1174 // should reconnect. If value is smaller then 0, then client should ignore 1175 // this field as unpopulated. This field should be checked only for stateless 1176 // watch. In stateful those kind of errors are handled by the server side. 1177 // Will be never sent together with is_current, is_soft_reset and 1178 // is_hard_reset flags. 1179 SnapshotSize int64 `protobuf:"varint,6,opt,name=snapshot_size,json=snapshotSize,proto3" json:"snapshot_size,omitempty"` 1180 // In case of internal issue server may send response message with this flag. 1181 // It indicates that client should drop all changes from recent responses 1182 // where is_current is false only! If last message had is_current set to true, 1183 // client should do nothing and process normally. Resume token received before 1184 // is still valid. This field should be checked only for stateless watch. In 1185 // stateful those kind of errors are handled by the server side. Will never be 1186 // sent along with is_current, is_hard_reset or snapshot_size. 1187 IsSoftReset bool `protobuf:"varint,7,opt,name=is_soft_reset,json=isSoftReset,proto3" json:"is_soft_reset,omitempty"` 1188 // In case of internal issue server may send response message with this flag. 1189 // After receiving, client should clear whole state (drop all changes received 1190 // so far) as server will send new snapshot (Documents will contains changes 1191 // of type Current only). Any resume tokens should be discarded as well. This 1192 // field should be checked only for stateless watch. In stateful those kind of 1193 // errors are handled by the server side. Will never be sent along with 1194 // is_current, is_soft_reset or snapshot_size. 1195 IsHardReset bool `protobuf:"varint,8,opt,name=is_hard_reset,json=isHardReset,proto3" json:"is_hard_reset,omitempty"` 1196 } 1197 1198 func (m *WatchDocumentsResponse) Reset() { 1199 *m = WatchDocumentsResponse{} 1200 if protoimpl.UnsafeEnabled { 1201 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[8] 1202 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1203 ms.StoreMessageInfo(mi) 1204 } 1205 } 1206 1207 func (m *WatchDocumentsResponse) String() string { 1208 return protoimpl.X.MessageStringOf(m) 1209 } 1210 1211 func (*WatchDocumentsResponse) ProtoMessage() {} 1212 1213 func (m *WatchDocumentsResponse) ProtoReflect() preflect.Message { 1214 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[8] 1215 if protoimpl.UnsafeEnabled && m != nil { 1216 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1217 if ms.LoadMessageInfo() == nil { 1218 ms.StoreMessageInfo(mi) 1219 } 1220 return ms 1221 } 1222 return mi.MessageOf(m) 1223 } 1224 1225 func (*WatchDocumentsResponse) GotenMessage() {} 1226 1227 // Deprecated, Use WatchDocumentsResponse.ProtoReflect.Descriptor instead. 1228 func (*WatchDocumentsResponse) Descriptor() ([]byte, []int) { 1229 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{8} 1230 } 1231 1232 func (m *WatchDocumentsResponse) Unmarshal(b []byte) error { 1233 return proto.Unmarshal(b, m) 1234 } 1235 1236 func (m *WatchDocumentsResponse) Marshal() ([]byte, error) { 1237 return proto.Marshal(m) 1238 } 1239 1240 func (m *WatchDocumentsResponse) MarshalJSON() ([]byte, error) { 1241 return protojson.MarshalOptions{}.Marshal(m) 1242 } 1243 1244 func (m *WatchDocumentsResponse) UnmarshalJSON(data []byte) error { 1245 return protojson.Unmarshal(data, m) 1246 } 1247 1248 func (m *WatchDocumentsResponse) GetDocumentChanges() []*document.DocumentChange { 1249 if m != nil { 1250 return m.DocumentChanges 1251 } 1252 return nil 1253 } 1254 1255 func (m *WatchDocumentsResponse) GetIsCurrent() bool { 1256 if m != nil { 1257 return m.IsCurrent 1258 } 1259 return false 1260 } 1261 1262 func (m *WatchDocumentsResponse) GetPageTokenChange() *WatchDocumentsResponse_PageTokenChange { 1263 if m != nil { 1264 return m.PageTokenChange 1265 } 1266 return nil 1267 } 1268 1269 func (m *WatchDocumentsResponse) GetResumeToken() string { 1270 if m != nil { 1271 return m.ResumeToken 1272 } 1273 return "" 1274 } 1275 1276 func (m *WatchDocumentsResponse) GetSnapshotSize() int64 { 1277 if m != nil { 1278 return m.SnapshotSize 1279 } 1280 return int64(0) 1281 } 1282 1283 func (m *WatchDocumentsResponse) GetIsSoftReset() bool { 1284 if m != nil { 1285 return m.IsSoftReset 1286 } 1287 return false 1288 } 1289 1290 func (m *WatchDocumentsResponse) GetIsHardReset() bool { 1291 if m != nil { 1292 return m.IsHardReset 1293 } 1294 return false 1295 } 1296 1297 func (m *WatchDocumentsResponse) SetDocumentChanges(fv []*document.DocumentChange) { 1298 if m == nil { 1299 panic(fmt.Errorf("can't set %s on nil %s", "DocumentChanges", "WatchDocumentsResponse")) 1300 } 1301 m.DocumentChanges = fv 1302 } 1303 1304 func (m *WatchDocumentsResponse) SetIsCurrent(fv bool) { 1305 if m == nil { 1306 panic(fmt.Errorf("can't set %s on nil %s", "IsCurrent", "WatchDocumentsResponse")) 1307 } 1308 m.IsCurrent = fv 1309 } 1310 1311 func (m *WatchDocumentsResponse) SetPageTokenChange(fv *WatchDocumentsResponse_PageTokenChange) { 1312 if m == nil { 1313 panic(fmt.Errorf("can't set %s on nil %s", "PageTokenChange", "WatchDocumentsResponse")) 1314 } 1315 m.PageTokenChange = fv 1316 } 1317 1318 func (m *WatchDocumentsResponse) SetResumeToken(fv string) { 1319 if m == nil { 1320 panic(fmt.Errorf("can't set %s on nil %s", "ResumeToken", "WatchDocumentsResponse")) 1321 } 1322 m.ResumeToken = fv 1323 } 1324 1325 func (m *WatchDocumentsResponse) SetSnapshotSize(fv int64) { 1326 if m == nil { 1327 panic(fmt.Errorf("can't set %s on nil %s", "SnapshotSize", "WatchDocumentsResponse")) 1328 } 1329 m.SnapshotSize = fv 1330 } 1331 1332 func (m *WatchDocumentsResponse) SetIsSoftReset(fv bool) { 1333 if m == nil { 1334 panic(fmt.Errorf("can't set %s on nil %s", "IsSoftReset", "WatchDocumentsResponse")) 1335 } 1336 m.IsSoftReset = fv 1337 } 1338 1339 func (m *WatchDocumentsResponse) SetIsHardReset(fv bool) { 1340 if m == nil { 1341 panic(fmt.Errorf("can't set %s on nil %s", "IsHardReset", "WatchDocumentsResponse")) 1342 } 1343 m.IsHardReset = fv 1344 } 1345 1346 // A request message of the CreateDocument method. 1347 type CreateDocumentRequest struct { 1348 state protoimpl.MessageState 1349 sizeCache protoimpl.SizeCache 1350 unknownFields protoimpl.UnknownFields 1351 // Parent name of ntt.alerting.v1.Document 1352 Parent *document.ParentName `protobuf:"bytes,1,opt,customtype=ParentName,name=parent,proto3" json:"parent,omitempty"` 1353 // Document resource body 1354 Document *document.Document `protobuf:"bytes,2,opt,name=document,proto3" json:"document,omitempty"` 1355 // Optional masking applied to response object to reduce message response 1356 // size. 1357 ResponseMask *CreateDocumentRequest_ResponseMask `protobuf:"bytes,3,opt,name=response_mask,json=responseMask,proto3" json:"response_mask,omitempty"` 1358 } 1359 1360 func (m *CreateDocumentRequest) Reset() { 1361 *m = CreateDocumentRequest{} 1362 if protoimpl.UnsafeEnabled { 1363 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[9] 1364 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1365 ms.StoreMessageInfo(mi) 1366 } 1367 } 1368 1369 func (m *CreateDocumentRequest) String() string { 1370 return protoimpl.X.MessageStringOf(m) 1371 } 1372 1373 func (*CreateDocumentRequest) ProtoMessage() {} 1374 1375 func (m *CreateDocumentRequest) ProtoReflect() preflect.Message { 1376 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[9] 1377 if protoimpl.UnsafeEnabled && m != nil { 1378 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1379 if ms.LoadMessageInfo() == nil { 1380 ms.StoreMessageInfo(mi) 1381 } 1382 return ms 1383 } 1384 return mi.MessageOf(m) 1385 } 1386 1387 func (*CreateDocumentRequest) GotenMessage() {} 1388 1389 // Deprecated, Use CreateDocumentRequest.ProtoReflect.Descriptor instead. 1390 func (*CreateDocumentRequest) Descriptor() ([]byte, []int) { 1391 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{9} 1392 } 1393 1394 func (m *CreateDocumentRequest) Unmarshal(b []byte) error { 1395 return proto.Unmarshal(b, m) 1396 } 1397 1398 func (m *CreateDocumentRequest) Marshal() ([]byte, error) { 1399 return proto.Marshal(m) 1400 } 1401 1402 func (m *CreateDocumentRequest) MarshalJSON() ([]byte, error) { 1403 return protojson.MarshalOptions{}.Marshal(m) 1404 } 1405 1406 func (m *CreateDocumentRequest) UnmarshalJSON(data []byte) error { 1407 return protojson.Unmarshal(data, m) 1408 } 1409 1410 func (m *CreateDocumentRequest) GetParent() *document.ParentName { 1411 if m != nil { 1412 return m.Parent 1413 } 1414 return nil 1415 } 1416 1417 func (m *CreateDocumentRequest) GetDocument() *document.Document { 1418 if m != nil { 1419 return m.Document 1420 } 1421 return nil 1422 } 1423 1424 func (m *CreateDocumentRequest) GetResponseMask() *CreateDocumentRequest_ResponseMask { 1425 if m != nil { 1426 return m.ResponseMask 1427 } 1428 return nil 1429 } 1430 1431 func (m *CreateDocumentRequest) SetParent(fv *document.ParentName) { 1432 if m == nil { 1433 panic(fmt.Errorf("can't set %s on nil %s", "Parent", "CreateDocumentRequest")) 1434 } 1435 m.Parent = fv 1436 } 1437 1438 func (m *CreateDocumentRequest) SetDocument(fv *document.Document) { 1439 if m == nil { 1440 panic(fmt.Errorf("can't set %s on nil %s", "Document", "CreateDocumentRequest")) 1441 } 1442 m.Document = fv 1443 } 1444 1445 func (m *CreateDocumentRequest) SetResponseMask(fv *CreateDocumentRequest_ResponseMask) { 1446 if m == nil { 1447 panic(fmt.Errorf("can't set %s on nil %s", "ResponseMask", "CreateDocumentRequest")) 1448 } 1449 m.ResponseMask = fv 1450 } 1451 1452 // A request message of the UpdateDocument method. 1453 type UpdateDocumentRequest struct { 1454 state protoimpl.MessageState 1455 sizeCache protoimpl.SizeCache 1456 unknownFields protoimpl.UnknownFields 1457 // Document resource body 1458 Document *document.Document `protobuf:"bytes,2,opt,name=document,proto3" json:"document,omitempty"` 1459 // FieldMask applied to request - change will be applied only for fields in 1460 // the mask 1461 UpdateMask *document.Document_FieldMask `protobuf:"bytes,3,opt,customtype=Document_FieldMask,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` 1462 // Conditional update applied to request if update should be executed only for 1463 // specific resource state. If this field is populated, then server will fetch 1464 // existing resource, compare with the one stored in the cas field (after 1465 // applying field mask) and proceed with update only and only if they match. 1466 // Otherwise RPC error Aborted will be returned. 1467 Cas *UpdateDocumentRequest_CAS `protobuf:"bytes,4,opt,name=cas,proto3" json:"cas,omitempty"` 1468 // If set to true, and the resource is not found, 1469 // a new resource will be created. In this situation, 1470 // 'field_mask' is ignored. 1471 // 1472 // https://google.aip.dev/134#create-or-update 1473 AllowMissing bool `protobuf:"varint,5,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"` 1474 // reduce message response size. 1475 ResponseMask *UpdateDocumentRequest_ResponseMask `protobuf:"bytes,6,opt,name=response_mask,json=responseMask,proto3" json:"response_mask,omitempty"` 1476 } 1477 1478 func (m *UpdateDocumentRequest) Reset() { 1479 *m = UpdateDocumentRequest{} 1480 if protoimpl.UnsafeEnabled { 1481 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[10] 1482 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1483 ms.StoreMessageInfo(mi) 1484 } 1485 } 1486 1487 func (m *UpdateDocumentRequest) String() string { 1488 return protoimpl.X.MessageStringOf(m) 1489 } 1490 1491 func (*UpdateDocumentRequest) ProtoMessage() {} 1492 1493 func (m *UpdateDocumentRequest) ProtoReflect() preflect.Message { 1494 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[10] 1495 if protoimpl.UnsafeEnabled && m != nil { 1496 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1497 if ms.LoadMessageInfo() == nil { 1498 ms.StoreMessageInfo(mi) 1499 } 1500 return ms 1501 } 1502 return mi.MessageOf(m) 1503 } 1504 1505 func (*UpdateDocumentRequest) GotenMessage() {} 1506 1507 // Deprecated, Use UpdateDocumentRequest.ProtoReflect.Descriptor instead. 1508 func (*UpdateDocumentRequest) Descriptor() ([]byte, []int) { 1509 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{10} 1510 } 1511 1512 func (m *UpdateDocumentRequest) Unmarshal(b []byte) error { 1513 return proto.Unmarshal(b, m) 1514 } 1515 1516 func (m *UpdateDocumentRequest) Marshal() ([]byte, error) { 1517 return proto.Marshal(m) 1518 } 1519 1520 func (m *UpdateDocumentRequest) MarshalJSON() ([]byte, error) { 1521 return protojson.MarshalOptions{}.Marshal(m) 1522 } 1523 1524 func (m *UpdateDocumentRequest) UnmarshalJSON(data []byte) error { 1525 return protojson.Unmarshal(data, m) 1526 } 1527 1528 func (m *UpdateDocumentRequest) GetDocument() *document.Document { 1529 if m != nil { 1530 return m.Document 1531 } 1532 return nil 1533 } 1534 1535 func (m *UpdateDocumentRequest) GetUpdateMask() *document.Document_FieldMask { 1536 if m != nil { 1537 return m.UpdateMask 1538 } 1539 return nil 1540 } 1541 1542 func (m *UpdateDocumentRequest) GetCas() *UpdateDocumentRequest_CAS { 1543 if m != nil { 1544 return m.Cas 1545 } 1546 return nil 1547 } 1548 1549 func (m *UpdateDocumentRequest) GetAllowMissing() bool { 1550 if m != nil { 1551 return m.AllowMissing 1552 } 1553 return false 1554 } 1555 1556 func (m *UpdateDocumentRequest) GetResponseMask() *UpdateDocumentRequest_ResponseMask { 1557 if m != nil { 1558 return m.ResponseMask 1559 } 1560 return nil 1561 } 1562 1563 func (m *UpdateDocumentRequest) SetDocument(fv *document.Document) { 1564 if m == nil { 1565 panic(fmt.Errorf("can't set %s on nil %s", "Document", "UpdateDocumentRequest")) 1566 } 1567 m.Document = fv 1568 } 1569 1570 func (m *UpdateDocumentRequest) SetUpdateMask(fv *document.Document_FieldMask) { 1571 if m == nil { 1572 panic(fmt.Errorf("can't set %s on nil %s", "UpdateMask", "UpdateDocumentRequest")) 1573 } 1574 m.UpdateMask = fv 1575 } 1576 1577 func (m *UpdateDocumentRequest) SetCas(fv *UpdateDocumentRequest_CAS) { 1578 if m == nil { 1579 panic(fmt.Errorf("can't set %s on nil %s", "Cas", "UpdateDocumentRequest")) 1580 } 1581 m.Cas = fv 1582 } 1583 1584 func (m *UpdateDocumentRequest) SetAllowMissing(fv bool) { 1585 if m == nil { 1586 panic(fmt.Errorf("can't set %s on nil %s", "AllowMissing", "UpdateDocumentRequest")) 1587 } 1588 m.AllowMissing = fv 1589 } 1590 1591 func (m *UpdateDocumentRequest) SetResponseMask(fv *UpdateDocumentRequest_ResponseMask) { 1592 if m == nil { 1593 panic(fmt.Errorf("can't set %s on nil %s", "ResponseMask", "UpdateDocumentRequest")) 1594 } 1595 m.ResponseMask = fv 1596 } 1597 1598 // A request message of the DeleteDocument method. 1599 type DeleteDocumentRequest struct { 1600 state protoimpl.MessageState 1601 sizeCache protoimpl.SizeCache 1602 unknownFields protoimpl.UnknownFields 1603 // Name of ntt.alerting.v1.Document 1604 Name *document.Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 1605 // If set to true, and the resource is not found, method will be successful 1606 // and will not return NotFound error. 1607 AllowMissing bool `protobuf:"varint,2,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"` 1608 } 1609 1610 func (m *DeleteDocumentRequest) Reset() { 1611 *m = DeleteDocumentRequest{} 1612 if protoimpl.UnsafeEnabled { 1613 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[11] 1614 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1615 ms.StoreMessageInfo(mi) 1616 } 1617 } 1618 1619 func (m *DeleteDocumentRequest) String() string { 1620 return protoimpl.X.MessageStringOf(m) 1621 } 1622 1623 func (*DeleteDocumentRequest) ProtoMessage() {} 1624 1625 func (m *DeleteDocumentRequest) ProtoReflect() preflect.Message { 1626 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[11] 1627 if protoimpl.UnsafeEnabled && m != nil { 1628 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1629 if ms.LoadMessageInfo() == nil { 1630 ms.StoreMessageInfo(mi) 1631 } 1632 return ms 1633 } 1634 return mi.MessageOf(m) 1635 } 1636 1637 func (*DeleteDocumentRequest) GotenMessage() {} 1638 1639 // Deprecated, Use DeleteDocumentRequest.ProtoReflect.Descriptor instead. 1640 func (*DeleteDocumentRequest) Descriptor() ([]byte, []int) { 1641 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{11} 1642 } 1643 1644 func (m *DeleteDocumentRequest) Unmarshal(b []byte) error { 1645 return proto.Unmarshal(b, m) 1646 } 1647 1648 func (m *DeleteDocumentRequest) Marshal() ([]byte, error) { 1649 return proto.Marshal(m) 1650 } 1651 1652 func (m *DeleteDocumentRequest) MarshalJSON() ([]byte, error) { 1653 return protojson.MarshalOptions{}.Marshal(m) 1654 } 1655 1656 func (m *DeleteDocumentRequest) UnmarshalJSON(data []byte) error { 1657 return protojson.Unmarshal(data, m) 1658 } 1659 1660 func (m *DeleteDocumentRequest) GetName() *document.Name { 1661 if m != nil { 1662 return m.Name 1663 } 1664 return nil 1665 } 1666 1667 func (m *DeleteDocumentRequest) GetAllowMissing() bool { 1668 if m != nil { 1669 return m.AllowMissing 1670 } 1671 return false 1672 } 1673 1674 func (m *DeleteDocumentRequest) SetName(fv *document.Name) { 1675 if m == nil { 1676 panic(fmt.Errorf("can't set %s on nil %s", "Name", "DeleteDocumentRequest")) 1677 } 1678 m.Name = fv 1679 } 1680 1681 func (m *DeleteDocumentRequest) SetAllowMissing(fv bool) { 1682 if m == nil { 1683 panic(fmt.Errorf("can't set %s on nil %s", "AllowMissing", "DeleteDocumentRequest")) 1684 } 1685 m.AllowMissing = fv 1686 } 1687 1688 // A request message of the SearchDocuments method. 1689 type SearchDocumentsRequest struct { 1690 state protoimpl.MessageState 1691 sizeCache protoimpl.SizeCache 1692 unknownFields protoimpl.UnknownFields 1693 // Parent name of ntt.alerting.v1.Document 1694 Parent *document.ParentName `protobuf:"bytes,1,opt,customtype=ParentName,name=parent,proto3" json:"parent,omitempty"` 1695 // Requested page size. Server may return fewer Documents than requested. 1696 // If unspecified, server will pick an appropriate default. 1697 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` 1698 // A token identifying a page of results the server should return. 1699 // Typically, this is the value of 1700 // SearchDocumentsResponse.next_page_token. 1701 PageToken *document.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` 1702 // Order By - 1703 // https://cloud.google.com/apis/design/design_patterns#list_pagination list 1704 // of field path with order directive, either 'asc' or 'desc'. If direction is 1705 // not provided, 'asc' is assumed. e.g. "state.nested_field asc, 1706 // state.something.else desc, theme" 1707 OrderBy *document.OrderBy `protobuf:"bytes,4,opt,customtype=OrderBy,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` 1708 // Filter - filter results by field criteria. Simplified SQL-like syntax with 1709 // following operators: 1710 // <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS 1711 // [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels 1712 // CONTAINS "severity:important" OR (state.last_error_time > 1713 // "2018-11-15T10:00:00Z" AND state.status = "ERROR")' 1714 Filter *document.Filter `protobuf:"bytes,5,opt,customtype=Filter,name=filter,proto3" json:"filter,omitempty"` 1715 // A list of extra fields to be obtained for each response item on top of 1716 // fields defined by request field view 1717 FieldMask *document.Document_FieldMask `protobuf:"bytes,6,opt,customtype=Document_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 1718 // View defines list of standard response fields present in response items. 1719 // Additional fields can be amended by request field field_mask 1720 View view.View `protobuf:"varint,7,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 1721 // Optional search phrase used to further filter results. 1722 Phrase string `protobuf:"bytes,8,opt,name=phrase,proto3" json:"phrase,omitempty"` 1723 } 1724 1725 func (m *SearchDocumentsRequest) Reset() { 1726 *m = SearchDocumentsRequest{} 1727 if protoimpl.UnsafeEnabled { 1728 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[12] 1729 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1730 ms.StoreMessageInfo(mi) 1731 } 1732 } 1733 1734 func (m *SearchDocumentsRequest) String() string { 1735 return protoimpl.X.MessageStringOf(m) 1736 } 1737 1738 func (*SearchDocumentsRequest) ProtoMessage() {} 1739 1740 func (m *SearchDocumentsRequest) ProtoReflect() preflect.Message { 1741 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[12] 1742 if protoimpl.UnsafeEnabled && m != nil { 1743 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1744 if ms.LoadMessageInfo() == nil { 1745 ms.StoreMessageInfo(mi) 1746 } 1747 return ms 1748 } 1749 return mi.MessageOf(m) 1750 } 1751 1752 func (*SearchDocumentsRequest) GotenMessage() {} 1753 1754 // Deprecated, Use SearchDocumentsRequest.ProtoReflect.Descriptor instead. 1755 func (*SearchDocumentsRequest) Descriptor() ([]byte, []int) { 1756 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{12} 1757 } 1758 1759 func (m *SearchDocumentsRequest) Unmarshal(b []byte) error { 1760 return proto.Unmarshal(b, m) 1761 } 1762 1763 func (m *SearchDocumentsRequest) Marshal() ([]byte, error) { 1764 return proto.Marshal(m) 1765 } 1766 1767 func (m *SearchDocumentsRequest) MarshalJSON() ([]byte, error) { 1768 return protojson.MarshalOptions{}.Marshal(m) 1769 } 1770 1771 func (m *SearchDocumentsRequest) UnmarshalJSON(data []byte) error { 1772 return protojson.Unmarshal(data, m) 1773 } 1774 1775 func (m *SearchDocumentsRequest) GetParent() *document.ParentName { 1776 if m != nil { 1777 return m.Parent 1778 } 1779 return nil 1780 } 1781 1782 func (m *SearchDocumentsRequest) GetPageSize() int32 { 1783 if m != nil { 1784 return m.PageSize 1785 } 1786 return int32(0) 1787 } 1788 1789 func (m *SearchDocumentsRequest) GetPageToken() *document.PagerCursor { 1790 if m != nil { 1791 return m.PageToken 1792 } 1793 return nil 1794 } 1795 1796 func (m *SearchDocumentsRequest) GetOrderBy() *document.OrderBy { 1797 if m != nil { 1798 return m.OrderBy 1799 } 1800 return nil 1801 } 1802 1803 func (m *SearchDocumentsRequest) GetFilter() *document.Filter { 1804 if m != nil { 1805 return m.Filter 1806 } 1807 return nil 1808 } 1809 1810 func (m *SearchDocumentsRequest) GetFieldMask() *document.Document_FieldMask { 1811 if m != nil { 1812 return m.FieldMask 1813 } 1814 return nil 1815 } 1816 1817 func (m *SearchDocumentsRequest) GetView() view.View { 1818 if m != nil { 1819 return m.View 1820 } 1821 return view.View_UNSPECIFIED 1822 } 1823 1824 func (m *SearchDocumentsRequest) GetPhrase() string { 1825 if m != nil { 1826 return m.Phrase 1827 } 1828 return "" 1829 } 1830 1831 func (m *SearchDocumentsRequest) SetParent(fv *document.ParentName) { 1832 if m == nil { 1833 panic(fmt.Errorf("can't set %s on nil %s", "Parent", "SearchDocumentsRequest")) 1834 } 1835 m.Parent = fv 1836 } 1837 1838 func (m *SearchDocumentsRequest) SetPageSize(fv int32) { 1839 if m == nil { 1840 panic(fmt.Errorf("can't set %s on nil %s", "PageSize", "SearchDocumentsRequest")) 1841 } 1842 m.PageSize = fv 1843 } 1844 1845 func (m *SearchDocumentsRequest) SetPageToken(fv *document.PagerCursor) { 1846 if m == nil { 1847 panic(fmt.Errorf("can't set %s on nil %s", "PageToken", "SearchDocumentsRequest")) 1848 } 1849 m.PageToken = fv 1850 } 1851 1852 func (m *SearchDocumentsRequest) SetOrderBy(fv *document.OrderBy) { 1853 if m == nil { 1854 panic(fmt.Errorf("can't set %s on nil %s", "OrderBy", "SearchDocumentsRequest")) 1855 } 1856 m.OrderBy = fv 1857 } 1858 1859 func (m *SearchDocumentsRequest) SetFilter(fv *document.Filter) { 1860 if m == nil { 1861 panic(fmt.Errorf("can't set %s on nil %s", "Filter", "SearchDocumentsRequest")) 1862 } 1863 m.Filter = fv 1864 } 1865 1866 func (m *SearchDocumentsRequest) SetFieldMask(fv *document.Document_FieldMask) { 1867 if m == nil { 1868 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "SearchDocumentsRequest")) 1869 } 1870 m.FieldMask = fv 1871 } 1872 1873 func (m *SearchDocumentsRequest) SetView(fv view.View) { 1874 if m == nil { 1875 panic(fmt.Errorf("can't set %s on nil %s", "View", "SearchDocumentsRequest")) 1876 } 1877 m.View = fv 1878 } 1879 1880 func (m *SearchDocumentsRequest) SetPhrase(fv string) { 1881 if m == nil { 1882 panic(fmt.Errorf("can't set %s on nil %s", "Phrase", "SearchDocumentsRequest")) 1883 } 1884 m.Phrase = fv 1885 } 1886 1887 // A response message of the SearchDocuments method. 1888 type SearchDocumentsResponse struct { 1889 state protoimpl.MessageState 1890 sizeCache protoimpl.SizeCache 1891 unknownFields protoimpl.UnknownFields 1892 // The list of Documents 1893 Documents []*document.Document `protobuf:"bytes,1,rep,name=documents,proto3" json:"documents,omitempty"` 1894 // A token to retrieve previous page of results. 1895 // 1896 // Pass this value in the SearchDocumentsRequest.page_token. 1897 PrevPageToken *document.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=prev_page_token,json=prevPageToken,proto3" json:"prev_page_token,omitempty"` 1898 // A token to retrieve next page of results. 1899 // 1900 // Pass this value in the SearchDocumentsRequest.page_token. 1901 NextPageToken *document.PagerCursor `protobuf:"bytes,4,opt,customtype=PagerCursor,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` 1902 // Current offset from the first page (0 if no page tokens were given). Page 1903 // index can be computed from offset and limit provided in a request 1904 CurrentOffset int32 `protobuf:"varint,5,opt,name=current_offset,json=currentOffset,proto3" json:"current_offset,omitempty"` 1905 // Number of total Documents across all pages. 1906 TotalResultsCount int32 `protobuf:"varint,6,opt,name=total_results_count,json=totalResultsCount,proto3" json:"total_results_count,omitempty"` 1907 } 1908 1909 func (m *SearchDocumentsResponse) Reset() { 1910 *m = SearchDocumentsResponse{} 1911 if protoimpl.UnsafeEnabled { 1912 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[13] 1913 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1914 ms.StoreMessageInfo(mi) 1915 } 1916 } 1917 1918 func (m *SearchDocumentsResponse) String() string { 1919 return protoimpl.X.MessageStringOf(m) 1920 } 1921 1922 func (*SearchDocumentsResponse) ProtoMessage() {} 1923 1924 func (m *SearchDocumentsResponse) ProtoReflect() preflect.Message { 1925 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[13] 1926 if protoimpl.UnsafeEnabled && m != nil { 1927 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1928 if ms.LoadMessageInfo() == nil { 1929 ms.StoreMessageInfo(mi) 1930 } 1931 return ms 1932 } 1933 return mi.MessageOf(m) 1934 } 1935 1936 func (*SearchDocumentsResponse) GotenMessage() {} 1937 1938 // Deprecated, Use SearchDocumentsResponse.ProtoReflect.Descriptor instead. 1939 func (*SearchDocumentsResponse) Descriptor() ([]byte, []int) { 1940 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{13} 1941 } 1942 1943 func (m *SearchDocumentsResponse) Unmarshal(b []byte) error { 1944 return proto.Unmarshal(b, m) 1945 } 1946 1947 func (m *SearchDocumentsResponse) Marshal() ([]byte, error) { 1948 return proto.Marshal(m) 1949 } 1950 1951 func (m *SearchDocumentsResponse) MarshalJSON() ([]byte, error) { 1952 return protojson.MarshalOptions{}.Marshal(m) 1953 } 1954 1955 func (m *SearchDocumentsResponse) UnmarshalJSON(data []byte) error { 1956 return protojson.Unmarshal(data, m) 1957 } 1958 1959 func (m *SearchDocumentsResponse) GetDocuments() []*document.Document { 1960 if m != nil { 1961 return m.Documents 1962 } 1963 return nil 1964 } 1965 1966 func (m *SearchDocumentsResponse) GetPrevPageToken() *document.PagerCursor { 1967 if m != nil { 1968 return m.PrevPageToken 1969 } 1970 return nil 1971 } 1972 1973 func (m *SearchDocumentsResponse) GetNextPageToken() *document.PagerCursor { 1974 if m != nil { 1975 return m.NextPageToken 1976 } 1977 return nil 1978 } 1979 1980 func (m *SearchDocumentsResponse) GetCurrentOffset() int32 { 1981 if m != nil { 1982 return m.CurrentOffset 1983 } 1984 return int32(0) 1985 } 1986 1987 func (m *SearchDocumentsResponse) GetTotalResultsCount() int32 { 1988 if m != nil { 1989 return m.TotalResultsCount 1990 } 1991 return int32(0) 1992 } 1993 1994 func (m *SearchDocumentsResponse) SetDocuments(fv []*document.Document) { 1995 if m == nil { 1996 panic(fmt.Errorf("can't set %s on nil %s", "Documents", "SearchDocumentsResponse")) 1997 } 1998 m.Documents = fv 1999 } 2000 2001 func (m *SearchDocumentsResponse) SetPrevPageToken(fv *document.PagerCursor) { 2002 if m == nil { 2003 panic(fmt.Errorf("can't set %s on nil %s", "PrevPageToken", "SearchDocumentsResponse")) 2004 } 2005 m.PrevPageToken = fv 2006 } 2007 2008 func (m *SearchDocumentsResponse) SetNextPageToken(fv *document.PagerCursor) { 2009 if m == nil { 2010 panic(fmt.Errorf("can't set %s on nil %s", "NextPageToken", "SearchDocumentsResponse")) 2011 } 2012 m.NextPageToken = fv 2013 } 2014 2015 func (m *SearchDocumentsResponse) SetCurrentOffset(fv int32) { 2016 if m == nil { 2017 panic(fmt.Errorf("can't set %s on nil %s", "CurrentOffset", "SearchDocumentsResponse")) 2018 } 2019 m.CurrentOffset = fv 2020 } 2021 2022 func (m *SearchDocumentsResponse) SetTotalResultsCount(fv int32) { 2023 if m == nil { 2024 panic(fmt.Errorf("can't set %s on nil %s", "TotalResultsCount", "SearchDocumentsResponse")) 2025 } 2026 m.TotalResultsCount = fv 2027 } 2028 2029 type WatchDocumentsResponse_PageTokenChange struct { 2030 state protoimpl.MessageState 2031 sizeCache protoimpl.SizeCache 2032 unknownFields protoimpl.UnknownFields 2033 // New token to retrieve previous page of results. 2034 PrevPageToken *document.PagerCursor `protobuf:"bytes,1,opt,customtype=PagerCursor,name=prev_page_token,json=prevPageToken,proto3" json:"prev_page_token,omitempty"` 2035 // New token to retrieve next page of results. 2036 NextPageToken *document.PagerCursor `protobuf:"bytes,2,opt,customtype=PagerCursor,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` 2037 } 2038 2039 func (m *WatchDocumentsResponse_PageTokenChange) Reset() { 2040 *m = WatchDocumentsResponse_PageTokenChange{} 2041 if protoimpl.UnsafeEnabled { 2042 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[14] 2043 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2044 ms.StoreMessageInfo(mi) 2045 } 2046 } 2047 2048 func (m *WatchDocumentsResponse_PageTokenChange) String() string { 2049 return protoimpl.X.MessageStringOf(m) 2050 } 2051 2052 func (*WatchDocumentsResponse_PageTokenChange) ProtoMessage() {} 2053 2054 func (m *WatchDocumentsResponse_PageTokenChange) ProtoReflect() preflect.Message { 2055 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[14] 2056 if protoimpl.UnsafeEnabled && m != nil { 2057 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2058 if ms.LoadMessageInfo() == nil { 2059 ms.StoreMessageInfo(mi) 2060 } 2061 return ms 2062 } 2063 return mi.MessageOf(m) 2064 } 2065 2066 func (*WatchDocumentsResponse_PageTokenChange) GotenMessage() {} 2067 2068 // Deprecated, Use WatchDocumentsResponse_PageTokenChange.ProtoReflect.Descriptor instead. 2069 func (*WatchDocumentsResponse_PageTokenChange) Descriptor() ([]byte, []int) { 2070 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{8, 0} 2071 } 2072 2073 func (m *WatchDocumentsResponse_PageTokenChange) Unmarshal(b []byte) error { 2074 return proto.Unmarshal(b, m) 2075 } 2076 2077 func (m *WatchDocumentsResponse_PageTokenChange) Marshal() ([]byte, error) { 2078 return proto.Marshal(m) 2079 } 2080 2081 func (m *WatchDocumentsResponse_PageTokenChange) MarshalJSON() ([]byte, error) { 2082 return protojson.MarshalOptions{}.Marshal(m) 2083 } 2084 2085 func (m *WatchDocumentsResponse_PageTokenChange) UnmarshalJSON(data []byte) error { 2086 return protojson.Unmarshal(data, m) 2087 } 2088 2089 func (m *WatchDocumentsResponse_PageTokenChange) GetPrevPageToken() *document.PagerCursor { 2090 if m != nil { 2091 return m.PrevPageToken 2092 } 2093 return nil 2094 } 2095 2096 func (m *WatchDocumentsResponse_PageTokenChange) GetNextPageToken() *document.PagerCursor { 2097 if m != nil { 2098 return m.NextPageToken 2099 } 2100 return nil 2101 } 2102 2103 func (m *WatchDocumentsResponse_PageTokenChange) SetPrevPageToken(fv *document.PagerCursor) { 2104 if m == nil { 2105 panic(fmt.Errorf("can't set %s on nil %s", "PrevPageToken", "WatchDocumentsResponse_PageTokenChange")) 2106 } 2107 m.PrevPageToken = fv 2108 } 2109 2110 func (m *WatchDocumentsResponse_PageTokenChange) SetNextPageToken(fv *document.PagerCursor) { 2111 if m == nil { 2112 panic(fmt.Errorf("can't set %s on nil %s", "NextPageToken", "WatchDocumentsResponse_PageTokenChange")) 2113 } 2114 m.NextPageToken = fv 2115 } 2116 2117 // ResponseMask allows client to reduce response message size. 2118 type CreateDocumentRequest_ResponseMask struct { 2119 state protoimpl.MessageState 2120 sizeCache protoimpl.SizeCache 2121 unknownFields protoimpl.UnknownFields 2122 // Types that are valid to be assigned to Masking: 2123 // *CreateDocumentRequest_ResponseMask_SkipEntireResponseBody 2124 // *CreateDocumentRequest_ResponseMask_BodyMask 2125 Masking isCreateDocumentRequest_ResponseMask_Masking `protobuf_oneof:"masking"` 2126 } 2127 2128 func (m *CreateDocumentRequest_ResponseMask) Reset() { 2129 *m = CreateDocumentRequest_ResponseMask{} 2130 if protoimpl.UnsafeEnabled { 2131 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[15] 2132 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2133 ms.StoreMessageInfo(mi) 2134 } 2135 } 2136 2137 func (m *CreateDocumentRequest_ResponseMask) String() string { 2138 return protoimpl.X.MessageStringOf(m) 2139 } 2140 2141 func (*CreateDocumentRequest_ResponseMask) ProtoMessage() {} 2142 2143 func (m *CreateDocumentRequest_ResponseMask) ProtoReflect() preflect.Message { 2144 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[15] 2145 if protoimpl.UnsafeEnabled && m != nil { 2146 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2147 if ms.LoadMessageInfo() == nil { 2148 ms.StoreMessageInfo(mi) 2149 } 2150 return ms 2151 } 2152 return mi.MessageOf(m) 2153 } 2154 2155 func (*CreateDocumentRequest_ResponseMask) GotenMessage() {} 2156 2157 // Deprecated, Use CreateDocumentRequest_ResponseMask.ProtoReflect.Descriptor instead. 2158 func (*CreateDocumentRequest_ResponseMask) Descriptor() ([]byte, []int) { 2159 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{9, 0} 2160 } 2161 2162 func (m *CreateDocumentRequest_ResponseMask) Unmarshal(b []byte) error { 2163 return proto.Unmarshal(b, m) 2164 } 2165 2166 func (m *CreateDocumentRequest_ResponseMask) Marshal() ([]byte, error) { 2167 return proto.Marshal(m) 2168 } 2169 2170 func (m *CreateDocumentRequest_ResponseMask) MarshalJSON() ([]byte, error) { 2171 return protojson.MarshalOptions{}.Marshal(m) 2172 } 2173 2174 func (m *CreateDocumentRequest_ResponseMask) UnmarshalJSON(data []byte) error { 2175 return protojson.Unmarshal(data, m) 2176 } 2177 2178 type isCreateDocumentRequest_ResponseMask_Masking interface { 2179 isCreateDocumentRequest_ResponseMask_Masking() 2180 } 2181 2182 type CreateDocumentRequest_ResponseMask_SkipEntireResponseBody struct { 2183 // If this flag has value true, then response will contain just empty 2184 // resource without any fields populated. 2185 SkipEntireResponseBody bool `protobuf:"varint,1,opt,name=skip_entire_response_body,json=skipEntireResponseBody,proto3,oneof"` 2186 } 2187 type CreateDocumentRequest_ResponseMask_BodyMask struct { 2188 // If this field is populated, then resource in response will contain only 2189 // specific fields. 2190 BodyMask *document.Document_FieldMask `protobuf:"bytes,2,opt,customtype=Document_FieldMask,name=body_mask,json=bodyMask,proto3,oneof"` 2191 } 2192 2193 func (*CreateDocumentRequest_ResponseMask_SkipEntireResponseBody) isCreateDocumentRequest_ResponseMask_Masking() { 2194 } 2195 func (*CreateDocumentRequest_ResponseMask_BodyMask) isCreateDocumentRequest_ResponseMask_Masking() {} 2196 func (m *CreateDocumentRequest_ResponseMask) GetMasking() isCreateDocumentRequest_ResponseMask_Masking { 2197 if m != nil { 2198 return m.Masking 2199 } 2200 return nil 2201 } 2202 func (m *CreateDocumentRequest_ResponseMask) GetSkipEntireResponseBody() bool { 2203 if x, ok := m.GetMasking().(*CreateDocumentRequest_ResponseMask_SkipEntireResponseBody); ok { 2204 return x.SkipEntireResponseBody 2205 } 2206 return false 2207 } 2208 func (m *CreateDocumentRequest_ResponseMask) GetBodyMask() *document.Document_FieldMask { 2209 if x, ok := m.GetMasking().(*CreateDocumentRequest_ResponseMask_BodyMask); ok { 2210 return x.BodyMask 2211 } 2212 return nil 2213 } 2214 func (m *CreateDocumentRequest_ResponseMask) SetMasking(ofv isCreateDocumentRequest_ResponseMask_Masking) { 2215 if m == nil { 2216 panic(fmt.Errorf("can't set %s on nil %s", "isCreateDocumentRequest_ResponseMask_Masking", "CreateDocumentRequest_ResponseMask")) 2217 } 2218 m.Masking = ofv 2219 } 2220 func (m *CreateDocumentRequest_ResponseMask) SetSkipEntireResponseBody(fv bool) { 2221 m.SetMasking(&CreateDocumentRequest_ResponseMask_SkipEntireResponseBody{SkipEntireResponseBody: fv}) 2222 } 2223 func (m *CreateDocumentRequest_ResponseMask) SetBodyMask(fv *document.Document_FieldMask) { 2224 m.SetMasking(&CreateDocumentRequest_ResponseMask_BodyMask{BodyMask: fv}) 2225 } 2226 2227 // CAS - Compare and Swap. This object is used if user wants to make update 2228 // conditional based upon previous resource version. 2229 type UpdateDocumentRequest_CAS struct { 2230 state protoimpl.MessageState 2231 sizeCache protoimpl.SizeCache 2232 unknownFields protoimpl.UnknownFields 2233 // Conditional desired state of a resource before update. 2234 ConditionalState *document.Document `protobuf:"bytes,1,opt,name=conditional_state,json=conditionalState,proto3" json:"conditional_state,omitempty"` 2235 // Field paths from conditional state of resource server should check and 2236 // compare. 2237 FieldMask *document.Document_FieldMask `protobuf:"bytes,2,opt,customtype=Document_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 2238 } 2239 2240 func (m *UpdateDocumentRequest_CAS) Reset() { 2241 *m = UpdateDocumentRequest_CAS{} 2242 if protoimpl.UnsafeEnabled { 2243 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[16] 2244 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2245 ms.StoreMessageInfo(mi) 2246 } 2247 } 2248 2249 func (m *UpdateDocumentRequest_CAS) String() string { 2250 return protoimpl.X.MessageStringOf(m) 2251 } 2252 2253 func (*UpdateDocumentRequest_CAS) ProtoMessage() {} 2254 2255 func (m *UpdateDocumentRequest_CAS) ProtoReflect() preflect.Message { 2256 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[16] 2257 if protoimpl.UnsafeEnabled && m != nil { 2258 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2259 if ms.LoadMessageInfo() == nil { 2260 ms.StoreMessageInfo(mi) 2261 } 2262 return ms 2263 } 2264 return mi.MessageOf(m) 2265 } 2266 2267 func (*UpdateDocumentRequest_CAS) GotenMessage() {} 2268 2269 // Deprecated, Use UpdateDocumentRequest_CAS.ProtoReflect.Descriptor instead. 2270 func (*UpdateDocumentRequest_CAS) Descriptor() ([]byte, []int) { 2271 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{10, 0} 2272 } 2273 2274 func (m *UpdateDocumentRequest_CAS) Unmarshal(b []byte) error { 2275 return proto.Unmarshal(b, m) 2276 } 2277 2278 func (m *UpdateDocumentRequest_CAS) Marshal() ([]byte, error) { 2279 return proto.Marshal(m) 2280 } 2281 2282 func (m *UpdateDocumentRequest_CAS) MarshalJSON() ([]byte, error) { 2283 return protojson.MarshalOptions{}.Marshal(m) 2284 } 2285 2286 func (m *UpdateDocumentRequest_CAS) UnmarshalJSON(data []byte) error { 2287 return protojson.Unmarshal(data, m) 2288 } 2289 2290 func (m *UpdateDocumentRequest_CAS) GetConditionalState() *document.Document { 2291 if m != nil { 2292 return m.ConditionalState 2293 } 2294 return nil 2295 } 2296 2297 func (m *UpdateDocumentRequest_CAS) GetFieldMask() *document.Document_FieldMask { 2298 if m != nil { 2299 return m.FieldMask 2300 } 2301 return nil 2302 } 2303 2304 func (m *UpdateDocumentRequest_CAS) SetConditionalState(fv *document.Document) { 2305 if m == nil { 2306 panic(fmt.Errorf("can't set %s on nil %s", "ConditionalState", "UpdateDocumentRequest_CAS")) 2307 } 2308 m.ConditionalState = fv 2309 } 2310 2311 func (m *UpdateDocumentRequest_CAS) SetFieldMask(fv *document.Document_FieldMask) { 2312 if m == nil { 2313 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "UpdateDocumentRequest_CAS")) 2314 } 2315 m.FieldMask = fv 2316 } 2317 2318 // ResponseMask allows client to reduce response message size. 2319 type UpdateDocumentRequest_ResponseMask struct { 2320 state protoimpl.MessageState 2321 sizeCache protoimpl.SizeCache 2322 unknownFields protoimpl.UnknownFields 2323 // Types that are valid to be assigned to Masking: 2324 // *UpdateDocumentRequest_ResponseMask_SkipEntireResponseBody 2325 // *UpdateDocumentRequest_ResponseMask_UpdatedFieldsOnly 2326 // *UpdateDocumentRequest_ResponseMask_BodyMask 2327 Masking isUpdateDocumentRequest_ResponseMask_Masking `protobuf_oneof:"masking"` 2328 } 2329 2330 func (m *UpdateDocumentRequest_ResponseMask) Reset() { 2331 *m = UpdateDocumentRequest_ResponseMask{} 2332 if protoimpl.UnsafeEnabled { 2333 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[17] 2334 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2335 ms.StoreMessageInfo(mi) 2336 } 2337 } 2338 2339 func (m *UpdateDocumentRequest_ResponseMask) String() string { 2340 return protoimpl.X.MessageStringOf(m) 2341 } 2342 2343 func (*UpdateDocumentRequest_ResponseMask) ProtoMessage() {} 2344 2345 func (m *UpdateDocumentRequest_ResponseMask) ProtoReflect() preflect.Message { 2346 mi := &edgelq_alerting_proto_v1_document_service_proto_msgTypes[17] 2347 if protoimpl.UnsafeEnabled && m != nil { 2348 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2349 if ms.LoadMessageInfo() == nil { 2350 ms.StoreMessageInfo(mi) 2351 } 2352 return ms 2353 } 2354 return mi.MessageOf(m) 2355 } 2356 2357 func (*UpdateDocumentRequest_ResponseMask) GotenMessage() {} 2358 2359 // Deprecated, Use UpdateDocumentRequest_ResponseMask.ProtoReflect.Descriptor instead. 2360 func (*UpdateDocumentRequest_ResponseMask) Descriptor() ([]byte, []int) { 2361 return edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP(), []int{10, 1} 2362 } 2363 2364 func (m *UpdateDocumentRequest_ResponseMask) Unmarshal(b []byte) error { 2365 return proto.Unmarshal(b, m) 2366 } 2367 2368 func (m *UpdateDocumentRequest_ResponseMask) Marshal() ([]byte, error) { 2369 return proto.Marshal(m) 2370 } 2371 2372 func (m *UpdateDocumentRequest_ResponseMask) MarshalJSON() ([]byte, error) { 2373 return protojson.MarshalOptions{}.Marshal(m) 2374 } 2375 2376 func (m *UpdateDocumentRequest_ResponseMask) UnmarshalJSON(data []byte) error { 2377 return protojson.Unmarshal(data, m) 2378 } 2379 2380 type isUpdateDocumentRequest_ResponseMask_Masking interface { 2381 isUpdateDocumentRequest_ResponseMask_Masking() 2382 } 2383 2384 type UpdateDocumentRequest_ResponseMask_SkipEntireResponseBody struct { 2385 // If this flag has value true, then response will contain just empty 2386 // resource without any fields populated. Field body_mask is ignored if 2387 // set. 2388 SkipEntireResponseBody bool `protobuf:"varint,1,opt,name=skip_entire_response_body,json=skipEntireResponseBody,proto3,oneof"` 2389 } 2390 type UpdateDocumentRequest_ResponseMask_UpdatedFieldsOnly struct { 2391 // Include all fields that were actually updated during processing. Note 2392 // this may be larger than update mask if some fields were computed 2393 // additionally. Name is added as well. 2394 UpdatedFieldsOnly bool `protobuf:"varint,2,opt,name=updated_fields_only,json=updatedFieldsOnly,proto3,oneof"` 2395 } 2396 type UpdateDocumentRequest_ResponseMask_BodyMask struct { 2397 // If this field is populated, then resource in response will contain only 2398 // specific fields. If skip_entire_response_body is true, this field is 2399 // ignored. 2400 BodyMask *document.Document_FieldMask `protobuf:"bytes,3,opt,customtype=Document_FieldMask,name=body_mask,json=bodyMask,proto3,oneof"` 2401 } 2402 2403 func (*UpdateDocumentRequest_ResponseMask_SkipEntireResponseBody) isUpdateDocumentRequest_ResponseMask_Masking() { 2404 } 2405 func (*UpdateDocumentRequest_ResponseMask_UpdatedFieldsOnly) isUpdateDocumentRequest_ResponseMask_Masking() { 2406 } 2407 func (*UpdateDocumentRequest_ResponseMask_BodyMask) isUpdateDocumentRequest_ResponseMask_Masking() {} 2408 func (m *UpdateDocumentRequest_ResponseMask) GetMasking() isUpdateDocumentRequest_ResponseMask_Masking { 2409 if m != nil { 2410 return m.Masking 2411 } 2412 return nil 2413 } 2414 func (m *UpdateDocumentRequest_ResponseMask) GetSkipEntireResponseBody() bool { 2415 if x, ok := m.GetMasking().(*UpdateDocumentRequest_ResponseMask_SkipEntireResponseBody); ok { 2416 return x.SkipEntireResponseBody 2417 } 2418 return false 2419 } 2420 func (m *UpdateDocumentRequest_ResponseMask) GetUpdatedFieldsOnly() bool { 2421 if x, ok := m.GetMasking().(*UpdateDocumentRequest_ResponseMask_UpdatedFieldsOnly); ok { 2422 return x.UpdatedFieldsOnly 2423 } 2424 return false 2425 } 2426 func (m *UpdateDocumentRequest_ResponseMask) GetBodyMask() *document.Document_FieldMask { 2427 if x, ok := m.GetMasking().(*UpdateDocumentRequest_ResponseMask_BodyMask); ok { 2428 return x.BodyMask 2429 } 2430 return nil 2431 } 2432 func (m *UpdateDocumentRequest_ResponseMask) SetMasking(ofv isUpdateDocumentRequest_ResponseMask_Masking) { 2433 if m == nil { 2434 panic(fmt.Errorf("can't set %s on nil %s", "isUpdateDocumentRequest_ResponseMask_Masking", "UpdateDocumentRequest_ResponseMask")) 2435 } 2436 m.Masking = ofv 2437 } 2438 func (m *UpdateDocumentRequest_ResponseMask) SetSkipEntireResponseBody(fv bool) { 2439 m.SetMasking(&UpdateDocumentRequest_ResponseMask_SkipEntireResponseBody{SkipEntireResponseBody: fv}) 2440 } 2441 func (m *UpdateDocumentRequest_ResponseMask) SetUpdatedFieldsOnly(fv bool) { 2442 m.SetMasking(&UpdateDocumentRequest_ResponseMask_UpdatedFieldsOnly{UpdatedFieldsOnly: fv}) 2443 } 2444 func (m *UpdateDocumentRequest_ResponseMask) SetBodyMask(fv *document.Document_FieldMask) { 2445 m.SetMasking(&UpdateDocumentRequest_ResponseMask_BodyMask{BodyMask: fv}) 2446 } 2447 2448 var edgelq_alerting_proto_v1_document_service_proto preflect.FileDescriptor 2449 2450 var edgelq_alerting_proto_v1_document_service_proto_rawDesc = []byte{ 2451 0x0a, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 2452 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 2453 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 2454 0x6f, 0x12, 0x0f, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 2455 0x76, 0x31, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 2456 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 2457 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69, 2458 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 2459 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x61, 0x6c, 2460 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 2461 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x67, 2462 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 0x65, 2463 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x74, 2464 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x74, 0x65, 0x6e, 2465 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x65, 0x72, 2466 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x74, 0x65, 2467 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x6c, 2468 0x69, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 2469 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 2470 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x24, 0x67, 0x6f, 0x74, 0x65, 0x6e, 2471 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6d, 0x75, 0x6c, 2472 0x74, 0x69, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 2473 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 2474 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 2475 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 2476 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 2477 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 2478 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 2479 0x16, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x76, 0x69, 0x65, 2480 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x74, 2481 0x79, 0x70, 0x65, 0x73, 0x2f, 0x77, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 2482 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x27, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x61, 0x6c, 2483 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 2484 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e, 2485 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2f, 2486 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 2487 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xae, 2488 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 2489 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 2490 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x0a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 2491 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x4b, 0x0a, 0x0a, 0x66, 2492 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 2493 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 2494 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 2495 0x0c, 0x32, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x66, 2496 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 2497 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 2498 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x22, 2499 0xbc, 0x01, 0x0a, 0x18, 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x44, 0x6f, 0x63, 0x75, 2500 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x05, 2501 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 2502 0x0c, 0x0a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x6e, 2503 0x61, 0x6d, 0x65, 0x73, 0x12, 0x4b, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 2504 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 2505 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 2506 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x32, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 2507 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 2508 0x6b, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 2509 0x11, 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 2510 0x65, 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x22, 0x80, 2511 0x01, 0x0a, 0x19, 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2512 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x37, 0x0a, 0x09, 2513 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 2514 0x19, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 2515 0x31, 0x2e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x64, 0x6f, 0x63, 0x75, 2516 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x2a, 0x0a, 0x07, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 2517 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x0a, 0x0a, 0x0a, 0x08, 2518 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 2519 0x67, 0x22, 0x93, 0x03, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 2520 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x06, 0x70, 0x61, 2521 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 2522 0x3a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x61, 2523 0x72, 0x65, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 2524 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x08, 0xca, 0xc6, 0x27, 0x04, 0x12, 0x02, 0x2a, 2525 0x00, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x2f, 0x0a, 0x0a, 0x70, 2526 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 2527 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 2528 0x74, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2b, 0x0a, 0x08, 2529 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 2530 0xb2, 0xda, 0x21, 0x0c, 0x2a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 2531 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x12, 0x28, 0x0a, 0x06, 0x66, 0x69, 0x6c, 2532 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x1a, 2533 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x66, 0x69, 0x6c, 2534 0x74, 0x65, 0x72, 0x12, 0x4b, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 2535 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 2536 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 2537 0x61, 0x73, 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x32, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 2538 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 2539 0x12, 0x25, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 2540 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x65, 2541 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x12, 0x2e, 0x0a, 0x13, 0x69, 0x6e, 0x63, 0x6c, 0x75, 2542 0x64, 0x65, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x08, 2543 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x50, 0x61, 0x67, 2544 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x9b, 0x02, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 2545 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 2546 0x65, 0x12, 0x37, 0x0a, 0x09, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 2547 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 2548 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 2549 0x09, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x38, 0x0a, 0x0f, 0x70, 0x72, 2550 0x65, 0x76, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 2551 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 2552 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0d, 0x70, 0x72, 0x65, 0x76, 0x50, 0x61, 0x67, 0x65, 0x54, 2553 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x38, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 2554 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 2555 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 2556 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x25, 2557 0x0a, 0x0e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 2558 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4f, 2559 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x2e, 0x0a, 0x13, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 2560 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 2561 0x28, 0x05, 0x52, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 2562 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xb0, 0x01, 0x0a, 0x14, 0x57, 0x61, 0x74, 0x63, 0x68, 0x44, 2563 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 2564 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 2565 0x21, 0x0c, 0x0a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x04, 2566 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x4b, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 2567 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 2568 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 2569 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x32, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 2570 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 2571 0x6b, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 2572 0x11, 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 2573 0x65, 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x22, 0x50, 0x0a, 0x15, 0x57, 0x61, 0x74, 0x63, 2574 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 2575 0x65, 0x12, 0x37, 0x0a, 0x06, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 2576 0x0b, 0x32, 0x1f, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 2577 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 2578 0x67, 0x65, 0x52, 0x06, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x22, 0xa8, 0x04, 0x0a, 0x15, 0x57, 2579 0x61, 0x74, 0x63, 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 2580 0x75, 0x65, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 2581 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 2582 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 2583 0x12, 0x28, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 2584 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x3a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 2585 0x6e, 0x74, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x09, 0x70, 0x61, 2586 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x08, 0xca, 2587 0xc6, 0x27, 0x04, 0x12, 0x02, 0x2a, 0x00, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 2588 0x65, 0x12, 0x2f, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 2589 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 0x08, 0x44, 2590 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 2591 0x65, 0x6e, 0x12, 0x2b, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x18, 0x04, 2592 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x2a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 2593 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x12, 2594 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 2595 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x54, 0x6f, 0x6b, 2596 0x65, 0x6e, 0x12, 0x3f, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x74, 2597 0x69, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 2598 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 2599 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x54, 2600 0x69, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 2601 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x1a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 2602 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x4b, 0x0a, 2603 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 2604 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 2605 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x10, 0xb2, 2606 0xda, 0x21, 0x0c, 0x32, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 2607 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x69, 2608 0x65, 0x77, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 2609 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 2610 0x77, 0x12, 0x32, 0x0a, 0x0e, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x5f, 0x73, 2611 0x69, 0x7a, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x42, 0x0c, 0xca, 0xc6, 0x27, 0x08, 0x12, 2612 0x06, 0x1a, 0x02, 0x08, 0x64, 0x2a, 0x00, 0x52, 0x0c, 0x6d, 0x61, 0x78, 0x43, 0x68, 0x75, 0x6e, 2613 0x6b, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x80, 0x04, 0x0a, 0x16, 0x57, 0x61, 0x74, 0x63, 0x68, 0x44, 2614 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 2615 0x12, 0x4a, 0x0a, 0x10, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x68, 0x61, 2616 0x6e, 0x67, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6e, 0x74, 0x74, 2617 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x6f, 0x63, 2618 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x0f, 0x64, 0x6f, 0x63, 2619 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 2620 0x69, 0x73, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 2621 0x52, 0x09, 0x69, 0x73, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x63, 0x0a, 0x11, 0x70, 2622 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 2623 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 2624 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x44, 0x6f, 2625 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 2626 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 2627 0x0f, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 2628 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 2629 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x54, 0x6f, 2630 0x6b, 0x65, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x5f, 2631 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x73, 0x6e, 0x61, 0x70, 2632 0x73, 0x68, 0x6f, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x73, 2633 0x6f, 0x66, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x65, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 2634 0x0b, 0x69, 0x73, 0x53, 0x6f, 0x66, 0x74, 0x52, 0x65, 0x73, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x0d, 2635 0x69, 0x73, 0x5f, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x65, 0x74, 0x18, 0x08, 0x20, 2636 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x48, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x65, 0x74, 2637 0x1a, 0x85, 0x01, 0x0a, 0x0f, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x43, 0x68, 2638 0x61, 0x6e, 0x67, 0x65, 0x12, 0x38, 0x0a, 0x0f, 0x70, 0x72, 0x65, 0x76, 0x5f, 0x70, 0x61, 0x67, 2639 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 2640 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 2641 0x0d, 0x70, 0x72, 0x65, 0x76, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x38, 2642 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 2643 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 2644 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 2645 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x86, 0x03, 0x0a, 0x15, 0x43, 0x72, 0x65, 2646 0x61, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 2647 0x73, 0x74, 0x12, 0x28, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 2648 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x3a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 2649 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x43, 0x0a, 0x08, 2650 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 2651 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 2652 0x2e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x0c, 0xc8, 0xd5, 0x22, 0x01, 0xca, 2653 0xc6, 0x27, 0x04, 0x62, 0x02, 0x08, 0x01, 0x52, 0x08, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 2654 0x74, 0x12, 0x58, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x6d, 0x61, 2655 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 2656 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 2657 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 2658 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0c, 0x72, 2659 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x1a, 0xa3, 0x01, 0x0a, 0x0c, 2660 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x3b, 0x0a, 0x19, 2661 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x70, 2662 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 2663 0x00, 0x52, 0x16, 0x73, 0x6b, 0x69, 0x70, 0x45, 0x6e, 0x74, 0x69, 0x72, 0x65, 0x52, 0x65, 0x73, 2664 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x4b, 0x0a, 0x09, 0x62, 0x6f, 0x64, 2665 0x79, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 2666 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 2667 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x32, 0x0a, 2668 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x08, 0x62, 0x6f, 2669 0x64, 0x79, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x09, 0x0a, 0x07, 0x6d, 0x61, 0x73, 0x6b, 0x69, 0x6e, 2670 0x67, 0x22, 0xe7, 0x05, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 2671 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x43, 0x0a, 0x08, 0x64, 2672 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 2673 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 2674 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x0c, 0xc8, 0xd5, 0x22, 0x01, 0xca, 0xc6, 2675 0x27, 0x04, 0x62, 0x02, 0x08, 0x01, 0x52, 0x08, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 2676 0x12, 0x4d, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 2677 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 2678 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 2679 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x32, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2680 0x65, 0x6e, 0x74, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 2681 0x3c, 0x0a, 0x03, 0x63, 0x61, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x6e, 2682 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x55, 2683 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 2684 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x41, 0x53, 0x52, 0x03, 0x63, 0x61, 0x73, 0x12, 0x23, 0x0a, 2685 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x18, 0x05, 2686 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x73, 0x73, 0x69, 2687 0x6e, 0x67, 0x12, 0x58, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x6d, 2688 0x61, 0x73, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 2689 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 2690 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 2691 0x74, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0c, 2692 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x1a, 0xa4, 0x01, 0x0a, 2693 0x03, 0x43, 0x41, 0x53, 0x12, 0x50, 0x0a, 0x11, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 2694 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 2695 0x19, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 2696 0x31, 0x2e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x08, 0xca, 0xc6, 0x27, 0x04, 2697 0x62, 0x02, 0x10, 0x01, 0x52, 0x10, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 2698 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 2699 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 2700 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 2701 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x32, 0x0a, 0x0a, 0x08, 2702 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 2703 0x61, 0x73, 0x6b, 0x1a, 0xd5, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 2704 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x3b, 0x0a, 0x19, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x65, 0x6e, 0x74, 2705 0x69, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x62, 0x6f, 0x64, 2706 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x16, 0x73, 0x6b, 0x69, 0x70, 0x45, 2707 0x6e, 0x74, 0x69, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x6f, 0x64, 2708 0x79, 0x12, 0x30, 0x0a, 0x13, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 2709 0x6c, 0x64, 0x73, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 2710 0x52, 0x11, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x4f, 2711 0x6e, 0x6c, 0x79, 0x12, 0x4b, 0x0a, 0x09, 0x62, 0x6f, 0x64, 0x79, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 2712 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 2713 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 2714 0x73, 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x32, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 2715 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x08, 0x62, 0x6f, 0x64, 0x79, 0x4d, 0x61, 0x73, 0x6b, 2716 0x42, 0x09, 0x0a, 0x07, 0x6d, 0x61, 0x73, 0x6b, 0x69, 0x6e, 0x67, 0x22, 0x62, 0x0a, 0x15, 0x44, 2717 0x65, 0x6c, 0x65, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 2718 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 2719 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x0a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 2720 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 2721 0x6c, 0x6f, 0x77, 0x5f, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 2722 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x22, 2723 0xfd, 0x02, 0x0a, 0x16, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 2724 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x06, 0x70, 0x61, 2725 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 2726 0x3a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x61, 2727 0x72, 0x65, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 2728 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x08, 0xca, 0xc6, 0x27, 0x04, 0x12, 0x02, 0x2a, 2729 0x00, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x2f, 0x0a, 0x0a, 0x70, 2730 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 2731 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 2732 0x74, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2b, 0x0a, 0x08, 2733 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 2734 0xb2, 0xda, 0x21, 0x0c, 0x2a, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 2735 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x12, 0x28, 0x0a, 0x06, 0x66, 0x69, 0x6c, 2736 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x1a, 2737 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x66, 0x69, 0x6c, 2738 0x74, 0x65, 0x72, 0x12, 0x4b, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 2739 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 2740 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 2741 0x61, 0x73, 0x6b, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x32, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 2742 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 2743 0x12, 0x25, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 2744 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x65, 2745 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x68, 0x72, 0x61, 0x73, 2746 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x68, 0x72, 0x61, 0x73, 0x65, 0x22, 2747 0x9d, 0x02, 0x0a, 0x17, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 2748 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x37, 0x0a, 0x09, 0x64, 2749 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 2750 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 2751 0x2e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09, 0x64, 0x6f, 0x63, 0x75, 0x6d, 2752 0x65, 0x6e, 0x74, 0x73, 0x12, 0x38, 0x0a, 0x0f, 0x70, 0x72, 0x65, 0x76, 0x5f, 0x70, 0x61, 0x67, 2753 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 2754 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 2755 0x0d, 0x70, 0x72, 0x65, 0x76, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x38, 2756 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 2757 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x10, 0xb2, 0xda, 0x21, 0x0c, 0x22, 0x0a, 0x0a, 2758 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 2759 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x63, 0x75, 0x72, 0x72, 2760 0x65, 0x6e, 0x74, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 2761 0x52, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 2762 0x2e, 0x0a, 0x13, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 2763 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x74, 0x6f, 2764 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x32, 2765 0xa5, 0x0e, 0x0a, 0x0f, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 2766 0x69, 0x63, 0x65, 0x12, 0xa5, 0x01, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2767 0x65, 0x6e, 0x74, 0x12, 0x23, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 2768 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 2769 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 2770 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2771 0x65, 0x6e, 0x74, 0x22, 0x56, 0x82, 0xdb, 0x21, 0x1f, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2772 0x65, 0x6e, 0x74, 0x12, 0x03, 0x67, 0x65, 0x74, 0x2a, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 2773 0x32, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 0x82, 0xd3, 2774 0xe4, 0x93, 0x02, 0x23, 0x12, 0x21, 0x2f, 0x76, 0x31, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 2775 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 2776 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x8a, 0xcc, 0x26, 0x00, 0x12, 0xc4, 0x01, 0x0a, 0x11, 2777 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 2778 0x73, 0x12, 0x29, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 2779 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x44, 0x6f, 0x63, 0x75, 2780 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x6e, 2781 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x42, 2782 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 2783 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0x82, 0xdb, 0x21, 0x2c, 0x0a, 0x08, 2784 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x08, 0x62, 0x61, 0x74, 0x63, 0x68, 0x47, 2785 0x65, 0x74, 0x20, 0x01, 0x2a, 0x07, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x32, 0x0b, 0x12, 2786 0x09, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 2787 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x12, 0x16, 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x6f, 0x63, 0x75, 2788 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x3a, 0x62, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x8a, 0xcc, 2789 0x26, 0x00, 0x12, 0xc2, 0x01, 0x0a, 0x0d, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2790 0x65, 0x6e, 0x74, 0x73, 0x12, 0x25, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 2791 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2792 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x6e, 0x74, 2793 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 2794 0x73, 0x74, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 2795 0x6e, 0x73, 0x65, 0x22, 0x62, 0x82, 0xdb, 0x21, 0x2b, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2796 0x65, 0x6e, 0x74, 0x12, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x2a, 0x08, 0x1a, 2797 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x32, 0x0b, 0x12, 0x09, 0x64, 0x6f, 0x63, 0x75, 0x6d, 2798 0x65, 0x6e, 0x74, 0x73, 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 2799 0x12, 0x21, 0x2f, 0x76, 0x31, 0x2f, 0x7b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x3d, 0x70, 0x72, 2800 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 2801 0x6e, 0x74, 0x73, 0x8a, 0xcc, 0x26, 0x00, 0x12, 0xc2, 0x01, 0x0a, 0x0d, 0x57, 0x61, 0x74, 0x63, 2802 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x25, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 2803 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x61, 0x74, 0x63, 2804 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 2805 0x1a, 0x26, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 2806 0x76, 0x31, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 2807 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x60, 0x82, 0xdb, 0x21, 0x23, 0x0a, 0x08, 2808 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x05, 0x77, 0x61, 0x74, 0x63, 0x68, 0x2a, 2809 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x32, 0x08, 0x12, 0x06, 0x63, 0x68, 0x61, 0x6e, 0x67, 2810 0x65, 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x22, 0x27, 0x2f, 2811 0x76, 0x31, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 2812 0x73, 0x2f, 0x2a, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 2813 0x3a, 0x77, 0x61, 0x74, 0x63, 0x68, 0x8a, 0xcc, 0x26, 0x00, 0x30, 0x01, 0x12, 0xd5, 0x01, 0x0a, 2814 0x0e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 2815 0x26, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 2816 0x31, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 2817 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 2818 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x44, 2819 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 2820 0x22, 0x70, 0x82, 0xdb, 0x21, 0x33, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 2821 0x12, 0x05, 0x77, 0x61, 0x74, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x2a, 0x08, 0x1a, 0x06, 0x70, 2822 0x61, 0x72, 0x65, 0x6e, 0x74, 0x32, 0x12, 0x12, 0x10, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 2823 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 0x82, 2824 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x22, 0x27, 0x2f, 0x76, 0x31, 0x2f, 0x7b, 0x70, 0x61, 0x72, 0x65, 2825 0x6e, 0x74, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x2f, 0x64, 2826 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x3a, 0x77, 0x61, 0x74, 0x63, 0x68, 0x8a, 0xcc, 2827 0x26, 0x00, 0x30, 0x01, 0x12, 0xc8, 0x01, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 2828 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x26, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 2829 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 2830 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 2831 0x19, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 2832 0x31, 0x2e, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x73, 0x82, 0xdb, 0x21, 0x30, 2833 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x06, 0x63, 0x72, 0x65, 0x61, 2834 0x74, 0x65, 0x18, 0x01, 0x2a, 0x12, 0x12, 0x08, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 2835 0x1a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x32, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 2836 0xa2, 0xdc, 0x21, 0x02, 0x10, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2d, 0x3a, 0x08, 0x64, 0x6f, 2837 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x21, 0x2f, 0x76, 0x31, 0x2f, 0x7b, 0x70, 0x61, 0x72, 2838 0x65, 0x6e, 0x74, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x2f, 2839 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x8a, 0xcc, 0x26, 0x02, 0x10, 0x01, 0x12, 2840 0xc7, 0x01, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 2841 0x6e, 0x74, 0x12, 0x26, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 2842 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 2843 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x6e, 0x74, 0x74, 2844 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x6f, 0x63, 2845 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x72, 0x82, 0xdb, 0x21, 0x26, 0x0a, 0x08, 0x44, 0x6f, 0x63, 2846 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2a, 0x0a, 0x12, 2847 0x08, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x32, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 2848 0x65, 0xa2, 0xdc, 0x21, 0x02, 0x10, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x36, 0x3a, 0x08, 0x64, 2849 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x1a, 0x2a, 0x2f, 0x76, 0x31, 0x2f, 0x7b, 0x64, 0x6f, 2850 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 2851 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 2852 0x2f, 0x2a, 0x7d, 0x8a, 0xcc, 0x26, 0x02, 0x10, 0x01, 0x12, 0xa5, 0x01, 0x0a, 0x0e, 0x44, 0x65, 2853 0x6c, 0x65, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x26, 0x2e, 0x6e, 2854 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x44, 2855 0x65, 0x6c, 0x65, 0x74, 0x65, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 2856 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 2857 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x53, 0x82, 0xdb, 2858 0x21, 0x1a, 0x0a, 0x08, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x06, 0x64, 0x65, 2859 0x6c, 0x65, 0x74, 0x65, 0x2a, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0xa2, 0xdc, 0x21, 0x02, 2860 0x10, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x2a, 0x21, 0x2f, 0x76, 0x31, 0x2f, 0x7b, 0x6e, 2861 0x61, 0x6d, 0x65, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x2f, 0x64, 2862 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x8a, 0xcc, 0x26, 0x02, 0x10, 2863 0x01, 0x12, 0xd1, 0x01, 0x0a, 0x0f, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x44, 0x6f, 0x63, 0x75, 2864 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x27, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 2865 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x44, 0x6f, 2866 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 2867 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 2868 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 2869 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6b, 0x82, 0xdb, 0x21, 0x2d, 0x0a, 0x08, 2870 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x06, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 2871 0x18, 0x01, 0x20, 0x01, 0x2a, 0x08, 0x1a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x32, 0x0b, 2872 0x12, 0x09, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0xa2, 0xdc, 0x21, 0x02, 0x08, 2873 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x12, 0x28, 0x2f, 0x76, 0x31, 0x2f, 0x7b, 0x70, 0x61, 2874 0x72, 0x65, 0x6e, 0x74, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 2875 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x3a, 0x73, 0x65, 0x61, 0x72, 0x63, 2876 0x68, 0x8a, 0xcc, 0x26, 0x00, 0x1a, 0x30, 0xca, 0x41, 0x13, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 2877 0x6e, 0x67, 0x2e, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0xd2, 0x41, 0x17, 2878 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x65, 0x64, 0x67, 2879 0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0x42, 0x98, 0x02, 0xe8, 0xde, 0x21, 0x00, 0x82, 0xff, 2880 0xd0, 0x02, 0x49, 0x0a, 0x0f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 2881 0x72, 0x76, 0x65, 0x72, 0x12, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 2882 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 2883 0x2f, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 2884 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x8a, 0xff, 0xd0, 0x02, 2885 0x49, 0x0a, 0x0f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x65, 2886 0x6e, 0x74, 0x12, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 2887 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x61, 2888 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2f, 0x76, 2889 0x31, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x0a, 0x16, 0x63, 0x6f, 0x6d, 0x2e, 2890 0x6e, 0x74, 0x74, 0x2e, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x62, 0x2e, 2891 0x76, 0x31, 0x42, 0x14, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 2892 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x00, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 2893 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 2894 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x2f, 2895 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 2896 0x6e, 0x74, 0x3b, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x65, 2897 0x6e, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 2898 } 2899 2900 var ( 2901 edgelq_alerting_proto_v1_document_service_proto_rawDescOnce sync.Once 2902 edgelq_alerting_proto_v1_document_service_proto_rawDescData = edgelq_alerting_proto_v1_document_service_proto_rawDesc 2903 ) 2904 2905 func edgelq_alerting_proto_v1_document_service_proto_rawDescGZIP() []byte { 2906 edgelq_alerting_proto_v1_document_service_proto_rawDescOnce.Do(func() { 2907 edgelq_alerting_proto_v1_document_service_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_alerting_proto_v1_document_service_proto_rawDescData) 2908 }) 2909 return edgelq_alerting_proto_v1_document_service_proto_rawDescData 2910 } 2911 2912 var edgelq_alerting_proto_v1_document_service_proto_msgTypes = make([]protoimpl.MessageInfo, 18) 2913 var edgelq_alerting_proto_v1_document_service_proto_goTypes = []interface{}{ 2914 (*GetDocumentRequest)(nil), // 0: ntt.alerting.v1.GetDocumentRequest 2915 (*BatchGetDocumentsRequest)(nil), // 1: ntt.alerting.v1.BatchGetDocumentsRequest 2916 (*BatchGetDocumentsResponse)(nil), // 2: ntt.alerting.v1.BatchGetDocumentsResponse 2917 (*ListDocumentsRequest)(nil), // 3: ntt.alerting.v1.ListDocumentsRequest 2918 (*ListDocumentsResponse)(nil), // 4: ntt.alerting.v1.ListDocumentsResponse 2919 (*WatchDocumentRequest)(nil), // 5: ntt.alerting.v1.WatchDocumentRequest 2920 (*WatchDocumentResponse)(nil), // 6: ntt.alerting.v1.WatchDocumentResponse 2921 (*WatchDocumentsRequest)(nil), // 7: ntt.alerting.v1.WatchDocumentsRequest 2922 (*WatchDocumentsResponse)(nil), // 8: ntt.alerting.v1.WatchDocumentsResponse 2923 (*CreateDocumentRequest)(nil), // 9: ntt.alerting.v1.CreateDocumentRequest 2924 (*UpdateDocumentRequest)(nil), // 10: ntt.alerting.v1.UpdateDocumentRequest 2925 (*DeleteDocumentRequest)(nil), // 11: ntt.alerting.v1.DeleteDocumentRequest 2926 (*SearchDocumentsRequest)(nil), // 12: ntt.alerting.v1.SearchDocumentsRequest 2927 (*SearchDocumentsResponse)(nil), // 13: ntt.alerting.v1.SearchDocumentsResponse 2928 (*WatchDocumentsResponse_PageTokenChange)(nil), // 14: ntt.alerting.v1.WatchDocumentsResponse.PageTokenChange 2929 (*CreateDocumentRequest_ResponseMask)(nil), // 15: ntt.alerting.v1.CreateDocumentRequest.ResponseMask 2930 (*UpdateDocumentRequest_CAS)(nil), // 16: ntt.alerting.v1.UpdateDocumentRequest.CAS 2931 (*UpdateDocumentRequest_ResponseMask)(nil), // 17: ntt.alerting.v1.UpdateDocumentRequest.ResponseMask 2932 (*document.Document_FieldMask)(nil), // 18: ntt.alerting.v1.Document_FieldMask 2933 (view.View)(0), // 19: goten.types.View 2934 (*document.Document)(nil), // 20: ntt.alerting.v1.Document 2935 (*document.DocumentChange)(nil), // 21: ntt.alerting.v1.DocumentChange 2936 (watch_type.WatchType)(0), // 22: goten.types.WatchType 2937 (*timestamppb.Timestamp)(nil), // 23: google.protobuf.Timestamp 2938 (*emptypb.Empty)(nil), // 24: google.protobuf.Empty 2939 } 2940 var edgelq_alerting_proto_v1_document_service_proto_depIdxs = []int32{ 2941 18, // 0: ntt.alerting.v1.GetDocumentRequest.field_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2942 19, // 1: ntt.alerting.v1.GetDocumentRequest.view:type_name -> goten.types.View 2943 18, // 2: ntt.alerting.v1.BatchGetDocumentsRequest.field_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2944 19, // 3: ntt.alerting.v1.BatchGetDocumentsRequest.view:type_name -> goten.types.View 2945 20, // 4: ntt.alerting.v1.BatchGetDocumentsResponse.documents:type_name -> ntt.alerting.v1.Document 2946 18, // 5: ntt.alerting.v1.ListDocumentsRequest.field_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2947 19, // 6: ntt.alerting.v1.ListDocumentsRequest.view:type_name -> goten.types.View 2948 20, // 7: ntt.alerting.v1.ListDocumentsResponse.documents:type_name -> ntt.alerting.v1.Document 2949 18, // 8: ntt.alerting.v1.WatchDocumentRequest.field_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2950 19, // 9: ntt.alerting.v1.WatchDocumentRequest.view:type_name -> goten.types.View 2951 21, // 10: ntt.alerting.v1.WatchDocumentResponse.change:type_name -> ntt.alerting.v1.DocumentChange 2952 22, // 11: ntt.alerting.v1.WatchDocumentsRequest.type:type_name -> goten.types.WatchType 2953 23, // 12: ntt.alerting.v1.WatchDocumentsRequest.starting_time:type_name -> google.protobuf.Timestamp 2954 18, // 13: ntt.alerting.v1.WatchDocumentsRequest.field_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2955 19, // 14: ntt.alerting.v1.WatchDocumentsRequest.view:type_name -> goten.types.View 2956 21, // 15: ntt.alerting.v1.WatchDocumentsResponse.document_changes:type_name -> ntt.alerting.v1.DocumentChange 2957 14, // 16: ntt.alerting.v1.WatchDocumentsResponse.page_token_change:type_name -> ntt.alerting.v1.WatchDocumentsResponse.PageTokenChange 2958 20, // 17: ntt.alerting.v1.CreateDocumentRequest.document:type_name -> ntt.alerting.v1.Document 2959 15, // 18: ntt.alerting.v1.CreateDocumentRequest.response_mask:type_name -> ntt.alerting.v1.CreateDocumentRequest.ResponseMask 2960 20, // 19: ntt.alerting.v1.UpdateDocumentRequest.document:type_name -> ntt.alerting.v1.Document 2961 18, // 20: ntt.alerting.v1.UpdateDocumentRequest.update_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2962 16, // 21: ntt.alerting.v1.UpdateDocumentRequest.cas:type_name -> ntt.alerting.v1.UpdateDocumentRequest.CAS 2963 17, // 22: ntt.alerting.v1.UpdateDocumentRequest.response_mask:type_name -> ntt.alerting.v1.UpdateDocumentRequest.ResponseMask 2964 18, // 23: ntt.alerting.v1.SearchDocumentsRequest.field_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2965 19, // 24: ntt.alerting.v1.SearchDocumentsRequest.view:type_name -> goten.types.View 2966 20, // 25: ntt.alerting.v1.SearchDocumentsResponse.documents:type_name -> ntt.alerting.v1.Document 2967 18, // 26: ntt.alerting.v1.CreateDocumentRequest.ResponseMask.body_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2968 20, // 27: ntt.alerting.v1.UpdateDocumentRequest.CAS.conditional_state:type_name -> ntt.alerting.v1.Document 2969 18, // 28: ntt.alerting.v1.UpdateDocumentRequest.CAS.field_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2970 18, // 29: ntt.alerting.v1.UpdateDocumentRequest.ResponseMask.body_mask:type_name -> ntt.alerting.v1.Document_FieldMask 2971 0, // 30: ntt.alerting.v1.DocumentService.GetDocument:input_type -> ntt.alerting.v1.GetDocumentRequest 2972 1, // 31: ntt.alerting.v1.DocumentService.BatchGetDocuments:input_type -> ntt.alerting.v1.BatchGetDocumentsRequest 2973 3, // 32: ntt.alerting.v1.DocumentService.ListDocuments:input_type -> ntt.alerting.v1.ListDocumentsRequest 2974 5, // 33: ntt.alerting.v1.DocumentService.WatchDocument:input_type -> ntt.alerting.v1.WatchDocumentRequest 2975 7, // 34: ntt.alerting.v1.DocumentService.WatchDocuments:input_type -> ntt.alerting.v1.WatchDocumentsRequest 2976 9, // 35: ntt.alerting.v1.DocumentService.CreateDocument:input_type -> ntt.alerting.v1.CreateDocumentRequest 2977 10, // 36: ntt.alerting.v1.DocumentService.UpdateDocument:input_type -> ntt.alerting.v1.UpdateDocumentRequest 2978 11, // 37: ntt.alerting.v1.DocumentService.DeleteDocument:input_type -> ntt.alerting.v1.DeleteDocumentRequest 2979 12, // 38: ntt.alerting.v1.DocumentService.SearchDocuments:input_type -> ntt.alerting.v1.SearchDocumentsRequest 2980 20, // 39: ntt.alerting.v1.DocumentService.GetDocument:output_type -> ntt.alerting.v1.Document 2981 2, // 40: ntt.alerting.v1.DocumentService.BatchGetDocuments:output_type -> ntt.alerting.v1.BatchGetDocumentsResponse 2982 4, // 41: ntt.alerting.v1.DocumentService.ListDocuments:output_type -> ntt.alerting.v1.ListDocumentsResponse 2983 6, // 42: ntt.alerting.v1.DocumentService.WatchDocument:output_type -> ntt.alerting.v1.WatchDocumentResponse 2984 8, // 43: ntt.alerting.v1.DocumentService.WatchDocuments:output_type -> ntt.alerting.v1.WatchDocumentsResponse 2985 20, // 44: ntt.alerting.v1.DocumentService.CreateDocument:output_type -> ntt.alerting.v1.Document 2986 20, // 45: ntt.alerting.v1.DocumentService.UpdateDocument:output_type -> ntt.alerting.v1.Document 2987 24, // 46: ntt.alerting.v1.DocumentService.DeleteDocument:output_type -> google.protobuf.Empty 2988 13, // 47: ntt.alerting.v1.DocumentService.SearchDocuments:output_type -> ntt.alerting.v1.SearchDocumentsResponse 2989 39, // [39:48] is the sub-list for method output_type 2990 30, // [30:39] is the sub-list for method input_type 2991 30, // [30:30] is the sub-list for extension type_name 2992 30, // [30:30] is the sub-list for extension extendee 2993 0, // [0:30] is the sub-list for field type_name 2994 } 2995 2996 func init() { edgelq_alerting_proto_v1_document_service_proto_init() } 2997 func edgelq_alerting_proto_v1_document_service_proto_init() { 2998 if edgelq_alerting_proto_v1_document_service_proto != nil { 2999 return 3000 } 3001 if !protoimpl.UnsafeEnabled { 3002 3003 edgelq_alerting_proto_v1_document_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { 3004 switch v := v.(*GetDocumentRequest); i { 3005 case 0: 3006 return &v.state 3007 case 1: 3008 return &v.sizeCache 3009 case 2: 3010 return &v.unknownFields 3011 default: 3012 return nil 3013 } 3014 } 3015 edgelq_alerting_proto_v1_document_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { 3016 switch v := v.(*BatchGetDocumentsRequest); i { 3017 case 0: 3018 return &v.state 3019 case 1: 3020 return &v.sizeCache 3021 case 2: 3022 return &v.unknownFields 3023 default: 3024 return nil 3025 } 3026 } 3027 edgelq_alerting_proto_v1_document_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { 3028 switch v := v.(*BatchGetDocumentsResponse); i { 3029 case 0: 3030 return &v.state 3031 case 1: 3032 return &v.sizeCache 3033 case 2: 3034 return &v.unknownFields 3035 default: 3036 return nil 3037 } 3038 } 3039 edgelq_alerting_proto_v1_document_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { 3040 switch v := v.(*ListDocumentsRequest); i { 3041 case 0: 3042 return &v.state 3043 case 1: 3044 return &v.sizeCache 3045 case 2: 3046 return &v.unknownFields 3047 default: 3048 return nil 3049 } 3050 } 3051 edgelq_alerting_proto_v1_document_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { 3052 switch v := v.(*ListDocumentsResponse); i { 3053 case 0: 3054 return &v.state 3055 case 1: 3056 return &v.sizeCache 3057 case 2: 3058 return &v.unknownFields 3059 default: 3060 return nil 3061 } 3062 } 3063 edgelq_alerting_proto_v1_document_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { 3064 switch v := v.(*WatchDocumentRequest); i { 3065 case 0: 3066 return &v.state 3067 case 1: 3068 return &v.sizeCache 3069 case 2: 3070 return &v.unknownFields 3071 default: 3072 return nil 3073 } 3074 } 3075 edgelq_alerting_proto_v1_document_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { 3076 switch v := v.(*WatchDocumentResponse); i { 3077 case 0: 3078 return &v.state 3079 case 1: 3080 return &v.sizeCache 3081 case 2: 3082 return &v.unknownFields 3083 default: 3084 return nil 3085 } 3086 } 3087 edgelq_alerting_proto_v1_document_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { 3088 switch v := v.(*WatchDocumentsRequest); i { 3089 case 0: 3090 return &v.state 3091 case 1: 3092 return &v.sizeCache 3093 case 2: 3094 return &v.unknownFields 3095 default: 3096 return nil 3097 } 3098 } 3099 edgelq_alerting_proto_v1_document_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { 3100 switch v := v.(*WatchDocumentsResponse); i { 3101 case 0: 3102 return &v.state 3103 case 1: 3104 return &v.sizeCache 3105 case 2: 3106 return &v.unknownFields 3107 default: 3108 return nil 3109 } 3110 } 3111 edgelq_alerting_proto_v1_document_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { 3112 switch v := v.(*CreateDocumentRequest); i { 3113 case 0: 3114 return &v.state 3115 case 1: 3116 return &v.sizeCache 3117 case 2: 3118 return &v.unknownFields 3119 default: 3120 return nil 3121 } 3122 } 3123 edgelq_alerting_proto_v1_document_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { 3124 switch v := v.(*UpdateDocumentRequest); i { 3125 case 0: 3126 return &v.state 3127 case 1: 3128 return &v.sizeCache 3129 case 2: 3130 return &v.unknownFields 3131 default: 3132 return nil 3133 } 3134 } 3135 edgelq_alerting_proto_v1_document_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { 3136 switch v := v.(*DeleteDocumentRequest); i { 3137 case 0: 3138 return &v.state 3139 case 1: 3140 return &v.sizeCache 3141 case 2: 3142 return &v.unknownFields 3143 default: 3144 return nil 3145 } 3146 } 3147 edgelq_alerting_proto_v1_document_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { 3148 switch v := v.(*SearchDocumentsRequest); i { 3149 case 0: 3150 return &v.state 3151 case 1: 3152 return &v.sizeCache 3153 case 2: 3154 return &v.unknownFields 3155 default: 3156 return nil 3157 } 3158 } 3159 edgelq_alerting_proto_v1_document_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { 3160 switch v := v.(*SearchDocumentsResponse); i { 3161 case 0: 3162 return &v.state 3163 case 1: 3164 return &v.sizeCache 3165 case 2: 3166 return &v.unknownFields 3167 default: 3168 return nil 3169 } 3170 } 3171 edgelq_alerting_proto_v1_document_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { 3172 switch v := v.(*WatchDocumentsResponse_PageTokenChange); i { 3173 case 0: 3174 return &v.state 3175 case 1: 3176 return &v.sizeCache 3177 case 2: 3178 return &v.unknownFields 3179 default: 3180 return nil 3181 } 3182 } 3183 edgelq_alerting_proto_v1_document_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { 3184 switch v := v.(*CreateDocumentRequest_ResponseMask); i { 3185 case 0: 3186 return &v.state 3187 case 1: 3188 return &v.sizeCache 3189 case 2: 3190 return &v.unknownFields 3191 default: 3192 return nil 3193 } 3194 } 3195 edgelq_alerting_proto_v1_document_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { 3196 switch v := v.(*UpdateDocumentRequest_CAS); i { 3197 case 0: 3198 return &v.state 3199 case 1: 3200 return &v.sizeCache 3201 case 2: 3202 return &v.unknownFields 3203 default: 3204 return nil 3205 } 3206 } 3207 edgelq_alerting_proto_v1_document_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { 3208 switch v := v.(*UpdateDocumentRequest_ResponseMask); i { 3209 case 0: 3210 return &v.state 3211 case 1: 3212 return &v.sizeCache 3213 case 2: 3214 return &v.unknownFields 3215 default: 3216 return nil 3217 } 3218 } 3219 } 3220 3221 edgelq_alerting_proto_v1_document_service_proto_msgTypes[15].OneofWrappers = []interface{}{ 3222 (*CreateDocumentRequest_ResponseMask_SkipEntireResponseBody)(nil), 3223 (*CreateDocumentRequest_ResponseMask_BodyMask)(nil), 3224 } 3225 edgelq_alerting_proto_v1_document_service_proto_msgTypes[17].OneofWrappers = []interface{}{ 3226 (*UpdateDocumentRequest_ResponseMask_SkipEntireResponseBody)(nil), 3227 (*UpdateDocumentRequest_ResponseMask_UpdatedFieldsOnly)(nil), 3228 (*UpdateDocumentRequest_ResponseMask_BodyMask)(nil), 3229 } 3230 type x struct{} 3231 out := protoimpl.TypeBuilder{ 3232 File: protoimpl.DescBuilder{ 3233 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 3234 RawDescriptor: edgelq_alerting_proto_v1_document_service_proto_rawDesc, 3235 NumEnums: 0, 3236 NumMessages: 18, 3237 NumExtensions: 0, 3238 NumServices: 1, 3239 }, 3240 GoTypes: edgelq_alerting_proto_v1_document_service_proto_goTypes, 3241 DependencyIndexes: edgelq_alerting_proto_v1_document_service_proto_depIdxs, 3242 MessageInfos: edgelq_alerting_proto_v1_document_service_proto_msgTypes, 3243 }.Build() 3244 edgelq_alerting_proto_v1_document_service_proto = out.File 3245 edgelq_alerting_proto_v1_document_service_proto_rawDesc = nil 3246 edgelq_alerting_proto_v1_document_service_proto_goTypes = nil 3247 edgelq_alerting_proto_v1_document_service_proto_depIdxs = nil 3248 }