github.com/cloudwan/edgelq-sdk@v1.15.4/limits/resources/v1alpha2/accepted_plan/accepted_plan_change.pb.go (about)

     1  // Code generated by protoc-gen-goten-go
     2  // File: edgelq/limits/proto/v1alpha2/accepted_plan_change.proto
     3  // DO NOT EDIT!!!
     4  
     5  package accepted_plan
     6  
     7  import (
     8  	"fmt"
     9  	"reflect"
    10  	"sync"
    11  
    12  	"google.golang.org/protobuf/encoding/protojson"
    13  	"google.golang.org/protobuf/proto"
    14  	preflect "google.golang.org/protobuf/reflect/protoreflect"
    15  	"google.golang.org/protobuf/runtime/protoimpl"
    16  )
    17  
    18  // proto imports
    19  import (
    20  	iam_organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/organization"
    21  	fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
    22  )
    23  
    24  // Reference imports to suppress errors if they are not otherwise used.
    25  var (
    26  	_ = fmt.Errorf
    27  	_ = reflect.Method{}
    28  	_ = sync.Once{}
    29  
    30  	_ = protojson.MarshalOptions{}
    31  	_ = proto.MarshalOptions{}
    32  	_ = preflect.Value{}
    33  	_ = protoimpl.DescBuilder{}
    34  )
    35  
    36  // make sure we're using proto imports
    37  var (
    38  	_ = &iam_organization.Organization{}
    39  	_ = &fieldmaskpb.FieldMask{}
    40  )
    41  
    42  const (
    43  	// Verify that this generated code is sufficiently up-to-date.
    44  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    45  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    46  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    47  )
    48  
    49  // AcceptedPlanChange is used by Watch notifications Responses to describe
    50  // change of single AcceptedPlan One of Added, Modified, Removed
    51  type AcceptedPlanChange struct {
    52  	state         protoimpl.MessageState
    53  	sizeCache     protoimpl.SizeCache
    54  	unknownFields protoimpl.UnknownFields
    55  	// AcceptedPlan change
    56  	//
    57  	// Types that are valid to be assigned to ChangeType:
    58  	//	*AcceptedPlanChange_Added_
    59  	//	*AcceptedPlanChange_Modified_
    60  	//	*AcceptedPlanChange_Current_
    61  	//	*AcceptedPlanChange_Removed_
    62  	ChangeType isAcceptedPlanChange_ChangeType `protobuf_oneof:"change_type"`
    63  }
    64  
    65  func (m *AcceptedPlanChange) Reset() {
    66  	*m = AcceptedPlanChange{}
    67  	if protoimpl.UnsafeEnabled {
    68  		mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[0]
    69  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    70  		ms.StoreMessageInfo(mi)
    71  	}
    72  }
    73  
    74  func (m *AcceptedPlanChange) String() string {
    75  	return protoimpl.X.MessageStringOf(m)
    76  }
    77  
    78  func (*AcceptedPlanChange) ProtoMessage() {}
    79  
    80  func (m *AcceptedPlanChange) ProtoReflect() preflect.Message {
    81  	mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[0]
    82  	if protoimpl.UnsafeEnabled && m != nil {
    83  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    84  		if ms.LoadMessageInfo() == nil {
    85  			ms.StoreMessageInfo(mi)
    86  		}
    87  		return ms
    88  	}
    89  	return mi.MessageOf(m)
    90  }
    91  
    92  func (*AcceptedPlanChange) GotenMessage() {}
    93  
    94  // Deprecated, Use AcceptedPlanChange.ProtoReflect.Descriptor instead.
    95  func (*AcceptedPlanChange) Descriptor() ([]byte, []int) {
    96  	return edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescGZIP(), []int{0}
    97  }
    98  
    99  func (m *AcceptedPlanChange) Unmarshal(b []byte) error {
   100  	return proto.Unmarshal(b, m)
   101  }
   102  
   103  func (m *AcceptedPlanChange) Marshal() ([]byte, error) {
   104  	return proto.Marshal(m)
   105  }
   106  
   107  func (m *AcceptedPlanChange) MarshalJSON() ([]byte, error) {
   108  	return protojson.MarshalOptions{}.Marshal(m)
   109  }
   110  
   111  func (m *AcceptedPlanChange) UnmarshalJSON(data []byte) error {
   112  	return protojson.Unmarshal(data, m)
   113  }
   114  
   115  type isAcceptedPlanChange_ChangeType interface {
   116  	isAcceptedPlanChange_ChangeType()
   117  }
   118  
   119  type AcceptedPlanChange_Added_ struct {
   120  	// Added is returned when watched document is added, either created or
   121  	// enters Query view
   122  	Added *AcceptedPlanChange_Added `protobuf:"bytes,1,opt,name=added,proto3,oneof"`
   123  }
   124  type AcceptedPlanChange_Modified_ struct {
   125  	// Modified is returned when watched document is modified
   126  	Modified *AcceptedPlanChange_Modified `protobuf:"bytes,2,opt,name=modified,proto3,oneof"`
   127  }
   128  type AcceptedPlanChange_Current_ struct {
   129  	// Current is returned in stateless watch when document enters query view or
   130  	// is modified within.
   131  	Current *AcceptedPlanChange_Current `protobuf:"bytes,4,opt,name=current,proto3,oneof"`
   132  }
   133  type AcceptedPlanChange_Removed_ struct {
   134  	// Removed is returned when AcceptedPlan is deleted or leaves Query view
   135  	Removed *AcceptedPlanChange_Removed `protobuf:"bytes,3,opt,name=removed,proto3,oneof"`
   136  }
   137  
   138  func (*AcceptedPlanChange_Added_) isAcceptedPlanChange_ChangeType()    {}
   139  func (*AcceptedPlanChange_Modified_) isAcceptedPlanChange_ChangeType() {}
   140  func (*AcceptedPlanChange_Current_) isAcceptedPlanChange_ChangeType()  {}
   141  func (*AcceptedPlanChange_Removed_) isAcceptedPlanChange_ChangeType()  {}
   142  func (m *AcceptedPlanChange) GetChangeType() isAcceptedPlanChange_ChangeType {
   143  	if m != nil {
   144  		return m.ChangeType
   145  	}
   146  	return nil
   147  }
   148  func (m *AcceptedPlanChange) GetAdded() *AcceptedPlanChange_Added {
   149  	if x, ok := m.GetChangeType().(*AcceptedPlanChange_Added_); ok {
   150  		return x.Added
   151  	}
   152  	return nil
   153  }
   154  func (m *AcceptedPlanChange) GetModified() *AcceptedPlanChange_Modified {
   155  	if x, ok := m.GetChangeType().(*AcceptedPlanChange_Modified_); ok {
   156  		return x.Modified
   157  	}
   158  	return nil
   159  }
   160  func (m *AcceptedPlanChange) GetCurrent() *AcceptedPlanChange_Current {
   161  	if x, ok := m.GetChangeType().(*AcceptedPlanChange_Current_); ok {
   162  		return x.Current
   163  	}
   164  	return nil
   165  }
   166  func (m *AcceptedPlanChange) GetRemoved() *AcceptedPlanChange_Removed {
   167  	if x, ok := m.GetChangeType().(*AcceptedPlanChange_Removed_); ok {
   168  		return x.Removed
   169  	}
   170  	return nil
   171  }
   172  func (m *AcceptedPlanChange) SetChangeType(ofv isAcceptedPlanChange_ChangeType) {
   173  	if m == nil {
   174  		panic(fmt.Errorf("can't set %s on nil %s", "isAcceptedPlanChange_ChangeType", "AcceptedPlanChange"))
   175  	}
   176  	m.ChangeType = ofv
   177  }
   178  func (m *AcceptedPlanChange) SetAdded(fv *AcceptedPlanChange_Added) {
   179  	m.SetChangeType(&AcceptedPlanChange_Added_{Added: fv})
   180  }
   181  func (m *AcceptedPlanChange) SetModified(fv *AcceptedPlanChange_Modified) {
   182  	m.SetChangeType(&AcceptedPlanChange_Modified_{Modified: fv})
   183  }
   184  func (m *AcceptedPlanChange) SetCurrent(fv *AcceptedPlanChange_Current) {
   185  	m.SetChangeType(&AcceptedPlanChange_Current_{Current: fv})
   186  }
   187  func (m *AcceptedPlanChange) SetRemoved(fv *AcceptedPlanChange_Removed) {
   188  	m.SetChangeType(&AcceptedPlanChange_Removed_{Removed: fv})
   189  }
   190  
   191  // AcceptedPlan has been added to query view
   192  type AcceptedPlanChange_Added struct {
   193  	state         protoimpl.MessageState
   194  	sizeCache     protoimpl.SizeCache
   195  	unknownFields protoimpl.UnknownFields
   196  	AcceptedPlan  *AcceptedPlan `protobuf:"bytes,1,opt,name=accepted_plan,json=acceptedPlan,proto3" json:"accepted_plan,omitempty"`
   197  	// Integer describing index of added AcceptedPlan in resulting query view.
   198  	ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
   199  }
   200  
   201  func (m *AcceptedPlanChange_Added) Reset() {
   202  	*m = AcceptedPlanChange_Added{}
   203  	if protoimpl.UnsafeEnabled {
   204  		mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[1]
   205  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   206  		ms.StoreMessageInfo(mi)
   207  	}
   208  }
   209  
   210  func (m *AcceptedPlanChange_Added) String() string {
   211  	return protoimpl.X.MessageStringOf(m)
   212  }
   213  
   214  func (*AcceptedPlanChange_Added) ProtoMessage() {}
   215  
   216  func (m *AcceptedPlanChange_Added) ProtoReflect() preflect.Message {
   217  	mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[1]
   218  	if protoimpl.UnsafeEnabled && m != nil {
   219  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   220  		if ms.LoadMessageInfo() == nil {
   221  			ms.StoreMessageInfo(mi)
   222  		}
   223  		return ms
   224  	}
   225  	return mi.MessageOf(m)
   226  }
   227  
   228  func (*AcceptedPlanChange_Added) GotenMessage() {}
   229  
   230  // Deprecated, Use AcceptedPlanChange_Added.ProtoReflect.Descriptor instead.
   231  func (*AcceptedPlanChange_Added) Descriptor() ([]byte, []int) {
   232  	return edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescGZIP(), []int{0, 0}
   233  }
   234  
   235  func (m *AcceptedPlanChange_Added) Unmarshal(b []byte) error {
   236  	return proto.Unmarshal(b, m)
   237  }
   238  
   239  func (m *AcceptedPlanChange_Added) Marshal() ([]byte, error) {
   240  	return proto.Marshal(m)
   241  }
   242  
   243  func (m *AcceptedPlanChange_Added) MarshalJSON() ([]byte, error) {
   244  	return protojson.MarshalOptions{}.Marshal(m)
   245  }
   246  
   247  func (m *AcceptedPlanChange_Added) UnmarshalJSON(data []byte) error {
   248  	return protojson.Unmarshal(data, m)
   249  }
   250  
   251  func (m *AcceptedPlanChange_Added) GetAcceptedPlan() *AcceptedPlan {
   252  	if m != nil {
   253  		return m.AcceptedPlan
   254  	}
   255  	return nil
   256  }
   257  
   258  func (m *AcceptedPlanChange_Added) GetViewIndex() int32 {
   259  	if m != nil {
   260  		return m.ViewIndex
   261  	}
   262  	return int32(0)
   263  }
   264  
   265  func (m *AcceptedPlanChange_Added) SetAcceptedPlan(fv *AcceptedPlan) {
   266  	if m == nil {
   267  		panic(fmt.Errorf("can't set %s on nil %s", "AcceptedPlan", "AcceptedPlanChange_Added"))
   268  	}
   269  	m.AcceptedPlan = fv
   270  }
   271  
   272  func (m *AcceptedPlanChange_Added) SetViewIndex(fv int32) {
   273  	if m == nil {
   274  		panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "AcceptedPlanChange_Added"))
   275  	}
   276  	m.ViewIndex = fv
   277  }
   278  
   279  // AcceptedPlan changed some of it's fields - contains either full document or
   280  // masked change
   281  type AcceptedPlanChange_Modified struct {
   282  	state         protoimpl.MessageState
   283  	sizeCache     protoimpl.SizeCache
   284  	unknownFields protoimpl.UnknownFields
   285  	// Name of modified AcceptedPlan
   286  	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
   287  	// New version of AcceptedPlan or masked difference, depending on
   288  	// mask_changes instrumentation of issued [WatchAcceptedPlanRequest] or
   289  	// [WatchAcceptedPlansRequest]
   290  	AcceptedPlan *AcceptedPlan `protobuf:"bytes,2,opt,name=accepted_plan,json=acceptedPlan,proto3" json:"accepted_plan,omitempty"`
   291  	// Used when mask_changes is set, contains field paths of modified
   292  	// properties.
   293  	FieldMask *AcceptedPlan_FieldMask `protobuf:"bytes,3,opt,customtype=AcceptedPlan_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"`
   294  	// Previous view index specifies previous position of modified AcceptedPlan.
   295  	// When modification doesn't affect sorted order, value will remain
   296  	// identical to [view_index].
   297  	PreviousViewIndex int32 `protobuf:"varint,4,opt,name=previous_view_index,json=previousViewIndex,proto3" json:"previous_view_index,omitempty"`
   298  	// Integer specifying AcceptedPlan new index in resulting query view.
   299  	ViewIndex int32 `protobuf:"varint,5,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
   300  }
   301  
   302  func (m *AcceptedPlanChange_Modified) Reset() {
   303  	*m = AcceptedPlanChange_Modified{}
   304  	if protoimpl.UnsafeEnabled {
   305  		mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[2]
   306  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   307  		ms.StoreMessageInfo(mi)
   308  	}
   309  }
   310  
   311  func (m *AcceptedPlanChange_Modified) String() string {
   312  	return protoimpl.X.MessageStringOf(m)
   313  }
   314  
   315  func (*AcceptedPlanChange_Modified) ProtoMessage() {}
   316  
   317  func (m *AcceptedPlanChange_Modified) ProtoReflect() preflect.Message {
   318  	mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[2]
   319  	if protoimpl.UnsafeEnabled && m != nil {
   320  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   321  		if ms.LoadMessageInfo() == nil {
   322  			ms.StoreMessageInfo(mi)
   323  		}
   324  		return ms
   325  	}
   326  	return mi.MessageOf(m)
   327  }
   328  
   329  func (*AcceptedPlanChange_Modified) GotenMessage() {}
   330  
   331  // Deprecated, Use AcceptedPlanChange_Modified.ProtoReflect.Descriptor instead.
   332  func (*AcceptedPlanChange_Modified) Descriptor() ([]byte, []int) {
   333  	return edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescGZIP(), []int{0, 1}
   334  }
   335  
   336  func (m *AcceptedPlanChange_Modified) Unmarshal(b []byte) error {
   337  	return proto.Unmarshal(b, m)
   338  }
   339  
   340  func (m *AcceptedPlanChange_Modified) Marshal() ([]byte, error) {
   341  	return proto.Marshal(m)
   342  }
   343  
   344  func (m *AcceptedPlanChange_Modified) MarshalJSON() ([]byte, error) {
   345  	return protojson.MarshalOptions{}.Marshal(m)
   346  }
   347  
   348  func (m *AcceptedPlanChange_Modified) UnmarshalJSON(data []byte) error {
   349  	return protojson.Unmarshal(data, m)
   350  }
   351  
   352  func (m *AcceptedPlanChange_Modified) GetName() *Name {
   353  	if m != nil {
   354  		return m.Name
   355  	}
   356  	return nil
   357  }
   358  
   359  func (m *AcceptedPlanChange_Modified) GetAcceptedPlan() *AcceptedPlan {
   360  	if m != nil {
   361  		return m.AcceptedPlan
   362  	}
   363  	return nil
   364  }
   365  
   366  func (m *AcceptedPlanChange_Modified) GetFieldMask() *AcceptedPlan_FieldMask {
   367  	if m != nil {
   368  		return m.FieldMask
   369  	}
   370  	return nil
   371  }
   372  
   373  func (m *AcceptedPlanChange_Modified) GetPreviousViewIndex() int32 {
   374  	if m != nil {
   375  		return m.PreviousViewIndex
   376  	}
   377  	return int32(0)
   378  }
   379  
   380  func (m *AcceptedPlanChange_Modified) GetViewIndex() int32 {
   381  	if m != nil {
   382  		return m.ViewIndex
   383  	}
   384  	return int32(0)
   385  }
   386  
   387  func (m *AcceptedPlanChange_Modified) SetName(fv *Name) {
   388  	if m == nil {
   389  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "AcceptedPlanChange_Modified"))
   390  	}
   391  	m.Name = fv
   392  }
   393  
   394  func (m *AcceptedPlanChange_Modified) SetAcceptedPlan(fv *AcceptedPlan) {
   395  	if m == nil {
   396  		panic(fmt.Errorf("can't set %s on nil %s", "AcceptedPlan", "AcceptedPlanChange_Modified"))
   397  	}
   398  	m.AcceptedPlan = fv
   399  }
   400  
   401  func (m *AcceptedPlanChange_Modified) SetFieldMask(fv *AcceptedPlan_FieldMask) {
   402  	if m == nil {
   403  		panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "AcceptedPlanChange_Modified"))
   404  	}
   405  	m.FieldMask = fv
   406  }
   407  
   408  func (m *AcceptedPlanChange_Modified) SetPreviousViewIndex(fv int32) {
   409  	if m == nil {
   410  		panic(fmt.Errorf("can't set %s on nil %s", "PreviousViewIndex", "AcceptedPlanChange_Modified"))
   411  	}
   412  	m.PreviousViewIndex = fv
   413  }
   414  
   415  func (m *AcceptedPlanChange_Modified) SetViewIndex(fv int32) {
   416  	if m == nil {
   417  		panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "AcceptedPlanChange_Modified"))
   418  	}
   419  	m.ViewIndex = fv
   420  }
   421  
   422  // AcceptedPlan has been added or modified in a query view. Version used for
   423  // stateless watching
   424  type AcceptedPlanChange_Current struct {
   425  	state         protoimpl.MessageState
   426  	sizeCache     protoimpl.SizeCache
   427  	unknownFields protoimpl.UnknownFields
   428  	AcceptedPlan  *AcceptedPlan `protobuf:"bytes,1,opt,name=accepted_plan,json=acceptedPlan,proto3" json:"accepted_plan,omitempty"`
   429  }
   430  
   431  func (m *AcceptedPlanChange_Current) Reset() {
   432  	*m = AcceptedPlanChange_Current{}
   433  	if protoimpl.UnsafeEnabled {
   434  		mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[3]
   435  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   436  		ms.StoreMessageInfo(mi)
   437  	}
   438  }
   439  
   440  func (m *AcceptedPlanChange_Current) String() string {
   441  	return protoimpl.X.MessageStringOf(m)
   442  }
   443  
   444  func (*AcceptedPlanChange_Current) ProtoMessage() {}
   445  
   446  func (m *AcceptedPlanChange_Current) ProtoReflect() preflect.Message {
   447  	mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[3]
   448  	if protoimpl.UnsafeEnabled && m != nil {
   449  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   450  		if ms.LoadMessageInfo() == nil {
   451  			ms.StoreMessageInfo(mi)
   452  		}
   453  		return ms
   454  	}
   455  	return mi.MessageOf(m)
   456  }
   457  
   458  func (*AcceptedPlanChange_Current) GotenMessage() {}
   459  
   460  // Deprecated, Use AcceptedPlanChange_Current.ProtoReflect.Descriptor instead.
   461  func (*AcceptedPlanChange_Current) Descriptor() ([]byte, []int) {
   462  	return edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescGZIP(), []int{0, 2}
   463  }
   464  
   465  func (m *AcceptedPlanChange_Current) Unmarshal(b []byte) error {
   466  	return proto.Unmarshal(b, m)
   467  }
   468  
   469  func (m *AcceptedPlanChange_Current) Marshal() ([]byte, error) {
   470  	return proto.Marshal(m)
   471  }
   472  
   473  func (m *AcceptedPlanChange_Current) MarshalJSON() ([]byte, error) {
   474  	return protojson.MarshalOptions{}.Marshal(m)
   475  }
   476  
   477  func (m *AcceptedPlanChange_Current) UnmarshalJSON(data []byte) error {
   478  	return protojson.Unmarshal(data, m)
   479  }
   480  
   481  func (m *AcceptedPlanChange_Current) GetAcceptedPlan() *AcceptedPlan {
   482  	if m != nil {
   483  		return m.AcceptedPlan
   484  	}
   485  	return nil
   486  }
   487  
   488  func (m *AcceptedPlanChange_Current) SetAcceptedPlan(fv *AcceptedPlan) {
   489  	if m == nil {
   490  		panic(fmt.Errorf("can't set %s on nil %s", "AcceptedPlan", "AcceptedPlanChange_Current"))
   491  	}
   492  	m.AcceptedPlan = fv
   493  }
   494  
   495  // Removed is returned when AcceptedPlan is deleted or leaves Query view
   496  type AcceptedPlanChange_Removed struct {
   497  	state         protoimpl.MessageState
   498  	sizeCache     protoimpl.SizeCache
   499  	unknownFields protoimpl.UnknownFields
   500  	Name          *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
   501  	// Integer specifying removed AcceptedPlan index. Not populated in stateless
   502  	// watch type.
   503  	ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
   504  }
   505  
   506  func (m *AcceptedPlanChange_Removed) Reset() {
   507  	*m = AcceptedPlanChange_Removed{}
   508  	if protoimpl.UnsafeEnabled {
   509  		mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[4]
   510  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   511  		ms.StoreMessageInfo(mi)
   512  	}
   513  }
   514  
   515  func (m *AcceptedPlanChange_Removed) String() string {
   516  	return protoimpl.X.MessageStringOf(m)
   517  }
   518  
   519  func (*AcceptedPlanChange_Removed) ProtoMessage() {}
   520  
   521  func (m *AcceptedPlanChange_Removed) ProtoReflect() preflect.Message {
   522  	mi := &edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[4]
   523  	if protoimpl.UnsafeEnabled && m != nil {
   524  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   525  		if ms.LoadMessageInfo() == nil {
   526  			ms.StoreMessageInfo(mi)
   527  		}
   528  		return ms
   529  	}
   530  	return mi.MessageOf(m)
   531  }
   532  
   533  func (*AcceptedPlanChange_Removed) GotenMessage() {}
   534  
   535  // Deprecated, Use AcceptedPlanChange_Removed.ProtoReflect.Descriptor instead.
   536  func (*AcceptedPlanChange_Removed) Descriptor() ([]byte, []int) {
   537  	return edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescGZIP(), []int{0, 3}
   538  }
   539  
   540  func (m *AcceptedPlanChange_Removed) Unmarshal(b []byte) error {
   541  	return proto.Unmarshal(b, m)
   542  }
   543  
   544  func (m *AcceptedPlanChange_Removed) Marshal() ([]byte, error) {
   545  	return proto.Marshal(m)
   546  }
   547  
   548  func (m *AcceptedPlanChange_Removed) MarshalJSON() ([]byte, error) {
   549  	return protojson.MarshalOptions{}.Marshal(m)
   550  }
   551  
   552  func (m *AcceptedPlanChange_Removed) UnmarshalJSON(data []byte) error {
   553  	return protojson.Unmarshal(data, m)
   554  }
   555  
   556  func (m *AcceptedPlanChange_Removed) GetName() *Name {
   557  	if m != nil {
   558  		return m.Name
   559  	}
   560  	return nil
   561  }
   562  
   563  func (m *AcceptedPlanChange_Removed) GetViewIndex() int32 {
   564  	if m != nil {
   565  		return m.ViewIndex
   566  	}
   567  	return int32(0)
   568  }
   569  
   570  func (m *AcceptedPlanChange_Removed) SetName(fv *Name) {
   571  	if m == nil {
   572  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "AcceptedPlanChange_Removed"))
   573  	}
   574  	m.Name = fv
   575  }
   576  
   577  func (m *AcceptedPlanChange_Removed) SetViewIndex(fv int32) {
   578  	if m == nil {
   579  		panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "AcceptedPlanChange_Removed"))
   580  	}
   581  	m.ViewIndex = fv
   582  }
   583  
   584  var edgelq_limits_proto_v1alpha2_accepted_plan_change_proto preflect.FileDescriptor
   585  
   586  var edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDesc = []byte{
   587  	0x0a, 0x37, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2f,
   588  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x61,
   589  	0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x68, 0x61,
   590  	0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x13, 0x6e, 0x74, 0x74, 0x2e, 0x6c,
   591  	0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x1a, 0x19,
   592  	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
   593  	0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
   594  	0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64,
   595  	0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74,
   596  	0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x67,
   597  	0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65,
   598  	0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x65,
   599  	0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x65, 0x64,
   600  	0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74,
   601  	0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x61, 0x63, 0x63, 0x65, 0x70,
   602  	0x74, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x9e,
   603  	0x07, 0x0a, 0x12, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43,
   604  	0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x45, 0x0a, 0x05, 0x61, 0x64, 0x64, 0x65, 0x64, 0x18, 0x01,
   605  	0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74,
   606  	0x73, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x70,
   607  	0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x41, 0x64,
   608  	0x64, 0x65, 0x64, 0x48, 0x00, 0x52, 0x05, 0x61, 0x64, 0x64, 0x65, 0x64, 0x12, 0x4e, 0x0a, 0x08,
   609  	0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30,
   610  	0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x61, 0x6c,
   611  	0x70, 0x68, 0x61, 0x32, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61,
   612  	0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64,
   613  	0x48, 0x00, 0x52, 0x08, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x4b, 0x0a, 0x07,
   614  	0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e,
   615  	0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70,
   616  	0x68, 0x61, 0x32, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e,
   617  	0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x48, 0x00,
   618  	0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x4b, 0x0a, 0x07, 0x72, 0x65, 0x6d,
   619  	0x6f, 0x76, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6e, 0x74, 0x74,
   620  	0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32,
   621  	0x2e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x68, 0x61,
   622  	0x6e, 0x67, 0x65, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x48, 0x00, 0x52, 0x07, 0x72,
   623  	0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x1a, 0x6e, 0x0a, 0x05, 0x41, 0x64, 0x64, 0x65, 0x64, 0x12,
   624  	0x46, 0x0a, 0x0d, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e,
   625  	0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x69, 0x6d,
   626  	0x69, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x41, 0x63, 0x63,
   627  	0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x0c, 0x61, 0x63, 0x63, 0x65, 0x70,
   628  	0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f,
   629  	0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x65,
   630  	0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x1a, 0x9c, 0x02, 0x0a, 0x08, 0x4d, 0x6f, 0x64, 0x69, 0x66,
   631  	0x69, 0x65, 0x64, 0x12, 0x28, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
   632  	0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x0a, 0x0e, 0x0a, 0x0c, 0x41, 0x63, 0x63, 0x65, 0x70,
   633  	0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x46, 0x0a,
   634  	0x0d, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x18, 0x02,
   635  	0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74,
   636  	0x73, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x70,
   637  	0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x0c, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65,
   638  	0x64, 0x50, 0x6c, 0x61, 0x6e, 0x12, 0x4f, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d,
   639  	0x61, 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
   640  	0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c,
   641  	0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x32, 0x0e, 0x0a, 0x0c, 0x41,
   642  	0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x09, 0x66, 0x69, 0x65,
   643  	0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f,
   644  	0x75, 0x73, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20,
   645  	0x01, 0x28, 0x05, 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x56, 0x69, 0x65,
   646  	0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69,
   647  	0x6e, 0x64, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x65, 0x77,
   648  	0x49, 0x6e, 0x64, 0x65, 0x78, 0x1a, 0x51, 0x0a, 0x07, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
   649  	0x12, 0x46, 0x0a, 0x0d, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61,
   650  	0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x69,
   651  	0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x41, 0x63,
   652  	0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x0c, 0x61, 0x63, 0x63, 0x65,
   653  	0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x1a, 0x52, 0x0a, 0x07, 0x52, 0x65, 0x6d, 0x6f,
   654  	0x76, 0x65, 0x64, 0x12, 0x28, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
   655  	0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x0a, 0x0e, 0x0a, 0x0c, 0x41, 0x63, 0x63, 0x65, 0x70,
   656  	0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a,
   657  	0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28,
   658  	0x05, 0x52, 0x09, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x3a, 0x12, 0x9a, 0xd9,
   659  	0x21, 0x0e, 0x0a, 0x0c, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e,
   660  	0x42, 0x0d, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42,
   661  	0x8d, 0x01, 0xe8, 0xde, 0x21, 0x00, 0x0a, 0x1a, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e,
   662  	0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x70, 0x62, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68,
   663  	0x61, 0x32, 0x42, 0x17, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x50, 0x6c, 0x61, 0x6e,
   664  	0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x00, 0x5a, 0x50, 0x67,
   665  	0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77,
   666  	0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73,
   667  	0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70,
   668  	0x68, 0x61, 0x32, 0x2f, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61,
   669  	0x6e, 0x3b, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x62,
   670  	0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   671  }
   672  
   673  var (
   674  	edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescOnce sync.Once
   675  	edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescData = edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDesc
   676  )
   677  
   678  func edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescGZIP() []byte {
   679  	edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescOnce.Do(func() {
   680  		edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescData)
   681  	})
   682  	return edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDescData
   683  }
   684  
   685  var edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
   686  var edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_goTypes = []interface{}{
   687  	(*AcceptedPlanChange)(nil),          // 0: ntt.limits.v1alpha2.AcceptedPlanChange
   688  	(*AcceptedPlanChange_Added)(nil),    // 1: ntt.limits.v1alpha2.AcceptedPlanChange.Added
   689  	(*AcceptedPlanChange_Modified)(nil), // 2: ntt.limits.v1alpha2.AcceptedPlanChange.Modified
   690  	(*AcceptedPlanChange_Current)(nil),  // 3: ntt.limits.v1alpha2.AcceptedPlanChange.Current
   691  	(*AcceptedPlanChange_Removed)(nil),  // 4: ntt.limits.v1alpha2.AcceptedPlanChange.Removed
   692  	(*AcceptedPlan)(nil),                // 5: ntt.limits.v1alpha2.AcceptedPlan
   693  	(*AcceptedPlan_FieldMask)(nil),      // 6: ntt.limits.v1alpha2.AcceptedPlan_FieldMask
   694  }
   695  var edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_depIdxs = []int32{
   696  	1, // 0: ntt.limits.v1alpha2.AcceptedPlanChange.added:type_name -> ntt.limits.v1alpha2.AcceptedPlanChange.Added
   697  	2, // 1: ntt.limits.v1alpha2.AcceptedPlanChange.modified:type_name -> ntt.limits.v1alpha2.AcceptedPlanChange.Modified
   698  	3, // 2: ntt.limits.v1alpha2.AcceptedPlanChange.current:type_name -> ntt.limits.v1alpha2.AcceptedPlanChange.Current
   699  	4, // 3: ntt.limits.v1alpha2.AcceptedPlanChange.removed:type_name -> ntt.limits.v1alpha2.AcceptedPlanChange.Removed
   700  	5, // 4: ntt.limits.v1alpha2.AcceptedPlanChange.Added.accepted_plan:type_name -> ntt.limits.v1alpha2.AcceptedPlan
   701  	5, // 5: ntt.limits.v1alpha2.AcceptedPlanChange.Modified.accepted_plan:type_name -> ntt.limits.v1alpha2.AcceptedPlan
   702  	6, // 6: ntt.limits.v1alpha2.AcceptedPlanChange.Modified.field_mask:type_name -> ntt.limits.v1alpha2.AcceptedPlan_FieldMask
   703  	5, // 7: ntt.limits.v1alpha2.AcceptedPlanChange.Current.accepted_plan:type_name -> ntt.limits.v1alpha2.AcceptedPlan
   704  	8, // [8:8] is the sub-list for method output_type
   705  	8, // [8:8] is the sub-list for method input_type
   706  	8, // [8:8] is the sub-list for extension type_name
   707  	8, // [8:8] is the sub-list for extension extendee
   708  	0, // [0:8] is the sub-list for field type_name
   709  }
   710  
   711  func init() { edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_init() }
   712  func edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_init() {
   713  	if edgelq_limits_proto_v1alpha2_accepted_plan_change_proto != nil {
   714  		return
   715  	}
   716  	if !protoimpl.UnsafeEnabled {
   717  
   718  		edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   719  			switch v := v.(*AcceptedPlanChange); i {
   720  			case 0:
   721  				return &v.state
   722  			case 1:
   723  				return &v.sizeCache
   724  			case 2:
   725  				return &v.unknownFields
   726  			default:
   727  				return nil
   728  			}
   729  		}
   730  		edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   731  			switch v := v.(*AcceptedPlanChange_Added); i {
   732  			case 0:
   733  				return &v.state
   734  			case 1:
   735  				return &v.sizeCache
   736  			case 2:
   737  				return &v.unknownFields
   738  			default:
   739  				return nil
   740  			}
   741  		}
   742  		edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
   743  			switch v := v.(*AcceptedPlanChange_Modified); i {
   744  			case 0:
   745  				return &v.state
   746  			case 1:
   747  				return &v.sizeCache
   748  			case 2:
   749  				return &v.unknownFields
   750  			default:
   751  				return nil
   752  			}
   753  		}
   754  		edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
   755  			switch v := v.(*AcceptedPlanChange_Current); i {
   756  			case 0:
   757  				return &v.state
   758  			case 1:
   759  				return &v.sizeCache
   760  			case 2:
   761  				return &v.unknownFields
   762  			default:
   763  				return nil
   764  			}
   765  		}
   766  		edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
   767  			switch v := v.(*AcceptedPlanChange_Removed); i {
   768  			case 0:
   769  				return &v.state
   770  			case 1:
   771  				return &v.sizeCache
   772  			case 2:
   773  				return &v.unknownFields
   774  			default:
   775  				return nil
   776  			}
   777  		}
   778  	}
   779  
   780  	edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes[0].OneofWrappers = []interface{}{
   781  		(*AcceptedPlanChange_Added_)(nil),
   782  		(*AcceptedPlanChange_Modified_)(nil),
   783  		(*AcceptedPlanChange_Current_)(nil),
   784  		(*AcceptedPlanChange_Removed_)(nil),
   785  	}
   786  	type x struct{}
   787  	out := protoimpl.TypeBuilder{
   788  		File: protoimpl.DescBuilder{
   789  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   790  			RawDescriptor: edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDesc,
   791  			NumEnums:      0,
   792  			NumMessages:   5,
   793  			NumExtensions: 0,
   794  			NumServices:   0,
   795  		},
   796  		GoTypes:           edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_goTypes,
   797  		DependencyIndexes: edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_depIdxs,
   798  		MessageInfos:      edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_msgTypes,
   799  	}.Build()
   800  	edgelq_limits_proto_v1alpha2_accepted_plan_change_proto = out.File
   801  	edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_rawDesc = nil
   802  	edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_goTypes = nil
   803  	edgelq_limits_proto_v1alpha2_accepted_plan_change_proto_depIdxs = nil
   804  }