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