github.com/cloudwan/edgelq-sdk@v1.15.4/alerting/client/v1/ts_condition/ts_condition_service.pb.go (about)

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