idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 1 | // |
| 2 | // Copyright 2019 AT&T Intellectual Property |
| 3 | // Copyright 2019 Nokia |
| 4 | // |
| 5 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | // you may not use this file except in compliance with the License. |
| 7 | // You may obtain a copy of the License at |
| 8 | // |
| 9 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | // |
| 11 | // Unless required by applicable law or agreed to in writing, software |
| 12 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | // See the License for the specific language governing permissions and |
| 15 | // limitations under the License. |
| 16 | |
| 17 | // |
| 18 | // This source code is part of the near-RT RIC (RAN Intelligent Controller) |
| 19 | // platform project (RICP). |
| 20 | |
| 21 | // Code generated by protoc-gen-go. DO NOT EDIT. |
| 22 | // versions: |
dhirajverma | 651d3e8 | 2022-05-18 02:15:45 -0400 | [diff] [blame] | 23 | // protoc-gen-go v1.26.0 |
| 24 | // protoc v3.15.8 |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 25 | // source: ran_function.proto |
| 26 | |
| 27 | package entities |
| 28 | |
| 29 | import ( |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 30 | protoreflect "google.golang.org/protobuf/reflect/protoreflect" |
| 31 | protoimpl "google.golang.org/protobuf/runtime/protoimpl" |
| 32 | reflect "reflect" |
| 33 | sync "sync" |
| 34 | ) |
| 35 | |
| 36 | const ( |
| 37 | // Verify that this generated code is sufficiently up-to-date. |
| 38 | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) |
| 39 | // Verify that runtime/protoimpl is sufficiently up-to-date. |
| 40 | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) |
| 41 | ) |
| 42 | |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 43 | type RanFunction struct { |
| 44 | state protoimpl.MessageState |
| 45 | sizeCache protoimpl.SizeCache |
| 46 | unknownFields protoimpl.UnknownFields |
| 47 | |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 48 | RanFunctionId uint32 `protobuf:"varint,1,opt,name=ran_function_id,json=ranFunctionId,proto3" json:"ran_function_id,omitempty"` |
| 49 | RanFunctionDefinition string `protobuf:"bytes,2,opt,name=ran_function_definition,json=ranFunctionDefinition,proto3" json:"ran_function_definition,omitempty"` |
| 50 | RanFunctionRevision uint32 `protobuf:"varint,3,opt,name=ran_function_revision,json=ranFunctionRevision,proto3" json:"ran_function_revision,omitempty"` |
naman.gupta | 890fd61 | 2021-11-12 15:02:34 +0530 | [diff] [blame] | 51 | RanFunctionOid string `protobuf:"bytes,4,opt,name=ran_function_oid,json=ranFunctionOid,proto3" json:"ran_function_oid,omitempty"` |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | func (x *RanFunction) Reset() { |
| 55 | *x = RanFunction{} |
| 56 | if protoimpl.UnsafeEnabled { |
| 57 | mi := &file_ran_function_proto_msgTypes[0] |
| 58 | ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| 59 | ms.StoreMessageInfo(mi) |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | func (x *RanFunction) String() string { |
| 64 | return protoimpl.X.MessageStringOf(x) |
| 65 | } |
| 66 | |
| 67 | func (*RanFunction) ProtoMessage() {} |
| 68 | |
| 69 | func (x *RanFunction) ProtoReflect() protoreflect.Message { |
| 70 | mi := &file_ran_function_proto_msgTypes[0] |
| 71 | if protoimpl.UnsafeEnabled && x != nil { |
| 72 | ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| 73 | if ms.LoadMessageInfo() == nil { |
| 74 | ms.StoreMessageInfo(mi) |
| 75 | } |
| 76 | return ms |
| 77 | } |
| 78 | return mi.MessageOf(x) |
| 79 | } |
| 80 | |
| 81 | // Deprecated: Use RanFunction.ProtoReflect.Descriptor instead. |
| 82 | func (*RanFunction) Descriptor() ([]byte, []int) { |
| 83 | return file_ran_function_proto_rawDescGZIP(), []int{0} |
| 84 | } |
| 85 | |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 86 | func (x *RanFunction) GetRanFunctionId() uint32 { |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 87 | if x != nil { |
| 88 | return x.RanFunctionId |
| 89 | } |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 90 | return 0 |
| 91 | } |
| 92 | |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 93 | func (x *RanFunction) GetRanFunctionDefinition() string { |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 94 | if x != nil { |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 95 | return x.RanFunctionDefinition |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 96 | } |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 97 | return "" |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 98 | } |
| 99 | |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 100 | func (x *RanFunction) GetRanFunctionRevision() uint32 { |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 101 | if x != nil { |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 102 | return x.RanFunctionRevision |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 103 | } |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 104 | return 0 |
idanshal | 90a943f | 2020-05-21 15:43:16 +0300 | [diff] [blame] | 105 | } |
| 106 | |
naman.gupta | 890fd61 | 2021-11-12 15:02:34 +0530 | [diff] [blame] | 107 | func (x *RanFunction) GetRanFunctionOid() string { |
| 108 | if x != nil { |
| 109 | return x.RanFunctionOid |
| 110 | } |
| 111 | return "" |
| 112 | } |
| 113 | |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 114 | var File_ran_function_proto protoreflect.FileDescriptor |
| 115 | |
| 116 | var file_ran_function_proto_rawDesc = []byte{ |
| 117 | 0x0a, 0x12, 0x72, 0x61, 0x6e, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, |
naman.gupta | 890fd61 | 2021-11-12 15:02:34 +0530 | [diff] [blame] | 118 | 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x22, 0xcb, |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 119 | 0x01, 0x0a, 0x0b, 0x52, 0x61, 0x6e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 120 | 0x0a, 0x0f, 0x72, 0x61, 0x6e, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 121 | 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x72, 0x61, 0x6e, 0x46, 0x75, 0x6e, 0x63, |
| 122 | 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x17, 0x72, 0x61, 0x6e, 0x5f, 0x66, 0x75, |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 123 | 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 124 | 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x72, 0x61, 0x6e, 0x46, 0x75, 0x6e, 0x63, |
| 125 | 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x32, |
| 126 | 0x0a, 0x15, 0x72, 0x61, 0x6e, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, |
| 127 | 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x13, 0x72, |
| 128 | 0x61, 0x6e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, |
naman.gupta | 890fd61 | 2021-11-12 15:02:34 +0530 | [diff] [blame] | 129 | 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x10, 0x72, 0x61, 0x6e, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, |
| 130 | 0x6f, 0x6e, 0x5f, 0x6f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x61, |
dhirajverma | 651d3e8 | 2022-05-18 02:15:45 -0400 | [diff] [blame] | 131 | 0x6e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x69, 0x64, 0x42, 0x33, 0x5a, 0x31, |
| 132 | 0x67, 0x65, 0x72, 0x72, 0x69, 0x74, 0x2e, 0x6f, 0x2d, 0x72, 0x61, 0x6e, 0x2d, 0x73, 0x63, 0x2e, |
| 133 | 0x6f, 0x72, 0x67, 0x2f, 0x72, 0x2f, 0x72, 0x69, 0x63, 0x2d, 0x70, 0x6c, 0x74, 0x2f, 0x6e, 0x6f, |
| 134 | 0x64, 0x65, 0x62, 0x2d, 0x72, 0x6e, 0x69, 0x62, 0x2f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, |
| 135 | 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | var ( |
| 139 | file_ran_function_proto_rawDescOnce sync.Once |
| 140 | file_ran_function_proto_rawDescData = file_ran_function_proto_rawDesc |
| 141 | ) |
| 142 | |
| 143 | func file_ran_function_proto_rawDescGZIP() []byte { |
| 144 | file_ran_function_proto_rawDescOnce.Do(func() { |
| 145 | file_ran_function_proto_rawDescData = protoimpl.X.CompressGZIP(file_ran_function_proto_rawDescData) |
| 146 | }) |
| 147 | return file_ran_function_proto_rawDescData |
| 148 | } |
| 149 | |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 150 | var file_ran_function_proto_msgTypes = make([]protoimpl.MessageInfo, 1) |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 151 | var file_ran_function_proto_goTypes = []interface{}{ |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 152 | (*RanFunction)(nil), // 0: entities.RanFunction |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 153 | } |
| 154 | var file_ran_function_proto_depIdxs = []int32{ |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 155 | 0, // [0:0] is the sub-list for method output_type |
| 156 | 0, // [0:0] is the sub-list for method input_type |
| 157 | 0, // [0:0] is the sub-list for extension type_name |
| 158 | 0, // [0:0] is the sub-list for extension extendee |
| 159 | 0, // [0:0] is the sub-list for field type_name |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | func init() { file_ran_function_proto_init() } |
| 163 | func file_ran_function_proto_init() { |
| 164 | if File_ran_function_proto != nil { |
| 165 | return |
| 166 | } |
| 167 | if !protoimpl.UnsafeEnabled { |
| 168 | file_ran_function_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { |
| 169 | switch v := v.(*RanFunction); i { |
| 170 | case 0: |
| 171 | return &v.state |
| 172 | case 1: |
| 173 | return &v.sizeCache |
| 174 | case 2: |
| 175 | return &v.unknownFields |
| 176 | default: |
| 177 | return nil |
| 178 | } |
| 179 | } |
idanshal | 3da0b28 | 2020-05-25 10:49:24 +0300 | [diff] [blame] | 180 | } |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 181 | type x struct{} |
| 182 | out := protoimpl.TypeBuilder{ |
| 183 | File: protoimpl.DescBuilder{ |
| 184 | GoPackagePath: reflect.TypeOf(x{}).PkgPath(), |
| 185 | RawDescriptor: file_ran_function_proto_rawDesc, |
idanshal | 691b43d | 2020-06-17 11:29:24 +0300 | [diff] [blame] | 186 | NumEnums: 0, |
| 187 | NumMessages: 1, |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 188 | NumExtensions: 0, |
| 189 | NumServices: 0, |
| 190 | }, |
| 191 | GoTypes: file_ran_function_proto_goTypes, |
| 192 | DependencyIndexes: file_ran_function_proto_depIdxs, |
idanshal | 63df85b | 2020-05-20 12:13:00 +0300 | [diff] [blame] | 193 | MessageInfos: file_ran_function_proto_msgTypes, |
| 194 | }.Build() |
| 195 | File_ran_function_proto = out.File |
| 196 | file_ran_function_proto_rawDesc = nil |
| 197 | file_ran_function_proto_goTypes = nil |
| 198 | file_ran_function_proto_depIdxs = nil |
| 199 | } |