Newer
Older
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.25.0-devel
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// source: proto/gosdn/pnd/pnd.proto
package pnd
import (
proto "github.com/golang/protobuf/proto"
gnmi "github.com/openconfig/gnmi/proto/gnmi"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
_ "google.golang.org/protobuf/types/descriptorpb"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
// This is a compile-time assertion that a sufficiently up-to-date version
// of the legacy proto package is being used.
const _ = proto.ProtoPackageIsVersion4
type Change_State int32
const (
Change_PENDING Change_State = 0
Change_COMMITTED Change_State = 1
Change_CONFIRMED Change_State = 2
)
// Enum value maps for Change_State.
var (
Change_State_name = map[int32]string{
0: "PENDING",
1: "COMMITTED",
2: "CONFIRMED",
}
Change_State_value = map[string]int32{
"PENDING": 0,
"COMMITTED": 1,
"CONFIRMED": 2,
}
)
func (x Change_State) Enum() *Change_State {
p := new(Change_State)
*p = x
return p
}
func (x Change_State) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (Change_State) Descriptor() protoreflect.EnumDescriptor {
return file_proto_gosdn_pnd_pnd_proto_enumTypes[0].Descriptor()
}
func (Change_State) Type() protoreflect.EnumType {
return &file_proto_gosdn_pnd_pnd_proto_enumTypes[0]
}
func (x Change_State) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use Change_State.Descriptor instead.
func (Change_State) EnumDescriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{9, 0}
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
}
type SetResponseStatus int32
const (
SetResponse_OK SetResponseStatus = 0
SetResponse_ERROR SetResponseStatus = 1
)
// Enum value maps for SetResponseStatus.
var (
SetResponseStatus_name = map[int32]string{
0: "OK",
1: "ERROR",
}
SetResponseStatus_value = map[string]int32{
"OK": 0,
"ERROR": 1,
}
)
func (x SetResponseStatus) Enum() *SetResponseStatus {
p := new(SetResponseStatus)
*p = x
return p
}
func (x SetResponseStatus) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (SetResponseStatus) Descriptor() protoreflect.EnumDescriptor {
return file_proto_gosdn_pnd_pnd_proto_enumTypes[1].Descriptor()
}
func (SetResponseStatus) Type() protoreflect.EnumType {
return &file_proto_gosdn_pnd_pnd_proto_enumTypes[1]
}
func (x SetResponseStatus) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use SetResponseStatus.Descriptor instead.
func (SetResponseStatus) EnumDescriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{14, 0}
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
}
type ChangeRequest_Operation int32
const (
ChangeRequest_CREATE ChangeRequest_Operation = 0
ChangeRequest_COMMIT ChangeRequest_Operation = 1
ChangeRequest_CONFIRM ChangeRequest_Operation = 2
)
// Enum value maps for ChangeRequest_Operation.
var (
ChangeRequest_Operation_name = map[int32]string{
0: "CREATE",
1: "COMMIT",
2: "CONFIRM",
}
ChangeRequest_Operation_value = map[string]int32{
"CREATE": 0,
"COMMIT": 1,
"CONFIRM": 2,
}
)
func (x ChangeRequest_Operation) Enum() *ChangeRequest_Operation {
p := new(ChangeRequest_Operation)
*p = x
return p
}
func (x ChangeRequest_Operation) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (ChangeRequest_Operation) Descriptor() protoreflect.EnumDescriptor {
return file_proto_gosdn_pnd_pnd_proto_enumTypes[2].Descriptor()
}
func (ChangeRequest_Operation) Type() protoreflect.EnumType {
return &file_proto_gosdn_pnd_pnd_proto_enumTypes[2]
}
func (x ChangeRequest_Operation) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use ChangeRequest_Operation.Descriptor instead.
func (ChangeRequest_Operation) EnumDescriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{15, 0}
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
}
type ChangeRequest_ApiOperation int32
const (
ChangeRequest_UPDATE ChangeRequest_ApiOperation = 0
ChangeRequest_REPLACE ChangeRequest_ApiOperation = 1
ChangeRequest_DELETE ChangeRequest_ApiOperation = 2
)
// Enum value maps for ChangeRequest_ApiOperation.
var (
ChangeRequest_ApiOperation_name = map[int32]string{
0: "UPDATE",
1: "REPLACE",
2: "DELETE",
}
ChangeRequest_ApiOperation_value = map[string]int32{
"UPDATE": 0,
"REPLACE": 1,
"DELETE": 2,
}
)
func (x ChangeRequest_ApiOperation) Enum() *ChangeRequest_ApiOperation {
p := new(ChangeRequest_ApiOperation)
*p = x
return p
}
func (x ChangeRequest_ApiOperation) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (ChangeRequest_ApiOperation) Descriptor() protoreflect.EnumDescriptor {
return file_proto_gosdn_pnd_pnd_proto_enumTypes[3].Descriptor()
}
func (ChangeRequest_ApiOperation) Type() protoreflect.EnumType {
return &file_proto_gosdn_pnd_pnd_proto_enumTypes[3]
}
func (x ChangeRequest_ApiOperation) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use ChangeRequest_ApiOperation.Descriptor instead.
func (ChangeRequest_ApiOperation) EnumDescriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{15, 1}
}
type GetRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // Timestamp in nanoseconds since Epoch.
// Types that are assignable to Request:
// *GetRequest_Pnd
// *GetRequest_Ond
// *GetRequest_Sbi
// *GetRequest_Change
Request isGetRequest_Request `protobuf_oneof:"request"`
Pid string `protobuf:"bytes,6,opt,name=pid,proto3" json:"pid,omitempty"`
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
}
func (x *GetRequest) Reset() {
*x = GetRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetRequest) ProtoMessage() {}
func (x *GetRequest) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetRequest.ProtoReflect.Descriptor instead.
func (*GetRequest) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{0}
}
func (x *GetRequest) GetTimestamp() int64 {
if x != nil {
return x.Timestamp
}
return 0
}
func (m *GetRequest) GetRequest() isGetRequest_Request {
if m != nil {
return m.Request
}
return nil
}
func (x *GetRequest) GetPnd() *GetPnd {
if x, ok := x.GetRequest().(*GetRequest_Pnd); ok {
return x.Pnd
}
return nil
}
func (x *GetRequest) GetOnd() *GetOnd {
if x, ok := x.GetRequest().(*GetRequest_Ond); ok {
return x.Ond
}
return nil
}
func (x *GetRequest) GetSbi() *GetSbi {
if x, ok := x.GetRequest().(*GetRequest_Sbi); ok {
return x.Sbi
func (x *GetRequest) GetChange() *GetChange {
if x, ok := x.GetRequest().(*GetRequest_Change); ok {
return x.Change
}
return nil
}
func (x *GetRequest) GetPid() string {
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
type isGetRequest_Request interface {
isGetRequest_Request()
}
type GetRequest_Pnd struct {
Pnd *GetPnd `protobuf:"bytes,2,opt,name=pnd,proto3,oneof"`
}
type GetRequest_Ond struct {
Ond *GetOnd `protobuf:"bytes,3,opt,name=ond,proto3,oneof"`
}
type GetRequest_Sbi struct {
Sbi *GetSbi `protobuf:"bytes,4,opt,name=sbi,proto3,oneof"`
}
type GetRequest_Change struct {
Change *GetChange `protobuf:"bytes,5,opt,name=change,proto3,oneof"`
}
func (*GetRequest_Pnd) isGetRequest_Request() {}
func (*GetRequest_Ond) isGetRequest_Request() {}
func (*GetRequest_Sbi) isGetRequest_Request() {}
func (*GetRequest_Change) isGetRequest_Request() {}
type GetPnd struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *GetPnd) Reset() {
*x = GetPnd{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetPnd) String() string {
func (*GetPnd) ProtoMessage() {}
func (x *GetPnd) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetPnd.ProtoReflect.Descriptor instead.
func (*GetPnd) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{1}
}
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
type GetOnd struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
All bool `protobuf:"varint,1,opt,name=all,proto3" json:"all,omitempty"`
Did []string `protobuf:"bytes,2,rep,name=did,proto3" json:"did,omitempty"`
}
func (x *GetOnd) Reset() {
*x = GetOnd{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetOnd) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetOnd) ProtoMessage() {}
func (x *GetOnd) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetOnd.ProtoReflect.Descriptor instead.
func (*GetOnd) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{2}
}
func (x *GetOnd) GetAll() bool {
func (x *GetOnd) GetDid() []string {
if x != nil {
return x.Did
type GetSbi struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
All bool `protobuf:"varint,1,opt,name=all,proto3" json:"all,omitempty"`
Sid []string `protobuf:"bytes,2,rep,name=sid,proto3" json:"sid,omitempty"`
}
func (x *GetSbi) Reset() {
*x = GetSbi{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
func (x *GetSbi) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetSbi) ProtoMessage() {}
func (x *GetSbi) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
return mi.MessageOf(x)
}
// Deprecated: Use GetSbi.ProtoReflect.Descriptor instead.
func (*GetSbi) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{3}
func (x *GetSbi) GetAll() bool {
if x != nil {
return x.All
func (x *GetSbi) GetSid() []string {
if x != nil {
return x.Sid
type GetChange struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
All bool `protobuf:"varint,1,opt,name=all,proto3" json:"all,omitempty"`
Cuid []string `protobuf:"bytes,2,rep,name=cuid,proto3" json:"cuid,omitempty"`
}
func (x *GetChange) Reset() {
*x = GetChange{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
func (x *GetChange) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetChange) ProtoMessage() {}
func (x *GetChange) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
// Deprecated: Use GetChange.ProtoReflect.Descriptor instead.
func (*GetChange) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{4}
func (x *GetChange) GetAll() bool {
if x != nil {
return x.All
}
return false
func (x *GetChange) GetCuid() []string {
if x != nil {
return x.Cuid
}
return nil
type GetResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // Timestamp in nanoseconds since Epoch.
Pnd *PrincipalNetworkDomain `protobuf:"bytes,2,opt,name=pnd,proto3" json:"pnd,omitempty"`
Ond []*OrchestratedNetworkingDevice `protobuf:"bytes,3,rep,name=ond,proto3" json:"ond,omitempty"`
Sbi []*SouthboundInterface `protobuf:"bytes,5,rep,name=sbi,proto3" json:"sbi,omitempty"`
Change []*Change `protobuf:"bytes,7,rep,name=change,proto3" json:"change,omitempty"`
func (x *GetResponse) Reset() {
*x = GetResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *GetResponse) String() string {
return protoimpl.X.MessageStringOf(x)
func (*GetResponse) ProtoMessage() {}
func (x *GetResponse) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
// Deprecated: Use GetResponse.ProtoReflect.Descriptor instead.
func (*GetResponse) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{5}
}
func (x *GetResponse) GetTimestamp() int64 {
if x != nil {
return x.Timestamp
}
return 0
}
func (x *GetResponse) GetPnd() *PrincipalNetworkDomain {
if x != nil {
return x.Pnd
}
return nil
}
func (x *GetResponse) GetOnd() []*OrchestratedNetworkingDevice {
if x != nil {
return x.Ond
}
return nil
}
func (x *GetResponse) GetSbi() []*SouthboundInterface {
if x != nil {
return x.Sbi
}
return nil
}
func (x *GetResponse) GetChange() []*Change {
if x != nil {
return x.Change
}
return nil
}
type PrincipalNetworkDomain struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
Ond []*OrchestratedNetworkingDevice `protobuf:"bytes,4,rep,name=ond,proto3" json:"ond,omitempty"`
Sbi []*SouthboundInterface `protobuf:"bytes,5,rep,name=sbi,proto3" json:"sbi,omitempty"`
Change []*Change `protobuf:"bytes,6,rep,name=change,proto3" json:"change,omitempty"`
}
func (x *PrincipalNetworkDomain) Reset() {
*x = PrincipalNetworkDomain{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PrincipalNetworkDomain) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PrincipalNetworkDomain) ProtoMessage() {}
func (x *PrincipalNetworkDomain) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PrincipalNetworkDomain.ProtoReflect.Descriptor instead.
func (*PrincipalNetworkDomain) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{6}
}
func (x *PrincipalNetworkDomain) GetId() string {
if x != nil {
return x.Id
}
return ""
}
func (x *PrincipalNetworkDomain) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *PrincipalNetworkDomain) GetDescription() string {
if x != nil {
return x.Description
}
return ""
}
func (x *PrincipalNetworkDomain) GetOnd() []*OrchestratedNetworkingDevice {
func (x *PrincipalNetworkDomain) GetSbi() []*SouthboundInterface {
func (x *PrincipalNetworkDomain) GetChange() []*Change {
}
return nil
}
type SouthboundInterface struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Schema string `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
}
func (x *SouthboundInterface) Reset() {
*x = SouthboundInterface{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SouthboundInterface) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SouthboundInterface) ProtoMessage() {}
func (x *SouthboundInterface) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SouthboundInterface.ProtoReflect.Descriptor instead.
func (*SouthboundInterface) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{7}
}
func (x *SouthboundInterface) GetId() string {
if x != nil {
return x.Id
}
return ""
}
func (x *SouthboundInterface) GetSchema() string {
if x != nil {
return x.Schema
}
return ""
}
type OrchestratedNetworkingDevice struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
Device []*gnmi.Notification `protobuf:"bytes,3,rep,name=device,proto3" json:"device,omitempty"`
}
func (x *OrchestratedNetworkingDevice) Reset() {
*x = OrchestratedNetworkingDevice{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *OrchestratedNetworkingDevice) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*OrchestratedNetworkingDevice) ProtoMessage() {}
func (x *OrchestratedNetworkingDevice) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use OrchestratedNetworkingDevice.ProtoReflect.Descriptor instead.
func (*OrchestratedNetworkingDevice) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{8}
}
func (x *OrchestratedNetworkingDevice) GetId() string {
if x != nil {
return x.Id
}
return ""
}
func (x *OrchestratedNetworkingDevice) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *OrchestratedNetworkingDevice) GetDevice() []*gnmi.Notification {
if x != nil {
return x.Device
}
return nil
}
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Age int64 `protobuf:"varint,2,opt,name=age,proto3" json:"age,omitempty"`
State Change_State `protobuf:"varint,3,opt,name=state,proto3,enum=gosdn.pnd.Change_State" json:"state,omitempty"`
func (x *Change) Reset() {
*x = Change{}
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Change) String() string {
func (*Change) ProtoMessage() {}
func (x *Change) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Change.ProtoReflect.Descriptor instead.
func (*Change) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{9}
func (x *Change) GetId() string {
return ""
}
func (x *Change) GetAge() int64 {
if x != nil {
return x.Age
}
return 0
func (x *Change) GetState() Change_State {
if x != nil {
return x.State
}
return Change_PENDING
}
type SetRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // Timestamp in nanoseconds since Epoch.
Ond []*SetOnd `protobuf:"bytes,2,rep,name=ond,proto3" json:"ond,omitempty"`
Sbi []*SetSbi `protobuf:"bytes,3,rep,name=sbi,proto3" json:"sbi,omitempty"`
Change []*SetChange `protobuf:"bytes,4,rep,name=change,proto3" json:"change,omitempty"`
ChangeRequest []*ChangeRequest `protobuf:"bytes,5,rep,name=changeRequest,proto3" json:"changeRequest,omitempty"`
Id string `protobuf:"bytes,6,opt,name=id,proto3" json:"id,omitempty"`
func (x *SetRequest) Reset() {
*x = SetRequest{}
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SetRequest) String() string {
func (*SetRequest) ProtoMessage() {}
func (x *SetRequest) ProtoReflect() protoreflect.Message {
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SetRequest.ProtoReflect.Descriptor instead.
func (*SetRequest) Descriptor() ([]byte, []int) {
return file_proto_gosdn_pnd_pnd_proto_rawDescGZIP(), []int{10}
func (x *SetRequest) GetTimestamp() int64 {
func (x *SetRequest) GetOnd() []*SetOnd {
if x != nil {
return x.Ond
func (x *SetRequest) GetSbi() []*SetSbi {
if x != nil {
return x.Sbi
func (x *SetRequest) GetChange() []*SetChange {
func (x *SetRequest) GetChangeRequest() []*ChangeRequest {
func (x *SetRequest) GetId() string {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *SetOnd) Reset() {
*x = SetOnd{}
mi := &file_proto_gosdn_pnd_pnd_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SetOnd) String() string {