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