blob: be5587b9d020c4c1bb0365450bd1c5a689b7a48e [file] [log] [blame]
idanshal63df85b2020-05-20 12:13:00 +03001//
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:
dhirajverma651d3e82022-05-18 02:15:45 -040023// protoc-gen-go v1.26.0
24// protoc v3.15.8
idanshal63df85b2020-05-20 12:13:00 +030025// source: ran_function.proto
26
27package entities
28
29import (
idanshal63df85b2020-05-20 12:13:00 +030030 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
31 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
32 reflect "reflect"
33 sync "sync"
34)
35
36const (
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
idanshal63df85b2020-05-20 12:13:00 +030043type RanFunction struct {
44 state protoimpl.MessageState
45 sizeCache protoimpl.SizeCache
46 unknownFields protoimpl.UnknownFields
47
idanshal691b43d2020-06-17 11:29:24 +030048 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.gupta890fd612021-11-12 15:02:34 +053051 RanFunctionOid string `protobuf:"bytes,4,opt,name=ran_function_oid,json=ranFunctionOid,proto3" json:"ran_function_oid,omitempty"`
idanshal63df85b2020-05-20 12:13:00 +030052}
53
54func (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
63func (x *RanFunction) String() string {
64 return protoimpl.X.MessageStringOf(x)
65}
66
67func (*RanFunction) ProtoMessage() {}
68
69func (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.
82func (*RanFunction) Descriptor() ([]byte, []int) {
83 return file_ran_function_proto_rawDescGZIP(), []int{0}
84}
85
idanshal691b43d2020-06-17 11:29:24 +030086func (x *RanFunction) GetRanFunctionId() uint32 {
idanshal63df85b2020-05-20 12:13:00 +030087 if x != nil {
88 return x.RanFunctionId
89 }
idanshal63df85b2020-05-20 12:13:00 +030090 return 0
91}
92
idanshal691b43d2020-06-17 11:29:24 +030093func (x *RanFunction) GetRanFunctionDefinition() string {
idanshal63df85b2020-05-20 12:13:00 +030094 if x != nil {
idanshal691b43d2020-06-17 11:29:24 +030095 return x.RanFunctionDefinition
idanshal63df85b2020-05-20 12:13:00 +030096 }
idanshal691b43d2020-06-17 11:29:24 +030097 return ""
idanshal63df85b2020-05-20 12:13:00 +030098}
99
idanshal691b43d2020-06-17 11:29:24 +0300100func (x *RanFunction) GetRanFunctionRevision() uint32 {
idanshal63df85b2020-05-20 12:13:00 +0300101 if x != nil {
idanshal691b43d2020-06-17 11:29:24 +0300102 return x.RanFunctionRevision
idanshal63df85b2020-05-20 12:13:00 +0300103 }
idanshal691b43d2020-06-17 11:29:24 +0300104 return 0
idanshal90a943f2020-05-21 15:43:16 +0300105}
106
naman.gupta890fd612021-11-12 15:02:34 +0530107func (x *RanFunction) GetRanFunctionOid() string {
108 if x != nil {
109 return x.RanFunctionOid
110 }
111 return ""
112}
113
idanshal63df85b2020-05-20 12:13:00 +0300114var File_ran_function_proto protoreflect.FileDescriptor
115
116var file_ran_function_proto_rawDesc = []byte{
117 0x0a, 0x12, 0x72, 0x61, 0x6e, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
naman.gupta890fd612021-11-12 15:02:34 +0530118 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x22, 0xcb,
idanshal691b43d2020-06-17 11:29:24 +0300119 0x01, 0x0a, 0x0b, 0x52, 0x61, 0x6e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26,
idanshal63df85b2020-05-20 12:13:00 +0300120 0x0a, 0x0f, 0x72, 0x61, 0x6e, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
idanshal691b43d2020-06-17 11:29:24 +0300121 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,
idanshal63df85b2020-05-20 12:13:00 +0300123 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f,
idanshal691b43d2020-06-17 11:29:24 +0300124 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.gupta890fd612021-11-12 15:02:34 +0530129 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,
dhirajverma651d3e82022-05-18 02:15:45 -0400131 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,
idanshal63df85b2020-05-20 12:13:00 +0300136}
137
138var (
139 file_ran_function_proto_rawDescOnce sync.Once
140 file_ran_function_proto_rawDescData = file_ran_function_proto_rawDesc
141)
142
143func 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
idanshal691b43d2020-06-17 11:29:24 +0300150var file_ran_function_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
idanshal63df85b2020-05-20 12:13:00 +0300151var file_ran_function_proto_goTypes = []interface{}{
idanshal691b43d2020-06-17 11:29:24 +0300152 (*RanFunction)(nil), // 0: entities.RanFunction
idanshal63df85b2020-05-20 12:13:00 +0300153}
154var file_ran_function_proto_depIdxs = []int32{
idanshal691b43d2020-06-17 11:29:24 +0300155 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
idanshal63df85b2020-05-20 12:13:00 +0300160}
161
162func init() { file_ran_function_proto_init() }
163func 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 }
idanshal3da0b282020-05-25 10:49:24 +0300180 }
idanshal63df85b2020-05-20 12:13:00 +0300181 type x struct{}
182 out := protoimpl.TypeBuilder{
183 File: protoimpl.DescBuilder{
184 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
185 RawDescriptor: file_ran_function_proto_rawDesc,
idanshal691b43d2020-06-17 11:29:24 +0300186 NumEnums: 0,
187 NumMessages: 1,
idanshal63df85b2020-05-20 12:13:00 +0300188 NumExtensions: 0,
189 NumServices: 0,
190 },
191 GoTypes: file_ran_function_proto_goTypes,
192 DependencyIndexes: file_ran_function_proto_depIdxs,
idanshal63df85b2020-05-20 12:13:00 +0300193 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}