github.com/cloudwan/edgelq-sdk@v1.15.4/cellular-api/client/v1/sim_card/sim_card_custom.pb.go (about)

     1  // Code generated by protoc-gen-goten-go
     2  // File: edgelq/cellular-api/proto/v1/sim_card_custom.proto
     3  // DO NOT EDIT!!!
     4  
     5  package sim_card_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  	sim_card "github.com/cloudwan/edgelq-sdk/cellular-api/resources/v1/sim_card"
    21  	iam_project "github.com/cloudwan/edgelq-sdk/iam/resources/v1/project"
    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  	_ = &sim_card.SimCard{}
    39  	_ = &iam_project.Project{}
    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  // A request message of the Activate method.
    50  type ActivateRequest struct {
    51  	state         protoimpl.MessageState
    52  	sizeCache     protoimpl.SizeCache
    53  	unknownFields protoimpl.UnknownFields
    54  	// Name of ntt.cellular_api.v1.SimCard
    55  	Name    *sim_card.Name    `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
    56  	Project *iam_project.Name `protobuf:"bytes,2,opt,customtype=Name,name=project,proto3" json:"project,omitempty"`
    57  }
    58  
    59  func (m *ActivateRequest) Reset() {
    60  	*m = ActivateRequest{}
    61  	if protoimpl.UnsafeEnabled {
    62  		mi := &edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[0]
    63  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    64  		ms.StoreMessageInfo(mi)
    65  	}
    66  }
    67  
    68  func (m *ActivateRequest) String() string {
    69  	return protoimpl.X.MessageStringOf(m)
    70  }
    71  
    72  func (*ActivateRequest) ProtoMessage() {}
    73  
    74  func (m *ActivateRequest) ProtoReflect() preflect.Message {
    75  	mi := &edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[0]
    76  	if protoimpl.UnsafeEnabled && m != nil {
    77  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    78  		if ms.LoadMessageInfo() == nil {
    79  			ms.StoreMessageInfo(mi)
    80  		}
    81  		return ms
    82  	}
    83  	return mi.MessageOf(m)
    84  }
    85  
    86  func (*ActivateRequest) GotenMessage() {}
    87  
    88  // Deprecated, Use ActivateRequest.ProtoReflect.Descriptor instead.
    89  func (*ActivateRequest) Descriptor() ([]byte, []int) {
    90  	return edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescGZIP(), []int{0}
    91  }
    92  
    93  func (m *ActivateRequest) Unmarshal(b []byte) error {
    94  	return proto.Unmarshal(b, m)
    95  }
    96  
    97  func (m *ActivateRequest) Marshal() ([]byte, error) {
    98  	return proto.Marshal(m)
    99  }
   100  
   101  func (m *ActivateRequest) MarshalJSON() ([]byte, error) {
   102  	return protojson.MarshalOptions{}.Marshal(m)
   103  }
   104  
   105  func (m *ActivateRequest) UnmarshalJSON(data []byte) error {
   106  	return protojson.Unmarshal(data, m)
   107  }
   108  
   109  func (m *ActivateRequest) GetName() *sim_card.Name {
   110  	if m != nil {
   111  		return m.Name
   112  	}
   113  	return nil
   114  }
   115  
   116  func (m *ActivateRequest) GetProject() *iam_project.Name {
   117  	if m != nil {
   118  		return m.Project
   119  	}
   120  	return nil
   121  }
   122  
   123  func (m *ActivateRequest) SetName(fv *sim_card.Name) {
   124  	if m == nil {
   125  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "ActivateRequest"))
   126  	}
   127  	m.Name = fv
   128  }
   129  
   130  func (m *ActivateRequest) SetProject(fv *iam_project.Name) {
   131  	if m == nil {
   132  		panic(fmt.Errorf("can't set %s on nil %s", "Project", "ActivateRequest"))
   133  	}
   134  	m.Project = fv
   135  }
   136  
   137  // A request message of the Suspend method.
   138  type SuspendRequest struct {
   139  	state         protoimpl.MessageState
   140  	sizeCache     protoimpl.SizeCache
   141  	unknownFields protoimpl.UnknownFields
   142  	// Name of ntt.cellular_api.v1.SimCard
   143  	Name    *sim_card.Name    `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
   144  	Project *iam_project.Name `protobuf:"bytes,2,opt,customtype=Name,name=project,proto3" json:"project,omitempty"`
   145  }
   146  
   147  func (m *SuspendRequest) Reset() {
   148  	*m = SuspendRequest{}
   149  	if protoimpl.UnsafeEnabled {
   150  		mi := &edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[1]
   151  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   152  		ms.StoreMessageInfo(mi)
   153  	}
   154  }
   155  
   156  func (m *SuspendRequest) String() string {
   157  	return protoimpl.X.MessageStringOf(m)
   158  }
   159  
   160  func (*SuspendRequest) ProtoMessage() {}
   161  
   162  func (m *SuspendRequest) ProtoReflect() preflect.Message {
   163  	mi := &edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[1]
   164  	if protoimpl.UnsafeEnabled && m != nil {
   165  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   166  		if ms.LoadMessageInfo() == nil {
   167  			ms.StoreMessageInfo(mi)
   168  		}
   169  		return ms
   170  	}
   171  	return mi.MessageOf(m)
   172  }
   173  
   174  func (*SuspendRequest) GotenMessage() {}
   175  
   176  // Deprecated, Use SuspendRequest.ProtoReflect.Descriptor instead.
   177  func (*SuspendRequest) Descriptor() ([]byte, []int) {
   178  	return edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescGZIP(), []int{1}
   179  }
   180  
   181  func (m *SuspendRequest) Unmarshal(b []byte) error {
   182  	return proto.Unmarshal(b, m)
   183  }
   184  
   185  func (m *SuspendRequest) Marshal() ([]byte, error) {
   186  	return proto.Marshal(m)
   187  }
   188  
   189  func (m *SuspendRequest) MarshalJSON() ([]byte, error) {
   190  	return protojson.MarshalOptions{}.Marshal(m)
   191  }
   192  
   193  func (m *SuspendRequest) UnmarshalJSON(data []byte) error {
   194  	return protojson.Unmarshal(data, m)
   195  }
   196  
   197  func (m *SuspendRequest) GetName() *sim_card.Name {
   198  	if m != nil {
   199  		return m.Name
   200  	}
   201  	return nil
   202  }
   203  
   204  func (m *SuspendRequest) GetProject() *iam_project.Name {
   205  	if m != nil {
   206  		return m.Project
   207  	}
   208  	return nil
   209  }
   210  
   211  func (m *SuspendRequest) SetName(fv *sim_card.Name) {
   212  	if m == nil {
   213  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "SuspendRequest"))
   214  	}
   215  	m.Name = fv
   216  }
   217  
   218  func (m *SuspendRequest) SetProject(fv *iam_project.Name) {
   219  	if m == nil {
   220  		panic(fmt.Errorf("can't set %s on nil %s", "Project", "SuspendRequest"))
   221  	}
   222  	m.Project = fv
   223  }
   224  
   225  // A request message of the Terminate method.
   226  type TerminateRequest struct {
   227  	state         protoimpl.MessageState
   228  	sizeCache     protoimpl.SizeCache
   229  	unknownFields protoimpl.UnknownFields
   230  	// Name of ntt.cellular_api.v1.SimCard
   231  	Name    *sim_card.Name    `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
   232  	Project *iam_project.Name `protobuf:"bytes,2,opt,customtype=Name,name=project,proto3" json:"project,omitempty"`
   233  }
   234  
   235  func (m *TerminateRequest) Reset() {
   236  	*m = TerminateRequest{}
   237  	if protoimpl.UnsafeEnabled {
   238  		mi := &edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[2]
   239  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   240  		ms.StoreMessageInfo(mi)
   241  	}
   242  }
   243  
   244  func (m *TerminateRequest) String() string {
   245  	return protoimpl.X.MessageStringOf(m)
   246  }
   247  
   248  func (*TerminateRequest) ProtoMessage() {}
   249  
   250  func (m *TerminateRequest) ProtoReflect() preflect.Message {
   251  	mi := &edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[2]
   252  	if protoimpl.UnsafeEnabled && m != nil {
   253  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   254  		if ms.LoadMessageInfo() == nil {
   255  			ms.StoreMessageInfo(mi)
   256  		}
   257  		return ms
   258  	}
   259  	return mi.MessageOf(m)
   260  }
   261  
   262  func (*TerminateRequest) GotenMessage() {}
   263  
   264  // Deprecated, Use TerminateRequest.ProtoReflect.Descriptor instead.
   265  func (*TerminateRequest) Descriptor() ([]byte, []int) {
   266  	return edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescGZIP(), []int{2}
   267  }
   268  
   269  func (m *TerminateRequest) Unmarshal(b []byte) error {
   270  	return proto.Unmarshal(b, m)
   271  }
   272  
   273  func (m *TerminateRequest) Marshal() ([]byte, error) {
   274  	return proto.Marshal(m)
   275  }
   276  
   277  func (m *TerminateRequest) MarshalJSON() ([]byte, error) {
   278  	return protojson.MarshalOptions{}.Marshal(m)
   279  }
   280  
   281  func (m *TerminateRequest) UnmarshalJSON(data []byte) error {
   282  	return protojson.Unmarshal(data, m)
   283  }
   284  
   285  func (m *TerminateRequest) GetName() *sim_card.Name {
   286  	if m != nil {
   287  		return m.Name
   288  	}
   289  	return nil
   290  }
   291  
   292  func (m *TerminateRequest) GetProject() *iam_project.Name {
   293  	if m != nil {
   294  		return m.Project
   295  	}
   296  	return nil
   297  }
   298  
   299  func (m *TerminateRequest) SetName(fv *sim_card.Name) {
   300  	if m == nil {
   301  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "TerminateRequest"))
   302  	}
   303  	m.Name = fv
   304  }
   305  
   306  func (m *TerminateRequest) SetProject(fv *iam_project.Name) {
   307  	if m == nil {
   308  		panic(fmt.Errorf("can't set %s on nil %s", "Project", "TerminateRequest"))
   309  	}
   310  	m.Project = fv
   311  }
   312  
   313  // A request message of the Reactivate method.
   314  type ReactivateRequest struct {
   315  	state         protoimpl.MessageState
   316  	sizeCache     protoimpl.SizeCache
   317  	unknownFields protoimpl.UnknownFields
   318  	// Name of ntt.cellular_api.v1.SimCard
   319  	Name    *sim_card.Name    `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
   320  	Project *iam_project.Name `protobuf:"bytes,2,opt,customtype=Name,name=project,proto3" json:"project,omitempty"`
   321  }
   322  
   323  func (m *ReactivateRequest) Reset() {
   324  	*m = ReactivateRequest{}
   325  	if protoimpl.UnsafeEnabled {
   326  		mi := &edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[3]
   327  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   328  		ms.StoreMessageInfo(mi)
   329  	}
   330  }
   331  
   332  func (m *ReactivateRequest) String() string {
   333  	return protoimpl.X.MessageStringOf(m)
   334  }
   335  
   336  func (*ReactivateRequest) ProtoMessage() {}
   337  
   338  func (m *ReactivateRequest) ProtoReflect() preflect.Message {
   339  	mi := &edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[3]
   340  	if protoimpl.UnsafeEnabled && m != nil {
   341  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   342  		if ms.LoadMessageInfo() == nil {
   343  			ms.StoreMessageInfo(mi)
   344  		}
   345  		return ms
   346  	}
   347  	return mi.MessageOf(m)
   348  }
   349  
   350  func (*ReactivateRequest) GotenMessage() {}
   351  
   352  // Deprecated, Use ReactivateRequest.ProtoReflect.Descriptor instead.
   353  func (*ReactivateRequest) Descriptor() ([]byte, []int) {
   354  	return edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescGZIP(), []int{3}
   355  }
   356  
   357  func (m *ReactivateRequest) Unmarshal(b []byte) error {
   358  	return proto.Unmarshal(b, m)
   359  }
   360  
   361  func (m *ReactivateRequest) Marshal() ([]byte, error) {
   362  	return proto.Marshal(m)
   363  }
   364  
   365  func (m *ReactivateRequest) MarshalJSON() ([]byte, error) {
   366  	return protojson.MarshalOptions{}.Marshal(m)
   367  }
   368  
   369  func (m *ReactivateRequest) UnmarshalJSON(data []byte) error {
   370  	return protojson.Unmarshal(data, m)
   371  }
   372  
   373  func (m *ReactivateRequest) GetName() *sim_card.Name {
   374  	if m != nil {
   375  		return m.Name
   376  	}
   377  	return nil
   378  }
   379  
   380  func (m *ReactivateRequest) GetProject() *iam_project.Name {
   381  	if m != nil {
   382  		return m.Project
   383  	}
   384  	return nil
   385  }
   386  
   387  func (m *ReactivateRequest) SetName(fv *sim_card.Name) {
   388  	if m == nil {
   389  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "ReactivateRequest"))
   390  	}
   391  	m.Name = fv
   392  }
   393  
   394  func (m *ReactivateRequest) SetProject(fv *iam_project.Name) {
   395  	if m == nil {
   396  		panic(fmt.Errorf("can't set %s on nil %s", "Project", "ReactivateRequest"))
   397  	}
   398  	m.Project = fv
   399  }
   400  
   401  var edgelq_cellular_api_proto_v1_sim_card_custom_proto preflect.FileDescriptor
   402  
   403  var edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDesc = []byte{
   404  	0x0a, 0x32, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61,
   405  	0x72, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x73,
   406  	0x69, 0x6d, 0x5f, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x2e, 0x70,
   407  	0x72, 0x6f, 0x74, 0x6f, 0x12, 0x13, 0x6e, 0x74, 0x74, 0x2e, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c,
   408  	0x61, 0x72, 0x5f, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e,
   409  	0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x61, 0x6c,
   410  	0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74,
   411  	0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x67,
   412  	0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x74, 0x65,
   413  	0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x65,
   414  	0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x24, 0x67, 0x6f, 0x74,
   415  	0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6d,
   416  	0x75, 0x6c, 0x74, 0x69, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74,
   417  	0x6f, 0x1a, 0x2b, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c,
   418  	0x61, 0x72, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f,
   419  	0x73, 0x69, 0x6d, 0x5f, 0x63, 0x61, 0x72, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x32,
   420  	0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x2d,
   421  	0x61, 0x70, 0x69, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x73, 0x69, 0x6d,
   422  	0x5f, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f,
   423  	0x74, 0x6f, 0x22, 0x70, 0x0a, 0x0f, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x52, 0x65,
   424  	0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
   425  	0x01, 0x28, 0x09, 0x42, 0x0f, 0xb2, 0xda, 0x21, 0x0b, 0x0a, 0x09, 0x0a, 0x07, 0x53, 0x69, 0x6d,
   426  	0x43, 0x61, 0x72, 0x64, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x70, 0x72,
   427  	0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1e, 0xb2, 0xda, 0x21,
   428  	0x1a, 0x0a, 0x18, 0x0a, 0x16, 0x69, 0x61, 0x6d, 0x2e, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2e,
   429  	0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f,
   430  	0x6a, 0x65, 0x63, 0x74, 0x22, 0x6f, 0x0a, 0x0e, 0x53, 0x75, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x52,
   431  	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
   432  	0x20, 0x01, 0x28, 0x09, 0x42, 0x0f, 0xb2, 0xda, 0x21, 0x0b, 0x0a, 0x09, 0x0a, 0x07, 0x53, 0x69,
   433  	0x6d, 0x43, 0x61, 0x72, 0x64, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x70,
   434  	0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1e, 0xb2, 0xda,
   435  	0x21, 0x1a, 0x0a, 0x18, 0x0a, 0x16, 0x69, 0x61, 0x6d, 0x2e, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71,
   436  	0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72,
   437  	0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x71, 0x0a, 0x10, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61,
   438  	0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
   439  	0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0f, 0xb2, 0xda, 0x21, 0x0b, 0x0a, 0x09, 0x0a,
   440  	0x07, 0x53, 0x69, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x38,
   441  	0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
   442  	0x1e, 0xb2, 0xda, 0x21, 0x1a, 0x0a, 0x18, 0x0a, 0x16, 0x69, 0x61, 0x6d, 0x2e, 0x65, 0x64, 0x67,
   443  	0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
   444  	0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x72, 0x0a, 0x11, 0x52, 0x65, 0x61, 0x63,
   445  	0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a,
   446  	0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0f, 0xb2, 0xda, 0x21,
   447  	0x0b, 0x0a, 0x09, 0x0a, 0x07, 0x53, 0x69, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x52, 0x04, 0x6e, 0x61,
   448  	0x6d, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20,
   449  	0x01, 0x28, 0x09, 0x42, 0x1e, 0xb2, 0xda, 0x21, 0x1a, 0x0a, 0x18, 0x0a, 0x16, 0x69, 0x61, 0x6d,
   450  	0x2e, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x72, 0x6f, 0x6a,
   451  	0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x42, 0x82, 0x01, 0xe8,
   452  	0xde, 0x21, 0x00, 0x0a, 0x1a, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x63, 0x65, 0x6c,
   453  	0x6c, 0x75, 0x6c, 0x61, 0x72, 0x5f, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x62, 0x2e, 0x76, 0x31, 0x42,
   454  	0x12, 0x53, 0x69, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x72,
   455  	0x6f, 0x74, 0x6f, 0x50, 0x00, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f,
   456  	0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c,
   457  	0x71, 0x2f, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x63,
   458  	0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x73, 0x69, 0x6d, 0x5f, 0x63, 0x61, 0x72,
   459  	0x64, 0x3b, 0x73, 0x69, 0x6d, 0x5f, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e,
   460  	0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   461  }
   462  
   463  var (
   464  	edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescOnce sync.Once
   465  	edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescData = edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDesc
   466  )
   467  
   468  func edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescGZIP() []byte {
   469  	edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescOnce.Do(func() {
   470  		edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescData)
   471  	})
   472  	return edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDescData
   473  }
   474  
   475  var edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
   476  var edgelq_cellular_api_proto_v1_sim_card_custom_proto_goTypes = []interface{}{
   477  	(*ActivateRequest)(nil),   // 0: ntt.cellular_api.v1.ActivateRequest
   478  	(*SuspendRequest)(nil),    // 1: ntt.cellular_api.v1.SuspendRequest
   479  	(*TerminateRequest)(nil),  // 2: ntt.cellular_api.v1.TerminateRequest
   480  	(*ReactivateRequest)(nil), // 3: ntt.cellular_api.v1.ReactivateRequest
   481  }
   482  var edgelq_cellular_api_proto_v1_sim_card_custom_proto_depIdxs = []int32{
   483  	0, // [0:0] is the sub-list for method output_type
   484  	0, // [0:0] is the sub-list for method input_type
   485  	0, // [0:0] is the sub-list for extension type_name
   486  	0, // [0:0] is the sub-list for extension extendee
   487  	0, // [0:0] is the sub-list for field type_name
   488  }
   489  
   490  func init() { edgelq_cellular_api_proto_v1_sim_card_custom_proto_init() }
   491  func edgelq_cellular_api_proto_v1_sim_card_custom_proto_init() {
   492  	if edgelq_cellular_api_proto_v1_sim_card_custom_proto != nil {
   493  		return
   494  	}
   495  	if !protoimpl.UnsafeEnabled {
   496  
   497  		edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   498  			switch v := v.(*ActivateRequest); i {
   499  			case 0:
   500  				return &v.state
   501  			case 1:
   502  				return &v.sizeCache
   503  			case 2:
   504  				return &v.unknownFields
   505  			default:
   506  				return nil
   507  			}
   508  		}
   509  		edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   510  			switch v := v.(*SuspendRequest); i {
   511  			case 0:
   512  				return &v.state
   513  			case 1:
   514  				return &v.sizeCache
   515  			case 2:
   516  				return &v.unknownFields
   517  			default:
   518  				return nil
   519  			}
   520  		}
   521  		edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
   522  			switch v := v.(*TerminateRequest); i {
   523  			case 0:
   524  				return &v.state
   525  			case 1:
   526  				return &v.sizeCache
   527  			case 2:
   528  				return &v.unknownFields
   529  			default:
   530  				return nil
   531  			}
   532  		}
   533  		edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
   534  			switch v := v.(*ReactivateRequest); i {
   535  			case 0:
   536  				return &v.state
   537  			case 1:
   538  				return &v.sizeCache
   539  			case 2:
   540  				return &v.unknownFields
   541  			default:
   542  				return nil
   543  			}
   544  		}
   545  	}
   546  
   547  	type x struct{}
   548  	out := protoimpl.TypeBuilder{
   549  		File: protoimpl.DescBuilder{
   550  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   551  			RawDescriptor: edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDesc,
   552  			NumEnums:      0,
   553  			NumMessages:   4,
   554  			NumExtensions: 0,
   555  			NumServices:   0,
   556  		},
   557  		GoTypes:           edgelq_cellular_api_proto_v1_sim_card_custom_proto_goTypes,
   558  		DependencyIndexes: edgelq_cellular_api_proto_v1_sim_card_custom_proto_depIdxs,
   559  		MessageInfos:      edgelq_cellular_api_proto_v1_sim_card_custom_proto_msgTypes,
   560  	}.Build()
   561  	edgelq_cellular_api_proto_v1_sim_card_custom_proto = out.File
   562  	edgelq_cellular_api_proto_v1_sim_card_custom_proto_rawDesc = nil
   563  	edgelq_cellular_api_proto_v1_sim_card_custom_proto_goTypes = nil
   564  	edgelq_cellular_api_proto_v1_sim_card_custom_proto_depIdxs = nil
   565  }