Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exampleoc/a/a-0.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package a is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../pathgen/testdata/yang/openconfig-simple.yang
- ../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion exampleoc/enum.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../pathgen/testdata/yang/openconfig-simple.yang
- ../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion exampleoc/enum_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../pathgen/testdata/yang/openconfig-simple.yang
- ../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion exampleoc/exampleocpath/exampleocpath.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package exampleocpath is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../pathgen/testdata/yang/openconfig-simple.yang
- ../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion exampleoc/modelb/modelb-0.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package modelb is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../pathgen/testdata/yang/openconfig-simple.yang
- ../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion exampleoc/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../pathgen/testdata/yang/openconfig-simple.yang
- ../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
43 changes: 42 additions & 1 deletion exampleoc/structs-0.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../pathgen/testdata/yang/openconfig-simple.yang
- ../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down Expand Up @@ -1125,6 +1125,16 @@ func (t *Model) RenameMultiKey(oldK, newK Model_MultiKey_Key) error {
return nil
}

// GetOrCreateMultiKeyMap returns the list (map) from Model.
//
// It initializes the field if not already initialized.
func (t *Model) GetOrCreateMultiKeyMap() map[Model_MultiKey_Key]*Model_MultiKey {
if t.MultiKey == nil {
t.MultiKey = make(map[Model_MultiKey_Key]*Model_MultiKey)
}
return t.MultiKey
}

// GetOrCreateMultiKey retrieves the value with the specified keys from
// the receiver Model. If the entry does not exist, then it is created.
// It returns the existing or new list member.
Expand Down Expand Up @@ -1258,6 +1268,16 @@ func (t *Model) RenameSingleKey(oldK, newK string) error {
return nil
}

// GetOrCreateSingleKeyMap returns the list (map) from Model.
//
// It initializes the field if not already initialized.
func (t *Model) GetOrCreateSingleKeyMap() map[string]*Model_SingleKey {
if t.SingleKey == nil {
t.SingleKey = make(map[string]*Model_SingleKey)
}
return t.SingleKey
}

// GetOrCreateSingleKey retrieves the value with the specified keys from
// the receiver Model. If the entry does not exist, then it is created.
// It returns the existing or new list member.
Expand Down Expand Up @@ -1688,6 +1708,16 @@ func (t *Model_SingleKey) RenameSingleKey(oldK, newK string) error {
return nil
}

// GetOrCreateSingleKeyMap returns the list (map) from Model_SingleKey.
//
// It initializes the field if not already initialized.
func (t *Model_SingleKey) GetOrCreateSingleKeyMap() map[string]*Model_SingleKey_SingleKey {
if t.SingleKey == nil {
t.SingleKey = make(map[string]*Model_SingleKey_SingleKey)
}
return t.SingleKey
}

// GetOrCreateSingleKey retrieves the value with the specified keys from
// the receiver Model_SingleKey. If the entry does not exist, then it is created.
// It returns the existing or new list member.
Expand Down Expand Up @@ -1847,6 +1877,17 @@ func (t *Model_SingleKey) SetValue(v int64) {
t.Value = &v
}

// GetOrCreateOrderedListMap returns the ordered map field
// OrderedList from Model_SingleKey.
//
// It initializes the field if not already initialized.
func (s *Model_SingleKey) GetOrCreateOrderedListMap() *Model_SingleKey_OrderedList_OrderedMap {
if s.OrderedList == nil {
s.OrderedList = &Model_SingleKey_OrderedList_OrderedMap{}
}
return s.OrderedList
}

// AppendNewOrderedList creates a new entry in the OrderedList
// ordered map of the Model_SingleKey struct. The keys of the list are
// populated from the input arguments.
Expand Down
2 changes: 1 addition & 1 deletion exampleoc/union.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../pathgen/testdata/yang/openconfig-simple.yang
- ../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ module github.com/openconfig/ygnmi
go 1.18

require (
github.com/golang/glog v1.1.0
github.com/golang/glog v1.2.2
github.com/google/go-cmp v0.6.0
github.com/openconfig/gnmi v0.10.0
github.com/openconfig/gocloser v0.0.0-20220310182203-c6c950ed3b0b
github.com/openconfig/goyang v1.4.4
github.com/openconfig/ygot v0.29.17
github.com/openconfig/goyang v1.4.5
github.com/openconfig/ygot v0.29.20
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.15.0
Expand Down
12 changes: 6 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE=
github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ=
github.com/golang/glog v1.2.2 h1:1+mZ9upx1Dh6FmUTFR1naJ77miKiXgALjWOZ3NVFPmY=
github.com/golang/glog v1.2.2/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w=
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
Expand Down Expand Up @@ -166,13 +166,13 @@ github.com/openconfig/gnmi v0.10.0/go.mod h1:Y9os75GmSkhHw2wX8sMsxfI7qRGAEcDh8NT
github.com/openconfig/gocloser v0.0.0-20220310182203-c6c950ed3b0b h1:NSYuxdlOWLldNpid1dThR6Dci96juXioUguMho6aliI=
github.com/openconfig/gocloser v0.0.0-20220310182203-c6c950ed3b0b/go.mod h1:uhC/ybmPapgeyAL2b9ZrUQ+DZE+DB+J+/7377PX+lek=
github.com/openconfig/goyang v0.0.0-20200115183954-d0a48929f0ea/go.mod h1:dhXaV0JgHJzdrHi2l+w0fZrwArtXL7jEFoiqLEdmkvU=
github.com/openconfig/goyang v1.4.4 h1:ee0bbD60eQIjqrzH5S8yjneA6kA36UdxitokeL3+SGg=
github.com/openconfig/goyang v1.4.4/go.mod h1:sdNZi/wdTZyLNBNfgLzmmbi7kISm7FskMDKKzMY+x1M=
github.com/openconfig/goyang v1.4.5 h1:+s3p3MeiPQ/QNsC5DL3MXhCp5cv4dag3vlGKCtszsRU=
github.com/openconfig/goyang v1.4.5/go.mod h1:sdNZi/wdTZyLNBNfgLzmmbi7kISm7FskMDKKzMY+x1M=
github.com/openconfig/grpctunnel v0.0.0-20220819142823-6f5422b8ca70 h1:t6SvvdfWCMlw0XPlsdxO8EgO+q/fXnTevDjdYREKFwU=
github.com/openconfig/grpctunnel v0.0.0-20220819142823-6f5422b8ca70/go.mod h1:OmTWe7RyZj2CIzIgy4ovEBzCLBJzRvWSZmn7u02U9gU=
github.com/openconfig/ygot v0.6.0/go.mod h1:o30svNf7O0xK+R35tlx95odkDmZWS9JyWWQSmIhqwAs=
github.com/openconfig/ygot v0.29.17 h1:o1r7jSsWdpuIk/mqrt0xZ/MfE8CRUsgIPUwWudnZqaY=
github.com/openconfig/ygot v0.29.17/go.mod h1:LeoQY1Ll4N20ccB33VjukrWJ6633V7jtg223GBfjHno=
github.com/openconfig/ygot v0.29.20 h1:XHLpwCN91QuKc2LAvnEqtCmH8OuxgLlErDhrdl2mJw8=
github.com/openconfig/ygot v0.29.20/go.mod h1:K8HbrPm/v8/emtGQ9+RsJXx6UPKC5JzS/FqK7pN+tMo=
github.com/pborman/getopt v1.1.0/go.mod h1:FxXoW1Re00sQG/+KIkuSqRL/LwQgSkv7uyac+STFsbk=
github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ=
github.com/pelletier/go-toml/v2 v2.0.8/go.mod h1:vuYfssBdrU2XDZ9bYydBu6t+6a6PYNcZljzZR9VXg+4=
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocconfig/a/a-0.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package a is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocconfig/enum.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocconfig/enum_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package exampleocconfigpath is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocconfig/modelb/modelb-0.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package modelb is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocconfig/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
43 changes: 42 additions & 1 deletion internal/exampleocconfig/structs-0.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down Expand Up @@ -1125,6 +1125,16 @@ func (t *Model) RenameMultiKey(oldK, newK Model_MultiKey_Key) error {
return nil
}

// GetOrCreateMultiKeyMap returns the list (map) from Model.
//
// It initializes the field if not already initialized.
func (t *Model) GetOrCreateMultiKeyMap() map[Model_MultiKey_Key]*Model_MultiKey {
if t.MultiKey == nil {
t.MultiKey = make(map[Model_MultiKey_Key]*Model_MultiKey)
}
return t.MultiKey
}

// GetOrCreateMultiKey retrieves the value with the specified keys from
// the receiver Model. If the entry does not exist, then it is created.
// It returns the existing or new list member.
Expand Down Expand Up @@ -1258,6 +1268,16 @@ func (t *Model) RenameSingleKey(oldK, newK string) error {
return nil
}

// GetOrCreateSingleKeyMap returns the list (map) from Model.
//
// It initializes the field if not already initialized.
func (t *Model) GetOrCreateSingleKeyMap() map[string]*Model_SingleKey {
if t.SingleKey == nil {
t.SingleKey = make(map[string]*Model_SingleKey)
}
return t.SingleKey
}

// GetOrCreateSingleKey retrieves the value with the specified keys from
// the receiver Model. If the entry does not exist, then it is created.
// It returns the existing or new list member.
Expand Down Expand Up @@ -1688,6 +1708,16 @@ func (t *Model_SingleKey) RenameSingleKey(oldK, newK string) error {
return nil
}

// GetOrCreateSingleKeyMap returns the list (map) from Model_SingleKey.
//
// It initializes the field if not already initialized.
func (t *Model_SingleKey) GetOrCreateSingleKeyMap() map[string]*Model_SingleKey_SingleKey {
if t.SingleKey == nil {
t.SingleKey = make(map[string]*Model_SingleKey_SingleKey)
}
return t.SingleKey
}

// GetOrCreateSingleKey retrieves the value with the specified keys from
// the receiver Model_SingleKey. If the entry does not exist, then it is created.
// It returns the existing or new list member.
Expand Down Expand Up @@ -1847,6 +1877,17 @@ func (t *Model_SingleKey) SetValue(v int64) {
t.Value = &v
}

// GetOrCreateOrderedListMap returns the ordered map field
// OrderedList from Model_SingleKey.
//
// It initializes the field if not already initialized.
func (s *Model_SingleKey) GetOrCreateOrderedListMap() *Model_SingleKey_OrderedList_OrderedMap {
if s.OrderedList == nil {
s.OrderedList = &Model_SingleKey_OrderedList_OrderedMap{}
}
return s.OrderedList
}

// AppendNewOrderedList creates a new entry in the OrderedList
// ordered map of the Model_SingleKey struct. The keys of the list are
// populated from the input arguments.
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocconfig/union.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocunordered/enum.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocunordered/enum_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package exampleocunorderedpath is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocunordered/nested/nested-0.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package nested is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocunordered/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
2 changes: 1 addition & 1 deletion internal/exampleocunordered/simple/simple-0.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Package simple is a generated package which contains definitions
of structs which generate gNMI paths for a YANG schema.

This package was generated by ygnmi version: (devel): (ygot: v0.29.17)
This package was generated by ygnmi version: (devel): (ygot: v0.29.20)
using the following YANG input files:
- ../../pathgen/testdata/yang/openconfig-simple.yang
- ../../pathgen/testdata/yang/openconfig-withlistval.yang
Expand Down
Loading