VOL-3735 Retrieve port counters using the GetExtValue(SingleGetValue) rpc from the openolt adapter
Change-Id: I195f7c9fdc4b677c333ae9e4bb3547bb95312fdf
diff --git a/.golangci.yml b/.golangci.yml
index 0c26f3b..45b224e 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -83,4 +83,5 @@
- "don't use underscores in Go names; method Child_device_lost"
- "don't use underscores in Go names; method Start_omci_test"
- "don't use underscores in Go names; method Get_ext_value"
+ - "don't use underscores in Go names; method Single_get_value_request"
exclude-use-default: false
diff --git a/VERSION b/VERSION
index ef538c2..ff365e0 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.1.2
+3.1.3
diff --git a/go.mod b/go.mod
index f28234f..a34901d 100644
--- a/go.mod
+++ b/go.mod
@@ -7,8 +7,8 @@
github.com/gogo/protobuf v1.3.1
github.com/golang/protobuf v1.3.2
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4
- github.com/opencord/voltha-lib-go/v4 v4.0.4
- github.com/opencord/voltha-protos/v4 v4.0.9
+ github.com/opencord/voltha-lib-go/v4 v4.0.5
+ github.com/opencord/voltha-protos/v4 v4.0.10
go.etcd.io/etcd v0.0.0-20190930204107-236ac2a90522
google.golang.org/grpc v1.25.1
)
diff --git a/go.sum b/go.sum
index bc2c312..5c8292d 100644
--- a/go.sum
+++ b/go.sum
@@ -202,12 +202,11 @@
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/gomega v1.4.2 h1:3mYCb7aPxS/RU7TI1y4rkEn1oKmPRjNJLNEXgw7MH2I=
github.com/onsi/gomega v1.4.2/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
-github.com/opencord/voltha-lib-go/v4 v4.0.4 h1:F/bHZOHwYE6vaW1gUAuPMx2V9ygpO9lELDwH8qTnnaE=
-github.com/opencord/voltha-lib-go/v4 v4.0.4/go.mod h1:qxVbEjCzvcWIONwkhuYroE/9pRsOCjuyGBwOPRZmicg=
-github.com/opencord/voltha-protos/v4 v4.0.6 h1:cR5QO9yMMIn2zEwTxcUwxDMfQ5Zh3jBqhprw4xhdyAU=
-github.com/opencord/voltha-protos/v4 v4.0.6/go.mod h1:W/OIFIyvFh/C0vchRUuarIsMylEhzCRM9pNxLvkPtKc=
-github.com/opencord/voltha-protos/v4 v4.0.9 h1:3XhGKHP5M7sO6BcJJLiXMWGtsd54USw+GDPfUqNm+y0=
-github.com/opencord/voltha-protos/v4 v4.0.9/go.mod h1:W/OIFIyvFh/C0vchRUuarIsMylEhzCRM9pNxLvkPtKc=
+github.com/opencord/voltha-lib-go/v4 v4.0.5 h1:tIJHjIxIExwCEvlY7wnSqERnoaDn7uOaQgL9t3SKvQQ=
+github.com/opencord/voltha-lib-go/v4 v4.0.5/go.mod h1:8NFUZz/mp4OvRmilBRhkLOUrw4G01ruSAVdzQu2ivPc=
+github.com/opencord/voltha-protos/v4 v4.0.8/go.mod h1:W/OIFIyvFh/C0vchRUuarIsMylEhzCRM9pNxLvkPtKc=
+github.com/opencord/voltha-protos/v4 v4.0.10 h1:JS6OUbaKo4jtw6LocWSpCP144RNHfYLaLOtlj1/HXjg=
+github.com/opencord/voltha-protos/v4 v4.0.10/go.mod h1:W/OIFIyvFh/C0vchRUuarIsMylEhzCRM9pNxLvkPtKc=
github.com/opentracing/opentracing-go v1.1.0 h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
diff --git a/internal/pkg/core/device_handler.go b/internal/pkg/core/device_handler.go
index fa8dd52..ef1b179 100644
--- a/internal/pkg/core/device_handler.go
+++ b/internal/pkg/core/device_handler.go
@@ -45,6 +45,7 @@
"github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors"
rsrcMgr "github.com/opencord/voltha-openolt-adapter/internal/pkg/resourcemanager"
"github.com/opencord/voltha-protos/v4/go/common"
+ "github.com/opencord/voltha-protos/v4/go/extension"
ic "github.com/opencord/voltha-protos/v4/go/inter_container"
of "github.com/opencord/voltha-protos/v4/go/openflow_13"
oop "github.com/opencord/voltha-protos/v4/go/openolt"
@@ -62,6 +63,7 @@
McastFlowOrGroupAdd = "McastFlowOrGroupAdd"
McastFlowOrGroupModify = "McastFlowOrGroupModify"
McastFlowOrGroupRemove = "McastFlowOrGroupRemove"
+ oltPortInfoTimeout = 3
)
//DeviceHandler will interact with the OLT device.
@@ -2479,3 +2481,79 @@
}
}
}
+
+func (dh *DeviceHandler) getOltPortCounters(ctx context.Context, oltPortInfo *extension.GetOltPortCounters) *extension.SingleGetValueResponse {
+
+ singleValResp := extension.SingleGetValueResponse{
+ Response: &extension.GetValueResponse{
+ Response: &extension.GetValueResponse_PortCoutners{
+ PortCoutners: &extension.GetOltPortCountersResponse{},
+ },
+ },
+ }
+
+ errResp := func(status extension.GetValueResponse_Status,
+ reason extension.GetValueResponse_ErrorReason) *extension.SingleGetValueResponse {
+ return &extension.SingleGetValueResponse{
+ Response: &extension.GetValueResponse{
+ Status: status,
+ ErrReason: reason,
+ },
+ }
+ }
+
+ if oltPortInfo.PortType != extension.GetOltPortCounters_Port_ETHERNET_NNI &&
+ oltPortInfo.PortType != extension.GetOltPortCounters_Port_PON_OLT {
+ //send error response
+ logger.Debugw(ctx, "getOltPortCounters invalid portType", log.Fields{"oltPortInfo": oltPortInfo.PortType})
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INVALID_PORT_TYPE)
+ }
+ statIndChn := make(chan bool, 1)
+ dh.portStats.RegisterForStatIndication(ctx, portStatsType, statIndChn, oltPortInfo.PortNo, oltPortInfo.PortType)
+ defer dh.portStats.DeRegisterFromStatIndication(ctx, portStatsType, statIndChn)
+ //request openOlt agent to send the the port statistics indication
+
+ go func() {
+ _, err := dh.Client.CollectStatistics(ctx, new(oop.Empty))
+ if err != nil {
+ logger.Errorw(ctx, "getOltPortCounters CollectStatistics failed ", log.Fields{"err": err})
+ }
+ }()
+ select {
+ case <-statIndChn:
+ //indication received for ports stats
+ logger.Debugw(ctx, "getOltPortCounters recvd statIndChn", log.Fields{"oltPortInfo": oltPortInfo})
+ case <-time.After(oltPortInfoTimeout * time.Second):
+ logger.Debugw(ctx, "getOltPortCounters timeout happened", log.Fields{"oltPortInfo": oltPortInfo})
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_TIMEOUT)
+ case <-ctx.Done():
+ logger.Debugw(ctx, "getOltPortCounters ctx Done ", log.Fields{"oltPortInfo": oltPortInfo})
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_TIMEOUT)
+ }
+ if oltPortInfo.PortType == extension.GetOltPortCounters_Port_ETHERNET_NNI {
+ //get nni stats
+ intfID := PortNoToIntfID(oltPortInfo.PortNo, voltha.Port_ETHERNET_NNI)
+ logger.Debugw(ctx, "getOltPortCounters intfID ", log.Fields{"intfID": intfID})
+ cmnni := dh.portStats.collectNNIMetrics(intfID)
+ if cmnni == nil {
+ //TODO define the error reason
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INTERNAL_ERROR)
+ }
+ dh.portStats.updateGetOltPortCountersResponse(ctx, &singleValResp, cmnni)
+ return &singleValResp
+
+ } else if oltPortInfo.PortType == extension.GetOltPortCounters_Port_PON_OLT {
+ // get pon stats
+ intfID := PortNoToIntfID(oltPortInfo.PortNo, voltha.Port_PON_OLT)
+ if val, ok := dh.activePorts.Load(intfID); ok && val == true {
+ cmpon := dh.portStats.collectPONMetrics(intfID)
+ if cmpon == nil {
+ //TODO define the error reason
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INTERNAL_ERROR)
+ }
+ dh.portStats.updateGetOltPortCountersResponse(ctx, &singleValResp, cmpon)
+ return &singleValResp
+ }
+ }
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INTERNAL_ERROR)
+}
diff --git a/internal/pkg/core/openolt.go b/internal/pkg/core/openolt.go
index 49c5675..eebed78 100644
--- a/internal/pkg/core/openolt.go
+++ b/internal/pkg/core/openolt.go
@@ -29,6 +29,7 @@
"github.com/opencord/voltha-lib-go/v4/pkg/log"
"github.com/opencord/voltha-openolt-adapter/internal/pkg/config"
"github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors"
+ "github.com/opencord/voltha-protos/v4/go/extension"
ic "github.com/opencord/voltha-protos/v4/go/inter_container"
"github.com/opencord/voltha-protos/v4/go/openflow_13"
"github.com/opencord/voltha-protos/v4/go/voltha"
@@ -376,3 +377,29 @@
}
return resp, nil
}
+
+//Single_get_value_request handles get uni status on ONU and ondemand metric on OLT
+func (oo *OpenOLT) Single_get_value_request(ctx context.Context, request extension.SingleGetValueRequest) (*extension.SingleGetValueResponse, error) {
+ logger.Infow(ctx, "Single_get_value_request", log.Fields{"request": request})
+
+ errResp := func(status extension.GetValueResponse_Status,
+ reason extension.GetValueResponse_ErrorReason) *extension.SingleGetValueResponse {
+ return &extension.SingleGetValueResponse{
+ Response: &extension.GetValueResponse{
+ Status: status,
+ ErrReason: reason,
+ },
+ }
+ }
+ if handler := oo.getDeviceHandler(request.TargetId); handler != nil {
+ switch reqType := request.GetRequest().GetRequest().(type) {
+ case *extension.GetValueRequest_OltPortInfo:
+ return handler.getOltPortCounters(ctx, reqType.OltPortInfo), nil
+ default:
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_UNSUPPORTED), nil
+ }
+ }
+
+ logger.Infow(ctx, "Single_get_value_request failed ", log.Fields{"request": request})
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INVALID_DEVICE_ID), nil
+}
diff --git a/internal/pkg/core/statsmanager.go b/internal/pkg/core/statsmanager.go
index 1b52e7c..e13abed 100755
--- a/internal/pkg/core/statsmanager.go
+++ b/internal/pkg/core/statsmanager.go
@@ -18,6 +18,7 @@
package core
import (
+ "container/list"
"context"
"fmt"
rsrcMgr "github.com/opencord/voltha-openolt-adapter/internal/pkg/resourcemanager"
@@ -26,6 +27,7 @@
"github.com/opencord/voltha-lib-go/v4/pkg/log"
"github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors"
+ "github.com/opencord/voltha-protos/v4/go/extension"
"github.com/opencord/voltha-protos/v4/go/openolt"
"github.com/opencord/voltha-protos/v4/go/voltha"
)
@@ -93,6 +95,14 @@
var onuStats = make(chan *openolt.OnuStatistics, 100)
var gemStats = make(chan *openolt.GemPortStatistics, 100)
+//statRegInfo is used to register for notifications
+//on receiving port stats and flow stats indication
+type statRegInfo struct {
+ chn chan bool
+ portNo uint32
+ portType extension.GetOltPortCounters_PortType
+}
+
// PonPort representation
type PonPort struct {
/*
@@ -242,12 +252,23 @@
return &NNI
}
+//StatType defines portStatsType and flowStatsType types
+type StatType int
+
+const (
+ portStatsType StatType = iota
+ flowStatsType
+)
+
// OpenOltStatisticsMgr structure
type OpenOltStatisticsMgr struct {
Device *DeviceHandler
NorthBoundPort map[uint32]*NniPort
SouthBoundPort map[uint32]*PonPort
// TODO PMMetrics Metrics
+ //statIndListners is the list of requests to be notified when port and flow stats indication is received
+ statIndListnerMu sync.Mutex
+ statIndListners map[StatType]*list.List
}
// NewOpenOltStatsMgr returns a new instance of the OpenOltStatisticsMgr
@@ -271,6 +292,9 @@
if StatMgr.Device.openOLT.enableGemStats {
go StatMgr.publishGemStats()
}
+ StatMgr.statIndListners = make(map[StatType]*list.List)
+ StatMgr.statIndListners[portStatsType] = list.New()
+ StatMgr.statIndListners[flowStatsType] = list.New()
return &StatMgr
}
@@ -529,7 +553,7 @@
}
// publishMetrics will publish the pon port metrics
-func (StatMgr OpenOltStatisticsMgr) publishMetrics(ctx context.Context, statType string, val map[string]float32,
+func (StatMgr *OpenOltStatisticsMgr) publishMetrics(ctx context.Context, statType string, val map[string]float32,
port *voltha.Port, devID string, devType string) {
logger.Debugw(ctx, "publish-metrics",
log.Fields{
@@ -576,6 +600,9 @@
func (StatMgr *OpenOltStatisticsMgr) PortStatisticsIndication(ctx context.Context, PortStats *openolt.PortStatistics, NumPonPorts uint32) {
StatMgr.PortsStatisticsKpis(ctx, PortStats, NumPonPorts)
logger.Debugw(ctx, "received-port-stats-indication", log.Fields{"port-stats": PortStats})
+ //Indicate that PortStatisticsIndication is handled
+ //PortStats.IntfId is actually the port number
+ StatMgr.processStatIndication(ctx, portStatsType, PortStats.IntfId)
// TODO send stats to core topic to the voltha kafka or a different kafka ?
}
@@ -673,3 +700,81 @@
*/
}
+
+func (StatMgr *OpenOltStatisticsMgr) updateGetOltPortCountersResponse(ctx context.Context, singleValResp *extension.SingleGetValueResponse, stats map[string]float32) {
+
+ metrics := singleValResp.GetResponse().GetPortCoutners()
+ metrics.TxBytes = uint64(stats["TxBytes"])
+ metrics.RxBytes = uint64(stats["RxBytes"])
+ metrics.TxPackets = uint64(stats["TxPackets"])
+ metrics.RxPackets = uint64(stats["RxPackets"])
+ metrics.TxErrorPackets = uint64(stats["TxErrorPackets"])
+ metrics.RxErrorPackets = uint64(stats["RxErrorPackets"])
+ metrics.TxBcastPackets = uint64(stats["TxBcastPackets"])
+ metrics.RxBcastPackets = uint64(stats["RxBcastPackets"])
+ metrics.TxUcastPackets = uint64(stats["TxUcastPackets"])
+ metrics.RxUcastPackets = uint64(stats["RxUcastPackets"])
+ metrics.TxMcastPackets = uint64(stats["TxMcastPackets"])
+ metrics.RxMcastPackets = uint64(stats["RxMcastPackets"])
+
+ singleValResp.Response.Status = extension.GetValueResponse_OK
+ logger.Debugw(ctx, "updateGetOltPortCountersResponse", log.Fields{"resp": singleValResp})
+}
+
+//RegisterForStatIndication registers ch as a channel on which indication is sent when statistics of type t is received
+func (StatMgr *OpenOltStatisticsMgr) RegisterForStatIndication(ctx context.Context, t StatType, ch chan bool, portNo uint32, portType extension.GetOltPortCounters_PortType) {
+ statInd := statRegInfo{
+ chn: ch,
+ portNo: portNo,
+ portType: portType,
+ }
+
+ logger.Debugf(ctx, "RegisterForStatIndication stat type %v portno %v porttype %v chan %v", t, portNo, portType, ch)
+ StatMgr.statIndListnerMu.Lock()
+ StatMgr.statIndListners[t].PushBack(statInd)
+ StatMgr.statIndListnerMu.Unlock()
+
+}
+
+//DeRegisterFromStatIndication removes the previously registered channel ch for type t of statistics
+func (StatMgr *OpenOltStatisticsMgr) DeRegisterFromStatIndication(ctx context.Context, t StatType, ch chan bool) {
+ StatMgr.statIndListnerMu.Lock()
+ defer StatMgr.statIndListnerMu.Unlock()
+
+ for e := StatMgr.statIndListners[t].Front(); e != nil; e = e.Next() {
+ statInd := e.Value.(statRegInfo)
+ if statInd.chn == ch {
+ StatMgr.statIndListners[t].Remove(e)
+ return
+ }
+ }
+}
+
+func (StatMgr *OpenOltStatisticsMgr) processStatIndication(ctx context.Context, t StatType, portNo uint32) {
+ var deRegList []*list.Element
+ var statInd statRegInfo
+
+ StatMgr.statIndListnerMu.Lock()
+ defer StatMgr.statIndListnerMu.Unlock()
+
+ if StatMgr.statIndListners[t] == nil || StatMgr.statIndListners[t].Len() == 0 {
+ logger.Debugf(ctx, "processStatIndication %v list is empty ", t)
+ return
+ }
+
+ for e := StatMgr.statIndListners[t].Front(); e != nil; e = e.Next() {
+ statInd = e.Value.(statRegInfo)
+ if statInd.portNo != portNo {
+ fmt.Printf("Skipping %v\n", e.Value)
+ continue
+ }
+ // message sent
+ statInd.chn <- true
+ deRegList = append(deRegList, e)
+
+ }
+ for _, e := range deRegList {
+ StatMgr.statIndListners[t].Remove(e)
+ }
+
+}
diff --git a/vendor/github.com/opencord/voltha-lib-go/v4/pkg/adapters/common/request_handler.go b/vendor/github.com/opencord/voltha-lib-go/v4/pkg/adapters/common/request_handler.go
index 50b9195..7d14db7 100644
--- a/vendor/github.com/opencord/voltha-lib-go/v4/pkg/adapters/common/request_handler.go
+++ b/vendor/github.com/opencord/voltha-lib-go/v4/pkg/adapters/common/request_handler.go
@@ -25,6 +25,7 @@
"github.com/opencord/voltha-lib-go/v4/pkg/adapters/adapterif"
"github.com/opencord/voltha-lib-go/v4/pkg/kafka"
"github.com/opencord/voltha-lib-go/v4/pkg/log"
+ "github.com/opencord/voltha-protos/v4/go/extension"
ic "github.com/opencord/voltha-protos/v4/go/inter_container"
"github.com/opencord/voltha-protos/v4/go/openflow_13"
"github.com/opencord/voltha-protos/v4/go/voltha"
@@ -733,3 +734,34 @@
//Invoke the Get_value API on the adapter
return rhp.adapter.Get_ext_value(ctx, pDeviceId.Val, device, voltha.ValueType_Type(valuetype.Val))
}
+
+func (rhp *RequestHandlerProxy) Single_get_value_request(ctx context.Context, args []*ic.Argument) (*extension.SingleGetValueResponse, error) {
+ logger.Debugw(ctx, "req handler Single_get_value_request", log.Fields{"no of args": len(args), "args": args})
+
+ if len(args) < 1 {
+ logger.Warn(ctx, "invalid-number-of-args", log.Fields{"args": args})
+ return nil, errors.New("invalid-number-of-args")
+ }
+ singleGetvalueReq := extension.SingleGetValueRequest{}
+ errResp := func(status extension.GetValueResponse_Status, reason extension.GetValueResponse_ErrorReason) *extension.SingleGetValueResponse {
+ return &extension.SingleGetValueResponse{
+ Response: &extension.GetValueResponse{
+ Status: status,
+ ErrReason: reason,
+ },
+ }
+ }
+ for _, arg := range args {
+ switch arg.Key {
+ case "request":
+ if err := ptypes.UnmarshalAny(arg.Value, &singleGetvalueReq); err != nil {
+ logger.Warnw(ctx, "cannot-unmarshal-singleGetvalueReq", log.Fields{"error": err})
+ return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_REASON_UNDEFINED), nil
+ }
+ default:
+ logger.Warnw(ctx, "key-not-found", log.Fields{"arg.Key": arg.Key})
+ }
+ }
+ logger.Debugw(ctx, "invoke rhp.adapter.Single_get_value_request ", log.Fields{"singleGetvalueReq": singleGetvalueReq})
+ return rhp.adapter.Single_get_value_request(ctx, singleGetvalueReq)
+}
diff --git a/vendor/github.com/opencord/voltha-lib-go/v4/pkg/adapters/iAdapter.go b/vendor/github.com/opencord/voltha-lib-go/v4/pkg/adapters/iAdapter.go
index b106d52..dfc3778 100644
--- a/vendor/github.com/opencord/voltha-lib-go/v4/pkg/adapters/iAdapter.go
+++ b/vendor/github.com/opencord/voltha-lib-go/v4/pkg/adapters/iAdapter.go
@@ -17,6 +17,8 @@
import (
"context"
+
+ "github.com/opencord/voltha-protos/v4/go/extension"
ic "github.com/opencord/voltha-protos/v4/go/inter_container"
"github.com/opencord/voltha-protos/v4/go/openflow_13"
"github.com/opencord/voltha-protos/v4/go/voltha"
@@ -54,4 +56,5 @@
Child_device_lost(ctx context.Context, parentDeviceId string, parentPortNo uint32, onuID uint32) error
Start_omci_test(ctx context.Context, device *voltha.Device, request *voltha.OmciTestRequest) (*voltha.TestResponse, error)
Get_ext_value(ctx context.Context, deviceId string, device *voltha.Device, valueflag voltha.ValueType_Type) (*voltha.ReturnValues, error)
+ Single_get_value_request(ctx context.Context, request extension.SingleGetValueRequest) (*extension.SingleGetValueResponse, error)
}
diff --git a/vendor/github.com/opencord/voltha-protos/v4/go/common/common.pb.go b/vendor/github.com/opencord/voltha-protos/v4/go/common/common.pb.go
index 0956330..7bfcb33 100644
--- a/vendor/github.com/opencord/voltha-protos/v4/go/common/common.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v4/go/common/common.pb.go
@@ -165,18 +165,21 @@
OperationResp_OPERATION_SUCCESS OperationResp_OperationReturnCode = 0
OperationResp_OPERATION_FAILURE OperationResp_OperationReturnCode = 1
OperationResp_OPERATION_UNSUPPORTED OperationResp_OperationReturnCode = 2
+ OperationResp_OPERATION_IN_PROGRESS OperationResp_OperationReturnCode = 3
)
var OperationResp_OperationReturnCode_name = map[int32]string{
0: "OPERATION_SUCCESS",
1: "OPERATION_FAILURE",
2: "OPERATION_UNSUPPORTED",
+ 3: "OPERATION_IN_PROGRESS",
}
var OperationResp_OperationReturnCode_value = map[string]int32{
"OPERATION_SUCCESS": 0,
"OPERATION_FAILURE": 1,
"OPERATION_UNSUPPORTED": 2,
+ "OPERATION_IN_PROGRESS": 3,
}
func (x OperationResp_OperationReturnCode) String() string {
@@ -596,43 +599,43 @@
func init() { proto.RegisterFile("voltha_protos/common.proto", fileDescriptor_c2e3fd231961e826) }
var fileDescriptor_c2e3fd231961e826 = []byte{
- // 598 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x53, 0x5f, 0x4f, 0xdb, 0x3e,
- 0x14, 0x6d, 0xd2, 0x96, 0x1f, 0xbd, 0xa5, 0x21, 0x3f, 0x03, 0x53, 0x87, 0x26, 0xad, 0xca, 0x0b,
- 0x6c, 0x62, 0xad, 0xc4, 0x78, 0xdd, 0x43, 0x48, 0x3c, 0x66, 0x01, 0x4e, 0xe5, 0x24, 0x45, 0xf0,
- 0xb0, 0x2a, 0x34, 0xa6, 0x44, 0xa2, 0x71, 0x94, 0xb8, 0x48, 0x7c, 0xd2, 0x7d, 0x9d, 0xc9, 0x4e,
- 0xf9, 0x37, 0xf5, 0x25, 0xf1, 0xb9, 0xe7, 0xe4, 0x1e, 0xdf, 0xe3, 0x18, 0xf6, 0x1f, 0xc5, 0x83,
- 0xbc, 0x4f, 0xa6, 0x45, 0x29, 0xa4, 0xa8, 0x46, 0x33, 0xb1, 0x58, 0x88, 0x7c, 0xa8, 0x11, 0xda,
- 0xa8, 0x91, 0xb3, 0x0b, 0x26, 0xf1, 0x91, 0x05, 0x66, 0x96, 0xf6, 0x8d, 0x81, 0x71, 0xd8, 0x61,
- 0x66, 0x96, 0x3a, 0x07, 0xd0, 0x24, 0x7e, 0x85, 0x06, 0xd0, 0xce, 0x24, 0x5f, 0x54, 0x7d, 0x63,
- 0xd0, 0x3c, 0xec, 0x1e, 0xc3, 0x70, 0xd5, 0x82, 0xf8, 0xac, 0x26, 0x9c, 0x7b, 0x00, 0x37, 0x5d,
- 0x64, 0x79, 0x28, 0x13, 0xc9, 0x9d, 0x1b, 0x68, 0x47, 0x4f, 0x05, 0xaf, 0x50, 0x17, 0xfe, 0x8b,
- 0xe9, 0x39, 0x0d, 0xae, 0xa8, 0xdd, 0x40, 0x08, 0xac, 0x31, 0xc3, 0x63, 0x16, 0x4c, 0x48, 0x48,
- 0x02, 0x8a, 0x7d, 0xdb, 0x50, 0x02, 0x4c, 0xdd, 0xd3, 0x0b, 0xec, 0xdb, 0x26, 0xda, 0x82, 0x4d,
- 0x9f, 0x84, 0x35, 0x6a, 0xa2, 0x3d, 0xf8, 0xdf, 0x0f, 0xae, 0xe8, 0x45, 0xe0, 0xfa, 0x84, 0x9e,
- 0x4d, 0xc9, 0xa5, 0x7b, 0x86, 0xed, 0x96, 0x33, 0x07, 0x08, 0x0a, 0x5e, 0x2a, 0xa3, 0x65, 0xe5,
- 0x5c, 0xaf, 0x75, 0xb2, 0x00, 0x7c, 0x12, 0x7a, 0xc1, 0x04, 0x33, 0xed, 0x62, 0x01, 0xb8, 0x5e,
- 0x44, 0x26, 0x6e, 0x44, 0xe8, 0x99, 0x6d, 0x2a, 0x71, 0x84, 0x43, 0x0d, 0x9a, 0x08, 0x60, 0x43,
- 0x93, 0xd8, 0x6e, 0xa9, 0xf5, 0x4f, 0x97, 0x28, 0xff, 0xb6, 0x83, 0xa1, 0xe7, 0x89, 0x3c, 0xe7,
- 0x33, 0xb9, 0xf2, 0x3a, 0x59, 0xeb, 0xb5, 0x0d, 0xdd, 0x98, 0x32, 0xec, 0x7a, 0xbf, 0xd4, 0xc6,
- 0x6d, 0x03, 0xf5, 0xa0, 0xf3, 0x0a, 0x4d, 0xe7, 0x8f, 0x01, 0x3d, 0xb5, 0xe1, 0x44, 0x66, 0x22,
- 0x67, 0xbc, 0x2a, 0xd0, 0x0f, 0x68, 0xcd, 0x44, 0xca, 0x75, 0xcc, 0xd6, 0xf1, 0x97, 0xe7, 0x30,
- 0xdf, 0x89, 0xde, 0x22, 0xb9, 0x2c, 0x73, 0x4f, 0xa4, 0x9c, 0xe9, 0xcf, 0xd0, 0x01, 0x6c, 0x27,
- 0x69, 0x9a, 0x29, 0x2e, 0x79, 0x98, 0x66, 0xf9, 0x9d, 0xe8, 0x9b, 0xfa, 0xc0, 0xac, 0xd7, 0x32,
- 0xc9, 0xef, 0x84, 0xf3, 0x1b, 0x76, 0xd6, 0x74, 0x51, 0xb9, 0x06, 0x63, 0xcc, 0xdc, 0x88, 0x04,
- 0x74, 0x1a, 0xc6, 0x9e, 0x87, 0xc3, 0xd0, 0x6e, 0xbc, 0x2f, 0xab, 0x10, 0x62, 0xa6, 0xa6, 0xf9,
- 0x08, 0x7b, 0xaf, 0xe5, 0x98, 0x86, 0xf1, 0x78, 0x1c, 0xb0, 0x48, 0x1d, 0x97, 0x73, 0x04, 0x9d,
- 0x49, 0xf2, 0xb0, 0xe4, 0x2a, 0x14, 0xe7, 0x33, 0xb4, 0xd4, 0x1b, 0x75, 0xa0, 0x8d, 0x2f, 0xc7,
- 0xd1, 0xb5, 0xdd, 0x58, 0x1d, 0x67, 0xe4, 0x52, 0x0f, 0xdb, 0x86, 0x43, 0xc1, 0xd2, 0xea, 0xb0,
- 0xe0, 0xb3, 0xec, 0x2e, 0xe3, 0xe5, 0xbf, 0x3f, 0x1b, 0x3a, 0x82, 0xf6, 0xa3, 0x52, 0xe8, 0x71,
- 0xac, 0xe3, 0x0f, 0xcf, 0xc1, 0xbc, 0x98, 0x0c, 0xd5, 0x83, 0xd5, 0x22, 0x47, 0xc2, 0x56, 0x3d,
- 0x94, 0xa6, 0x2b, 0x64, 0x43, 0x33, 0xe4, 0x52, 0xb7, 0xeb, 0x31, 0xb5, 0x44, 0x03, 0xe8, 0xc6,
- 0x79, 0xb5, 0x2c, 0x0a, 0x51, 0x4a, 0x9e, 0xea, 0xae, 0x3d, 0xf6, 0xb6, 0x84, 0x76, 0xa1, 0x8d,
- 0xcb, 0x52, 0x94, 0xfd, 0xa6, 0xe6, 0x6a, 0x80, 0xf6, 0x61, 0xd3, 0xcf, 0x2a, 0x99, 0xe4, 0x33,
- 0xde, 0x6f, 0x69, 0xe2, 0x05, 0x7f, 0xfd, 0x04, 0x5b, 0x11, 0xaf, 0xe4, 0xa5, 0x48, 0xf9, 0x39,
- 0x7f, 0xaa, 0xd4, 0x8c, 0x49, 0x91, 0x4d, 0x25, 0xaf, 0xa4, 0xdd, 0x38, 0xc5, 0xb0, 0x23, 0xca,
- 0xf9, 0x50, 0x14, 0x3c, 0x9f, 0x89, 0x32, 0x1d, 0xd6, 0xf7, 0xee, 0x66, 0x38, 0xcf, 0xe4, 0xfd,
- 0xf2, 0x56, 0xcd, 0x33, 0x7a, 0xe6, 0x46, 0x35, 0xf7, 0x6d, 0x75, 0x27, 0x1f, 0x4f, 0x46, 0x73,
- 0xb1, 0xba, 0x99, 0xb7, 0x1b, 0xba, 0xf8, 0xfd, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x32,
- 0x70, 0x38, 0xb8, 0x03, 0x00, 0x00,
+ // 606 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x53, 0x5d, 0x4f, 0xdb, 0x30,
+ 0x14, 0x6d, 0x9b, 0x96, 0xd1, 0x5b, 0x1a, 0x32, 0x03, 0x53, 0x87, 0x26, 0xad, 0xca, 0x0b, 0x6c,
+ 0x62, 0xad, 0xc4, 0x78, 0xdd, 0x43, 0x48, 0xbc, 0xce, 0x02, 0x9c, 0xc8, 0x49, 0x8a, 0xe0, 0xa5,
+ 0x0a, 0x8d, 0x29, 0x91, 0x68, 0x1c, 0x25, 0x2e, 0x12, 0x7f, 0x7b, 0xbf, 0x60, 0xb2, 0x53, 0xbe,
+ 0x26, 0x5e, 0x12, 0x9f, 0x7b, 0x4e, 0xee, 0xf1, 0x3d, 0x8e, 0x61, 0xff, 0x41, 0xdc, 0xcb, 0xbb,
+ 0x64, 0x56, 0x94, 0x42, 0x8a, 0x6a, 0x3c, 0x17, 0xcb, 0xa5, 0xc8, 0x47, 0x1a, 0xa1, 0x8d, 0x1a,
+ 0xd9, 0xbb, 0xd0, 0x22, 0x1e, 0x32, 0xa1, 0x95, 0xa5, 0x83, 0xe6, 0xb0, 0x79, 0xd8, 0x65, 0xad,
+ 0x2c, 0xb5, 0x0f, 0xc0, 0x20, 0x5e, 0x85, 0x86, 0xd0, 0xc9, 0x24, 0x5f, 0x56, 0x83, 0xe6, 0xd0,
+ 0x38, 0xec, 0x1d, 0xc3, 0x68, 0xdd, 0x82, 0x78, 0xac, 0x26, 0xec, 0x3b, 0x00, 0x27, 0x5d, 0x66,
+ 0x79, 0x28, 0x13, 0xc9, 0xed, 0x6b, 0xe8, 0x44, 0x8f, 0x05, 0xaf, 0x50, 0x0f, 0x3e, 0xc4, 0xf4,
+ 0x8c, 0xfa, 0x97, 0xd4, 0x6a, 0x20, 0x04, 0x66, 0xc0, 0x70, 0xc0, 0xfc, 0x29, 0x09, 0x89, 0x4f,
+ 0xb1, 0x67, 0x35, 0x95, 0x00, 0x53, 0xe7, 0xf4, 0x1c, 0x7b, 0x56, 0x0b, 0x6d, 0xc1, 0xa6, 0x47,
+ 0xc2, 0x1a, 0x19, 0x68, 0x0f, 0x3e, 0x7a, 0xfe, 0x25, 0x3d, 0xf7, 0x1d, 0x8f, 0xd0, 0xc9, 0x8c,
+ 0x5c, 0x38, 0x13, 0x6c, 0xb5, 0xed, 0x05, 0x80, 0x5f, 0xf0, 0x52, 0x19, 0xad, 0x2a, 0xfb, 0xea,
+ 0x5d, 0x27, 0x13, 0xc0, 0x23, 0xa1, 0xeb, 0x4f, 0x31, 0xd3, 0x2e, 0x26, 0x80, 0xe3, 0x46, 0x64,
+ 0xea, 0x44, 0x84, 0x4e, 0xac, 0x96, 0x12, 0x47, 0x38, 0xd4, 0xc0, 0x40, 0x00, 0x1b, 0x9a, 0xc4,
+ 0x56, 0x5b, 0xad, 0x7f, 0x3b, 0x44, 0xf9, 0x77, 0x6c, 0x0c, 0x7d, 0x57, 0xe4, 0x39, 0x9f, 0xcb,
+ 0xb5, 0xd7, 0xc9, 0xbb, 0x5e, 0xdb, 0xd0, 0x8b, 0x29, 0xc3, 0x8e, 0xfb, 0x47, 0x6d, 0xdc, 0x6a,
+ 0xa2, 0x3e, 0x74, 0x5f, 0x60, 0xcb, 0xfe, 0xdb, 0x84, 0xbe, 0xda, 0x70, 0x22, 0x33, 0x91, 0x33,
+ 0x5e, 0x15, 0xe8, 0x17, 0xb4, 0xe7, 0x22, 0xe5, 0x3a, 0x66, 0xf3, 0xf8, 0xdb, 0x53, 0x98, 0x6f,
+ 0x44, 0xaf, 0x91, 0x5c, 0x95, 0xb9, 0x2b, 0x52, 0xce, 0xf4, 0x67, 0xe8, 0x00, 0xb6, 0x93, 0x34,
+ 0xcd, 0x14, 0x97, 0xdc, 0xcf, 0xb2, 0xfc, 0x56, 0x0c, 0x5a, 0xfa, 0xc0, 0xcc, 0x97, 0x32, 0xc9,
+ 0x6f, 0x85, 0xfd, 0x08, 0x3b, 0xef, 0x74, 0x51, 0xb9, 0xfa, 0x01, 0x66, 0x4e, 0x44, 0x7c, 0x3a,
+ 0x0b, 0x63, 0xd7, 0xc5, 0x61, 0x68, 0x35, 0xde, 0x96, 0x55, 0x08, 0x31, 0x53, 0xd3, 0x7c, 0x86,
+ 0xbd, 0x97, 0x72, 0x4c, 0xc3, 0x38, 0x08, 0x7c, 0x16, 0xe9, 0xe3, 0x7a, 0x43, 0x11, 0x3a, 0x0b,
+ 0x98, 0x3f, 0x61, 0xaa, 0x99, 0x61, 0x1f, 0x41, 0x77, 0x9a, 0xdc, 0xaf, 0xb8, 0xca, 0xcb, 0xfe,
+ 0x0a, 0x6d, 0xf5, 0x46, 0x5d, 0xe8, 0xe0, 0x8b, 0x20, 0xba, 0xb2, 0x1a, 0xeb, 0x93, 0x8e, 0x1c,
+ 0xea, 0x62, 0xab, 0x69, 0x53, 0x30, 0xb5, 0x3a, 0x2c, 0xf8, 0x3c, 0xbb, 0xcd, 0x78, 0xf9, 0xff,
+ 0x7f, 0x88, 0x8e, 0xa0, 0xf3, 0xa0, 0x14, 0x7a, 0x52, 0xf3, 0xf8, 0xd3, 0x53, 0x66, 0xcf, 0x26,
+ 0x23, 0xf5, 0x60, 0xb5, 0xc8, 0x96, 0xb0, 0x55, 0xcf, 0xab, 0xe9, 0x0a, 0x59, 0x60, 0x84, 0x5c,
+ 0xea, 0x76, 0x7d, 0xa6, 0x96, 0x68, 0x08, 0xbd, 0x38, 0xaf, 0x56, 0x45, 0x21, 0x4a, 0xc9, 0x53,
+ 0xdd, 0xb5, 0xcf, 0x5e, 0x97, 0xd0, 0x2e, 0x74, 0x70, 0x59, 0x8a, 0x72, 0x60, 0x68, 0xae, 0x06,
+ 0x68, 0x1f, 0x36, 0xbd, 0xac, 0x92, 0x49, 0x3e, 0xe7, 0x83, 0xb6, 0x26, 0x9e, 0xf1, 0xf7, 0x2f,
+ 0xb0, 0x15, 0xf1, 0x4a, 0x5e, 0x88, 0x94, 0x9f, 0xf1, 0xc7, 0x4a, 0xcd, 0x98, 0x14, 0xd9, 0x4c,
+ 0xf2, 0x4a, 0x5a, 0x8d, 0x53, 0x0c, 0x3b, 0xa2, 0x5c, 0x8c, 0x44, 0xc1, 0xf3, 0xb9, 0x28, 0xd3,
+ 0x51, 0x7d, 0x25, 0xaf, 0x47, 0x8b, 0x4c, 0xde, 0xad, 0x6e, 0xd4, 0x3c, 0xe3, 0x27, 0x6e, 0x5c,
+ 0x73, 0x3f, 0xd6, 0xd7, 0xf5, 0xe1, 0x64, 0xbc, 0x10, 0xeb, 0x4b, 0x7b, 0xb3, 0xa1, 0x8b, 0x3f,
+ 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x27, 0x0a, 0x9c, 0xc8, 0xd3, 0x03, 0x00, 0x00,
}
diff --git a/vendor/github.com/opencord/voltha-protos/v4/go/extension/extensions.pb.go b/vendor/github.com/opencord/voltha-protos/v4/go/extension/extensions.pb.go
new file mode 100644
index 0000000..e6ebe01
--- /dev/null
+++ b/vendor/github.com/opencord/voltha-protos/v4/go/extension/extensions.pb.go
@@ -0,0 +1,1976 @@
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// source: voltha_protos/extensions.proto
+
+package extension
+
+import (
+ context "context"
+ fmt "fmt"
+ proto "github.com/golang/protobuf/proto"
+ empty "github.com/golang/protobuf/ptypes/empty"
+ config "github.com/opencord/voltha-protos/v4/go/ext/config"
+ grpc "google.golang.org/grpc"
+ math "math"
+)
+
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
+
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the proto package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// proto package needs to be updated.
+const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
+
+// AlarmConfig from public import voltha_protos/ext_config.proto
+type AlarmConfig = config.AlarmConfig
+type AlarmConfig_OnuItuPonAlarmConfig = config.AlarmConfig_OnuItuPonAlarmConfig
+
+// OnuItuPonAlarm from public import voltha_protos/ext_config.proto
+type OnuItuPonAlarm = config.OnuItuPonAlarm
+type OnuItuPonAlarm_RateThresholdConfig_ = config.OnuItuPonAlarm_RateThresholdConfig_
+type OnuItuPonAlarm_RateRangeConfig_ = config.OnuItuPonAlarm_RateRangeConfig_
+type OnuItuPonAlarm_ValueThresholdConfig_ = config.OnuItuPonAlarm_ValueThresholdConfig_
+
+// OnuItuPonAlarm_SoakTime from public import voltha_protos/ext_config.proto
+type OnuItuPonAlarm_SoakTime = config.OnuItuPonAlarm_SoakTime
+
+// OnuItuPonAlarm_RateThresholdConfig from public import voltha_protos/ext_config.proto
+type OnuItuPonAlarm_RateThresholdConfig = config.OnuItuPonAlarm_RateThresholdConfig
+
+// OnuItuPonAlarm_RateRangeConfig from public import voltha_protos/ext_config.proto
+type OnuItuPonAlarm_RateRangeConfig = config.OnuItuPonAlarm_RateRangeConfig
+
+// OnuItuPonAlarm_ValueThresholdConfig from public import voltha_protos/ext_config.proto
+type OnuItuPonAlarm_ValueThresholdConfig = config.OnuItuPonAlarm_ValueThresholdConfig
+
+// OnuItuPonAlarm_AlarmID from public import voltha_protos/ext_config.proto
+type OnuItuPonAlarm_AlarmID = config.OnuItuPonAlarm_AlarmID
+
+var OnuItuPonAlarm_AlarmID_name = config.OnuItuPonAlarm_AlarmID_name
+var OnuItuPonAlarm_AlarmID_value = config.OnuItuPonAlarm_AlarmID_value
+
+const OnuItuPonAlarm_RDI_ERRORS = OnuItuPonAlarm_AlarmID(config.OnuItuPonAlarm_RDI_ERRORS)
+
+// OnuItuPonAlarm_AlarmReportingCondition from public import voltha_protos/ext_config.proto
+type OnuItuPonAlarm_AlarmReportingCondition = config.OnuItuPonAlarm_AlarmReportingCondition
+
+var OnuItuPonAlarm_AlarmReportingCondition_name = config.OnuItuPonAlarm_AlarmReportingCondition_name
+var OnuItuPonAlarm_AlarmReportingCondition_value = config.OnuItuPonAlarm_AlarmReportingCondition_value
+
+const OnuItuPonAlarm_RATE_THRESHOLD = OnuItuPonAlarm_AlarmReportingCondition(config.OnuItuPonAlarm_RATE_THRESHOLD)
+const OnuItuPonAlarm_RATE_RANGE = OnuItuPonAlarm_AlarmReportingCondition(config.OnuItuPonAlarm_RATE_RANGE)
+const OnuItuPonAlarm_VALUE_THRESHOLD = OnuItuPonAlarm_AlarmReportingCondition(config.OnuItuPonAlarm_VALUE_THRESHOLD)
+
+type GetOnuUniInfoResponse_ConfigurationInd int32
+
+const (
+ GetOnuUniInfoResponse_UNKOWN GetOnuUniInfoResponse_ConfigurationInd = 0
+ GetOnuUniInfoResponse_TEN_BASE_T_FDX GetOnuUniInfoResponse_ConfigurationInd = 1
+ GetOnuUniInfoResponse_HUNDRED_BASE_T_FDX GetOnuUniInfoResponse_ConfigurationInd = 2
+ GetOnuUniInfoResponse_GIGABIT_ETHERNET_FDX GetOnuUniInfoResponse_ConfigurationInd = 3
+ GetOnuUniInfoResponse_TEN_G_ETHERNET_FDX GetOnuUniInfoResponse_ConfigurationInd = 4
+ GetOnuUniInfoResponse_TEN_BASE_T_HDX GetOnuUniInfoResponse_ConfigurationInd = 5
+ GetOnuUniInfoResponse_HUNDRED_BASE_T_HDX GetOnuUniInfoResponse_ConfigurationInd = 6
+ GetOnuUniInfoResponse_GIGABIT_ETHERNET_HDX GetOnuUniInfoResponse_ConfigurationInd = 7
+)
+
+var GetOnuUniInfoResponse_ConfigurationInd_name = map[int32]string{
+ 0: "UNKOWN",
+ 1: "TEN_BASE_T_FDX",
+ 2: "HUNDRED_BASE_T_FDX",
+ 3: "GIGABIT_ETHERNET_FDX",
+ 4: "TEN_G_ETHERNET_FDX",
+ 5: "TEN_BASE_T_HDX",
+ 6: "HUNDRED_BASE_T_HDX",
+ 7: "GIGABIT_ETHERNET_HDX",
+}
+
+var GetOnuUniInfoResponse_ConfigurationInd_value = map[string]int32{
+ "UNKOWN": 0,
+ "TEN_BASE_T_FDX": 1,
+ "HUNDRED_BASE_T_FDX": 2,
+ "GIGABIT_ETHERNET_FDX": 3,
+ "TEN_G_ETHERNET_FDX": 4,
+ "TEN_BASE_T_HDX": 5,
+ "HUNDRED_BASE_T_HDX": 6,
+ "GIGABIT_ETHERNET_HDX": 7,
+}
+
+func (x GetOnuUniInfoResponse_ConfigurationInd) String() string {
+ return proto.EnumName(GetOnuUniInfoResponse_ConfigurationInd_name, int32(x))
+}
+
+func (GetOnuUniInfoResponse_ConfigurationInd) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{3, 0}
+}
+
+type GetOnuUniInfoResponse_AdministrativeState int32
+
+const (
+ GetOnuUniInfoResponse_ADMSTATE_UNDEFINED GetOnuUniInfoResponse_AdministrativeState = 0
+ GetOnuUniInfoResponse_LOCKED GetOnuUniInfoResponse_AdministrativeState = 1
+ GetOnuUniInfoResponse_UNLOCKED GetOnuUniInfoResponse_AdministrativeState = 2
+)
+
+var GetOnuUniInfoResponse_AdministrativeState_name = map[int32]string{
+ 0: "ADMSTATE_UNDEFINED",
+ 1: "LOCKED",
+ 2: "UNLOCKED",
+}
+
+var GetOnuUniInfoResponse_AdministrativeState_value = map[string]int32{
+ "ADMSTATE_UNDEFINED": 0,
+ "LOCKED": 1,
+ "UNLOCKED": 2,
+}
+
+func (x GetOnuUniInfoResponse_AdministrativeState) String() string {
+ return proto.EnumName(GetOnuUniInfoResponse_AdministrativeState_name, int32(x))
+}
+
+func (GetOnuUniInfoResponse_AdministrativeState) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{3, 1}
+}
+
+type GetOnuUniInfoResponse_OperationalState int32
+
+const (
+ GetOnuUniInfoResponse_OPERSTATE_UNDEFINED GetOnuUniInfoResponse_OperationalState = 0
+ GetOnuUniInfoResponse_ENABLED GetOnuUniInfoResponse_OperationalState = 1
+ GetOnuUniInfoResponse_DISABLED GetOnuUniInfoResponse_OperationalState = 2
+)
+
+var GetOnuUniInfoResponse_OperationalState_name = map[int32]string{
+ 0: "OPERSTATE_UNDEFINED",
+ 1: "ENABLED",
+ 2: "DISABLED",
+}
+
+var GetOnuUniInfoResponse_OperationalState_value = map[string]int32{
+ "OPERSTATE_UNDEFINED": 0,
+ "ENABLED": 1,
+ "DISABLED": 2,
+}
+
+func (x GetOnuUniInfoResponse_OperationalState) String() string {
+ return proto.EnumName(GetOnuUniInfoResponse_OperationalState_name, int32(x))
+}
+
+func (GetOnuUniInfoResponse_OperationalState) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{3, 2}
+}
+
+type GetOltPortCounters_PortType int32
+
+const (
+ GetOltPortCounters_Port_UNKNOWN GetOltPortCounters_PortType = 0
+ GetOltPortCounters_Port_ETHERNET_NNI GetOltPortCounters_PortType = 1
+ GetOltPortCounters_Port_PON_OLT GetOltPortCounters_PortType = 2
+)
+
+var GetOltPortCounters_PortType_name = map[int32]string{
+ 0: "Port_UNKNOWN",
+ 1: "Port_ETHERNET_NNI",
+ 2: "Port_PON_OLT",
+}
+
+var GetOltPortCounters_PortType_value = map[string]int32{
+ "Port_UNKNOWN": 0,
+ "Port_ETHERNET_NNI": 1,
+ "Port_PON_OLT": 2,
+}
+
+func (x GetOltPortCounters_PortType) String() string {
+ return proto.EnumName(GetOltPortCounters_PortType_name, int32(x))
+}
+
+func (GetOltPortCounters_PortType) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{4, 0}
+}
+
+type GetOnuEthernetBridgePortHistory_Direction int32
+
+const (
+ GetOnuEthernetBridgePortHistory_UNDEFINED GetOnuEthernetBridgePortHistory_Direction = 0
+ GetOnuEthernetBridgePortHistory_UPSTREAM GetOnuEthernetBridgePortHistory_Direction = 1
+ GetOnuEthernetBridgePortHistory_DOWNSTREAM GetOnuEthernetBridgePortHistory_Direction = 2
+)
+
+var GetOnuEthernetBridgePortHistory_Direction_name = map[int32]string{
+ 0: "UNDEFINED",
+ 1: "UPSTREAM",
+ 2: "DOWNSTREAM",
+}
+
+var GetOnuEthernetBridgePortHistory_Direction_value = map[string]int32{
+ "UNDEFINED": 0,
+ "UPSTREAM": 1,
+ "DOWNSTREAM": 2,
+}
+
+func (x GetOnuEthernetBridgePortHistory_Direction) String() string {
+ return proto.EnumName(GetOnuEthernetBridgePortHistory_Direction_name, int32(x))
+}
+
+func (GetOnuEthernetBridgePortHistory_Direction) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{8, 0}
+}
+
+type GetValueResponse_Status int32
+
+const (
+ GetValueResponse_STATUS_UNDEFINED GetValueResponse_Status = 0
+ GetValueResponse_OK GetValueResponse_Status = 1
+ GetValueResponse_ERROR GetValueResponse_Status = 2
+)
+
+var GetValueResponse_Status_name = map[int32]string{
+ 0: "STATUS_UNDEFINED",
+ 1: "OK",
+ 2: "ERROR",
+}
+
+var GetValueResponse_Status_value = map[string]int32{
+ "STATUS_UNDEFINED": 0,
+ "OK": 1,
+ "ERROR": 2,
+}
+
+func (x GetValueResponse_Status) String() string {
+ return proto.EnumName(GetValueResponse_Status_name, int32(x))
+}
+
+func (GetValueResponse_Status) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{13, 0}
+}
+
+type GetValueResponse_ErrorReason int32
+
+const (
+ GetValueResponse_REASON_UNDEFINED GetValueResponse_ErrorReason = 0
+ GetValueResponse_UNSUPPORTED GetValueResponse_ErrorReason = 1
+ GetValueResponse_INVALID_DEVICE_ID GetValueResponse_ErrorReason = 2
+ GetValueResponse_INVALID_PORT_TYPE GetValueResponse_ErrorReason = 3
+ GetValueResponse_TIMEOUT GetValueResponse_ErrorReason = 4
+ GetValueResponse_INVALID_REQ_TYPE GetValueResponse_ErrorReason = 5
+ GetValueResponse_INTERNAL_ERROR GetValueResponse_ErrorReason = 6
+)
+
+var GetValueResponse_ErrorReason_name = map[int32]string{
+ 0: "REASON_UNDEFINED",
+ 1: "UNSUPPORTED",
+ 2: "INVALID_DEVICE_ID",
+ 3: "INVALID_PORT_TYPE",
+ 4: "TIMEOUT",
+ 5: "INVALID_REQ_TYPE",
+ 6: "INTERNAL_ERROR",
+}
+
+var GetValueResponse_ErrorReason_value = map[string]int32{
+ "REASON_UNDEFINED": 0,
+ "UNSUPPORTED": 1,
+ "INVALID_DEVICE_ID": 2,
+ "INVALID_PORT_TYPE": 3,
+ "TIMEOUT": 4,
+ "INVALID_REQ_TYPE": 5,
+ "INTERNAL_ERROR": 6,
+}
+
+func (x GetValueResponse_ErrorReason) String() string {
+ return proto.EnumName(GetValueResponse_ErrorReason_name, int32(x))
+}
+
+func (GetValueResponse_ErrorReason) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{13, 1}
+}
+
+type SetValueResponse_Status int32
+
+const (
+ SetValueResponse_STATUS_UNDEFINED SetValueResponse_Status = 0
+ SetValueResponse_OK SetValueResponse_Status = 1
+ SetValueResponse_ERROR SetValueResponse_Status = 2
+)
+
+var SetValueResponse_Status_name = map[int32]string{
+ 0: "STATUS_UNDEFINED",
+ 1: "OK",
+ 2: "ERROR",
+}
+
+var SetValueResponse_Status_value = map[string]int32{
+ "STATUS_UNDEFINED": 0,
+ "OK": 1,
+ "ERROR": 2,
+}
+
+func (x SetValueResponse_Status) String() string {
+ return proto.EnumName(SetValueResponse_Status_name, int32(x))
+}
+
+func (SetValueResponse_Status) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{15, 0}
+}
+
+type SetValueResponse_ErrorReason int32
+
+const (
+ SetValueResponse_REASON_UNDEFINED SetValueResponse_ErrorReason = 0
+ SetValueResponse_UNSUPPORTED SetValueResponse_ErrorReason = 1
+)
+
+var SetValueResponse_ErrorReason_name = map[int32]string{
+ 0: "REASON_UNDEFINED",
+ 1: "UNSUPPORTED",
+}
+
+var SetValueResponse_ErrorReason_value = map[string]int32{
+ "REASON_UNDEFINED": 0,
+ "UNSUPPORTED": 1,
+}
+
+func (x SetValueResponse_ErrorReason) String() string {
+ return proto.EnumName(SetValueResponse_ErrorReason_name, int32(x))
+}
+
+func (SetValueResponse_ErrorReason) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{15, 1}
+}
+
+type GetDistanceRequest struct {
+ OnuDeviceId string `protobuf:"bytes,1,opt,name=onuDeviceId,proto3" json:"onuDeviceId,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetDistanceRequest) Reset() { *m = GetDistanceRequest{} }
+func (m *GetDistanceRequest) String() string { return proto.CompactTextString(m) }
+func (*GetDistanceRequest) ProtoMessage() {}
+func (*GetDistanceRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{0}
+}
+
+func (m *GetDistanceRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetDistanceRequest.Unmarshal(m, b)
+}
+func (m *GetDistanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetDistanceRequest.Marshal(b, m, deterministic)
+}
+func (m *GetDistanceRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetDistanceRequest.Merge(m, src)
+}
+func (m *GetDistanceRequest) XXX_Size() int {
+ return xxx_messageInfo_GetDistanceRequest.Size(m)
+}
+func (m *GetDistanceRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetDistanceRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetDistanceRequest proto.InternalMessageInfo
+
+func (m *GetDistanceRequest) GetOnuDeviceId() string {
+ if m != nil {
+ return m.OnuDeviceId
+ }
+ return ""
+}
+
+type GetDistanceResponse struct {
+ Distance uint32 `protobuf:"varint,1,opt,name=distance,proto3" json:"distance,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetDistanceResponse) Reset() { *m = GetDistanceResponse{} }
+func (m *GetDistanceResponse) String() string { return proto.CompactTextString(m) }
+func (*GetDistanceResponse) ProtoMessage() {}
+func (*GetDistanceResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{1}
+}
+
+func (m *GetDistanceResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetDistanceResponse.Unmarshal(m, b)
+}
+func (m *GetDistanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetDistanceResponse.Marshal(b, m, deterministic)
+}
+func (m *GetDistanceResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetDistanceResponse.Merge(m, src)
+}
+func (m *GetDistanceResponse) XXX_Size() int {
+ return xxx_messageInfo_GetDistanceResponse.Size(m)
+}
+func (m *GetDistanceResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetDistanceResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetDistanceResponse proto.InternalMessageInfo
+
+func (m *GetDistanceResponse) GetDistance() uint32 {
+ if m != nil {
+ return m.Distance
+ }
+ return 0
+}
+
+type GetOnuUniInfoRequest struct {
+ UniIndex uint32 `protobuf:"varint,1,opt,name=uniIndex,proto3" json:"uniIndex,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuUniInfoRequest) Reset() { *m = GetOnuUniInfoRequest{} }
+func (m *GetOnuUniInfoRequest) String() string { return proto.CompactTextString(m) }
+func (*GetOnuUniInfoRequest) ProtoMessage() {}
+func (*GetOnuUniInfoRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{2}
+}
+
+func (m *GetOnuUniInfoRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuUniInfoRequest.Unmarshal(m, b)
+}
+func (m *GetOnuUniInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuUniInfoRequest.Marshal(b, m, deterministic)
+}
+func (m *GetOnuUniInfoRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuUniInfoRequest.Merge(m, src)
+}
+func (m *GetOnuUniInfoRequest) XXX_Size() int {
+ return xxx_messageInfo_GetOnuUniInfoRequest.Size(m)
+}
+func (m *GetOnuUniInfoRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuUniInfoRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuUniInfoRequest proto.InternalMessageInfo
+
+func (m *GetOnuUniInfoRequest) GetUniIndex() uint32 {
+ if m != nil {
+ return m.UniIndex
+ }
+ return 0
+}
+
+type GetOnuUniInfoResponse struct {
+ AdmState GetOnuUniInfoResponse_AdministrativeState `protobuf:"varint,1,opt,name=admState,proto3,enum=extension.GetOnuUniInfoResponse_AdministrativeState" json:"admState,omitempty"`
+ OperState GetOnuUniInfoResponse_OperationalState `protobuf:"varint,2,opt,name=operState,proto3,enum=extension.GetOnuUniInfoResponse_OperationalState" json:"operState,omitempty"`
+ ConfigInd GetOnuUniInfoResponse_ConfigurationInd `protobuf:"varint,3,opt,name=configInd,proto3,enum=extension.GetOnuUniInfoResponse_ConfigurationInd" json:"configInd,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuUniInfoResponse) Reset() { *m = GetOnuUniInfoResponse{} }
+func (m *GetOnuUniInfoResponse) String() string { return proto.CompactTextString(m) }
+func (*GetOnuUniInfoResponse) ProtoMessage() {}
+func (*GetOnuUniInfoResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{3}
+}
+
+func (m *GetOnuUniInfoResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuUniInfoResponse.Unmarshal(m, b)
+}
+func (m *GetOnuUniInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuUniInfoResponse.Marshal(b, m, deterministic)
+}
+func (m *GetOnuUniInfoResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuUniInfoResponse.Merge(m, src)
+}
+func (m *GetOnuUniInfoResponse) XXX_Size() int {
+ return xxx_messageInfo_GetOnuUniInfoResponse.Size(m)
+}
+func (m *GetOnuUniInfoResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuUniInfoResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuUniInfoResponse proto.InternalMessageInfo
+
+func (m *GetOnuUniInfoResponse) GetAdmState() GetOnuUniInfoResponse_AdministrativeState {
+ if m != nil {
+ return m.AdmState
+ }
+ return GetOnuUniInfoResponse_ADMSTATE_UNDEFINED
+}
+
+func (m *GetOnuUniInfoResponse) GetOperState() GetOnuUniInfoResponse_OperationalState {
+ if m != nil {
+ return m.OperState
+ }
+ return GetOnuUniInfoResponse_OPERSTATE_UNDEFINED
+}
+
+func (m *GetOnuUniInfoResponse) GetConfigInd() GetOnuUniInfoResponse_ConfigurationInd {
+ if m != nil {
+ return m.ConfigInd
+ }
+ return GetOnuUniInfoResponse_UNKOWN
+}
+
+type GetOltPortCounters struct {
+ PortNo uint32 `protobuf:"varint,1,opt,name=portNo,proto3" json:"portNo,omitempty"`
+ PortType GetOltPortCounters_PortType `protobuf:"varint,2,opt,name=portType,proto3,enum=extension.GetOltPortCounters_PortType" json:"portType,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOltPortCounters) Reset() { *m = GetOltPortCounters{} }
+func (m *GetOltPortCounters) String() string { return proto.CompactTextString(m) }
+func (*GetOltPortCounters) ProtoMessage() {}
+func (*GetOltPortCounters) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{4}
+}
+
+func (m *GetOltPortCounters) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOltPortCounters.Unmarshal(m, b)
+}
+func (m *GetOltPortCounters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOltPortCounters.Marshal(b, m, deterministic)
+}
+func (m *GetOltPortCounters) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOltPortCounters.Merge(m, src)
+}
+func (m *GetOltPortCounters) XXX_Size() int {
+ return xxx_messageInfo_GetOltPortCounters.Size(m)
+}
+func (m *GetOltPortCounters) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOltPortCounters.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOltPortCounters proto.InternalMessageInfo
+
+func (m *GetOltPortCounters) GetPortNo() uint32 {
+ if m != nil {
+ return m.PortNo
+ }
+ return 0
+}
+
+func (m *GetOltPortCounters) GetPortType() GetOltPortCounters_PortType {
+ if m != nil {
+ return m.PortType
+ }
+ return GetOltPortCounters_Port_UNKNOWN
+}
+
+type GetOltPortCountersResponse struct {
+ TxBytes uint64 `protobuf:"varint,1,opt,name=txBytes,proto3" json:"txBytes,omitempty"`
+ RxBytes uint64 `protobuf:"varint,2,opt,name=rxBytes,proto3" json:"rxBytes,omitempty"`
+ TxPackets uint64 `protobuf:"varint,3,opt,name=txPackets,proto3" json:"txPackets,omitempty"`
+ RxPackets uint64 `protobuf:"varint,4,opt,name=rxPackets,proto3" json:"rxPackets,omitempty"`
+ TxErrorPackets uint64 `protobuf:"varint,5,opt,name=txErrorPackets,proto3" json:"txErrorPackets,omitempty"`
+ RxErrorPackets uint64 `protobuf:"varint,6,opt,name=rxErrorPackets,proto3" json:"rxErrorPackets,omitempty"`
+ TxBcastPackets uint64 `protobuf:"varint,7,opt,name=txBcastPackets,proto3" json:"txBcastPackets,omitempty"`
+ RxBcastPackets uint64 `protobuf:"varint,8,opt,name=rxBcastPackets,proto3" json:"rxBcastPackets,omitempty"`
+ TxUcastPackets uint64 `protobuf:"varint,9,opt,name=txUcastPackets,proto3" json:"txUcastPackets,omitempty"`
+ RxUcastPackets uint64 `protobuf:"varint,10,opt,name=rxUcastPackets,proto3" json:"rxUcastPackets,omitempty"`
+ TxMcastPackets uint64 `protobuf:"varint,11,opt,name=txMcastPackets,proto3" json:"txMcastPackets,omitempty"`
+ RxMcastPackets uint64 `protobuf:"varint,12,opt,name=rxMcastPackets,proto3" json:"rxMcastPackets,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOltPortCountersResponse) Reset() { *m = GetOltPortCountersResponse{} }
+func (m *GetOltPortCountersResponse) String() string { return proto.CompactTextString(m) }
+func (*GetOltPortCountersResponse) ProtoMessage() {}
+func (*GetOltPortCountersResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{5}
+}
+
+func (m *GetOltPortCountersResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOltPortCountersResponse.Unmarshal(m, b)
+}
+func (m *GetOltPortCountersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOltPortCountersResponse.Marshal(b, m, deterministic)
+}
+func (m *GetOltPortCountersResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOltPortCountersResponse.Merge(m, src)
+}
+func (m *GetOltPortCountersResponse) XXX_Size() int {
+ return xxx_messageInfo_GetOltPortCountersResponse.Size(m)
+}
+func (m *GetOltPortCountersResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOltPortCountersResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOltPortCountersResponse proto.InternalMessageInfo
+
+func (m *GetOltPortCountersResponse) GetTxBytes() uint64 {
+ if m != nil {
+ return m.TxBytes
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetRxBytes() uint64 {
+ if m != nil {
+ return m.RxBytes
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetTxPackets() uint64 {
+ if m != nil {
+ return m.TxPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetRxPackets() uint64 {
+ if m != nil {
+ return m.RxPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetTxErrorPackets() uint64 {
+ if m != nil {
+ return m.TxErrorPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetRxErrorPackets() uint64 {
+ if m != nil {
+ return m.RxErrorPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetTxBcastPackets() uint64 {
+ if m != nil {
+ return m.TxBcastPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetRxBcastPackets() uint64 {
+ if m != nil {
+ return m.RxBcastPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetTxUcastPackets() uint64 {
+ if m != nil {
+ return m.TxUcastPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetRxUcastPackets() uint64 {
+ if m != nil {
+ return m.RxUcastPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetTxMcastPackets() uint64 {
+ if m != nil {
+ return m.TxMcastPackets
+ }
+ return 0
+}
+
+func (m *GetOltPortCountersResponse) GetRxMcastPackets() uint64 {
+ if m != nil {
+ return m.RxMcastPackets
+ }
+ return 0
+}
+
+type GetOnuPonOpticalInfo struct {
+ Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuPonOpticalInfo) Reset() { *m = GetOnuPonOpticalInfo{} }
+func (m *GetOnuPonOpticalInfo) String() string { return proto.CompactTextString(m) }
+func (*GetOnuPonOpticalInfo) ProtoMessage() {}
+func (*GetOnuPonOpticalInfo) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{6}
+}
+
+func (m *GetOnuPonOpticalInfo) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuPonOpticalInfo.Unmarshal(m, b)
+}
+func (m *GetOnuPonOpticalInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuPonOpticalInfo.Marshal(b, m, deterministic)
+}
+func (m *GetOnuPonOpticalInfo) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuPonOpticalInfo.Merge(m, src)
+}
+func (m *GetOnuPonOpticalInfo) XXX_Size() int {
+ return xxx_messageInfo_GetOnuPonOpticalInfo.Size(m)
+}
+func (m *GetOnuPonOpticalInfo) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuPonOpticalInfo.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuPonOpticalInfo proto.InternalMessageInfo
+
+func (m *GetOnuPonOpticalInfo) GetEmpty() *empty.Empty {
+ if m != nil {
+ return m.Empty
+ }
+ return nil
+}
+
+// The types are from Table 11.2.10-1 in G.988
+type GetOnuPonOpticalInfoResponse struct {
+ LaserBiasCurrent int32 `protobuf:"varint,1,opt,name=laserBiasCurrent,proto3" json:"laserBiasCurrent,omitempty"`
+ LaserBiasCurrentTypeId int32 `protobuf:"varint,2,opt,name=laserBiasCurrentTypeId,proto3" json:"laserBiasCurrentTypeId,omitempty"`
+ MeanOpticalLaunchPower int32 `protobuf:"varint,3,opt,name=meanOpticalLaunchPower,proto3" json:"meanOpticalLaunchPower,omitempty"`
+ MeanOpticalLaunchPowerTypeId int32 `protobuf:"varint,4,opt,name=meanOpticalLaunchPowerTypeId,proto3" json:"meanOpticalLaunchPowerTypeId,omitempty"`
+ PowerFeedTypeId int32 `protobuf:"varint,5,opt,name=powerFeedTypeId,proto3" json:"powerFeedTypeId,omitempty"`
+ PowerFeedVoltage int32 `protobuf:"varint,6,opt,name=powerFeedVoltage,proto3" json:"powerFeedVoltage,omitempty"`
+ ReceivedOpticalPower int32 `protobuf:"varint,7,opt,name=receivedOpticalPower,proto3" json:"receivedOpticalPower,omitempty"`
+ ReceivedOpticalPowerTypeId int32 `protobuf:"varint,8,opt,name=receivedOpticalPowerTypeId,proto3" json:"receivedOpticalPowerTypeId,omitempty"`
+ Temperature int32 `protobuf:"varint,9,opt,name=temperature,proto3" json:"temperature,omitempty"`
+ TemperatureTypeId int32 `protobuf:"varint,10,opt,name=temperatureTypeId,proto3" json:"temperatureTypeId,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuPonOpticalInfoResponse) Reset() { *m = GetOnuPonOpticalInfoResponse{} }
+func (m *GetOnuPonOpticalInfoResponse) String() string { return proto.CompactTextString(m) }
+func (*GetOnuPonOpticalInfoResponse) ProtoMessage() {}
+func (*GetOnuPonOpticalInfoResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{7}
+}
+
+func (m *GetOnuPonOpticalInfoResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Unmarshal(m, b)
+}
+func (m *GetOnuPonOpticalInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Marshal(b, m, deterministic)
+}
+func (m *GetOnuPonOpticalInfoResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuPonOpticalInfoResponse.Merge(m, src)
+}
+func (m *GetOnuPonOpticalInfoResponse) XXX_Size() int {
+ return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Size(m)
+}
+func (m *GetOnuPonOpticalInfoResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuPonOpticalInfoResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuPonOpticalInfoResponse proto.InternalMessageInfo
+
+func (m *GetOnuPonOpticalInfoResponse) GetLaserBiasCurrent() int32 {
+ if m != nil {
+ return m.LaserBiasCurrent
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetLaserBiasCurrentTypeId() int32 {
+ if m != nil {
+ return m.LaserBiasCurrentTypeId
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetMeanOpticalLaunchPower() int32 {
+ if m != nil {
+ return m.MeanOpticalLaunchPower
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetMeanOpticalLaunchPowerTypeId() int32 {
+ if m != nil {
+ return m.MeanOpticalLaunchPowerTypeId
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetPowerFeedTypeId() int32 {
+ if m != nil {
+ return m.PowerFeedTypeId
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetPowerFeedVoltage() int32 {
+ if m != nil {
+ return m.PowerFeedVoltage
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetReceivedOpticalPower() int32 {
+ if m != nil {
+ return m.ReceivedOpticalPower
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetReceivedOpticalPowerTypeId() int32 {
+ if m != nil {
+ return m.ReceivedOpticalPowerTypeId
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetTemperature() int32 {
+ if m != nil {
+ return m.Temperature
+ }
+ return 0
+}
+
+func (m *GetOnuPonOpticalInfoResponse) GetTemperatureTypeId() int32 {
+ if m != nil {
+ return m.TemperatureTypeId
+ }
+ return 0
+}
+
+type GetOnuEthernetBridgePortHistory struct {
+ Direction GetOnuEthernetBridgePortHistory_Direction `protobuf:"varint,1,opt,name=direction,proto3,enum=extension.GetOnuEthernetBridgePortHistory_Direction" json:"direction,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuEthernetBridgePortHistory) Reset() { *m = GetOnuEthernetBridgePortHistory{} }
+func (m *GetOnuEthernetBridgePortHistory) String() string { return proto.CompactTextString(m) }
+func (*GetOnuEthernetBridgePortHistory) ProtoMessage() {}
+func (*GetOnuEthernetBridgePortHistory) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{8}
+}
+
+func (m *GetOnuEthernetBridgePortHistory) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Unmarshal(m, b)
+}
+func (m *GetOnuEthernetBridgePortHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Marshal(b, m, deterministic)
+}
+func (m *GetOnuEthernetBridgePortHistory) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuEthernetBridgePortHistory.Merge(m, src)
+}
+func (m *GetOnuEthernetBridgePortHistory) XXX_Size() int {
+ return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Size(m)
+}
+func (m *GetOnuEthernetBridgePortHistory) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuEthernetBridgePortHistory.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuEthernetBridgePortHistory proto.InternalMessageInfo
+
+func (m *GetOnuEthernetBridgePortHistory) GetDirection() GetOnuEthernetBridgePortHistory_Direction {
+ if m != nil {
+ return m.Direction
+ }
+ return GetOnuEthernetBridgePortHistory_UNDEFINED
+}
+
+type GetOnuEthernetBridgePortHistoryResponse struct {
+ DropEvents uint32 `protobuf:"varint,1,opt,name=dropEvents,proto3" json:"dropEvents,omitempty"`
+ Octets uint32 `protobuf:"varint,2,opt,name=octets,proto3" json:"octets,omitempty"`
+ Packets uint32 `protobuf:"varint,3,opt,name=packets,proto3" json:"packets,omitempty"`
+ BroadcastPackets uint32 `protobuf:"varint,4,opt,name=broadcastPackets,proto3" json:"broadcastPackets,omitempty"`
+ MulticastPackets uint32 `protobuf:"varint,5,opt,name=multicastPackets,proto3" json:"multicastPackets,omitempty"`
+ CrcErroredPackets uint32 `protobuf:"varint,6,opt,name=crcErroredPackets,proto3" json:"crcErroredPackets,omitempty"`
+ UndersizePackets uint32 `protobuf:"varint,7,opt,name=undersizePackets,proto3" json:"undersizePackets,omitempty"`
+ OversizePackets uint32 `protobuf:"varint,8,opt,name=oversizePackets,proto3" json:"oversizePackets,omitempty"`
+ Packets64Octets uint32 `protobuf:"varint,9,opt,name=packets64octets,proto3" json:"packets64octets,omitempty"`
+ Packets65To127Octets uint32 `protobuf:"varint,10,opt,name=packets65To127octets,proto3" json:"packets65To127octets,omitempty"`
+ Packets128To255Octets uint32 `protobuf:"varint,11,opt,name=packets128To255Octets,proto3" json:"packets128To255Octets,omitempty"`
+ Packets256To511Octets uint32 `protobuf:"varint,12,opt,name=packets256To511octets,proto3" json:"packets256To511octets,omitempty"`
+ Packets512To1023Octets uint32 `protobuf:"varint,13,opt,name=packets512To1023octets,proto3" json:"packets512To1023octets,omitempty"`
+ Packets1024To1518Octets uint32 `protobuf:"varint,14,opt,name=packets1024To1518octets,proto3" json:"packets1024To1518octets,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) Reset() {
+ *m = GetOnuEthernetBridgePortHistoryResponse{}
+}
+func (m *GetOnuEthernetBridgePortHistoryResponse) String() string { return proto.CompactTextString(m) }
+func (*GetOnuEthernetBridgePortHistoryResponse) ProtoMessage() {}
+func (*GetOnuEthernetBridgePortHistoryResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{9}
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Unmarshal(m, b)
+}
+func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Marshal(b, m, deterministic)
+}
+func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Merge(m, src)
+}
+func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Size() int {
+ return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Size(m)
+}
+func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse proto.InternalMessageInfo
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetDropEvents() uint32 {
+ if m != nil {
+ return m.DropEvents
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetOctets() uint32 {
+ if m != nil {
+ return m.Octets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets() uint32 {
+ if m != nil {
+ return m.Packets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetBroadcastPackets() uint32 {
+ if m != nil {
+ return m.BroadcastPackets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetMulticastPackets() uint32 {
+ if m != nil {
+ return m.MulticastPackets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetCrcErroredPackets() uint32 {
+ if m != nil {
+ return m.CrcErroredPackets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetUndersizePackets() uint32 {
+ if m != nil {
+ return m.UndersizePackets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetOversizePackets() uint32 {
+ if m != nil {
+ return m.OversizePackets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets64Octets() uint32 {
+ if m != nil {
+ return m.Packets64Octets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets65To127Octets() uint32 {
+ if m != nil {
+ return m.Packets65To127Octets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets128To255Octets() uint32 {
+ if m != nil {
+ return m.Packets128To255Octets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets256To511Octets() uint32 {
+ if m != nil {
+ return m.Packets256To511Octets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets512To1023Octets() uint32 {
+ if m != nil {
+ return m.Packets512To1023Octets
+ }
+ return 0
+}
+
+func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets1024To1518Octets() uint32 {
+ if m != nil {
+ return m.Packets1024To1518Octets
+ }
+ return 0
+}
+
+type GetOnuFecHistory struct {
+ Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuFecHistory) Reset() { *m = GetOnuFecHistory{} }
+func (m *GetOnuFecHistory) String() string { return proto.CompactTextString(m) }
+func (*GetOnuFecHistory) ProtoMessage() {}
+func (*GetOnuFecHistory) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{10}
+}
+
+func (m *GetOnuFecHistory) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuFecHistory.Unmarshal(m, b)
+}
+func (m *GetOnuFecHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuFecHistory.Marshal(b, m, deterministic)
+}
+func (m *GetOnuFecHistory) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuFecHistory.Merge(m, src)
+}
+func (m *GetOnuFecHistory) XXX_Size() int {
+ return xxx_messageInfo_GetOnuFecHistory.Size(m)
+}
+func (m *GetOnuFecHistory) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuFecHistory.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuFecHistory proto.InternalMessageInfo
+
+func (m *GetOnuFecHistory) GetEmpty() *empty.Empty {
+ if m != nil {
+ return m.Empty
+ }
+ return nil
+}
+
+type GetOnuFecHistoryResponse struct {
+ CorrectedBytes uint32 `protobuf:"varint,1,opt,name=correctedBytes,proto3" json:"correctedBytes,omitempty"`
+ CorrectedCodeWords uint32 `protobuf:"varint,2,opt,name=correctedCodeWords,proto3" json:"correctedCodeWords,omitempty"`
+ FecSeconds uint32 `protobuf:"varint,3,opt,name=fecSeconds,proto3" json:"fecSeconds,omitempty"`
+ TotalCodeWords uint32 `protobuf:"varint,4,opt,name=totalCodeWords,proto3" json:"totalCodeWords,omitempty"`
+ UncorrectableCodeWords uint32 `protobuf:"varint,5,opt,name=uncorrectableCodeWords,proto3" json:"uncorrectableCodeWords,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuFecHistoryResponse) Reset() { *m = GetOnuFecHistoryResponse{} }
+func (m *GetOnuFecHistoryResponse) String() string { return proto.CompactTextString(m) }
+func (*GetOnuFecHistoryResponse) ProtoMessage() {}
+func (*GetOnuFecHistoryResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{11}
+}
+
+func (m *GetOnuFecHistoryResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuFecHistoryResponse.Unmarshal(m, b)
+}
+func (m *GetOnuFecHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuFecHistoryResponse.Marshal(b, m, deterministic)
+}
+func (m *GetOnuFecHistoryResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuFecHistoryResponse.Merge(m, src)
+}
+func (m *GetOnuFecHistoryResponse) XXX_Size() int {
+ return xxx_messageInfo_GetOnuFecHistoryResponse.Size(m)
+}
+func (m *GetOnuFecHistoryResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuFecHistoryResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuFecHistoryResponse proto.InternalMessageInfo
+
+func (m *GetOnuFecHistoryResponse) GetCorrectedBytes() uint32 {
+ if m != nil {
+ return m.CorrectedBytes
+ }
+ return 0
+}
+
+func (m *GetOnuFecHistoryResponse) GetCorrectedCodeWords() uint32 {
+ if m != nil {
+ return m.CorrectedCodeWords
+ }
+ return 0
+}
+
+func (m *GetOnuFecHistoryResponse) GetFecSeconds() uint32 {
+ if m != nil {
+ return m.FecSeconds
+ }
+ return 0
+}
+
+func (m *GetOnuFecHistoryResponse) GetTotalCodeWords() uint32 {
+ if m != nil {
+ return m.TotalCodeWords
+ }
+ return 0
+}
+
+func (m *GetOnuFecHistoryResponse) GetUncorrectableCodeWords() uint32 {
+ if m != nil {
+ return m.UncorrectableCodeWords
+ }
+ return 0
+}
+
+type GetValueRequest struct {
+ // Types that are valid to be assigned to Request:
+ // *GetValueRequest_Distance
+ // *GetValueRequest_UniInfo
+ // *GetValueRequest_OltPortInfo
+ // *GetValueRequest_OnuOpticalInfo
+ // *GetValueRequest_EthBridgePort
+ // *GetValueRequest_FecHistory
+ Request isGetValueRequest_Request `protobuf_oneof:"request"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetValueRequest) Reset() { *m = GetValueRequest{} }
+func (m *GetValueRequest) String() string { return proto.CompactTextString(m) }
+func (*GetValueRequest) ProtoMessage() {}
+func (*GetValueRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{12}
+}
+
+func (m *GetValueRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetValueRequest.Unmarshal(m, b)
+}
+func (m *GetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetValueRequest.Marshal(b, m, deterministic)
+}
+func (m *GetValueRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetValueRequest.Merge(m, src)
+}
+func (m *GetValueRequest) XXX_Size() int {
+ return xxx_messageInfo_GetValueRequest.Size(m)
+}
+func (m *GetValueRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetValueRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetValueRequest proto.InternalMessageInfo
+
+type isGetValueRequest_Request interface {
+ isGetValueRequest_Request()
+}
+
+type GetValueRequest_Distance struct {
+ Distance *GetDistanceRequest `protobuf:"bytes,1,opt,name=distance,proto3,oneof"`
+}
+
+type GetValueRequest_UniInfo struct {
+ UniInfo *GetOnuUniInfoRequest `protobuf:"bytes,2,opt,name=uniInfo,proto3,oneof"`
+}
+
+type GetValueRequest_OltPortInfo struct {
+ OltPortInfo *GetOltPortCounters `protobuf:"bytes,3,opt,name=oltPortInfo,proto3,oneof"`
+}
+
+type GetValueRequest_OnuOpticalInfo struct {
+ OnuOpticalInfo *GetOnuPonOpticalInfo `protobuf:"bytes,4,opt,name=onuOpticalInfo,proto3,oneof"`
+}
+
+type GetValueRequest_EthBridgePort struct {
+ EthBridgePort *GetOnuEthernetBridgePortHistory `protobuf:"bytes,5,opt,name=ethBridgePort,proto3,oneof"`
+}
+
+type GetValueRequest_FecHistory struct {
+ FecHistory *GetOnuFecHistory `protobuf:"bytes,6,opt,name=fecHistory,proto3,oneof"`
+}
+
+func (*GetValueRequest_Distance) isGetValueRequest_Request() {}
+
+func (*GetValueRequest_UniInfo) isGetValueRequest_Request() {}
+
+func (*GetValueRequest_OltPortInfo) isGetValueRequest_Request() {}
+
+func (*GetValueRequest_OnuOpticalInfo) isGetValueRequest_Request() {}
+
+func (*GetValueRequest_EthBridgePort) isGetValueRequest_Request() {}
+
+func (*GetValueRequest_FecHistory) isGetValueRequest_Request() {}
+
+func (m *GetValueRequest) GetRequest() isGetValueRequest_Request {
+ if m != nil {
+ return m.Request
+ }
+ return nil
+}
+
+func (m *GetValueRequest) GetDistance() *GetDistanceRequest {
+ if x, ok := m.GetRequest().(*GetValueRequest_Distance); ok {
+ return x.Distance
+ }
+ return nil
+}
+
+func (m *GetValueRequest) GetUniInfo() *GetOnuUniInfoRequest {
+ if x, ok := m.GetRequest().(*GetValueRequest_UniInfo); ok {
+ return x.UniInfo
+ }
+ return nil
+}
+
+func (m *GetValueRequest) GetOltPortInfo() *GetOltPortCounters {
+ if x, ok := m.GetRequest().(*GetValueRequest_OltPortInfo); ok {
+ return x.OltPortInfo
+ }
+ return nil
+}
+
+func (m *GetValueRequest) GetOnuOpticalInfo() *GetOnuPonOpticalInfo {
+ if x, ok := m.GetRequest().(*GetValueRequest_OnuOpticalInfo); ok {
+ return x.OnuOpticalInfo
+ }
+ return nil
+}
+
+func (m *GetValueRequest) GetEthBridgePort() *GetOnuEthernetBridgePortHistory {
+ if x, ok := m.GetRequest().(*GetValueRequest_EthBridgePort); ok {
+ return x.EthBridgePort
+ }
+ return nil
+}
+
+func (m *GetValueRequest) GetFecHistory() *GetOnuFecHistory {
+ if x, ok := m.GetRequest().(*GetValueRequest_FecHistory); ok {
+ return x.FecHistory
+ }
+ return nil
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*GetValueRequest) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*GetValueRequest_Distance)(nil),
+ (*GetValueRequest_UniInfo)(nil),
+ (*GetValueRequest_OltPortInfo)(nil),
+ (*GetValueRequest_OnuOpticalInfo)(nil),
+ (*GetValueRequest_EthBridgePort)(nil),
+ (*GetValueRequest_FecHistory)(nil),
+ }
+}
+
+type GetValueResponse struct {
+ Status GetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.GetValueResponse_Status" json:"status,omitempty"`
+ ErrReason GetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.GetValueResponse_ErrorReason" json:"errReason,omitempty"`
+ // Types that are valid to be assigned to Response:
+ // *GetValueResponse_Distance
+ // *GetValueResponse_UniInfo
+ // *GetValueResponse_PortCoutners
+ // *GetValueResponse_OnuOpticalInfo
+ // *GetValueResponse_EthBridgePortInfo
+ // *GetValueResponse_FecHistory
+ Response isGetValueResponse_Response `protobuf_oneof:"response"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetValueResponse) Reset() { *m = GetValueResponse{} }
+func (m *GetValueResponse) String() string { return proto.CompactTextString(m) }
+func (*GetValueResponse) ProtoMessage() {}
+func (*GetValueResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{13}
+}
+
+func (m *GetValueResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetValueResponse.Unmarshal(m, b)
+}
+func (m *GetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetValueResponse.Marshal(b, m, deterministic)
+}
+func (m *GetValueResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetValueResponse.Merge(m, src)
+}
+func (m *GetValueResponse) XXX_Size() int {
+ return xxx_messageInfo_GetValueResponse.Size(m)
+}
+func (m *GetValueResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetValueResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetValueResponse proto.InternalMessageInfo
+
+func (m *GetValueResponse) GetStatus() GetValueResponse_Status {
+ if m != nil {
+ return m.Status
+ }
+ return GetValueResponse_STATUS_UNDEFINED
+}
+
+func (m *GetValueResponse) GetErrReason() GetValueResponse_ErrorReason {
+ if m != nil {
+ return m.ErrReason
+ }
+ return GetValueResponse_REASON_UNDEFINED
+}
+
+type isGetValueResponse_Response interface {
+ isGetValueResponse_Response()
+}
+
+type GetValueResponse_Distance struct {
+ Distance *GetDistanceResponse `protobuf:"bytes,3,opt,name=distance,proto3,oneof"`
+}
+
+type GetValueResponse_UniInfo struct {
+ UniInfo *GetOnuUniInfoResponse `protobuf:"bytes,4,opt,name=uniInfo,proto3,oneof"`
+}
+
+type GetValueResponse_PortCoutners struct {
+ PortCoutners *GetOltPortCountersResponse `protobuf:"bytes,5,opt,name=portCoutners,proto3,oneof"`
+}
+
+type GetValueResponse_OnuOpticalInfo struct {
+ OnuOpticalInfo *GetOnuPonOpticalInfoResponse `protobuf:"bytes,6,opt,name=onuOpticalInfo,proto3,oneof"`
+}
+
+type GetValueResponse_EthBridgePortInfo struct {
+ EthBridgePortInfo *GetOnuEthernetBridgePortHistoryResponse `protobuf:"bytes,7,opt,name=ethBridgePortInfo,proto3,oneof"`
+}
+
+type GetValueResponse_FecHistory struct {
+ FecHistory *GetOnuFecHistoryResponse `protobuf:"bytes,8,opt,name=fecHistory,proto3,oneof"`
+}
+
+func (*GetValueResponse_Distance) isGetValueResponse_Response() {}
+
+func (*GetValueResponse_UniInfo) isGetValueResponse_Response() {}
+
+func (*GetValueResponse_PortCoutners) isGetValueResponse_Response() {}
+
+func (*GetValueResponse_OnuOpticalInfo) isGetValueResponse_Response() {}
+
+func (*GetValueResponse_EthBridgePortInfo) isGetValueResponse_Response() {}
+
+func (*GetValueResponse_FecHistory) isGetValueResponse_Response() {}
+
+func (m *GetValueResponse) GetResponse() isGetValueResponse_Response {
+ if m != nil {
+ return m.Response
+ }
+ return nil
+}
+
+func (m *GetValueResponse) GetDistance() *GetDistanceResponse {
+ if x, ok := m.GetResponse().(*GetValueResponse_Distance); ok {
+ return x.Distance
+ }
+ return nil
+}
+
+func (m *GetValueResponse) GetUniInfo() *GetOnuUniInfoResponse {
+ if x, ok := m.GetResponse().(*GetValueResponse_UniInfo); ok {
+ return x.UniInfo
+ }
+ return nil
+}
+
+func (m *GetValueResponse) GetPortCoutners() *GetOltPortCountersResponse {
+ if x, ok := m.GetResponse().(*GetValueResponse_PortCoutners); ok {
+ return x.PortCoutners
+ }
+ return nil
+}
+
+func (m *GetValueResponse) GetOnuOpticalInfo() *GetOnuPonOpticalInfoResponse {
+ if x, ok := m.GetResponse().(*GetValueResponse_OnuOpticalInfo); ok {
+ return x.OnuOpticalInfo
+ }
+ return nil
+}
+
+func (m *GetValueResponse) GetEthBridgePortInfo() *GetOnuEthernetBridgePortHistoryResponse {
+ if x, ok := m.GetResponse().(*GetValueResponse_EthBridgePortInfo); ok {
+ return x.EthBridgePortInfo
+ }
+ return nil
+}
+
+func (m *GetValueResponse) GetFecHistory() *GetOnuFecHistoryResponse {
+ if x, ok := m.GetResponse().(*GetValueResponse_FecHistory); ok {
+ return x.FecHistory
+ }
+ return nil
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*GetValueResponse) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*GetValueResponse_Distance)(nil),
+ (*GetValueResponse_UniInfo)(nil),
+ (*GetValueResponse_PortCoutners)(nil),
+ (*GetValueResponse_OnuOpticalInfo)(nil),
+ (*GetValueResponse_EthBridgePortInfo)(nil),
+ (*GetValueResponse_FecHistory)(nil),
+ }
+}
+
+type SetValueRequest struct {
+ // Types that are valid to be assigned to Request:
+ // *SetValueRequest_AlarmConfig
+ Request isSetValueRequest_Request `protobuf_oneof:"request"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SetValueRequest) Reset() { *m = SetValueRequest{} }
+func (m *SetValueRequest) String() string { return proto.CompactTextString(m) }
+func (*SetValueRequest) ProtoMessage() {}
+func (*SetValueRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{14}
+}
+
+func (m *SetValueRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SetValueRequest.Unmarshal(m, b)
+}
+func (m *SetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SetValueRequest.Marshal(b, m, deterministic)
+}
+func (m *SetValueRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SetValueRequest.Merge(m, src)
+}
+func (m *SetValueRequest) XXX_Size() int {
+ return xxx_messageInfo_SetValueRequest.Size(m)
+}
+func (m *SetValueRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_SetValueRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SetValueRequest proto.InternalMessageInfo
+
+type isSetValueRequest_Request interface {
+ isSetValueRequest_Request()
+}
+
+type SetValueRequest_AlarmConfig struct {
+ AlarmConfig *config.AlarmConfig `protobuf:"bytes,1,opt,name=alarm_config,json=alarmConfig,proto3,oneof"`
+}
+
+func (*SetValueRequest_AlarmConfig) isSetValueRequest_Request() {}
+
+func (m *SetValueRequest) GetRequest() isSetValueRequest_Request {
+ if m != nil {
+ return m.Request
+ }
+ return nil
+}
+
+func (m *SetValueRequest) GetAlarmConfig() *config.AlarmConfig {
+ if x, ok := m.GetRequest().(*SetValueRequest_AlarmConfig); ok {
+ return x.AlarmConfig
+ }
+ return nil
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*SetValueRequest) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*SetValueRequest_AlarmConfig)(nil),
+ }
+}
+
+type SetValueResponse struct {
+ Status SetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.SetValueResponse_Status" json:"status,omitempty"`
+ ErrReason SetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.SetValueResponse_ErrorReason" json:"errReason,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SetValueResponse) Reset() { *m = SetValueResponse{} }
+func (m *SetValueResponse) String() string { return proto.CompactTextString(m) }
+func (*SetValueResponse) ProtoMessage() {}
+func (*SetValueResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{15}
+}
+
+func (m *SetValueResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SetValueResponse.Unmarshal(m, b)
+}
+func (m *SetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SetValueResponse.Marshal(b, m, deterministic)
+}
+func (m *SetValueResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SetValueResponse.Merge(m, src)
+}
+func (m *SetValueResponse) XXX_Size() int {
+ return xxx_messageInfo_SetValueResponse.Size(m)
+}
+func (m *SetValueResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_SetValueResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SetValueResponse proto.InternalMessageInfo
+
+func (m *SetValueResponse) GetStatus() SetValueResponse_Status {
+ if m != nil {
+ return m.Status
+ }
+ return SetValueResponse_STATUS_UNDEFINED
+}
+
+func (m *SetValueResponse) GetErrReason() SetValueResponse_ErrorReason {
+ if m != nil {
+ return m.ErrReason
+ }
+ return SetValueResponse_REASON_UNDEFINED
+}
+
+type SingleGetValueRequest struct {
+ TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
+ Request *GetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SingleGetValueRequest) Reset() { *m = SingleGetValueRequest{} }
+func (m *SingleGetValueRequest) String() string { return proto.CompactTextString(m) }
+func (*SingleGetValueRequest) ProtoMessage() {}
+func (*SingleGetValueRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{16}
+}
+
+func (m *SingleGetValueRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SingleGetValueRequest.Unmarshal(m, b)
+}
+func (m *SingleGetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SingleGetValueRequest.Marshal(b, m, deterministic)
+}
+func (m *SingleGetValueRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SingleGetValueRequest.Merge(m, src)
+}
+func (m *SingleGetValueRequest) XXX_Size() int {
+ return xxx_messageInfo_SingleGetValueRequest.Size(m)
+}
+func (m *SingleGetValueRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_SingleGetValueRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SingleGetValueRequest proto.InternalMessageInfo
+
+func (m *SingleGetValueRequest) GetTargetId() string {
+ if m != nil {
+ return m.TargetId
+ }
+ return ""
+}
+
+func (m *SingleGetValueRequest) GetRequest() *GetValueRequest {
+ if m != nil {
+ return m.Request
+ }
+ return nil
+}
+
+type SingleGetValueResponse struct {
+ Response *GetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SingleGetValueResponse) Reset() { *m = SingleGetValueResponse{} }
+func (m *SingleGetValueResponse) String() string { return proto.CompactTextString(m) }
+func (*SingleGetValueResponse) ProtoMessage() {}
+func (*SingleGetValueResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{17}
+}
+
+func (m *SingleGetValueResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SingleGetValueResponse.Unmarshal(m, b)
+}
+func (m *SingleGetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SingleGetValueResponse.Marshal(b, m, deterministic)
+}
+func (m *SingleGetValueResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SingleGetValueResponse.Merge(m, src)
+}
+func (m *SingleGetValueResponse) XXX_Size() int {
+ return xxx_messageInfo_SingleGetValueResponse.Size(m)
+}
+func (m *SingleGetValueResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_SingleGetValueResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SingleGetValueResponse proto.InternalMessageInfo
+
+func (m *SingleGetValueResponse) GetResponse() *GetValueResponse {
+ if m != nil {
+ return m.Response
+ }
+ return nil
+}
+
+type SingleSetValueRequest struct {
+ TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
+ Request *SetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SingleSetValueRequest) Reset() { *m = SingleSetValueRequest{} }
+func (m *SingleSetValueRequest) String() string { return proto.CompactTextString(m) }
+func (*SingleSetValueRequest) ProtoMessage() {}
+func (*SingleSetValueRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{18}
+}
+
+func (m *SingleSetValueRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SingleSetValueRequest.Unmarshal(m, b)
+}
+func (m *SingleSetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SingleSetValueRequest.Marshal(b, m, deterministic)
+}
+func (m *SingleSetValueRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SingleSetValueRequest.Merge(m, src)
+}
+func (m *SingleSetValueRequest) XXX_Size() int {
+ return xxx_messageInfo_SingleSetValueRequest.Size(m)
+}
+func (m *SingleSetValueRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_SingleSetValueRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SingleSetValueRequest proto.InternalMessageInfo
+
+func (m *SingleSetValueRequest) GetTargetId() string {
+ if m != nil {
+ return m.TargetId
+ }
+ return ""
+}
+
+func (m *SingleSetValueRequest) GetRequest() *SetValueRequest {
+ if m != nil {
+ return m.Request
+ }
+ return nil
+}
+
+type SingleSetValueResponse struct {
+ Response *SetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SingleSetValueResponse) Reset() { *m = SingleSetValueResponse{} }
+func (m *SingleSetValueResponse) String() string { return proto.CompactTextString(m) }
+func (*SingleSetValueResponse) ProtoMessage() {}
+func (*SingleSetValueResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{19}
+}
+
+func (m *SingleSetValueResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SingleSetValueResponse.Unmarshal(m, b)
+}
+func (m *SingleSetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SingleSetValueResponse.Marshal(b, m, deterministic)
+}
+func (m *SingleSetValueResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SingleSetValueResponse.Merge(m, src)
+}
+func (m *SingleSetValueResponse) XXX_Size() int {
+ return xxx_messageInfo_SingleSetValueResponse.Size(m)
+}
+func (m *SingleSetValueResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_SingleSetValueResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SingleSetValueResponse proto.InternalMessageInfo
+
+func (m *SingleSetValueResponse) GetResponse() *SetValueResponse {
+ if m != nil {
+ return m.Response
+ }
+ return nil
+}
+
+func init() {
+ proto.RegisterEnum("extension.GetOnuUniInfoResponse_ConfigurationInd", GetOnuUniInfoResponse_ConfigurationInd_name, GetOnuUniInfoResponse_ConfigurationInd_value)
+ proto.RegisterEnum("extension.GetOnuUniInfoResponse_AdministrativeState", GetOnuUniInfoResponse_AdministrativeState_name, GetOnuUniInfoResponse_AdministrativeState_value)
+ proto.RegisterEnum("extension.GetOnuUniInfoResponse_OperationalState", GetOnuUniInfoResponse_OperationalState_name, GetOnuUniInfoResponse_OperationalState_value)
+ proto.RegisterEnum("extension.GetOltPortCounters_PortType", GetOltPortCounters_PortType_name, GetOltPortCounters_PortType_value)
+ proto.RegisterEnum("extension.GetOnuEthernetBridgePortHistory_Direction", GetOnuEthernetBridgePortHistory_Direction_name, GetOnuEthernetBridgePortHistory_Direction_value)
+ proto.RegisterEnum("extension.GetValueResponse_Status", GetValueResponse_Status_name, GetValueResponse_Status_value)
+ proto.RegisterEnum("extension.GetValueResponse_ErrorReason", GetValueResponse_ErrorReason_name, GetValueResponse_ErrorReason_value)
+ proto.RegisterEnum("extension.SetValueResponse_Status", SetValueResponse_Status_name, SetValueResponse_Status_value)
+ proto.RegisterEnum("extension.SetValueResponse_ErrorReason", SetValueResponse_ErrorReason_name, SetValueResponse_ErrorReason_value)
+ proto.RegisterType((*GetDistanceRequest)(nil), "extension.GetDistanceRequest")
+ proto.RegisterType((*GetDistanceResponse)(nil), "extension.GetDistanceResponse")
+ proto.RegisterType((*GetOnuUniInfoRequest)(nil), "extension.GetOnuUniInfoRequest")
+ proto.RegisterType((*GetOnuUniInfoResponse)(nil), "extension.GetOnuUniInfoResponse")
+ proto.RegisterType((*GetOltPortCounters)(nil), "extension.GetOltPortCounters")
+ proto.RegisterType((*GetOltPortCountersResponse)(nil), "extension.GetOltPortCountersResponse")
+ proto.RegisterType((*GetOnuPonOpticalInfo)(nil), "extension.GetOnuPonOpticalInfo")
+ proto.RegisterType((*GetOnuPonOpticalInfoResponse)(nil), "extension.GetOnuPonOpticalInfoResponse")
+ proto.RegisterType((*GetOnuEthernetBridgePortHistory)(nil), "extension.GetOnuEthernetBridgePortHistory")
+ proto.RegisterType((*GetOnuEthernetBridgePortHistoryResponse)(nil), "extension.GetOnuEthernetBridgePortHistoryResponse")
+ proto.RegisterType((*GetOnuFecHistory)(nil), "extension.GetOnuFecHistory")
+ proto.RegisterType((*GetOnuFecHistoryResponse)(nil), "extension.GetOnuFecHistoryResponse")
+ proto.RegisterType((*GetValueRequest)(nil), "extension.GetValueRequest")
+ proto.RegisterType((*GetValueResponse)(nil), "extension.GetValueResponse")
+ proto.RegisterType((*SetValueRequest)(nil), "extension.SetValueRequest")
+ proto.RegisterType((*SetValueResponse)(nil), "extension.SetValueResponse")
+ proto.RegisterType((*SingleGetValueRequest)(nil), "extension.SingleGetValueRequest")
+ proto.RegisterType((*SingleGetValueResponse)(nil), "extension.SingleGetValueResponse")
+ proto.RegisterType((*SingleSetValueRequest)(nil), "extension.SingleSetValueRequest")
+ proto.RegisterType((*SingleSetValueResponse)(nil), "extension.SingleSetValueResponse")
+}
+
+func init() { proto.RegisterFile("voltha_protos/extensions.proto", fileDescriptor_7ecf6e9799a9202d) }
+
+var fileDescriptor_7ecf6e9799a9202d = []byte{
+ // 1872 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xdd, 0x72, 0x1a, 0xc9,
+ 0x15, 0x16, 0x48, 0x20, 0x38, 0x48, 0xf2, 0xb8, 0x6d, 0x69, 0x55, 0xb2, 0xd7, 0xeb, 0x4c, 0x2a,
+ 0xf6, 0xd6, 0xd6, 0x06, 0x2d, 0xac, 0xe4, 0x55, 0x65, 0x37, 0xa9, 0x80, 0x18, 0x49, 0x94, 0xa4,
+ 0x01, 0xf7, 0x80, 0xbc, 0xc9, 0x0d, 0x35, 0x62, 0xda, 0x88, 0x0a, 0x9a, 0x26, 0x3d, 0x8d, 0x22,
+ 0xe7, 0x35, 0x72, 0x93, 0x3c, 0x45, 0x2e, 0x72, 0xe1, 0xfb, 0x5c, 0xe7, 0x25, 0xf2, 0x0a, 0x79,
+ 0x80, 0x54, 0xaa, 0x7f, 0x66, 0x98, 0x19, 0x40, 0xb2, 0x9d, 0xbd, 0xa3, 0xcf, 0xf9, 0xbe, 0xaf,
+ 0x9b, 0x3e, 0x5f, 0x9f, 0x99, 0x1e, 0x78, 0x76, 0x43, 0x47, 0xfc, 0xca, 0xed, 0x8d, 0x19, 0xe5,
+ 0x34, 0xd8, 0x25, 0xb7, 0x9c, 0xf8, 0xc1, 0x90, 0xfa, 0x41, 0x59, 0x46, 0x50, 0x31, 0x8a, 0xec,
+ 0xcc, 0x42, 0x7b, 0x7d, 0xea, 0xbf, 0x1d, 0x0e, 0x14, 0x74, 0xe7, 0xc9, 0x80, 0xd2, 0xc1, 0x88,
+ 0xec, 0xca, 0xd1, 0xe5, 0xe4, 0xed, 0x2e, 0xb9, 0x1e, 0xf3, 0x77, 0x2a, 0x69, 0xbe, 0x02, 0x74,
+ 0x4c, 0x78, 0x63, 0x18, 0x70, 0xd7, 0xef, 0x13, 0x4c, 0xfe, 0x38, 0x21, 0x01, 0x47, 0xcf, 0xa1,
+ 0x44, 0xfd, 0x49, 0x83, 0xdc, 0x0c, 0xfb, 0xa4, 0xe9, 0x6d, 0x67, 0x9e, 0x67, 0xbe, 0x2c, 0xe2,
+ 0x78, 0xc8, 0xac, 0xc0, 0xa3, 0x04, 0x2f, 0x18, 0x53, 0x3f, 0x20, 0x68, 0x07, 0x0a, 0x9e, 0x8e,
+ 0x49, 0xd6, 0x3a, 0x8e, 0xc6, 0x66, 0x15, 0x1e, 0x1f, 0x13, 0xde, 0xf2, 0x27, 0x5d, 0x7f, 0xd8,
+ 0xf4, 0xdf, 0xd2, 0x70, 0xb2, 0x1d, 0x28, 0x4c, 0x44, 0xc4, 0x23, 0xb7, 0x21, 0x27, 0x1c, 0x9b,
+ 0xff, 0x5e, 0x81, 0xcd, 0x14, 0x49, 0xcf, 0xd4, 0x86, 0x82, 0xeb, 0x5d, 0x3b, 0xdc, 0xe5, 0x6a,
+ 0xa6, 0x8d, 0xea, 0x5e, 0x39, 0xda, 0x93, 0xf2, 0x5c, 0x4e, 0xb9, 0xe6, 0x5d, 0x0f, 0xfd, 0x61,
+ 0xc0, 0x99, 0xcb, 0x87, 0x37, 0x44, 0x72, 0x71, 0xa4, 0x82, 0x5a, 0x50, 0xa4, 0x63, 0xc2, 0x94,
+ 0x64, 0x56, 0x4a, 0x56, 0xee, 0x95, 0x6c, 0x8d, 0x89, 0x50, 0xa3, 0xbe, 0x3b, 0x52, 0x7a, 0x53,
+ 0x0d, 0x21, 0xa8, 0x0a, 0xd1, 0xf4, 0xbd, 0xed, 0xe5, 0x0f, 0x14, 0x3c, 0x94, 0x8c, 0x89, 0x12,
+ 0x6d, 0xfa, 0x1e, 0x9e, 0x6a, 0x98, 0xff, 0xcc, 0x80, 0x91, 0xce, 0x23, 0x80, 0x7c, 0xd7, 0x3e,
+ 0x6d, 0xbd, 0xb1, 0x8d, 0x25, 0x84, 0x60, 0xa3, 0x63, 0xd9, 0xbd, 0x7a, 0xcd, 0xb1, 0x7a, 0x9d,
+ 0xde, 0x51, 0xe3, 0x47, 0x23, 0x83, 0xb6, 0x00, 0x9d, 0x74, 0xed, 0x06, 0xb6, 0x1a, 0xf1, 0x78,
+ 0x16, 0x6d, 0xc3, 0xe3, 0xe3, 0xe6, 0x71, 0xad, 0xde, 0xec, 0xf4, 0xac, 0xce, 0x89, 0x85, 0x6d,
+ 0x4b, 0x65, 0x96, 0x05, 0x43, 0xa8, 0x1c, 0x27, 0xe3, 0x2b, 0x29, 0xf5, 0x93, 0xc6, 0x8f, 0x46,
+ 0x6e, 0x8e, 0xba, 0x88, 0xe7, 0xe7, 0xaa, 0x8b, 0xcc, 0xaa, 0x79, 0x0c, 0x8f, 0xe6, 0xd4, 0x41,
+ 0x08, 0xd5, 0x1a, 0xe7, 0x4e, 0xa7, 0xd6, 0xb1, 0x7a, 0x5d, 0xbb, 0x61, 0x1d, 0x35, 0x6d, 0xab,
+ 0x61, 0x2c, 0x89, 0xbf, 0x77, 0xd6, 0x3a, 0x3c, 0xb5, 0x1a, 0x46, 0x06, 0xad, 0x41, 0xa1, 0x6b,
+ 0xeb, 0x51, 0xd6, 0x3c, 0x02, 0x23, 0xbd, 0xfb, 0xe8, 0x33, 0x78, 0xd4, 0x6a, 0x5b, 0x78, 0x56,
+ 0xa6, 0x04, 0xab, 0x96, 0x5d, 0xab, 0x9f, 0x85, 0x3a, 0x8d, 0xa6, 0xa3, 0x46, 0x59, 0xf3, 0x7d,
+ 0x46, 0x9e, 0x81, 0xd6, 0x88, 0xb7, 0x29, 0xe3, 0x87, 0x74, 0xe2, 0x73, 0xc2, 0x02, 0xb4, 0x05,
+ 0xf9, 0x31, 0x65, 0xdc, 0xa6, 0xda, 0x94, 0x7a, 0x84, 0xea, 0x50, 0x10, 0xbf, 0x3a, 0xef, 0xc6,
+ 0xa1, 0x4b, 0x5e, 0xa4, 0x8a, 0x9a, 0x14, 0x2a, 0xb7, 0x35, 0x1a, 0x47, 0x3c, 0xd3, 0x82, 0x42,
+ 0x18, 0x45, 0x06, 0xac, 0x89, 0xdf, 0xbd, 0xae, 0x7d, 0x6a, 0xab, 0x2a, 0x6e, 0xc2, 0x43, 0x19,
+ 0x89, 0x36, 0xce, 0xb6, 0x9b, 0x46, 0x26, 0x02, 0xb6, 0x5b, 0x76, 0xaf, 0x75, 0xd6, 0x31, 0xb2,
+ 0xe6, 0xbf, 0x96, 0x61, 0x67, 0x76, 0xc2, 0xe8, 0x88, 0x6c, 0xc3, 0x2a, 0xbf, 0xad, 0xbf, 0xe3,
+ 0x24, 0x90, 0x7f, 0x61, 0x05, 0x87, 0x43, 0x91, 0x61, 0x3a, 0x93, 0x55, 0x19, 0x3d, 0x44, 0x4f,
+ 0xa1, 0xc8, 0x6f, 0xdb, 0x6e, 0xff, 0x0f, 0x84, 0x07, 0xd2, 0xb3, 0x2b, 0x78, 0x1a, 0x10, 0x59,
+ 0x16, 0x65, 0x57, 0x54, 0x36, 0x0a, 0xa0, 0x17, 0xb0, 0xc1, 0x6f, 0x2d, 0xc6, 0x28, 0x0b, 0x21,
+ 0x39, 0x09, 0x49, 0x45, 0x05, 0x8e, 0x25, 0x71, 0x79, 0x85, 0x63, 0x33, 0x38, 0x7e, 0x5b, 0xef,
+ 0xbb, 0x01, 0x0f, 0x71, 0xab, 0xa1, 0x5e, 0x3c, 0xaa, 0xf4, 0x12, 0xb8, 0x42, 0xa8, 0x97, 0xc6,
+ 0xf1, 0xdb, 0x6e, 0x1c, 0x57, 0x0c, 0xf5, 0xba, 0x33, 0x7a, 0x09, 0x1c, 0x84, 0x7a, 0xdd, 0x19,
+ 0xbd, 0xf3, 0x38, 0xae, 0x14, 0xea, 0x9d, 0xcf, 0xe8, 0x25, 0x70, 0x6b, 0xa1, 0x5e, 0x3c, 0x6a,
+ 0x36, 0xc2, 0x06, 0xd9, 0xa6, 0x7e, 0x6b, 0xcc, 0x87, 0x7d, 0x77, 0x24, 0x5a, 0x03, 0xfa, 0x1a,
+ 0x72, 0xb2, 0x65, 0xcb, 0x2a, 0x96, 0xaa, 0x5b, 0x65, 0xd5, 0xd0, 0xcb, 0x61, 0x43, 0x2f, 0x5b,
+ 0x22, 0x8b, 0x15, 0xc8, 0xfc, 0xeb, 0x0a, 0x3c, 0x9d, 0x27, 0x13, 0xd9, 0xe2, 0x2b, 0x30, 0x46,
+ 0x6e, 0x40, 0x58, 0x7d, 0xe8, 0x06, 0x87, 0x13, 0xc6, 0x88, 0xcf, 0xa5, 0x72, 0x0e, 0xcf, 0xc4,
+ 0xd1, 0x2b, 0xd8, 0x4a, 0xc7, 0x84, 0x69, 0x9b, 0x9e, 0xf4, 0x4d, 0x0e, 0x2f, 0xc8, 0x0a, 0xde,
+ 0x35, 0x71, 0xc3, 0xe9, 0xcf, 0xdc, 0x89, 0xdf, 0xbf, 0x6a, 0xd3, 0x3f, 0x11, 0x26, 0x3d, 0x95,
+ 0xc3, 0x0b, 0xb2, 0xa8, 0x0e, 0x4f, 0xe7, 0x67, 0xf4, 0xac, 0x2b, 0x92, 0x7d, 0x27, 0x06, 0x7d,
+ 0x09, 0x0f, 0xc6, 0x62, 0x78, 0x44, 0x88, 0xa7, 0x69, 0x39, 0x49, 0x4b, 0x87, 0xc5, 0x4e, 0x44,
+ 0xa1, 0x0b, 0x3a, 0xe2, 0xee, 0x80, 0x48, 0x2b, 0xe6, 0xf0, 0x4c, 0x1c, 0x55, 0xe1, 0x31, 0x23,
+ 0x7d, 0x32, 0xbc, 0x21, 0x9e, 0x9e, 0x59, 0xfd, 0x9f, 0x55, 0x89, 0x9f, 0x9b, 0x43, 0xbf, 0x81,
+ 0x9d, 0x79, 0x71, 0xbd, 0xa8, 0x82, 0x64, 0xde, 0x81, 0x10, 0x8f, 0x61, 0x4e, 0xae, 0x65, 0x8f,
+ 0x9b, 0x30, 0x22, 0xdd, 0x9a, 0xc3, 0xf1, 0x10, 0xfa, 0x1a, 0x1e, 0xc6, 0x86, 0x5a, 0x18, 0x24,
+ 0x6e, 0x36, 0x61, 0xfe, 0x3d, 0x03, 0x5f, 0x28, 0x6b, 0x58, 0xfc, 0x8a, 0x30, 0x9f, 0xf0, 0x3a,
+ 0x1b, 0x7a, 0x03, 0x22, 0xba, 0xc7, 0xc9, 0x30, 0xe0, 0x94, 0xbd, 0x43, 0x18, 0x8a, 0xde, 0x90,
+ 0x91, 0xbe, 0xe8, 0xaa, 0x0b, 0x1f, 0xac, 0x0b, 0xe9, 0xe5, 0x46, 0xc8, 0xc5, 0x53, 0x19, 0xf3,
+ 0x00, 0x8a, 0x51, 0x1c, 0xad, 0x43, 0x31, 0xde, 0x98, 0x45, 0x4f, 0x6f, 0x3b, 0x1d, 0x6c, 0xd5,
+ 0xce, 0x8d, 0x0c, 0xda, 0x00, 0x68, 0xb4, 0xde, 0xd8, 0x7a, 0x9c, 0x35, 0xff, 0x92, 0x83, 0x97,
+ 0xf7, 0x4c, 0x19, 0xf9, 0xfa, 0x19, 0x80, 0xc7, 0xe8, 0xd8, 0xba, 0x21, 0x3e, 0x0f, 0x74, 0xd3,
+ 0x8e, 0x45, 0x44, 0x43, 0xa7, 0x7d, 0x2e, 0x8e, 0x5f, 0x56, 0x35, 0x74, 0x35, 0x12, 0xcd, 0x70,
+ 0x1c, 0x6b, 0x78, 0xeb, 0x38, 0x1c, 0x0a, 0x7f, 0x5c, 0x32, 0xea, 0x7a, 0xf1, 0xa3, 0xbb, 0x22,
+ 0x21, 0x33, 0x71, 0x81, 0xbd, 0x9e, 0x8c, 0x44, 0x09, 0xa7, 0xd8, 0x9c, 0xc2, 0xa6, 0xe3, 0xa2,
+ 0x6a, 0x7d, 0xd6, 0x97, 0xbd, 0x8e, 0x78, 0xf1, 0x1e, 0xb8, 0x8e, 0x67, 0x13, 0x42, 0x79, 0xe2,
+ 0x7b, 0x84, 0x05, 0xc3, 0x3f, 0x93, 0x78, 0x23, 0x5c, 0xc7, 0x33, 0x71, 0xe1, 0x7d, 0x7a, 0x93,
+ 0x84, 0x16, 0x24, 0x34, 0x1d, 0x96, 0xa7, 0x44, 0xfd, 0x7c, 0xb5, 0xa7, 0xb7, 0xa5, 0xa8, 0x90,
+ 0xa9, 0xb0, 0x70, 0x7e, 0x18, 0xda, 0xef, 0xd0, 0x4a, 0xf5, 0x3b, 0x0d, 0x07, 0x09, 0x9f, 0x9b,
+ 0x43, 0x7b, 0xb0, 0xa9, 0xe3, 0x95, 0xea, 0x41, 0x87, 0x56, 0xf7, 0xf7, 0x5b, 0x8a, 0x54, 0x92,
+ 0xa4, 0xf9, 0xc9, 0x18, 0xab, 0xba, 0xff, 0xaa, 0x43, 0xf7, 0x2b, 0x15, 0x3d, 0xd5, 0x5a, 0x82,
+ 0x95, 0x4c, 0x8a, 0x5e, 0xa3, 0x13, 0xfb, 0x95, 0x6a, 0x87, 0x56, 0xbe, 0xa9, 0x7e, 0xab, 0x69,
+ 0xeb, 0x92, 0xb6, 0x20, 0x8b, 0x0e, 0xe0, 0xb3, 0x70, 0x19, 0xdf, 0x54, 0xf7, 0x3a, 0xb4, 0xb2,
+ 0x5f, 0x39, 0xd0, 0xc4, 0x0d, 0x49, 0x5c, 0x94, 0x36, 0x7f, 0x0b, 0x86, 0x32, 0xe5, 0x11, 0xe9,
+ 0x87, 0xe7, 0xe6, 0xe3, 0x9a, 0xf4, 0x7f, 0x32, 0xb0, 0x9d, 0x96, 0x88, 0x8c, 0xfc, 0x02, 0x36,
+ 0xfa, 0x94, 0x89, 0xf3, 0x42, 0xbc, 0xe9, 0xe3, 0x7b, 0x1d, 0xa7, 0xa2, 0xa8, 0x0c, 0x28, 0x8a,
+ 0x1c, 0x52, 0x8f, 0xbc, 0xa1, 0xcc, 0x0b, 0xcd, 0x3d, 0x27, 0x23, 0x0e, 0xc8, 0x5b, 0xd2, 0x77,
+ 0x48, 0x9f, 0xfa, 0x5e, 0xe8, 0xf5, 0x58, 0x44, 0x3e, 0xcf, 0x28, 0x77, 0x47, 0x53, 0x2d, 0x65,
+ 0xf6, 0x54, 0x54, 0x6c, 0xf8, 0xc4, 0xd7, 0xfa, 0xee, 0xe5, 0x88, 0x4c, 0xf1, 0xca, 0xf0, 0x0b,
+ 0xb2, 0xe6, 0xfb, 0x65, 0x78, 0x70, 0x4c, 0xf8, 0x85, 0x3b, 0x9a, 0x44, 0x37, 0x8d, 0xef, 0x53,
+ 0x17, 0x86, 0x52, 0xf5, 0xf3, 0x64, 0xb7, 0x49, 0x5d, 0x4d, 0x4e, 0x96, 0xa6, 0x37, 0x0a, 0xf4,
+ 0x3d, 0xac, 0x4e, 0xd4, 0xeb, 0xb3, 0xfc, 0xd7, 0xa5, 0xea, 0x17, 0x8b, 0x5f, 0xaf, 0x43, 0x76,
+ 0xc8, 0x40, 0x35, 0x28, 0x51, 0xf5, 0xe2, 0x24, 0x05, 0x96, 0xe7, 0x4d, 0x9e, 0x7a, 0xb3, 0x3a,
+ 0x59, 0xc2, 0x71, 0x0e, 0x6a, 0xc2, 0x06, 0xf5, 0x27, 0xb1, 0x67, 0xac, 0xdc, 0xb0, 0x79, 0xcb,
+ 0x48, 0x3e, 0x8a, 0x4f, 0x96, 0x70, 0x8a, 0x88, 0x30, 0xac, 0x13, 0x7e, 0x35, 0x6d, 0x6e, 0x72,
+ 0x2b, 0x4b, 0xd5, 0xaf, 0x3e, 0xbc, 0xf5, 0x9e, 0x2c, 0xe1, 0xa4, 0x04, 0xfa, 0xb5, 0xac, 0xb7,
+ 0x4e, 0xcb, 0xfe, 0x52, 0xaa, 0x3e, 0x99, 0x11, 0x9c, 0x1a, 0xf0, 0x64, 0x09, 0xc7, 0x08, 0xf5,
+ 0x22, 0xac, 0x32, 0xb5, 0x6d, 0xe6, 0xfb, 0xbc, 0x74, 0xbc, 0xae, 0x9c, 0xb6, 0xe9, 0xaf, 0x20,
+ 0x1f, 0x70, 0x97, 0x4f, 0x02, 0xfd, 0x98, 0x30, 0x93, 0xd2, 0x09, 0x70, 0xd9, 0x91, 0x48, 0xac,
+ 0x19, 0xc8, 0x82, 0x22, 0x61, 0x0c, 0x13, 0x37, 0xa0, 0xbe, 0x7e, 0x8b, 0x7e, 0x79, 0x17, 0x5d,
+ 0xb6, 0x44, 0x05, 0xc7, 0x53, 0x26, 0xfa, 0x21, 0xe6, 0x1e, 0x55, 0xc0, 0x67, 0x8b, 0xdc, 0xa3,
+ 0x84, 0x12, 0xf6, 0xf9, 0x61, 0x6a, 0x1f, 0x55, 0xb7, 0xe7, 0xf7, 0xdd, 0xce, 0xe2, 0xfe, 0x39,
+ 0x85, 0xb5, 0xb1, 0xf2, 0x06, 0xf7, 0x09, 0x0b, 0x74, 0xc1, 0x7e, 0x71, 0xa7, 0x81, 0x62, 0x3a,
+ 0x09, 0x32, 0x7a, 0x3d, 0xe3, 0x24, 0x55, 0xae, 0x97, 0xf7, 0x38, 0x29, 0x26, 0x98, 0x76, 0xd4,
+ 0x25, 0x3c, 0x4c, 0xd8, 0x41, 0xaa, 0xae, 0x4a, 0xd5, 0xea, 0x87, 0xbb, 0x2a, 0x36, 0xc1, 0xac,
+ 0x1c, 0xb2, 0x12, 0x0e, 0x2b, 0x48, 0xf1, 0x9f, 0xdf, 0xe1, 0xb0, 0x98, 0x5a, 0x8c, 0x68, 0x56,
+ 0x20, 0xaf, 0xfc, 0x81, 0x1e, 0x83, 0x21, 0xee, 0x6e, 0x5d, 0x27, 0x71, 0x79, 0xcb, 0x43, 0xb6,
+ 0x75, 0x6a, 0x64, 0x50, 0x11, 0x72, 0x16, 0xc6, 0x2d, 0x6c, 0x64, 0xcd, 0xbf, 0x65, 0xa0, 0x14,
+ 0x33, 0x85, 0x20, 0x62, 0xab, 0xe6, 0xb4, 0xec, 0x04, 0xf1, 0x01, 0x94, 0xba, 0xb6, 0xd3, 0x6d,
+ 0xb7, 0x5b, 0xb8, 0x23, 0x6f, 0x7e, 0x9b, 0xf0, 0xb0, 0x69, 0x5f, 0xd4, 0xce, 0x9a, 0x8d, 0x5e,
+ 0xc3, 0xba, 0x68, 0x1e, 0x5a, 0xbd, 0x66, 0xc3, 0xc8, 0xc6, 0xc3, 0x02, 0xda, 0xeb, 0xfc, 0xae,
+ 0x6d, 0x19, 0xcb, 0xe2, 0xd2, 0xd8, 0x69, 0x9e, 0x5b, 0xad, 0x6e, 0xc7, 0x58, 0x11, 0x33, 0x84,
+ 0x18, 0x6c, 0xbd, 0x56, 0x90, 0x9c, 0xb8, 0x13, 0x37, 0xed, 0x8e, 0x85, 0xed, 0xda, 0x59, 0x4f,
+ 0xad, 0x2d, 0x5f, 0x07, 0x28, 0x30, 0xfd, 0x47, 0xcd, 0x0b, 0x78, 0xe0, 0xa4, 0x5a, 0xde, 0x01,
+ 0xac, 0xb9, 0x23, 0x97, 0x5d, 0xeb, 0xaf, 0x34, 0xba, 0xed, 0x3d, 0x2a, 0xeb, 0x8f, 0x36, 0x35,
+ 0x91, 0x53, 0xb7, 0x7c, 0xd1, 0x6f, 0xdc, 0xe9, 0x30, 0x7e, 0x22, 0xff, 0x9b, 0x01, 0xc3, 0xf9,
+ 0x98, 0x13, 0xe9, 0xfc, 0x7f, 0x27, 0xd2, 0xf9, 0xb0, 0x13, 0xf9, 0x29, 0xa5, 0xdc, 0xfb, 0x94,
+ 0x4a, 0x9a, 0x43, 0xd8, 0x74, 0x86, 0xfe, 0x60, 0x44, 0xd2, 0x4f, 0x94, 0x1d, 0x28, 0x70, 0x97,
+ 0x0d, 0x08, 0x8f, 0x3e, 0x5c, 0x45, 0x63, 0xb4, 0x17, 0x6d, 0xa0, 0x7e, 0x60, 0xec, 0xcc, 0x6d,
+ 0x3a, 0x12, 0x81, 0xa3, 0xbd, 0x7e, 0x0d, 0x5b, 0xe9, 0xa9, 0xf4, 0x86, 0x7f, 0x37, 0xad, 0xb4,
+ 0x2e, 0xe3, 0x93, 0x3b, 0xba, 0x18, 0x9e, 0xda, 0x22, 0x5a, 0xbd, 0xf3, 0x53, 0xad, 0xde, 0xb9,
+ 0x77, 0xf5, 0xce, 0xc7, 0xad, 0xde, 0x59, 0xb8, 0xfa, 0xea, 0x3f, 0x32, 0x50, 0xb4, 0x42, 0x20,
+ 0xc2, 0x50, 0x3a, 0x26, 0xdc, 0xba, 0x55, 0x70, 0x14, 0x6f, 0xa2, 0x73, 0x2b, 0xb4, 0xf3, 0xb3,
+ 0x3b, 0x10, 0x7a, 0x69, 0x18, 0x4a, 0xce, 0x9d, 0x9a, 0xce, 0xbd, 0x9a, 0xe9, 0xf5, 0xd7, 0x31,
+ 0x7c, 0x4e, 0xd9, 0xa0, 0x4c, 0xc7, 0x44, 0xbc, 0x9e, 0x78, 0x65, 0xf5, 0xd9, 0x74, 0xca, 0xfb,
+ 0x7d, 0x65, 0x30, 0xe4, 0x57, 0x93, 0xcb, 0x72, 0x9f, 0x5e, 0xef, 0x86, 0xa8, 0x5d, 0x85, 0xfa,
+ 0xa5, 0xfe, 0xb8, 0x7a, 0xb3, 0xb7, 0x3b, 0xa0, 0xd3, 0xaf, 0xb1, 0xed, 0xa5, 0xcb, 0xbc, 0xcc,
+ 0x7c, 0xfb, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x8e, 0x67, 0xd3, 0xb1, 0x15, 0x00, 0x00,
+}
+
+// Reference imports to suppress errors if they are not otherwise used.
+var _ context.Context
+var _ grpc.ClientConn
+
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the grpc package it is being compiled against.
+const _ = grpc.SupportPackageIsVersion4
+
+// ExtensionClient is the client API for Extension service.
+//
+// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
+type ExtensionClient interface {
+ // Get a single attribute
+ GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error)
+ // Set a single attribute
+ SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error)
+}
+
+type extensionClient struct {
+ cc *grpc.ClientConn
+}
+
+func NewExtensionClient(cc *grpc.ClientConn) ExtensionClient {
+ return &extensionClient{cc}
+}
+
+func (c *extensionClient) GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error) {
+ out := new(SingleGetValueResponse)
+ err := c.cc.Invoke(ctx, "/extension.Extension/GetExtValue", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *extensionClient) SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error) {
+ out := new(SingleSetValueResponse)
+ err := c.cc.Invoke(ctx, "/extension.Extension/SetExtValue", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+// ExtensionServer is the server API for Extension service.
+type ExtensionServer interface {
+ // Get a single attribute
+ GetExtValue(context.Context, *SingleGetValueRequest) (*SingleGetValueResponse, error)
+ // Set a single attribute
+ SetExtValue(context.Context, *SingleSetValueRequest) (*SingleSetValueResponse, error)
+}
+
+func RegisterExtensionServer(s *grpc.Server, srv ExtensionServer) {
+ s.RegisterService(&_Extension_serviceDesc, srv)
+}
+
+func _Extension_GetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(SingleGetValueRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ExtensionServer).GetExtValue(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/extension.Extension/GetExtValue",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ExtensionServer).GetExtValue(ctx, req.(*SingleGetValueRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _Extension_SetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(SingleSetValueRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ExtensionServer).SetExtValue(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/extension.Extension/SetExtValue",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ExtensionServer).SetExtValue(ctx, req.(*SingleSetValueRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+var _Extension_serviceDesc = grpc.ServiceDesc{
+ ServiceName: "extension.Extension",
+ HandlerType: (*ExtensionServer)(nil),
+ Methods: []grpc.MethodDesc{
+ {
+ MethodName: "GetExtValue",
+ Handler: _Extension_GetExtValue_Handler,
+ },
+ {
+ MethodName: "SetExtValue",
+ Handler: _Extension_SetExtValue_Handler,
+ },
+ },
+ Streams: []grpc.StreamDesc{},
+ Metadata: "voltha_protos/extensions.proto",
+}
diff --git a/vendor/github.com/opencord/voltha-protos/v4/go/inter_container/inter_container.pb.go b/vendor/github.com/opencord/voltha-protos/v4/go/inter_container/inter_container.pb.go
index 752eecb..051a705 100644
--- a/vendor/github.com/opencord/voltha-protos/v4/go/inter_container/inter_container.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v4/go/inter_container/inter_container.pb.go
@@ -104,6 +104,7 @@
const OperationResp_OPERATION_SUCCESS = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_SUCCESS)
const OperationResp_OPERATION_FAILURE = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_FAILURE)
const OperationResp_OPERATION_UNSUPPORTED = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_UNSUPPORTED)
+const OperationResp_OPERATION_IN_PROGRESS = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_IN_PROGRESS)
// ValueType_Type from public import voltha_protos/common.proto
type ValueType_Type = common.ValueType_Type
diff --git a/vendor/github.com/opencord/voltha-protos/v4/go/openolt/openolt.pb.go b/vendor/github.com/opencord/voltha-protos/v4/go/openolt/openolt.pb.go
index 5122fe1..1989289 100644
--- a/vendor/github.com/opencord/voltha-protos/v4/go/openolt/openolt.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v4/go/openolt/openolt.pb.go
@@ -190,6 +190,7 @@
const OperationResp_OPERATION_SUCCESS = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_SUCCESS)
const OperationResp_OPERATION_FAILURE = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_FAILURE)
const OperationResp_OPERATION_UNSUPPORTED = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_UNSUPPORTED)
+const OperationResp_OPERATION_IN_PROGRESS = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_IN_PROGRESS)
// ValueType_Type from public import voltha_protos/common.proto
type ValueType_Type = common.ValueType_Type
diff --git a/vendor/github.com/opencord/voltha-protos/v4/go/voltha/device.pb.go b/vendor/github.com/opencord/voltha-protos/v4/go/voltha/device.pb.go
index 2499fd1..6a4bac4 100644
--- a/vendor/github.com/opencord/voltha-protos/v4/go/voltha/device.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v4/go/voltha/device.pb.go
@@ -7,6 +7,7 @@
fmt "fmt"
proto "github.com/golang/protobuf/proto"
any "github.com/golang/protobuf/ptypes/any"
+ timestamp "github.com/golang/protobuf/ptypes/timestamp"
common "github.com/opencord/voltha-protos/v4/go/common"
openflow_13 "github.com/opencord/voltha-protos/v4/go/openflow_13"
math "math"
@@ -230,7 +231,7 @@
}
func (SimulateAlarmRequest_OperationType) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_200940f73d155856, []int{13, 0}
+ return fileDescriptor_200940f73d155856, []int{18, 0}
}
// A Device Type
@@ -1141,6 +1142,348 @@
return nil
}
+// A complete device state
+type DeviceState struct {
+ AdminState common.AdminState_Types `protobuf:"varint,1,opt,name=admin_state,json=adminState,proto3,enum=common.AdminState_Types" json:"admin_state,omitempty"`
+ OperStatus common.OperStatus_Types `protobuf:"varint,2,opt,name=oper_status,json=operStatus,proto3,enum=common.OperStatus_Types" json:"oper_status,omitempty"`
+ ConnectStatus common.ConnectStatus_Types `protobuf:"varint,3,opt,name=connect_status,json=connectStatus,proto3,enum=common.ConnectStatus_Types" json:"connect_status,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DeviceState) Reset() { *m = DeviceState{} }
+func (m *DeviceState) String() string { return proto.CompactTextString(m) }
+func (*DeviceState) ProtoMessage() {}
+func (*DeviceState) Descriptor() ([]byte, []int) {
+ return fileDescriptor_200940f73d155856, []int{11}
+}
+
+func (m *DeviceState) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DeviceState.Unmarshal(m, b)
+}
+func (m *DeviceState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DeviceState.Marshal(b, m, deterministic)
+}
+func (m *DeviceState) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DeviceState.Merge(m, src)
+}
+func (m *DeviceState) XXX_Size() int {
+ return xxx_messageInfo_DeviceState.Size(m)
+}
+func (m *DeviceState) XXX_DiscardUnknown() {
+ xxx_messageInfo_DeviceState.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DeviceState proto.InternalMessageInfo
+
+func (m *DeviceState) GetAdminState() common.AdminState_Types {
+ if m != nil {
+ return m.AdminState
+ }
+ return common.AdminState_UNKNOWN
+}
+
+func (m *DeviceState) GetOperStatus() common.OperStatus_Types {
+ if m != nil {
+ return m.OperStatus
+ }
+ return common.OperStatus_UNKNOWN
+}
+
+func (m *DeviceState) GetConnectStatus() common.ConnectStatus_Types {
+ if m != nil {
+ return m.ConnectStatus
+ }
+ return common.ConnectStatus_UNKNOWN
+}
+
+// A device state change
+type DeviceStatesChange struct {
+ Previous *DeviceState `protobuf:"bytes,1,opt,name=previous,proto3" json:"previous,omitempty"`
+ Current *DeviceState `protobuf:"bytes,2,opt,name=current,proto3" json:"current,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DeviceStatesChange) Reset() { *m = DeviceStatesChange{} }
+func (m *DeviceStatesChange) String() string { return proto.CompactTextString(m) }
+func (*DeviceStatesChange) ProtoMessage() {}
+func (*DeviceStatesChange) Descriptor() ([]byte, []int) {
+ return fileDescriptor_200940f73d155856, []int{12}
+}
+
+func (m *DeviceStatesChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DeviceStatesChange.Unmarshal(m, b)
+}
+func (m *DeviceStatesChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DeviceStatesChange.Marshal(b, m, deterministic)
+}
+func (m *DeviceStatesChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DeviceStatesChange.Merge(m, src)
+}
+func (m *DeviceStatesChange) XXX_Size() int {
+ return xxx_messageInfo_DeviceStatesChange.Size(m)
+}
+func (m *DeviceStatesChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_DeviceStatesChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DeviceStatesChange proto.InternalMessageInfo
+
+func (m *DeviceStatesChange) GetPrevious() *DeviceState {
+ if m != nil {
+ return m.Previous
+ }
+ return nil
+}
+
+func (m *DeviceStatesChange) GetCurrent() *DeviceState {
+ if m != nil {
+ return m.Current
+ }
+ return nil
+}
+
+// A device update filter
+type DeviceUpdateFilter struct {
+ // Device Id
+ DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
+ // Provide update starting from this timestamp, inclusive
+ FromTimestamp *timestamp.Timestamp `protobuf:"bytes,2,opt,name=from_timestamp,json=fromTimestamp,proto3" json:"from_timestamp,omitempty"`
+ // Provide update starting to this timestamp, inclusive
+ ToTimestamp *timestamp.Timestamp `protobuf:"bytes,3,opt,name=to_timestamp,json=toTimestamp,proto3" json:"to_timestamp,omitempty"`
+ // The operation that triggered the update, e.g. portCreated
+ Operation string `protobuf:"bytes,4,opt,name=operation,proto3" json:"operation,omitempty"`
+ // The ID of that operation, e.g. log correlation ID
+ OperationId string `protobuf:"bytes,5,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"`
+ // Component initiating the request, e.g. openolt
+ RequestedBy string `protobuf:"bytes,6,opt,name=requested_by,json=requestedBy,proto3" json:"requested_by,omitempty"`
+ // Operation status
+ Status *common.OperationResp `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DeviceUpdateFilter) Reset() { *m = DeviceUpdateFilter{} }
+func (m *DeviceUpdateFilter) String() string { return proto.CompactTextString(m) }
+func (*DeviceUpdateFilter) ProtoMessage() {}
+func (*DeviceUpdateFilter) Descriptor() ([]byte, []int) {
+ return fileDescriptor_200940f73d155856, []int{13}
+}
+
+func (m *DeviceUpdateFilter) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DeviceUpdateFilter.Unmarshal(m, b)
+}
+func (m *DeviceUpdateFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DeviceUpdateFilter.Marshal(b, m, deterministic)
+}
+func (m *DeviceUpdateFilter) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DeviceUpdateFilter.Merge(m, src)
+}
+func (m *DeviceUpdateFilter) XXX_Size() int {
+ return xxx_messageInfo_DeviceUpdateFilter.Size(m)
+}
+func (m *DeviceUpdateFilter) XXX_DiscardUnknown() {
+ xxx_messageInfo_DeviceUpdateFilter.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DeviceUpdateFilter proto.InternalMessageInfo
+
+func (m *DeviceUpdateFilter) GetDeviceId() string {
+ if m != nil {
+ return m.DeviceId
+ }
+ return ""
+}
+
+func (m *DeviceUpdateFilter) GetFromTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.FromTimestamp
+ }
+ return nil
+}
+
+func (m *DeviceUpdateFilter) GetToTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ToTimestamp
+ }
+ return nil
+}
+
+func (m *DeviceUpdateFilter) GetOperation() string {
+ if m != nil {
+ return m.Operation
+ }
+ return ""
+}
+
+func (m *DeviceUpdateFilter) GetOperationId() string {
+ if m != nil {
+ return m.OperationId
+ }
+ return ""
+}
+
+func (m *DeviceUpdateFilter) GetRequestedBy() string {
+ if m != nil {
+ return m.RequestedBy
+ }
+ return ""
+}
+
+func (m *DeviceUpdateFilter) GetStatus() *common.OperationResp {
+ if m != nil {
+ return m.Status
+ }
+ return nil
+}
+
+// A device update
+type DeviceUpdate struct {
+ // Device Id
+ DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
+ // Timestamp of the update
+ Timestamp *timestamp.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
+ // The operation that triggered the update, e.g. portCreated
+ Operation string `protobuf:"bytes,3,opt,name=operation,proto3" json:"operation,omitempty"`
+ // The ID of that operation, e.g. log correlation ID
+ OperationId string `protobuf:"bytes,4,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"`
+ // Component initiating the request, e.g. openolt
+ RequestedBy string `protobuf:"bytes,5,opt,name=requested_by,json=requestedBy,proto3" json:"requested_by,omitempty"`
+ // State change, if any, as a result of that update
+ StateChange *DeviceStatesChange `protobuf:"bytes,6,opt,name=state_change,json=stateChange,proto3" json:"state_change,omitempty"`
+ // Operation status
+ Status *common.OperationResp `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
+ // A brief description to provide more context to this update
+ Description string `protobuf:"bytes,8,opt,name=description,proto3" json:"description,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DeviceUpdate) Reset() { *m = DeviceUpdate{} }
+func (m *DeviceUpdate) String() string { return proto.CompactTextString(m) }
+func (*DeviceUpdate) ProtoMessage() {}
+func (*DeviceUpdate) Descriptor() ([]byte, []int) {
+ return fileDescriptor_200940f73d155856, []int{14}
+}
+
+func (m *DeviceUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DeviceUpdate.Unmarshal(m, b)
+}
+func (m *DeviceUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DeviceUpdate.Marshal(b, m, deterministic)
+}
+func (m *DeviceUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DeviceUpdate.Merge(m, src)
+}
+func (m *DeviceUpdate) XXX_Size() int {
+ return xxx_messageInfo_DeviceUpdate.Size(m)
+}
+func (m *DeviceUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_DeviceUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DeviceUpdate proto.InternalMessageInfo
+
+func (m *DeviceUpdate) GetDeviceId() string {
+ if m != nil {
+ return m.DeviceId
+ }
+ return ""
+}
+
+func (m *DeviceUpdate) GetTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.Timestamp
+ }
+ return nil
+}
+
+func (m *DeviceUpdate) GetOperation() string {
+ if m != nil {
+ return m.Operation
+ }
+ return ""
+}
+
+func (m *DeviceUpdate) GetOperationId() string {
+ if m != nil {
+ return m.OperationId
+ }
+ return ""
+}
+
+func (m *DeviceUpdate) GetRequestedBy() string {
+ if m != nil {
+ return m.RequestedBy
+ }
+ return ""
+}
+
+func (m *DeviceUpdate) GetStateChange() *DeviceStatesChange {
+ if m != nil {
+ return m.StateChange
+ }
+ return nil
+}
+
+func (m *DeviceUpdate) GetStatus() *common.OperationResp {
+ if m != nil {
+ return m.Status
+ }
+ return nil
+}
+
+func (m *DeviceUpdate) GetDescription() string {
+ if m != nil {
+ return m.Description
+ }
+ return ""
+}
+
+type DeviceUpdates struct {
+ Items []*DeviceUpdate `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DeviceUpdates) Reset() { *m = DeviceUpdates{} }
+func (m *DeviceUpdates) String() string { return proto.CompactTextString(m) }
+func (*DeviceUpdates) ProtoMessage() {}
+func (*DeviceUpdates) Descriptor() ([]byte, []int) {
+ return fileDescriptor_200940f73d155856, []int{15}
+}
+
+func (m *DeviceUpdates) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DeviceUpdates.Unmarshal(m, b)
+}
+func (m *DeviceUpdates) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DeviceUpdates.Marshal(b, m, deterministic)
+}
+func (m *DeviceUpdates) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DeviceUpdates.Merge(m, src)
+}
+func (m *DeviceUpdates) XXX_Size() int {
+ return xxx_messageInfo_DeviceUpdates.Size(m)
+}
+func (m *DeviceUpdates) XXX_DiscardUnknown() {
+ xxx_messageInfo_DeviceUpdates.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DeviceUpdates proto.InternalMessageInfo
+
+func (m *DeviceUpdates) GetItems() []*DeviceUpdate {
+ if m != nil {
+ return m.Items
+ }
+ return nil
+}
+
// A Physical Device instance
type Device struct {
// Voltha's device identifier
@@ -1178,7 +1521,6 @@
ProxyAddress *Device_ProxyAddress `protobuf:"bytes,19,opt,name=proxy_address,json=proxyAddress,proto3" json:"proxy_address,omitempty"`
AdminState common.AdminState_Types `protobuf:"varint,16,opt,name=admin_state,json=adminState,proto3,enum=common.AdminState_Types" json:"admin_state,omitempty"`
OperStatus common.OperStatus_Types `protobuf:"varint,17,opt,name=oper_status,json=operStatus,proto3,enum=common.OperStatus_Types" json:"oper_status,omitempty"`
- Reason string `protobuf:"bytes,22,opt,name=reason,proto3" json:"reason,omitempty"`
ConnectStatus common.ConnectStatus_Types `protobuf:"varint,18,opt,name=connect_status,json=connectStatus,proto3,enum=common.ConnectStatus_Types" json:"connect_status,omitempty"`
// Device type specific attributes
Custom *any.Any `protobuf:"bytes,64,opt,name=custom,proto3" json:"custom,omitempty"`
@@ -1195,7 +1537,7 @@
func (m *Device) String() string { return proto.CompactTextString(m) }
func (*Device) ProtoMessage() {}
func (*Device) Descriptor() ([]byte, []int) {
- return fileDescriptor_200940f73d155856, []int{11}
+ return fileDescriptor_200940f73d155856, []int{16}
}
func (m *Device) XXX_Unmarshal(b []byte) error {
@@ -1399,13 +1741,6 @@
return common.OperStatus_UNKNOWN
}
-func (m *Device) GetReason() string {
- if m != nil {
- return m.Reason
- }
- return ""
-}
-
func (m *Device) GetConnectStatus() common.ConnectStatus_Types {
if m != nil {
return m.ConnectStatus
@@ -1460,7 +1795,7 @@
func (m *Device_ProxyAddress) String() string { return proto.CompactTextString(m) }
func (*Device_ProxyAddress) ProtoMessage() {}
func (*Device_ProxyAddress) Descriptor() ([]byte, []int) {
- return fileDescriptor_200940f73d155856, []int{11, 0}
+ return fileDescriptor_200940f73d155856, []int{16, 0}
}
func (m *Device_ProxyAddress) XXX_Unmarshal(b []byte) error {
@@ -1541,7 +1876,7 @@
func (m *Devices) String() string { return proto.CompactTextString(m) }
func (*Devices) ProtoMessage() {}
func (*Devices) Descriptor() ([]byte, []int) {
- return fileDescriptor_200940f73d155856, []int{12}
+ return fileDescriptor_200940f73d155856, []int{17}
}
func (m *Devices) XXX_Unmarshal(b []byte) error {
@@ -1590,7 +1925,7 @@
func (m *SimulateAlarmRequest) String() string { return proto.CompactTextString(m) }
func (*SimulateAlarmRequest) ProtoMessage() {}
func (*SimulateAlarmRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_200940f73d155856, []int{13}
+ return fileDescriptor_200940f73d155856, []int{18}
}
func (m *SimulateAlarmRequest) XXX_Unmarshal(b []byte) error {
@@ -1700,6 +2035,11 @@
proto.RegisterType((*Port)(nil), "voltha.Port")
proto.RegisterType((*Port_PeerPort)(nil), "voltha.Port.PeerPort")
proto.RegisterType((*Ports)(nil), "voltha.Ports")
+ proto.RegisterType((*DeviceState)(nil), "voltha.DeviceState")
+ proto.RegisterType((*DeviceStatesChange)(nil), "voltha.DeviceStatesChange")
+ proto.RegisterType((*DeviceUpdateFilter)(nil), "voltha.DeviceUpdateFilter")
+ proto.RegisterType((*DeviceUpdate)(nil), "voltha.DeviceUpdate")
+ proto.RegisterType((*DeviceUpdates)(nil), "voltha.DeviceUpdates")
proto.RegisterType((*Device)(nil), "voltha.Device")
proto.RegisterType((*Device_ProxyAddress)(nil), "voltha.Device.ProxyAddress")
proto.RegisterType((*Devices)(nil), "voltha.Devices")
@@ -1709,152 +2049,168 @@
func init() { proto.RegisterFile("voltha_protos/device.proto", fileDescriptor_200940f73d155856) }
var fileDescriptor_200940f73d155856 = []byte{
- // 2341 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x58, 0xcd, 0x72, 0xdb, 0xb8,
- 0x1d, 0x8f, 0x64, 0x8b, 0x12, 0xff, 0xfa, 0x30, 0x83, 0x38, 0x09, 0x63, 0xd7, 0xe3, 0x54, 0xd9,
- 0x4e, 0x9d, 0xa4, 0xb1, 0xd3, 0x64, 0x67, 0x77, 0x7b, 0xe8, 0x4c, 0x64, 0x89, 0x4e, 0x38, 0x75,
- 0x25, 0x17, 0x92, 0xbc, 0x6d, 0x2f, 0x1c, 0x5a, 0x84, 0x6c, 0x4e, 0x48, 0x42, 0x01, 0x28, 0xd9,
- 0xde, 0x5b, 0x67, 0xa7, 0x3d, 0xf5, 0xd6, 0x5b, 0x9f, 0xa0, 0x6f, 0xb0, 0xc7, 0xf6, 0x05, 0x76,
- 0xfa, 0x0e, 0xed, 0xa5, 0x4f, 0xb0, 0xe7, 0x0e, 0x00, 0x42, 0x22, 0x9d, 0x34, 0xdb, 0xbd, 0xd8,
- 0xc4, 0xef, 0xff, 0x01, 0xe0, 0x07, 0xfc, 0x3f, 0x20, 0xd8, 0x5a, 0xd0, 0x28, 0xbd, 0xf0, 0xbd,
- 0x19, 0xa3, 0x29, 0xe5, 0x07, 0x01, 0x59, 0x84, 0x13, 0xb2, 0x2f, 0x47, 0xc8, 0x50, 0xb2, 0xad,
- 0x07, 0xe7, 0x94, 0x9e, 0x47, 0xe4, 0x40, 0xa2, 0x67, 0xf3, 0xe9, 0x81, 0x9f, 0x5c, 0x2b, 0x95,
- 0xad, 0x1b, 0xe6, 0x13, 0x1a, 0xc7, 0x34, 0xc9, 0x64, 0x76, 0x51, 0x16, 0x93, 0xd4, 0xcf, 0x24,
- 0xbb, 0x45, 0x09, 0x9d, 0x91, 0x64, 0x1a, 0xd1, 0x4b, 0xef, 0xe7, 0x2f, 0x95, 0x42, 0xfb, 0xef,
- 0x65, 0x80, 0x9e, 0x5c, 0xca, 0xe8, 0x7a, 0x46, 0x50, 0x0b, 0xca, 0x61, 0x60, 0x97, 0x1e, 0x96,
- 0xf6, 0x4c, 0x5c, 0x0e, 0x03, 0xb4, 0x0d, 0xe6, 0x82, 0x24, 0x01, 0x65, 0x5e, 0x18, 0xd8, 0x15,
- 0x09, 0xd7, 0x14, 0xe0, 0x06, 0x68, 0x07, 0x60, 0x29, 0xe4, 0xb6, 0xf1, 0x70, 0x6d, 0xcf, 0xc4,
- 0xa6, 0x96, 0x72, 0x64, 0x43, 0xd5, 0x0f, 0xfc, 0x59, 0x4a, 0x98, 0x5d, 0x96, 0x96, 0x7a, 0x88,
- 0x3e, 0x07, 0xdb, 0x9f, 0x4c, 0xc8, 0x2c, 0xe5, 0xde, 0xd9, 0x3c, 0x7a, 0xeb, 0xc9, 0x25, 0xcd,
- 0x67, 0x81, 0x9f, 0x12, 0x7b, 0xed, 0x61, 0x69, 0xaf, 0x86, 0xef, 0x66, 0xf2, 0xc3, 0x79, 0xf4,
- 0xf6, 0x28, 0xa2, 0x97, 0x63, 0x29, 0x44, 0x3d, 0xd8, 0xd5, 0x86, 0x7e, 0x10, 0x78, 0x8c, 0xc4,
- 0x74, 0x41, 0xf2, 0xe6, 0xdc, 0x5e, 0x97, 0xf6, 0xdb, 0x99, 0x5a, 0x27, 0x08, 0xb0, 0x54, 0x5a,
- 0x39, 0xe1, 0xe8, 0x18, 0x1e, 0x69, 0x2f, 0x41, 0xc8, 0xc8, 0x24, 0xf5, 0x22, 0x7a, 0x1e, 0x4e,
- 0xfc, 0x48, 0x7a, 0xe2, 0x7a, 0x25, 0x55, 0xe9, 0x49, 0x4f, 0xd8, 0x93, 0x9a, 0xc7, 0x4a, 0x51,
- 0x78, 0xe3, 0xca, 0x5d, 0xfb, 0x73, 0xa8, 0xaf, 0x08, 0xe4, 0x68, 0x0f, 0x2a, 0x61, 0x4a, 0x62,
- 0x6e, 0x97, 0x1e, 0xae, 0xed, 0xd5, 0x5f, 0xa0, 0x7d, 0x75, 0x02, 0xfb, 0x2b, 0x1d, 0xac, 0x14,
- 0xda, 0xff, 0x28, 0x41, 0xed, 0x24, 0xee, 0xd2, 0x64, 0x1a, 0x9e, 0x23, 0x04, 0xeb, 0x89, 0x1f,
- 0x93, 0x8c, 0x7a, 0xf9, 0x8d, 0x9e, 0xc2, 0x7a, 0x7a, 0x3d, 0x23, 0x92, 0xbd, 0xd6, 0x8b, 0xfb,
- 0xda, 0x93, 0xb6, 0xd9, 0x3f, 0x89, 0xa5, 0x3b, 0xa9, 0x24, 0xd8, 0x26, 0x89, 0x7f, 0x16, 0x91,
- 0x20, 0xa3, 0x50, 0x0f, 0xd1, 0x2e, 0xd4, 0xb9, 0x1f, 0xcf, 0x22, 0xe2, 0x4d, 0x19, 0x79, 0x27,
- 0x09, 0x6a, 0x62, 0x50, 0xd0, 0x11, 0x23, 0xef, 0xda, 0x5f, 0x80, 0xa1, 0x5c, 0xa1, 0x3a, 0x54,
- 0xbb, 0x83, 0x71, 0x7f, 0xe4, 0x60, 0xeb, 0x16, 0x32, 0xa1, 0xf2, 0xba, 0x33, 0x7e, 0xed, 0x58,
- 0x25, 0xf1, 0x39, 0x1c, 0x75, 0x46, 0x8e, 0x55, 0x56, 0x2a, 0xfd, 0x91, 0xf3, 0xdb, 0x91, 0xb5,
- 0xd6, 0xfe, 0x4b, 0x09, 0x9a, 0x27, 0xf1, 0x6b, 0x46, 0xe7, 0xb3, 0x6c, 0x1f, 0x3b, 0x00, 0xe7,
- 0x62, 0xe8, 0xe5, 0x76, 0x63, 0x4a, 0xa4, 0x2f, 0xb6, 0xb4, 0x14, 0xcb, 0xa5, 0x94, 0xe5, 0x52,
- 0x94, 0x58, 0xac, 0xe4, 0x23, 0x9b, 0x78, 0x02, 0xd5, 0x98, 0xa4, 0x2c, 0x9c, 0x88, 0x13, 0x16,
- 0xc4, 0x5a, 0x37, 0xe9, 0xc0, 0x5a, 0xa1, 0xfd, 0x87, 0x32, 0x98, 0x1a, 0xe5, 0xef, 0x5d, 0xe9,
- 0x1f, 0x43, 0x23, 0x20, 0x53, 0x7f, 0x1e, 0xa5, 0xf9, 0x45, 0xd4, 0x33, 0x4c, 0x2e, 0x63, 0x17,
- 0xaa, 0x72, 0x4d, 0x7a, 0x19, 0x87, 0x95, 0xff, 0x7c, 0xf7, 0xed, 0x4e, 0x09, 0x6b, 0x14, 0x3d,
- 0x81, 0xa6, 0xb0, 0xf5, 0xe8, 0x82, 0x30, 0x16, 0x06, 0x44, 0xdd, 0x3a, 0xad, 0xd6, 0x10, 0xb2,
- 0x41, 0x26, 0x42, 0xcf, 0xc0, 0x90, 0x66, 0xdc, 0xae, 0xc8, 0x85, 0xdf, 0x5d, 0x2d, 0x3c, 0x47,
- 0x1c, 0xce, 0x94, 0xf2, 0x1b, 0x35, 0xbe, 0x67, 0xa3, 0xe8, 0x01, 0xd4, 0x62, 0xff, 0xca, 0xe3,
- 0x6f, 0xc9, 0xa5, 0xbc, 0xad, 0x4d, 0x5c, 0x8d, 0xfd, 0xab, 0xe1, 0x5b, 0x72, 0xd9, 0xfe, 0x67,
- 0x09, 0x2a, 0x6e, 0xec, 0x9f, 0x93, 0x0f, 0xde, 0x2c, 0x1b, 0xaa, 0x0b, 0xc2, 0x78, 0x48, 0x13,
- 0x1d, 0x9a, 0xd9, 0x50, 0x68, 0x5f, 0xf8, 0xfc, 0x42, 0xee, 0xdb, 0xc4, 0xf2, 0x1b, 0x3d, 0x06,
- 0x2b, 0x4c, 0x78, 0xea, 0x47, 0x91, 0x27, 0x6e, 0x7c, 0x1a, 0xc6, 0x6a, 0xc3, 0x26, 0xde, 0xc8,
- 0xf0, 0x5e, 0x06, 0x8b, 0x7c, 0x11, 0x72, 0xcf, 0x9f, 0xa4, 0xe1, 0x82, 0xc8, 0x7c, 0x51, 0xc3,
- 0xb5, 0x90, 0x77, 0xe4, 0x58, 0x30, 0x1f, 0x72, 0x4f, 0x64, 0xae, 0x30, 0x4d, 0x49, 0x60, 0x1b,
- 0x52, 0x5e, 0x0f, 0x79, 0x57, 0x43, 0x62, 0x47, 0x21, 0xf7, 0x16, 0x7e, 0x14, 0x06, 0x59, 0xfc,
- 0x55, 0x43, 0x7e, 0x2a, 0x86, 0xed, 0x67, 0x60, 0xc8, 0x0d, 0x71, 0xf4, 0x08, 0x2a, 0xa1, 0xf8,
- 0xca, 0x42, 0xac, 0xa9, 0x09, 0x92, 0x62, 0xac, 0x64, 0xed, 0x7f, 0x57, 0xa1, 0x29, 0x81, 0x1e,
- 0xbd, 0x4c, 0x22, 0xea, 0x07, 0xef, 0x5d, 0x04, 0x4d, 0x4c, 0x39, 0x47, 0x8c, 0x05, 0x6b, 0x73,
- 0x16, 0x65, 0xbb, 0x17, 0x9f, 0x02, 0x99, 0xb0, 0x49, 0x16, 0x35, 0xe2, 0x13, 0x0d, 0xa0, 0x15,
- 0x64, 0x3e, 0x3d, 0x9e, 0x8a, 0x4c, 0x51, 0x91, 0x01, 0xba, 0x57, 0x58, 0x87, 0x9e, 0xb6, 0x38,
- 0x1a, 0x0a, 0x7d, 0xdc, 0x0c, 0xf2, 0x43, 0xf4, 0x08, 0x9a, 0x72, 0xcd, 0x9e, 0x3e, 0x13, 0x43,
- 0x4e, 0xdf, 0x90, 0xe0, 0x69, 0x76, 0x30, 0x8f, 0xc1, 0xd2, 0x56, 0x24, 0xf0, 0xce, 0xae, 0x45,
- 0xae, 0x53, 0x67, 0xbe, 0xb1, 0xc2, 0x0f, 0x05, 0x8c, 0xde, 0x80, 0xc1, 0x88, 0xcf, 0x69, 0x62,
- 0xd7, 0xe4, 0xc2, 0x9e, 0xff, 0x1f, 0x0b, 0x3b, 0xf2, 0xc3, 0x68, 0xce, 0x08, 0x96, 0x76, 0x38,
- 0xb3, 0x47, 0x3f, 0x85, 0x0d, 0x3f, 0x08, 0xc2, 0x34, 0xa4, 0x89, 0x1f, 0x79, 0x61, 0x32, 0xa5,
- 0xb6, 0x29, 0xd7, 0xd6, 0x5a, 0xc1, 0x6e, 0x32, 0xa5, 0x2a, 0xc7, 0x2c, 0x88, 0x37, 0x91, 0x37,
- 0xd4, 0x06, 0x79, 0x74, 0x20, 0xa0, 0x2c, 0x2f, 0x6c, 0x83, 0x19, 0x51, 0x91, 0x62, 0x83, 0x90,
- 0xd9, 0x75, 0x55, 0x48, 0x24, 0xd0, 0x0b, 0x19, 0x72, 0xa1, 0xae, 0x08, 0x50, 0x74, 0x36, 0xbe,
- 0x97, 0x4e, 0x79, 0xa1, 0xfc, 0x94, 0x28, 0x3a, 0x41, 0x1a, 0x2b, 0x2e, 0xb7, 0xc1, 0x9c, 0x86,
- 0x11, 0xf1, 0x78, 0xf8, 0x15, 0xb1, 0x9b, 0x92, 0x9f, 0x9a, 0x00, 0x86, 0xe1, 0x57, 0xa4, 0xfd,
- 0x4d, 0x09, 0xd0, 0xfb, 0xc7, 0x81, 0x36, 0xc1, 0xea, 0x0d, 0xbe, 0xec, 0x1f, 0x0f, 0x3a, 0x3d,
- 0x6f, 0xdc, 0xff, 0x55, 0x7f, 0xf0, 0x65, 0xdf, 0xba, 0x85, 0xee, 0x01, 0x5a, 0xa2, 0xc3, 0x71,
- 0xb7, 0xeb, 0x38, 0x3d, 0xa7, 0x67, 0x95, 0x0a, 0x38, 0x76, 0x7e, 0x33, 0x76, 0x86, 0x23, 0xa7,
- 0x67, 0x95, 0x0b, 0x5e, 0x86, 0xa3, 0x0e, 0x16, 0xe8, 0x1a, 0xba, 0x03, 0x1b, 0x4b, 0xf4, 0xa8,
- 0xe3, 0x1e, 0x3b, 0x3d, 0x6b, 0x1d, 0xd9, 0xb0, 0x99, 0x9b, 0x70, 0x38, 0x3e, 0x39, 0x19, 0x48,
- 0xf5, 0x4a, 0xc1, 0x79, 0xb7, 0xd3, 0xef, 0x3a, 0xc7, 0xc2, 0xc2, 0x68, 0xff, 0xa9, 0x04, 0x5b,
- 0xff, 0xfb, 0xbc, 0x50, 0x03, 0x6a, 0xfd, 0x81, 0xe7, 0x60, 0x3c, 0x10, 0x89, 0x7b, 0x03, 0xea,
- 0x6e, 0xff, 0xb4, 0x73, 0xec, 0xf6, 0xbc, 0x31, 0x3e, 0xb6, 0x4a, 0x02, 0xe8, 0x39, 0xa7, 0x6e,
- 0xd7, 0xf1, 0x0e, 0xc7, 0xc3, 0xdf, 0x59, 0x65, 0x31, 0x8d, 0xdb, 0x1f, 0x8e, 0x8f, 0x8e, 0xdc,
- 0xae, 0xeb, 0xf4, 0x47, 0xde, 0xf0, 0xa4, 0xd3, 0x75, 0xac, 0x35, 0x74, 0x1b, 0x9a, 0x19, 0x01,
- 0x99, 0xb3, 0x75, 0xd4, 0x04, 0x73, 0xb5, 0x90, 0x4a, 0xfb, 0xcf, 0x9a, 0xc2, 0xc2, 0x11, 0x08,
- 0x43, 0xf7, 0xd7, 0x9d, 0xd7, 0x4e, 0x8e, 0x3f, 0x04, 0x2d, 0x05, 0xb9, 0xfd, 0x4e, 0x77, 0xe4,
- 0x9e, 0x8a, 0x3a, 0xb2, 0x09, 0x96, 0xc2, 0x24, 0xd2, 0x19, 0xb9, 0xfd, 0xd7, 0x56, 0x19, 0x59,
- 0xd0, 0xc8, 0xa1, 0x8e, 0x62, 0x4d, 0x21, 0xd8, 0x39, 0x75, 0xb0, 0x54, 0x5b, 0x5f, 0x39, 0x54,
- 0xa0, 0x5c, 0xce, 0x2f, 0xa1, 0x55, 0xa0, 0x85, 0xa3, 0xa7, 0xba, 0xfe, 0x96, 0x8b, 0xd9, 0xb6,
- 0xa0, 0xa6, 0x4b, 0xf0, 0x37, 0x15, 0x58, 0x3f, 0xa1, 0x2c, 0x45, 0xf7, 0xa1, 0x3a, 0xa3, 0x2c,
- 0xf5, 0x12, 0x2a, 0x13, 0x44, 0x13, 0x1b, 0x62, 0xd8, 0xa7, 0x68, 0x13, 0x2a, 0x91, 0x7f, 0x46,
- 0xa2, 0x2c, 0x4b, 0xa8, 0x01, 0x7a, 0x9c, 0x55, 0xe6, 0x35, 0x79, 0x53, 0x57, 0x19, 0x9d, 0xb2,
- 0x54, 0xfe, 0xc9, 0xd5, 0xe5, 0x5f, 0x40, 0xdd, 0x0f, 0xe2, 0x30, 0x29, 0xa4, 0x0a, 0x7b, 0x3f,
- 0xeb, 0xdf, 0x3a, 0x42, 0x24, 0x29, 0xdc, 0x97, 0xed, 0x03, 0x06, 0x7f, 0x89, 0x08, 0x53, 0x3a,
- 0x23, 0x4c, 0x5a, 0xce, 0xb9, 0xcc, 0x0a, 0x39, 0xd3, 0xc1, 0x8c, 0xb0, 0xa1, 0x94, 0x68, 0x53,
- 0xba, 0x44, 0x44, 0x18, 0xa8, 0x06, 0xd3, 0xcb, 0x12, 0xa9, 0x89, 0x6b, 0x0a, 0x70, 0x03, 0x41,
- 0xd1, 0x8c, 0x10, 0xc6, 0xed, 0xda, 0x8d, 0x82, 0x24, 0x97, 0x4f, 0x08, 0x13, 0x1f, 0x58, 0xe9,
- 0x88, 0x8a, 0xcd, 0xae, 0xbc, 0x99, 0x3f, 0x79, 0x4b, 0x52, 0x2e, 0xa3, 0xdf, 0xc0, 0x26, 0xbb,
- 0x3a, 0x51, 0x80, 0x48, 0xd8, 0xec, 0x2a, 0x4b, 0x47, 0x20, 0x85, 0x55, 0x76, 0xa5, 0xd2, 0xd0,
- 0x36, 0x98, 0xec, 0xca, 0x23, 0x8c, 0x51, 0xc6, 0x65, 0xc8, 0x1b, 0xb8, 0xc6, 0xae, 0x1c, 0x39,
- 0x16, 0x6e, 0xd3, 0x95, 0xdb, 0x86, 0x72, 0x9b, 0xe6, 0xdd, 0xa6, 0xda, 0x6d, 0x53, 0xb9, 0x4d,
- 0x57, 0x6e, 0xd3, 0xa5, 0xdb, 0x96, 0x72, 0x9b, 0x6a, 0xb7, 0xcf, 0xa1, 0x46, 0xa7, 0x33, 0x4f,
- 0x1c, 0x9e, 0xbd, 0xf1, 0xb0, 0x24, 0x77, 0x97, 0x6f, 0x7a, 0xb5, 0x10, 0x57, 0xe9, 0x74, 0x26,
- 0xb6, 0xb9, 0xf5, 0x0a, 0x6a, 0x7a, 0xcb, 0x45, 0xd6, 0x4a, 0x37, 0x58, 0xcb, 0x5d, 0x91, 0x72,
- 0xfe, 0x8a, 0xb4, 0x39, 0xd4, 0xf4, 0x99, 0x8b, 0xee, 0x68, 0x15, 0x01, 0x16, 0x34, 0x9c, 0xd1,
- 0x1b, 0x07, 0xf7, 0x9d, 0x91, 0xd7, 0xef, 0xbb, 0x56, 0xa9, 0x80, 0x8c, 0xfb, 0xae, 0x6a, 0xa7,
- 0x4e, 0x06, 0x7d, 0x6f, 0x70, 0x3c, 0xb2, 0xd6, 0x96, 0x83, 0xfe, 0x58, 0x05, 0xde, 0xa9, 0x23,
- 0x14, 0x85, 0xac, 0x92, 0x1b, 0xf6, 0xc7, 0x96, 0xd1, 0x7e, 0x0a, 0x15, 0x31, 0x29, 0x47, 0xed,
- 0x62, 0xbf, 0xd9, 0xc8, 0x1f, 0xa6, 0xbe, 0xe6, 0x7f, 0xad, 0x83, 0xa1, 0xfa, 0x4f, 0x74, 0x77,
- 0x55, 0x04, 0x75, 0xbb, 0x22, 0x6a, 0xe1, 0x83, 0x5c, 0xab, 0xb9, 0x14, 0xa8, 0x0b, 0xfc, 0x00,
- 0xd6, 0x19, 0xa5, 0x69, 0xb1, 0x13, 0x92, 0x10, 0x6a, 0x83, 0x39, 0xf3, 0x19, 0x49, 0x52, 0xc1,
- 0xd7, 0x7a, 0xde, 0xb4, 0xa6, 0x70, 0x79, 0xd9, 0x5a, 0x99, 0x8e, 0x66, 0x6f, 0x53, 0xb0, 0xb7,
- 0xec, 0x95, 0x94, 0xf0, 0x44, 0x45, 0xdb, 0x0e, 0x18, 0xea, 0xfd, 0xa0, 0xde, 0x1a, 0x5a, 0x29,
- 0x03, 0xd1, 0x36, 0x54, 0x62, 0x1a, 0x90, 0x48, 0x15, 0x48, 0x2d, 0x55, 0x18, 0x7a, 0x0e, 0xd6,
- 0x85, 0xcf, 0x82, 0x4b, 0x9f, 0xad, 0x0a, 0x69, 0x35, 0xaf, 0xb7, 0xa1, 0xc5, 0xba, 0xa4, 0x3e,
- 0x07, 0x6b, 0x1a, 0xb2, 0xb8, 0x60, 0x51, 0x2b, 0x58, 0x68, 0xb1, 0xb6, 0x78, 0x06, 0x86, 0xac,
- 0x35, 0x2a, 0x10, 0xea, 0x2f, 0x5a, 0x85, 0xec, 0xc2, 0x97, 0xeb, 0x55, 0x4a, 0xa2, 0x4d, 0xe4,
- 0x84, 0x85, 0x7e, 0xe4, 0x25, 0xf3, 0xf8, 0x8c, 0x30, 0x19, 0x21, 0x4b, 0xef, 0x0d, 0x25, 0xeb,
- 0x4b, 0x91, 0xe0, 0x72, 0xf5, 0xd2, 0xb2, 0x0b, 0x5c, 0x2e, 0x1f, 0x5c, 0xbb, 0xab, 0x17, 0x55,
- 0x3d, 0xaf, 0xb1, 0x7c, 0x58, 0x21, 0x58, 0x5f, 0x44, 0x7e, 0x22, 0xe3, 0xa9, 0x89, 0xe5, 0xb7,
- 0x28, 0xcd, 0xb1, 0x3f, 0x11, 0xef, 0x25, 0x46, 0xb8, 0x8a, 0x26, 0x13, 0x43, 0xec, 0x4f, 0x3a,
- 0x0a, 0x41, 0x8f, 0xa0, 0x11, 0xce, 0x16, 0x9f, 0x2e, 0x35, 0x44, 0x4c, 0x99, 0x6f, 0x6e, 0xe1,
- 0xba, 0x40, 0x8b, 0x4a, 0x9f, 0x2d, 0x95, 0x36, 0x72, 0x4a, 0x9f, 0x69, 0xa5, 0x4f, 0xa0, 0x79,
- 0x41, 0x79, 0xea, 0xf9, 0x49, 0xa0, 0x42, 0xf0, 0xae, 0xd6, 0x12, 0x70, 0x27, 0x09, 0x64, 0x94,
- 0xed, 0x00, 0x90, 0xab, 0x94, 0xf9, 0x9e, 0xcf, 0xce, 0xb9, 0x7d, 0x5f, 0x3d, 0x11, 0x24, 0xd2,
- 0x61, 0xe7, 0x1c, 0xbd, 0x82, 0xe6, 0x8c, 0xd1, 0xab, 0xeb, 0xe5, 0x54, 0x77, 0x24, 0xd5, 0xdb,
- 0xc5, 0x87, 0xd4, 0xfe, 0x89, 0xd0, 0xc9, 0x26, 0xc6, 0x8d, 0x59, 0x6e, 0x74, 0x33, 0xe5, 0x5a,
- 0x3f, 0x20, 0xe5, 0xbe, 0x2a, 0xa6, 0xdc, 0xdb, 0x1f, 0x4f, 0xb9, 0x9a, 0xff, 0x7c, 0xe6, 0xdd,
- 0x59, 0x36, 0x5f, 0xf7, 0x0a, 0x57, 0x38, 0xeb, 0xa8, 0x5c, 0x68, 0x4d, 0x68, 0x92, 0x88, 0x47,
- 0x67, 0x36, 0x07, 0x92, 0x73, 0x6c, 0xeb, 0x39, 0xba, 0x4a, 0xfa, 0xa1, 0x69, 0x9a, 0x93, 0xbc,
- 0x0c, 0xfd, 0x0c, 0x8c, 0xc9, 0x9c, 0xa7, 0x34, 0xb6, 0x5f, 0x49, 0x86, 0x36, 0xf7, 0xd5, 0xaf,
- 0x07, 0xfb, 0xfa, 0xd7, 0x83, 0xfd, 0x4e, 0x72, 0x8d, 0x33, 0x1d, 0xf4, 0x05, 0xc0, 0x2c, 0xce,
- 0xfa, 0x33, 0x6e, 0x7f, 0x5d, 0x92, 0x26, 0xb7, 0x6f, 0xbe, 0x2d, 0xf8, 0x61, 0xe5, 0x5f, 0xdf,
- 0x7d, 0xbb, 0x73, 0x0b, 0x9b, 0xb3, 0xe5, 0x03, 0xea, 0x18, 0x36, 0x54, 0x77, 0xa6, 0xfb, 0x4c,
- 0x6e, 0xff, 0xb1, 0xf4, 0x91, 0xe2, 0x7a, 0x58, 0x17, 0x2e, 0x0c, 0xd5, 0x5d, 0xe3, 0x56, 0x58,
- 0xa8, 0xcf, 0x5b, 0x5f, 0x97, 0xa1, 0x91, 0x3f, 0xbb, 0x8f, 0x27, 0xdd, 0x5d, 0xa8, 0x67, 0xc2,
- 0x55, 0x7a, 0xc2, 0x10, 0xac, 0x7e, 0xb0, 0xd8, 0x01, 0x98, 0x5c, 0xf8, 0x49, 0x42, 0x22, 0x61,
- 0xbe, 0xa6, 0x1e, 0x94, 0x19, 0xe2, 0x06, 0x68, 0x0f, 0x2c, 0x2d, 0x56, 0xef, 0xce, 0x2c, 0x51,
- 0x35, 0x71, 0x2b, 0xc3, 0xe5, 0x1b, 0xcc, 0x0d, 0xd0, 0x01, 0xdc, 0xd1, 0x9a, 0x29, 0x61, 0x71,
- 0x98, 0xf8, 0xa2, 0xbd, 0xcd, 0x7e, 0xf3, 0x40, 0x99, 0x68, 0xb4, 0x92, 0xa0, 0xbb, 0x60, 0xd0,
- 0x64, 0x2e, 0x1c, 0x1a, 0xd2, 0x61, 0x85, 0x26, 0x73, 0x37, 0x40, 0x9f, 0x40, 0x4b, 0xc0, 0x9c,
- 0x70, 0x91, 0x31, 0x74, 0xf9, 0x6d, 0xe2, 0x06, 0x4d, 0xe6, 0x43, 0x05, 0xba, 0xc1, 0xa1, 0x29,
- 0x22, 0x59, 0xee, 0xbf, 0x7d, 0x00, 0x55, 0x75, 0xa5, 0x45, 0xfc, 0x14, 0x72, 0x79, 0xab, 0x78,
- 0xe5, 0x75, 0x36, 0xff, 0xdb, 0x1a, 0x6c, 0x0e, 0xc3, 0x78, 0x1e, 0xf9, 0x29, 0xe9, 0x44, 0x3e,
- 0x8b, 0x31, 0x79, 0x37, 0x27, 0x3c, 0x7d, 0xef, 0x81, 0xf3, 0x23, 0x30, 0xc3, 0x24, 0x08, 0x27,
- 0x7e, 0x4a, 0xf5, 0x4f, 0x30, 0x2b, 0x40, 0xd4, 0xb3, 0x30, 0x49, 0xa7, 0x9a, 0x36, 0x13, 0x1b,
- 0x62, 0xa8, 0x76, 0x20, 0x53, 0xb5, 0x60, 0x5c, 0x3d, 0xe3, 0xd5, 0x63, 0xaf, 0x31, 0xcb, 0xaa,
- 0x9c, 0x7c, 0xc9, 0xb7, 0xa1, 0x29, 0xf6, 0xb9, 0x3a, 0x3a, 0xc5, 0x54, 0x9d, 0x26, 0xf3, 0x9e,
- 0x3e, 0xbd, 0x97, 0x70, 0x2f, 0x4c, 0x44, 0x66, 0x25, 0xde, 0x59, 0x98, 0xaa, 0x9a, 0xed, 0x31,
- 0x11, 0x93, 0x82, 0xb2, 0x0a, 0xbe, 0x93, 0x49, 0x0f, 0xc3, 0x54, 0xd6, 0x6f, 0xac, 0xba, 0xf1,
- 0x4a, 0xc0, 0xc2, 0x69, 0x2a, 0x79, 0xab, 0x60, 0x35, 0x10, 0xab, 0x4d, 0xc8, 0xa5, 0x47, 0xde,
- 0x05, 0x32, 0x45, 0x57, 0xb0, 0x91, 0x90, 0x4b, 0xe7, 0x9d, 0x78, 0x8a, 0xdf, 0x56, 0x7c, 0xe7,
- 0xf3, 0xac, 0x7a, 0xa4, 0x6c, 0x48, 0xca, 0x73, 0x39, 0xf6, 0x0d, 0x98, 0x22, 0x52, 0xd5, 0xc9,
- 0x82, 0x8c, 0xbb, 0x27, 0x9a, 0xe3, 0x0f, 0x31, 0x2a, 0x03, 0x5e, 0x6a, 0xcb, 0x86, 0x6e, 0x65,
- 0xdc, 0xfe, 0x09, 0x34, 0x0b, 0x32, 0x64, 0x42, 0x05, 0x77, 0xdc, 0xa1, 0xa3, 0x7e, 0x37, 0xe9,
- 0x1e, 0x3b, 0x1d, 0x6c, 0x95, 0x0e, 0x87, 0x70, 0x87, 0xb2, 0x73, 0xd9, 0x81, 0x4c, 0x28, 0x0b,
- 0xb2, 0xb9, 0x0e, 0x1b, 0xa7, 0xf2, 0xbf, 0xe2, 0xe9, 0xf7, 0xfb, 0xe7, 0x61, 0x7a, 0x31, 0x3f,
- 0x13, 0x09, 0xe0, 0x40, 0x6b, 0x1e, 0x28, 0xcd, 0x67, 0xd9, 0xef, 0x76, 0x8b, 0x4f, 0x0f, 0xce,
- 0x69, 0x86, 0x9d, 0x19, 0x12, 0x7c, 0xf9, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8e, 0x96, 0xa4,
- 0xa3, 0x51, 0x14, 0x00, 0x00,
+ // 2606 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x58, 0xcd, 0x73, 0xdb, 0xc6,
+ 0x15, 0x37, 0x29, 0xf1, 0xeb, 0xf1, 0x43, 0xf0, 0x5a, 0x4e, 0x60, 0x29, 0x1a, 0xbb, 0x74, 0x3a,
+ 0x55, 0x9c, 0x5a, 0x72, 0x9d, 0x4c, 0x92, 0x4e, 0x27, 0x33, 0xa6, 0x48, 0xc8, 0xe6, 0x54, 0xa5,
+ 0xd4, 0x25, 0xa5, 0xb4, 0xbd, 0x60, 0x20, 0x62, 0x29, 0x61, 0x0c, 0x60, 0xe1, 0x5d, 0x90, 0x92,
+ 0x72, 0xeb, 0x64, 0xda, 0x53, 0x6f, 0xfd, 0x27, 0xfa, 0x1f, 0xe4, 0xd8, 0x9e, 0xda, 0x53, 0xa6,
+ 0xe7, 0x5e, 0xdb, 0x4b, 0xff, 0x82, 0x5c, 0x7a, 0xe9, 0xec, 0x17, 0x01, 0x48, 0x89, 0x5d, 0xf7,
+ 0x22, 0x71, 0x7f, 0xef, 0x03, 0xbb, 0xbf, 0x7d, 0xfb, 0xde, 0xdb, 0x85, 0x8d, 0x05, 0x0d, 0xd3,
+ 0x73, 0xcf, 0x4d, 0x18, 0x4d, 0x29, 0xdf, 0xf5, 0xc9, 0x22, 0x98, 0x92, 0x1d, 0x39, 0x42, 0x55,
+ 0x25, 0xdb, 0xb8, 0x77, 0x46, 0xe9, 0x59, 0x48, 0x76, 0x25, 0x7a, 0x3a, 0x9f, 0xed, 0x7a, 0xf1,
+ 0x95, 0x52, 0xd9, 0xb8, 0x7f, 0x5d, 0x94, 0x06, 0x11, 0xe1, 0xa9, 0x17, 0x25, 0x5a, 0xe1, 0x9a,
+ 0xff, 0x29, 0x8d, 0x22, 0x1a, 0x6b, 0x99, 0x5d, 0x94, 0x45, 0x24, 0xf5, 0x8c, 0xdb, 0xa2, 0x84,
+ 0x26, 0x24, 0x9e, 0x85, 0xf4, 0xc2, 0xfd, 0xc9, 0x47, 0x4a, 0xa1, 0xfb, 0xe7, 0x32, 0xc0, 0x40,
+ 0xce, 0x75, 0x72, 0x95, 0x10, 0xd4, 0x81, 0x72, 0xe0, 0xdb, 0xa5, 0x07, 0xa5, 0xed, 0x06, 0x2e,
+ 0x07, 0x3e, 0xda, 0x84, 0xc6, 0x82, 0xc4, 0x3e, 0x65, 0x6e, 0xe0, 0xdb, 0x15, 0x09, 0xd7, 0x15,
+ 0x30, 0xf4, 0xd1, 0x16, 0xc0, 0x52, 0xc8, 0xed, 0xea, 0x83, 0x95, 0xed, 0x06, 0x6e, 0x18, 0x29,
+ 0x47, 0x36, 0xd4, 0x3c, 0xdf, 0x4b, 0x52, 0xc2, 0xec, 0xb2, 0xb4, 0x34, 0x43, 0xf4, 0x29, 0xd8,
+ 0xde, 0x74, 0x4a, 0x92, 0x94, 0xbb, 0xa7, 0xf3, 0xf0, 0xa5, 0x2b, 0xa7, 0x34, 0x4f, 0x7c, 0x2f,
+ 0x25, 0xf6, 0xca, 0x83, 0xd2, 0x76, 0x1d, 0xdf, 0xd5, 0xf2, 0xbd, 0x79, 0xf8, 0x72, 0x3f, 0xa4,
+ 0x17, 0xc7, 0x52, 0x88, 0x06, 0x70, 0xdf, 0x18, 0x7a, 0xbe, 0xef, 0x32, 0x12, 0xd1, 0x05, 0xc9,
+ 0x9b, 0x73, 0x7b, 0x55, 0xda, 0x6f, 0x6a, 0xb5, 0x9e, 0xef, 0x63, 0xa9, 0x94, 0x39, 0xe1, 0xe8,
+ 0x00, 0x1e, 0x1a, 0x2f, 0x7e, 0xc0, 0xc8, 0x34, 0x75, 0x43, 0x7a, 0x16, 0x4c, 0xbd, 0x50, 0x7a,
+ 0xe2, 0x66, 0x26, 0x35, 0xe9, 0xc9, 0x7c, 0x70, 0x20, 0x35, 0x0f, 0x94, 0xa2, 0xf0, 0xc6, 0x95,
+ 0xbb, 0xee, 0xa7, 0xd0, 0xcc, 0x08, 0xe4, 0x68, 0x1b, 0x2a, 0x41, 0x4a, 0x22, 0x6e, 0x97, 0x1e,
+ 0xac, 0x6c, 0x37, 0x9f, 0xa2, 0x1d, 0xb5, 0x03, 0x3b, 0x99, 0x0e, 0x56, 0x0a, 0xdd, 0xbf, 0x94,
+ 0xa0, 0x7e, 0x14, 0xf5, 0x69, 0x3c, 0x0b, 0xce, 0x10, 0x82, 0xd5, 0xd8, 0x8b, 0x88, 0xa6, 0x5e,
+ 0xfe, 0x46, 0x1f, 0xc2, 0x6a, 0x7a, 0x95, 0x10, 0xc9, 0x5e, 0xe7, 0xe9, 0xbb, 0xc6, 0x93, 0xb1,
+ 0xd9, 0x39, 0x8a, 0xa4, 0x3b, 0xa9, 0x24, 0xd8, 0x26, 0xb1, 0x77, 0x1a, 0x12, 0x5f, 0x53, 0x68,
+ 0x86, 0xe8, 0x3e, 0x34, 0xb9, 0x17, 0x25, 0x21, 0x71, 0x67, 0x8c, 0xbc, 0x92, 0x04, 0xb5, 0x31,
+ 0x28, 0x68, 0x9f, 0x91, 0x57, 0xdd, 0xcf, 0xa0, 0xaa, 0x5c, 0xa1, 0x26, 0xd4, 0xfa, 0x87, 0xc7,
+ 0xa3, 0x89, 0x83, 0xad, 0x5b, 0xa8, 0x01, 0x95, 0xe7, 0xbd, 0xe3, 0xe7, 0x8e, 0x55, 0x12, 0x3f,
+ 0xc7, 0x93, 0xde, 0xc4, 0xb1, 0xca, 0x4a, 0x65, 0x34, 0x71, 0x7e, 0x35, 0xb1, 0x56, 0xba, 0x7f,
+ 0x2c, 0x41, 0xfb, 0x28, 0x7a, 0xce, 0xe8, 0x3c, 0xd1, 0xeb, 0xd8, 0x02, 0x38, 0x13, 0x43, 0x37,
+ 0xb7, 0x9a, 0x86, 0x44, 0x46, 0x62, 0x49, 0x4b, 0xb1, 0x9c, 0x4a, 0x59, 0x4e, 0x45, 0x89, 0xc5,
+ 0x4c, 0x5e, 0xb3, 0x88, 0x47, 0x50, 0x8b, 0x48, 0xca, 0x82, 0xa9, 0xd8, 0x61, 0x41, 0xac, 0x75,
+ 0x9d, 0x0e, 0x6c, 0x14, 0xba, 0xbf, 0x2d, 0x43, 0xc3, 0xa0, 0xfc, 0x46, 0x48, 0xff, 0x00, 0x5a,
+ 0x3e, 0x99, 0x79, 0xf3, 0x30, 0xcd, 0x4f, 0xa2, 0xa9, 0x31, 0x39, 0x8d, 0xfb, 0x50, 0x93, 0x73,
+ 0x32, 0xd3, 0xd8, 0xab, 0xfc, 0xfb, 0xdb, 0x6f, 0xb6, 0x4a, 0xd8, 0xa0, 0xe8, 0x11, 0xb4, 0x85,
+ 0xad, 0x4b, 0x17, 0x84, 0xb1, 0xc0, 0x27, 0x2a, 0xea, 0x8c, 0x5a, 0x4b, 0xc8, 0x0e, 0xb5, 0x08,
+ 0x3d, 0x86, 0xaa, 0x34, 0xe3, 0x76, 0x45, 0x4e, 0xfc, 0x6e, 0x36, 0xf1, 0x1c, 0x71, 0x58, 0x2b,
+ 0xe5, 0x17, 0x5a, 0x7d, 0xc3, 0x42, 0xd1, 0x3d, 0xa8, 0x47, 0xde, 0xa5, 0xcb, 0x5f, 0x92, 0x0b,
+ 0x19, 0xad, 0x6d, 0x5c, 0x8b, 0xbc, 0xcb, 0xf1, 0x4b, 0x72, 0xd1, 0xfd, 0x7b, 0x09, 0x2a, 0xc3,
+ 0xc8, 0x3b, 0x23, 0xdf, 0x19, 0x59, 0x36, 0xd4, 0x16, 0x84, 0xf1, 0x80, 0xc6, 0xe6, 0x68, 0xea,
+ 0xa1, 0xd0, 0x3e, 0xf7, 0xf8, 0xb9, 0x5c, 0x77, 0x03, 0xcb, 0xdf, 0xe8, 0x03, 0xb0, 0x82, 0x98,
+ 0xa7, 0x5e, 0x18, 0xba, 0x22, 0xe2, 0x45, 0x66, 0x92, 0x0b, 0x6e, 0xe0, 0x35, 0x8d, 0x0f, 0x34,
+ 0x2c, 0xf2, 0x45, 0xc0, 0x5d, 0x6f, 0x9a, 0x06, 0x0b, 0x22, 0xf3, 0x45, 0x1d, 0xd7, 0x03, 0xde,
+ 0x93, 0x63, 0xc1, 0x7c, 0xc0, 0x5d, 0x91, 0xb9, 0x82, 0x34, 0x25, 0xbe, 0x5d, 0x95, 0xf2, 0x66,
+ 0xc0, 0xfb, 0x06, 0x12, 0x2b, 0x0a, 0xb8, 0xbb, 0xf0, 0xc2, 0xc0, 0xd7, 0xe7, 0xaf, 0x16, 0xf0,
+ 0x13, 0x31, 0xec, 0x3e, 0x86, 0xaa, 0x5c, 0x10, 0x47, 0x0f, 0xa1, 0x12, 0x88, 0x5f, 0xfa, 0x88,
+ 0xb5, 0x0d, 0x41, 0x52, 0x8c, 0x95, 0xac, 0xfb, 0xaf, 0x1a, 0xb4, 0x25, 0x30, 0xa0, 0x17, 0x71,
+ 0x48, 0x3d, 0xff, 0x46, 0x20, 0x18, 0x62, 0xca, 0x39, 0x62, 0x2c, 0x58, 0x99, 0xb3, 0x50, 0xaf,
+ 0x5e, 0xfc, 0x14, 0xc8, 0x94, 0x4d, 0xf5, 0xa9, 0x11, 0x3f, 0xd1, 0x21, 0x74, 0x7c, 0xed, 0xd3,
+ 0xe5, 0xa9, 0xc8, 0x14, 0x15, 0x79, 0x40, 0xb7, 0x0b, 0xf3, 0x30, 0x9f, 0x2d, 0x8e, 0xc6, 0x42,
+ 0x1f, 0xb7, 0xfd, 0xfc, 0x10, 0x3d, 0x84, 0xb6, 0x9c, 0xb3, 0x6b, 0xf6, 0xa4, 0x2a, 0x3f, 0xdf,
+ 0x92, 0xe0, 0x89, 0xde, 0x98, 0x0f, 0xc0, 0x32, 0x56, 0xc4, 0x77, 0x4f, 0xaf, 0x44, 0xae, 0x53,
+ 0x7b, 0xbe, 0x96, 0xe1, 0x7b, 0x02, 0x46, 0x2f, 0xa0, 0xca, 0x88, 0xc7, 0x69, 0x6c, 0xd7, 0xe5,
+ 0xc4, 0x9e, 0xfc, 0x0f, 0x13, 0xdb, 0xf7, 0x82, 0x70, 0xce, 0x08, 0x96, 0x76, 0x58, 0xdb, 0xa3,
+ 0x1f, 0xc1, 0x9a, 0xe7, 0xfb, 0x41, 0x1a, 0xd0, 0xd8, 0x0b, 0xdd, 0x20, 0x9e, 0x51, 0xbb, 0x21,
+ 0xe7, 0xd6, 0xc9, 0xe0, 0x61, 0x3c, 0xa3, 0x2a, 0xc7, 0x2c, 0x88, 0x3b, 0x95, 0x11, 0x6a, 0x83,
+ 0xdc, 0x3a, 0x10, 0x90, 0xce, 0x0b, 0x9b, 0xd0, 0x08, 0xa9, 0x48, 0xb1, 0x7e, 0xc0, 0xec, 0xa6,
+ 0x2a, 0x24, 0x12, 0x18, 0x04, 0x0c, 0x0d, 0xa1, 0xa9, 0x08, 0x50, 0x74, 0xb6, 0xde, 0x48, 0xa7,
+ 0x0c, 0x28, 0x2f, 0x25, 0x8a, 0x4e, 0x90, 0xc6, 0x8a, 0xcb, 0x4d, 0x68, 0xcc, 0x82, 0x90, 0xb8,
+ 0x3c, 0xf8, 0x92, 0xd8, 0x6d, 0xc9, 0x4f, 0x5d, 0x00, 0xe3, 0xe0, 0x4b, 0xd2, 0xfd, 0xba, 0x04,
+ 0xe8, 0xe6, 0x76, 0xa0, 0x75, 0xb0, 0x06, 0x87, 0x5f, 0x8c, 0x0e, 0x0e, 0x7b, 0x03, 0xf7, 0x78,
+ 0xf4, 0xf3, 0xd1, 0xe1, 0x17, 0x23, 0xeb, 0x16, 0x7a, 0x07, 0xd0, 0x12, 0x1d, 0x1f, 0xf7, 0xfb,
+ 0x8e, 0x33, 0x70, 0x06, 0x56, 0xa9, 0x80, 0x63, 0xe7, 0x97, 0xc7, 0xce, 0x78, 0xe2, 0x0c, 0xac,
+ 0x72, 0xc1, 0xcb, 0x78, 0xd2, 0xc3, 0x02, 0x5d, 0x41, 0x77, 0x60, 0x6d, 0x89, 0xee, 0xf7, 0x86,
+ 0x07, 0xce, 0xc0, 0x5a, 0x45, 0x36, 0xac, 0xe7, 0x3e, 0x38, 0x3e, 0x3e, 0x3a, 0x3a, 0x94, 0xea,
+ 0x95, 0x82, 0xf3, 0x7e, 0x6f, 0xd4, 0x77, 0x0e, 0x84, 0x45, 0xb5, 0xfb, 0xfb, 0x12, 0x6c, 0x7c,
+ 0xff, 0x7e, 0xa1, 0x16, 0xd4, 0x47, 0x87, 0xae, 0x83, 0xf1, 0xa1, 0x48, 0xdc, 0x6b, 0xd0, 0x1c,
+ 0x8e, 0x4e, 0x7a, 0x07, 0xc3, 0x81, 0x7b, 0x8c, 0x0f, 0xac, 0x92, 0x00, 0x06, 0xce, 0xc9, 0xb0,
+ 0xef, 0xb8, 0x7b, 0xc7, 0xe3, 0x5f, 0x5b, 0x65, 0xf1, 0x99, 0xe1, 0x68, 0x7c, 0xbc, 0xbf, 0x3f,
+ 0xec, 0x0f, 0x9d, 0xd1, 0xc4, 0x1d, 0x1f, 0xf5, 0xfa, 0x8e, 0xb5, 0x82, 0x6e, 0x43, 0x5b, 0x13,
+ 0xa0, 0x9d, 0xad, 0xa2, 0x36, 0x34, 0xb2, 0x89, 0x54, 0xba, 0x7f, 0x30, 0x14, 0x16, 0xb6, 0x40,
+ 0x18, 0x0e, 0x7f, 0xd1, 0x7b, 0xee, 0xe4, 0xf8, 0x43, 0xd0, 0x51, 0xd0, 0x70, 0xd4, 0xeb, 0x4f,
+ 0x86, 0x27, 0xa2, 0x8e, 0xac, 0x83, 0xa5, 0x30, 0x89, 0xf4, 0x26, 0xc3, 0xd1, 0x73, 0xab, 0x8c,
+ 0x2c, 0x68, 0xe5, 0x50, 0x47, 0xb1, 0xa6, 0x10, 0xec, 0x9c, 0x38, 0x58, 0xaa, 0xad, 0x66, 0x0e,
+ 0x15, 0x28, 0xa7, 0xf3, 0x39, 0x74, 0x0a, 0xb4, 0x70, 0xf4, 0xa1, 0xa9, 0xbf, 0xe5, 0x62, 0xb6,
+ 0x2d, 0xa8, 0x99, 0x12, 0xfc, 0x75, 0x05, 0x56, 0x8f, 0x28, 0x4b, 0xd1, 0xbb, 0x50, 0x4b, 0x28,
+ 0x4b, 0xdd, 0x98, 0xca, 0x04, 0xd1, 0xc6, 0x55, 0x31, 0x1c, 0x51, 0xb4, 0x0e, 0x95, 0xd0, 0x3b,
+ 0x25, 0xa1, 0xce, 0x12, 0x6a, 0x80, 0x3e, 0xd0, 0x95, 0x79, 0x45, 0x46, 0x6a, 0x96, 0xd1, 0x29,
+ 0x4b, 0xe5, 0x9f, 0x5c, 0x5d, 0xfe, 0x29, 0x34, 0x3d, 0x3f, 0x0a, 0xe2, 0x42, 0xaa, 0xb0, 0x77,
+ 0x74, 0xff, 0xd6, 0x13, 0x22, 0x49, 0xe1, 0x8e, 0x6c, 0x1f, 0x30, 0x78, 0x4b, 0x44, 0x98, 0xd2,
+ 0x84, 0x30, 0x69, 0x39, 0xe7, 0x32, 0x2b, 0xe4, 0x4c, 0x0f, 0x13, 0xc2, 0xc6, 0x52, 0x62, 0x4c,
+ 0xe9, 0x12, 0x11, 0xc7, 0x40, 0x75, 0xa0, 0xae, 0x4e, 0xa4, 0x0d, 0x5c, 0x57, 0xc0, 0xd0, 0x17,
+ 0x14, 0x25, 0x84, 0x30, 0x6e, 0xd7, 0xaf, 0x15, 0x24, 0x39, 0x7d, 0x42, 0x98, 0xf8, 0x81, 0x95,
+ 0x8e, 0xa8, 0xd8, 0xec, 0xd2, 0x4d, 0xbc, 0xe9, 0x4b, 0x92, 0x72, 0x79, 0xfa, 0xab, 0xb8, 0xc1,
+ 0x2e, 0x8f, 0x14, 0x20, 0x12, 0x36, 0xbb, 0xd4, 0xe9, 0x08, 0xa4, 0xb0, 0xc6, 0x2e, 0x55, 0x1a,
+ 0xda, 0x84, 0x06, 0xbb, 0x74, 0x09, 0x63, 0x94, 0x71, 0x79, 0xe4, 0xab, 0xb8, 0xce, 0x2e, 0x1d,
+ 0x39, 0x16, 0x6e, 0xd3, 0xcc, 0x6d, 0x4b, 0xb9, 0x4d, 0xf3, 0x6e, 0x53, 0xe3, 0xb6, 0xad, 0xdc,
+ 0xa6, 0x99, 0xdb, 0x74, 0xe9, 0xb6, 0xa3, 0xdc, 0xa6, 0xc6, 0xed, 0x13, 0xa8, 0xd3, 0x59, 0xe2,
+ 0x8a, 0xcd, 0xb3, 0xd7, 0x1e, 0x94, 0xe4, 0xea, 0xf2, 0x4d, 0xaf, 0x11, 0xe2, 0x1a, 0x9d, 0x25,
+ 0x62, 0x99, 0x1b, 0xcf, 0xa0, 0x6e, 0x96, 0x5c, 0x64, 0xad, 0x74, 0x8d, 0xb5, 0x5c, 0x88, 0x94,
+ 0xf3, 0x21, 0xd2, 0xe5, 0x50, 0x37, 0x7b, 0x2e, 0xba, 0xa3, 0xec, 0x04, 0x58, 0xd0, 0x72, 0x26,
+ 0x2f, 0x1c, 0x3c, 0x72, 0x26, 0xee, 0x68, 0x34, 0xb4, 0x4a, 0x05, 0xe4, 0x78, 0x34, 0x54, 0xed,
+ 0xd4, 0xd1, 0xe1, 0xc8, 0x3d, 0x3c, 0x98, 0x58, 0x2b, 0xcb, 0xc1, 0xe8, 0x58, 0x1d, 0xbc, 0x13,
+ 0x47, 0x28, 0x0a, 0x59, 0x25, 0x37, 0x1c, 0x1d, 0x5b, 0xd5, 0xee, 0x87, 0x50, 0x11, 0x1f, 0xe5,
+ 0xa8, 0x5b, 0xec, 0x37, 0x5b, 0xf9, 0xcd, 0x34, 0x61, 0xfe, 0xb7, 0x92, 0xe9, 0x51, 0x97, 0x81,
+ 0x95, 0x8f, 0xc9, 0xd2, 0xff, 0x1f, 0x93, 0xe5, 0xb7, 0x88, 0xc9, 0x3d, 0xe8, 0x4c, 0x69, 0x1c,
+ 0x8b, 0x7e, 0x5b, 0x5b, 0xab, 0xe3, 0xb3, 0x69, 0xac, 0xfb, 0x4a, 0x5a, 0x70, 0xd0, 0x9e, 0xe6,
+ 0xc1, 0x6e, 0x0a, 0x28, 0xb7, 0x10, 0xde, 0x3f, 0xf7, 0xe2, 0x33, 0x82, 0x76, 0xa1, 0x9e, 0x30,
+ 0xb2, 0x08, 0xe8, 0x9c, 0xcb, 0xc5, 0x34, 0x9f, 0xde, 0x29, 0xb6, 0xdd, 0xaa, 0x4e, 0x2c, 0x95,
+ 0xd0, 0x63, 0xa8, 0x4d, 0xe7, 0x8c, 0x91, 0x38, 0x95, 0x2b, 0xf8, 0x1e, 0x7d, 0xa3, 0xd3, 0xfd,
+ 0x6b, 0xd9, 0x7c, 0x56, 0xf5, 0xfc, 0xfb, 0x41, 0x28, 0xae, 0x31, 0xaf, 0x0d, 0x97, 0x1e, 0x74,
+ 0x66, 0x8c, 0x46, 0xee, 0xf2, 0x1e, 0xa7, 0xbf, 0xb4, 0xb1, 0xa3, 0x6e, 0x7a, 0x3b, 0xe6, 0xa6,
+ 0xb7, 0x33, 0x31, 0x1a, 0xb8, 0x2d, 0x2c, 0x96, 0x43, 0xf4, 0x39, 0xb4, 0x52, 0x9a, 0x73, 0xb0,
+ 0xf2, 0x46, 0x07, 0xcd, 0x94, 0x66, 0xe6, 0xef, 0x41, 0x43, 0xb0, 0xef, 0x89, 0x32, 0xad, 0xfb,
+ 0xb5, 0x0c, 0x10, 0xcd, 0xd8, 0x72, 0x90, 0x5d, 0xee, 0x9a, 0x4b, 0x6c, 0x28, 0x3b, 0x65, 0x46,
+ 0x5e, 0xcd, 0x09, 0x4f, 0x65, 0xc7, 0xa1, 0xdb, 0x92, 0xe6, 0x12, 0xdb, 0xbb, 0x12, 0xcd, 0xad,
+ 0xde, 0xcb, 0x9a, 0x3e, 0x6d, 0xb9, 0x48, 0x90, 0x7e, 0x30, 0xe1, 0x09, 0xd6, 0x4a, 0xdd, 0x7f,
+ 0x94, 0xa1, 0x95, 0x27, 0xf2, 0xf5, 0x14, 0x7e, 0x06, 0x8d, 0xb7, 0x61, 0x2f, 0x53, 0x2e, 0x2e,
+ 0x7d, 0xe5, 0x4d, 0x4b, 0x5f, 0x7d, 0xf3, 0xd2, 0x2b, 0x37, 0x97, 0xfe, 0x39, 0xb4, 0xe4, 0xf1,
+ 0x71, 0xa7, 0x32, 0x08, 0x25, 0x3b, 0x62, 0x82, 0x37, 0x03, 0x49, 0x87, 0x29, 0x6e, 0x4a, 0x7d,
+ 0x1d, 0xb3, 0x6f, 0xc7, 0x1c, 0x7a, 0x00, 0x4d, 0x9f, 0xf0, 0x29, 0x0b, 0x12, 0xb9, 0xa6, 0xba,
+ 0x9a, 0x4f, 0x0e, 0xea, 0xfe, 0x0c, 0xda, 0x79, 0x6a, 0xc5, 0x4d, 0xa2, 0x90, 0x19, 0xd6, 0x8b,
+ 0x33, 0x53, 0x5a, 0x26, 0x43, 0xfc, 0x07, 0xa0, 0xaa, 0x70, 0x74, 0x37, 0x6b, 0x93, 0xcd, 0x85,
+ 0x46, 0x74, 0xcb, 0xf7, 0x72, 0x97, 0xd1, 0xa5, 0x40, 0x95, 0xb8, 0x7b, 0xb0, 0xca, 0x28, 0x4d,
+ 0x8b, 0x77, 0x25, 0x09, 0xa1, 0x2e, 0x34, 0x12, 0x4f, 0x9c, 0xa1, 0x25, 0xcf, 0x46, 0x5e, 0x57,
+ 0xb8, 0x2c, 0x47, 0x1d, 0xad, 0x63, 0xf2, 0xeb, 0xba, 0xc8, 0xaf, 0xcb, 0xdb, 0x94, 0x12, 0x1e,
+ 0xa9, 0x7a, 0xbc, 0x05, 0x55, 0xf5, 0xc2, 0xa0, 0xb6, 0xc4, 0x28, 0x69, 0x10, 0x6d, 0x42, 0x25,
+ 0xa2, 0x3e, 0x09, 0x55, 0xac, 0x1a, 0xa9, 0xc2, 0xd0, 0x13, 0xb0, 0xce, 0x3d, 0xe6, 0x5f, 0x78,
+ 0x2c, 0x6b, 0xb5, 0x6b, 0x79, 0xbd, 0x35, 0x23, 0x36, 0x4d, 0xf7, 0x13, 0xb0, 0x66, 0x01, 0x8b,
+ 0x0a, 0x16, 0xf5, 0x82, 0x85, 0x11, 0x1b, 0x8b, 0xc7, 0x50, 0x95, 0xdd, 0xa8, 0x2a, 0x95, 0xcd,
+ 0xa7, 0x9d, 0x42, 0xff, 0xc1, 0x97, 0xf3, 0x55, 0x4a, 0xe2, 0x22, 0xc9, 0x09, 0x0b, 0xbc, 0xd0,
+ 0x8d, 0xe7, 0xd1, 0x29, 0x61, 0xb2, 0x86, 0x2e, 0xbd, 0xb7, 0x94, 0x6c, 0x24, 0x45, 0x82, 0xcb,
+ 0xec, 0x2d, 0xc6, 0x2e, 0x70, 0xb9, 0x7c, 0x92, 0xb9, 0x9f, 0xbd, 0xb9, 0x34, 0xf3, 0x1a, 0xcb,
+ 0xa7, 0x17, 0x04, 0xab, 0x8b, 0xd0, 0x8b, 0x65, 0xc5, 0x6d, 0x63, 0xf9, 0x5b, 0x34, 0xef, 0x91,
+ 0x37, 0x75, 0x3d, 0xdf, 0x67, 0x84, 0xab, 0x7a, 0xdb, 0xc0, 0x10, 0x79, 0xd3, 0x9e, 0x42, 0xd0,
+ 0x43, 0x68, 0x05, 0xc9, 0xe2, 0xe3, 0xa5, 0x86, 0xa8, 0xba, 0x8d, 0x17, 0xb7, 0x70, 0x53, 0xa0,
+ 0x45, 0xa5, 0x4f, 0x96, 0x4a, 0x6b, 0x39, 0xa5, 0x4f, 0x8c, 0xd2, 0xfb, 0xd0, 0x3e, 0xa7, 0x3c,
+ 0x75, 0xbd, 0xd8, 0x57, 0x45, 0xfa, 0xae, 0xd1, 0x12, 0x70, 0x2f, 0xf6, 0x65, 0x1d, 0xde, 0x02,
+ 0x20, 0x97, 0x29, 0xf3, 0x5c, 0x8f, 0x9d, 0x71, 0xfb, 0x5d, 0x75, 0x7e, 0x25, 0xd2, 0x63, 0x67,
+ 0x1c, 0x3d, 0x83, 0x76, 0xc2, 0xe8, 0xe5, 0xd5, 0xf2, 0x53, 0x77, 0x24, 0xd5, 0x9b, 0xc5, 0x00,
+ 0xdf, 0x39, 0x12, 0x3a, 0xfa, 0xc3, 0xb8, 0x95, 0xe4, 0x46, 0xd7, 0x0b, 0xa0, 0xf5, 0x16, 0x05,
+ 0xf0, 0x59, 0xb1, 0x00, 0xde, 0x7e, 0x7d, 0x01, 0x34, 0xfc, 0xe7, 0xeb, 0xe0, 0xf0, 0x46, 0x1d,
+ 0x44, 0x6f, 0xac, 0x83, 0xc6, 0x4f, 0xb1, 0x1c, 0xa2, 0x1f, 0x43, 0x75, 0x3a, 0xe7, 0x29, 0x8d,
+ 0xec, 0x67, 0x92, 0x82, 0xf5, 0x1b, 0xe9, 0xb1, 0x17, 0x5f, 0x61, 0xad, 0x83, 0x3e, 0x03, 0x48,
+ 0x22, 0x7d, 0x45, 0xe3, 0xf6, 0x57, 0xaa, 0x52, 0xde, 0xbe, 0xfe, 0xbc, 0xc0, 0xf7, 0x2a, 0xff,
+ 0xfc, 0xf6, 0x9b, 0xad, 0x5b, 0xb8, 0x91, 0x2c, 0xdf, 0x50, 0x0e, 0x60, 0x4d, 0x5d, 0xd0, 0xcc,
+ 0x55, 0x93, 0xdb, 0xbf, 0x2b, 0xbd, 0xa6, 0xbf, 0xde, 0x6b, 0x0a, 0x17, 0x55, 0x75, 0xc1, 0xc6,
+ 0x9d, 0xa0, 0xd0, 0xa2, 0x6f, 0x7c, 0x55, 0x86, 0x56, 0x7e, 0x73, 0x5e, 0x5f, 0x05, 0xee, 0x8b,
+ 0xcc, 0x27, 0x85, 0x59, 0xfe, 0xc1, 0xe0, 0x67, 0x6f, 0x96, 0x5b, 0x00, 0x22, 0x05, 0xc7, 0x24,
+ 0x14, 0xe6, 0x2b, 0xea, 0x4d, 0x49, 0x23, 0x43, 0x1f, 0x6d, 0x83, 0x65, 0xc4, 0xea, 0xe9, 0x49,
+ 0x67, 0xa2, 0x36, 0xee, 0x68, 0x5c, 0x3e, 0xc3, 0x0c, 0x7d, 0xb4, 0x0b, 0x77, 0x8c, 0x66, 0x4a,
+ 0x58, 0x14, 0xc4, 0xaa, 0x7e, 0xa8, 0xdc, 0x8f, 0xb4, 0x68, 0x92, 0x49, 0xd0, 0x5d, 0xa8, 0xd2,
+ 0x78, 0x2e, 0x1c, 0x56, 0xa5, 0xc3, 0x0a, 0x8d, 0xe7, 0x43, 0x1f, 0xbd, 0x0f, 0x1d, 0x01, 0x73,
+ 0xc2, 0xb9, 0xae, 0x30, 0xea, 0xa2, 0xde, 0xa2, 0xf1, 0x7c, 0xac, 0xc0, 0xa1, 0xbf, 0xd7, 0x10,
+ 0x47, 0x55, 0xae, 0xbf, 0xbb, 0x0b, 0x35, 0x15, 0xb3, 0xe2, 0x80, 0x14, 0x92, 0x76, 0xa7, 0x18,
+ 0xd3, 0x26, 0x5d, 0xff, 0x69, 0x05, 0xd6, 0xc7, 0x41, 0x34, 0x0f, 0xbd, 0x94, 0xf4, 0x42, 0x8f,
+ 0x45, 0x58, 0x15, 0xa6, 0x1b, 0x6f, 0x1c, 0xef, 0x41, 0x23, 0x88, 0xfd, 0x60, 0xea, 0xa5, 0xd4,
+ 0xbc, 0xc2, 0x66, 0x80, 0x68, 0x69, 0x83, 0x38, 0x9d, 0x19, 0xda, 0x1a, 0xb8, 0x2a, 0x86, 0x6a,
+ 0x05, 0x32, 0x17, 0x0b, 0xc6, 0xd5, 0x4b, 0x9e, 0xaa, 0x91, 0xad, 0x44, 0x37, 0xba, 0xf2, 0x31,
+ 0xaf, 0x0b, 0x6d, 0xb1, 0xce, 0x6c, 0xeb, 0x4c, 0x0f, 0x11, 0xcf, 0x07, 0x66, 0xf7, 0x3e, 0x82,
+ 0x77, 0x82, 0x58, 0xa4, 0x4e, 0xe2, 0x9e, 0x06, 0xa9, 0x6a, 0xdb, 0x5d, 0x26, 0x0e, 0x9d, 0xa0,
+ 0xac, 0x82, 0xef, 0x68, 0xe9, 0x5e, 0x90, 0xca, 0x16, 0x1e, 0xab, 0x0b, 0x79, 0xc5, 0x67, 0xc1,
+ 0x2c, 0x95, 0xbc, 0x55, 0xb0, 0x1a, 0x88, 0xd9, 0xc6, 0xe4, 0xc2, 0x25, 0xaf, 0x7c, 0x99, 0x83,
+ 0x2b, 0xb8, 0x1a, 0x93, 0x0b, 0xe7, 0x95, 0x8f, 0x1e, 0xc1, 0x6d, 0xc5, 0x77, 0x3e, 0x91, 0xaa,
+ 0x77, 0x8a, 0x35, 0x49, 0x79, 0x2e, 0x89, 0xbe, 0xc8, 0x77, 0x06, 0x20, 0xcf, 0xdd, 0x23, 0xc3,
+ 0xf1, 0x77, 0x31, 0x9a, 0x95, 0x63, 0x79, 0xa7, 0xcb, 0x8c, 0xbb, 0x3f, 0x84, 0x76, 0x41, 0x86,
+ 0x1a, 0x50, 0xc1, 0xbd, 0xe1, 0xd8, 0x51, 0x4f, 0xa7, 0xfd, 0x03, 0xa7, 0x87, 0xad, 0xd2, 0xde,
+ 0x18, 0xee, 0x50, 0x76, 0x26, 0x2f, 0x21, 0x53, 0xca, 0x7c, 0xfd, 0xad, 0xbd, 0xd6, 0x89, 0xfc,
+ 0xaf, 0x78, 0xfa, 0xcd, 0xce, 0x59, 0x90, 0x9e, 0xcf, 0x4f, 0x45, 0x02, 0xd8, 0x35, 0x9a, 0xbb,
+ 0x4a, 0xf3, 0xb1, 0x7e, 0xba, 0x5f, 0x7c, 0xbc, 0x7b, 0x46, 0x35, 0x76, 0x5a, 0x95, 0xe0, 0x47,
+ 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x30, 0x2a, 0x80, 0x58, 0x75, 0x18, 0x00, 0x00,
}
diff --git a/vendor/github.com/opencord/voltha-protos/v4/go/voltha/voltha.pb.go b/vendor/github.com/opencord/voltha-protos/v4/go/voltha/voltha.pb.go
index 2ec3452..e34db79 100644
--- a/vendor/github.com/opencord/voltha-protos/v4/go/voltha/voltha.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v4/go/voltha/voltha.pb.go
@@ -124,6 +124,7 @@
const OperationResp_OPERATION_SUCCESS = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_SUCCESS)
const OperationResp_OPERATION_FAILURE = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_FAILURE)
const OperationResp_OPERATION_UNSUPPORTED = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_UNSUPPORTED)
+const OperationResp_OPERATION_IN_PROGRESS = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_IN_PROGRESS)
// ValueType_Type from public import voltha_protos/common.proto
type ValueType_Type = common.ValueType_Type
@@ -2197,171 +2198,173 @@
func init() { proto.RegisterFile("voltha_protos/voltha.proto", fileDescriptor_e084f1a60ce7016c) }
var fileDescriptor_e084f1a60ce7016c = []byte{
- // 2613 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x6f, 0x1b, 0xc7,
- 0xf5, 0x17, 0x75, 0xd7, 0x21, 0x25, 0x91, 0x43, 0x5d, 0x68, 0x4a, 0xb2, 0xad, 0xc9, 0x4d, 0x51,
- 0x62, 0xd2, 0xb1, 0x9c, 0x20, 0xff, 0xf8, 0x1f, 0x34, 0xba, 0x59, 0x61, 0x6d, 0x99, 0xec, 0x52,
- 0xb2, 0xd3, 0x36, 0x06, 0xb1, 0xe4, 0x0e, 0xa9, 0x85, 0x97, 0x5c, 0x76, 0x77, 0x28, 0x5b, 0x30,
- 0x82, 0x02, 0xe9, 0x25, 0x7d, 0xcf, 0x7b, 0x9f, 0x5a, 0x14, 0xe8, 0x77, 0xc9, 0x43, 0xd1, 0xa7,
- 0xbe, 0x16, 0x7d, 0xe8, 0x27, 0xc8, 0x73, 0x31, 0x67, 0x66, 0xc9, 0x5d, 0xee, 0xae, 0x24, 0xa6,
- 0x01, 0xfa, 0x24, 0xed, 0x39, 0x67, 0x7e, 0xe7, 0x36, 0x73, 0xe6, 0xec, 0x59, 0x42, 0xfe, 0xdc,
- 0xb6, 0xf8, 0x99, 0x5e, 0xeb, 0x3a, 0x36, 0xb7, 0xdd, 0xa2, 0x7c, 0x2a, 0xe0, 0x13, 0x99, 0x96,
- 0x4f, 0xf9, 0xf5, 0x96, 0x6d, 0xb7, 0x2c, 0x56, 0xd4, 0xbb, 0x66, 0x51, 0xef, 0x74, 0x6c, 0xae,
- 0x73, 0xd3, 0xee, 0xb8, 0x52, 0x2a, 0xbf, 0xa6, 0xb8, 0xf8, 0x54, 0xef, 0x35, 0x8b, 0xac, 0xdd,
- 0xe5, 0x17, 0x8a, 0x99, 0x0b, 0xc2, 0xb7, 0x19, 0x57, 0xe0, 0xf9, 0x21, 0xc5, 0x0d, 0xbb, 0xdd,
- 0xb6, 0x3b, 0xd1, 0xbc, 0x33, 0xa6, 0x5b, 0xfc, 0x4c, 0xf1, 0x68, 0x90, 0x67, 0xd9, 0x2d, 0xb3,
- 0xa1, 0x5b, 0x35, 0x83, 0x9d, 0x9b, 0x0d, 0x16, 0xbd, 0x3e, 0xc0, 0x5b, 0x0b, 0xf2, 0x74, 0x43,
- 0xef, 0x72, 0xe6, 0x28, 0xe6, 0xad, 0x20, 0xd3, 0xee, 0xb2, 0x4e, 0xd3, 0xb2, 0x5f, 0xd6, 0x3e,
- 0xd8, 0x89, 0x11, 0x68, 0x37, 0xcc, 0x5a, 0xdb, 0xac, 0xd7, 0x8c, 0xba, 0x12, 0xd8, 0x8c, 0x10,
- 0xd0, 0x2d, 0xdd, 0x69, 0x0f, 0x44, 0x6e, 0x06, 0x45, 0xd8, 0x2b, 0x5e, 0x6b, 0xd8, 0x9d, 0xa6,
- 0xd9, 0x92, 0x7c, 0xfa, 0xa7, 0x04, 0x24, 0x0f, 0xd0, 0xe4, 0x23, 0xc7, 0xee, 0x75, 0xc9, 0x32,
- 0x8c, 0x9b, 0x46, 0x2e, 0x71, 0x3b, 0xb1, 0x35, 0xb7, 0x37, 0xf5, 0xef, 0xef, 0xbf, 0xdb, 0x48,
- 0x68, 0xe3, 0xa6, 0x41, 0x4a, 0xb0, 0x18, 0x74, 0xde, 0xcd, 0x8d, 0xdf, 0x9e, 0xd8, 0x4a, 0xde,
- 0x5b, 0x2e, 0xa8, 0x2c, 0x3e, 0x96, 0x6c, 0x89, 0xb5, 0x37, 0xf7, 0xcf, 0xef, 0xbf, 0xdb, 0x98,
- 0x14, 0x58, 0xda, 0x82, 0xe5, 0xe7, 0xb8, 0x64, 0x07, 0x66, 0x3c, 0x88, 0x09, 0x84, 0x58, 0xf0,
- 0x20, 0xc2, 0x6b, 0x3d, 0x49, 0xfa, 0x7f, 0x90, 0xf2, 0x59, 0xe9, 0x92, 0x77, 0x61, 0xca, 0xe4,
- 0xac, 0xed, 0xe6, 0x12, 0x08, 0x91, 0x0d, 0x42, 0xa0, 0x90, 0x26, 0x25, 0xe8, 0x1f, 0x13, 0x40,
- 0x0e, 0xcf, 0x59, 0x87, 0x3f, 0x34, 0x2d, 0xce, 0x1c, 0xad, 0x67, 0xb1, 0x47, 0xec, 0x82, 0x7e,
- 0x93, 0x80, 0xec, 0x10, 0xf9, 0xe4, 0xa2, 0xcb, 0xc8, 0x02, 0x40, 0x13, 0x29, 0x35, 0xdd, 0xb2,
- 0xd2, 0x63, 0x24, 0x05, 0xb3, 0x0d, 0x9d, 0xb3, 0x96, 0xed, 0x5c, 0xa4, 0x13, 0x24, 0x0d, 0x29,
- 0xb7, 0x57, 0xaf, 0xf5, 0x29, 0xe3, 0x84, 0xc0, 0xc2, 0x8b, 0xae, 0x59, 0x63, 0x02, 0xaa, 0xc6,
- 0x2f, 0xba, 0x2c, 0x3d, 0x41, 0x96, 0x21, 0x23, 0x83, 0xec, 0x27, 0x4f, 0x0a, 0xb2, 0xf4, 0xc7,
- 0x4f, 0x9e, 0xa2, 0x26, 0x2c, 0x0e, 0x19, 0x42, 0x3e, 0x83, 0x89, 0x17, 0xec, 0x02, 0xd3, 0xb0,
- 0x70, 0xaf, 0xe0, 0x39, 0x17, 0xf6, 0xa2, 0x10, 0xe1, 0x81, 0x26, 0x96, 0x92, 0x25, 0x98, 0x3a,
- 0xd7, 0xad, 0x1e, 0xcb, 0x8d, 0x8b, 0x54, 0x6a, 0xf2, 0x81, 0xfe, 0x25, 0x01, 0x49, 0xdf, 0x92,
- 0xb8, 0x6c, 0xaf, 0xc0, 0x34, 0xeb, 0xe8, 0x75, 0x4b, 0xae, 0x9e, 0xd5, 0xd4, 0x13, 0x59, 0x83,
- 0x39, 0xe5, 0x80, 0x69, 0xe4, 0x26, 0x10, 0x78, 0x56, 0x12, 0x4a, 0x06, 0xd9, 0x00, 0x18, 0xb8,
- 0x95, 0x9b, 0x44, 0xee, 0x1c, 0x52, 0x30, 0xae, 0x77, 0x60, 0xca, 0xe9, 0x59, 0xcc, 0xcd, 0x4d,
- 0x61, 0xc6, 0x56, 0x63, 0x9c, 0xd2, 0xa4, 0x14, 0xfd, 0x14, 0x52, 0x3e, 0x8e, 0x4b, 0xee, 0xc0,
- 0x8c, 0x4c, 0x4b, 0x28, 0xe5, 0x7e, 0x00, 0x4f, 0x86, 0xbe, 0x80, 0xd4, 0xbe, 0xed, 0xb0, 0x52,
- 0xc7, 0xe5, 0x7a, 0xa7, 0xc1, 0xc8, 0xdb, 0x90, 0x34, 0xd5, 0xff, 0xb5, 0x61, 0x8f, 0xc1, 0xe3,
- 0x94, 0x0c, 0xb2, 0x03, 0xd3, 0xb2, 0x00, 0xa0, 0xe7, 0xc9, 0x7b, 0x4b, 0x9e, 0x96, 0xcf, 0x91,
- 0x5a, 0xe5, 0x3a, 0xef, 0xb9, 0x7b, 0x53, 0x62, 0x87, 0x8e, 0x69, 0x4a, 0x94, 0x3e, 0x80, 0x79,
- 0xbf, 0x32, 0x97, 0x6c, 0x07, 0x77, 0x67, 0x1f, 0xc4, 0x2f, 0xe5, 0x6d, 0xcf, 0x0f, 0x61, 0xb1,
- 0xdc, 0x6e, 0x98, 0x27, 0xcc, 0xe5, 0x1a, 0xfb, 0x55, 0x8f, 0xb9, 0x9c, 0x2c, 0x0c, 0xb2, 0x82,
- 0xe9, 0x20, 0x30, 0xd9, 0xeb, 0x99, 0x86, 0x4a, 0x25, 0xfe, 0x4f, 0x7f, 0x0d, 0x29, 0xb9, 0xc4,
- 0xed, 0xda, 0x1d, 0x97, 0x91, 0x9f, 0xc0, 0xb4, 0xc3, 0xdc, 0x9e, 0xc5, 0xd5, 0xa6, 0x79, 0xc7,
- 0xd3, 0xe9, 0x97, 0x0a, 0x3c, 0x68, 0x28, 0xae, 0xa9, 0x65, 0xb4, 0x00, 0x24, 0xcc, 0x25, 0x49,
- 0x98, 0xa9, 0x9e, 0xee, 0xef, 0x1f, 0x56, 0xab, 0xe9, 0x31, 0xf1, 0xf0, 0x70, 0xb7, 0xf4, 0xf8,
- 0x54, 0x3b, 0x4c, 0x27, 0xe8, 0x73, 0x98, 0x7d, 0x2a, 0xf6, 0x54, 0x95, 0x85, 0x0d, 0xfe, 0x18,
- 0x52, 0xb2, 0x0c, 0xc9, 0x53, 0xa0, 0x62, 0x99, 0x2d, 0xa8, 0xca, 0xb3, 0x2b, 0x78, 0xfb, 0xf8,
- 0xff, 0xe7, 0x63, 0x5a, 0x52, 0x1f, 0x3c, 0xee, 0xcd, 0xa8, 0x6d, 0x4b, 0xff, 0x31, 0x09, 0xd3,
- 0x4f, 0xd1, 0x03, 0x72, 0x0b, 0x66, 0xce, 0x99, 0xe3, 0x9a, 0x76, 0x27, 0x98, 0x37, 0x8f, 0x4a,
- 0x3e, 0x82, 0x59, 0x55, 0x59, 0xbd, 0xaa, 0xb4, 0xe8, 0x79, 0xbf, 0x2b, 0xe9, 0xfe, 0x9a, 0xd2,
- 0x97, 0x8d, 0x2a, 0x6a, 0x13, 0xff, 0x7d, 0x51, 0x9b, 0xbc, 0x6e, 0x51, 0x23, 0x9f, 0x41, 0x4a,
- 0x1d, 0x27, 0x71, 0x64, 0xbc, 0x93, 0x41, 0x82, 0x2b, 0xc5, 0xe1, 0xf1, 0xaf, 0x4e, 0x1a, 0x7d,
- 0xb2, 0x4b, 0xf6, 0x61, 0x5e, 0x21, 0xb4, 0xb0, 0x2e, 0xe6, 0xa6, 0x63, 0xcb, 0xa1, 0x1f, 0x43,
- 0xa9, 0x55, 0xb5, 0x74, 0x1f, 0xe6, 0xe5, 0xc1, 0xf5, 0x0e, 0xd8, 0x4c, 0xec, 0x01, 0x0b, 0x80,
- 0x30, 0xff, 0xf9, 0xfc, 0x19, 0x64, 0x06, 0xf7, 0x93, 0xce, 0xf5, 0xba, 0xee, 0xb2, 0xdc, 0xba,
- 0x02, 0x12, 0x9c, 0xc2, 0xb1, 0x59, 0x97, 0xe6, 0x1c, 0xe8, 0x5c, 0xdf, 0x4b, 0x0b, 0xa0, 0xa4,
- 0xaf, 0x9e, 0x68, 0x8b, 0x42, 0x4a, 0x08, 0xa9, 0xd5, 0xe4, 0x19, 0x64, 0xfd, 0x37, 0x9a, 0x07,
- 0xba, 0xa1, 0x52, 0x84, 0xa0, 0xb8, 0x95, 0x2e, 0x85, 0x45, 0xb3, 0xa4, 0x98, 0x42, 0xa0, 0x7f,
- 0x4e, 0x40, 0xba, 0xca, 0xac, 0xe6, 0xf5, 0x0e, 0xd0, 0xb0, 0xa4, 0x9f, 0xe0, 0x3f, 0x40, 0x15,
- 0x58, 0x08, 0x72, 0xe2, 0x0f, 0x0f, 0xc9, 0xc0, 0xfc, 0x93, 0xf2, 0x49, 0xad, 0x7a, 0x5a, 0xa9,
- 0x94, 0xb5, 0x93, 0xc3, 0x83, 0xf4, 0xb8, 0x20, 0x9d, 0x3e, 0x79, 0xf4, 0xa4, 0xfc, 0xec, 0x49,
- 0xed, 0x50, 0xd3, 0xca, 0x5a, 0x7a, 0x82, 0x96, 0x21, 0x53, 0x6e, 0xee, 0xb6, 0x58, 0x87, 0x57,
- 0x7b, 0x75, 0xb7, 0xe1, 0x98, 0x75, 0xe6, 0x88, 0x32, 0x6b, 0x37, 0x75, 0x41, 0xec, 0x17, 0x32,
- 0x6d, 0x4e, 0x51, 0x4a, 0x86, 0x28, 0xd1, 0xea, 0xc6, 0xef, 0x17, 0x8c, 0x59, 0x49, 0x28, 0x19,
- 0xf4, 0x01, 0xc0, 0x31, 0x6b, 0xd7, 0x99, 0xe3, 0x9e, 0x99, 0x5d, 0x81, 0x84, 0xbb, 0xa6, 0xd6,
- 0xd1, 0xdb, 0xcc, 0x43, 0x42, 0xca, 0x13, 0xbd, 0xcd, 0xd4, 0xa1, 0x1e, 0xf7, 0x0e, 0x35, 0x3d,
- 0x84, 0xd4, 0x43, 0xcb, 0x7e, 0x79, 0xcc, 0xb8, 0x2e, 0x72, 0x41, 0x3e, 0x84, 0xe9, 0x36, 0xf3,
- 0x15, 0xe4, 0x8d, 0x82, 0xbf, 0x83, 0xb1, 0x9b, 0xdd, 0x1a, 0xb2, 0x55, 0x0d, 0xd0, 0x94, 0xf0,
- 0xbd, 0xbf, 0xdd, 0x85, 0x79, 0x79, 0xb0, 0xab, 0xcc, 0x11, 0x49, 0x22, 0xcf, 0x60, 0xfe, 0x88,
- 0x71, 0x9f, 0x61, 0x2b, 0x05, 0xd9, 0xe5, 0x15, 0xbc, 0x2e, 0xaf, 0x70, 0x28, 0xba, 0xbc, 0x7c,
- 0xff, 0x64, 0x0c, 0x64, 0x69, 0xfe, 0xeb, 0xbf, 0xff, 0xeb, 0xdb, 0xf1, 0x25, 0x42, 0xb0, 0x61,
- 0x3c, 0xff, 0xa0, 0xd8, 0x1e, 0xe0, 0x3c, 0x87, 0xf4, 0x69, 0xd7, 0xd0, 0x39, 0xf3, 0x61, 0x47,
- 0x60, 0xe4, 0x63, 0xf4, 0xd1, 0x0d, 0xc4, 0x5e, 0xa5, 0x11, 0xd8, 0x9f, 0x24, 0xb6, 0xc9, 0x01,
- 0xcc, 0x1d, 0x31, 0xae, 0x8a, 0x54, 0x9c, 0xcd, 0xfd, 0x3a, 0x20, 0xe5, 0xe8, 0x22, 0x62, 0xce,
- 0x91, 0x19, 0x85, 0x49, 0x9e, 0x43, 0xe6, 0xb1, 0xe9, 0xf2, 0xe0, 0x05, 0x12, 0x87, 0xb6, 0x1c,
- 0x75, 0x93, 0xb8, 0xf4, 0x06, 0x82, 0x66, 0x49, 0xc6, 0x33, 0xd4, 0xec, 0x23, 0x55, 0x61, 0xf1,
- 0x88, 0x05, 0xd0, 0x09, 0x14, 0x54, 0xff, 0x5b, 0x3a, 0xc8, 0x47, 0x5e, 0x4d, 0xf4, 0x26, 0xe2,
- 0xe5, 0xc8, 0x4a, 0x08, 0xaf, 0xf8, 0xda, 0x34, 0xbe, 0x22, 0x1a, 0xa4, 0x84, 0xcd, 0xbb, 0x5e,
- 0x21, 0x8d, 0x33, 0x37, 0x3d, 0x54, 0x86, 0x5d, 0x9a, 0x43, 0x64, 0x42, 0xd2, 0x1e, 0x72, 0xbf,
- 0x18, 0x33, 0x20, 0x02, 0xf3, 0x71, 0xb0, 0xae, 0xc6, 0x21, 0xaf, 0x44, 0x56, 0x68, 0x97, 0xde,
- 0x42, 0xfc, 0x1b, 0x64, 0xd5, 0xc3, 0x1f, 0x2a, 0xf0, 0xe4, 0x97, 0x90, 0x3e, 0x62, 0x41, 0x2d,
- 0x81, 0x80, 0x44, 0x97, 0x7e, 0xfa, 0x26, 0xe2, 0xde, 0x24, 0xeb, 0x31, 0xb8, 0x32, 0x2e, 0x4d,
- 0x58, 0x09, 0xf9, 0x50, 0xb1, 0x1d, 0xee, 0x46, 0xc7, 0x5c, 0xc9, 0xa1, 0x04, 0xdd, 0x46, 0x0d,
- 0x6f, 0x12, 0x7a, 0x99, 0x86, 0x62, 0x17, 0xd1, 0x5e, 0xc1, 0xd2, 0xb0, 0x13, 0x02, 0x84, 0x2c,
- 0x47, 0x20, 0x97, 0x8c, 0x7c, 0x36, 0x82, 0x4c, 0xef, 0xa3, 0xbe, 0x02, 0x79, 0xff, 0x6a, 0x7d,
- 0xc5, 0xd7, 0xe2, 0x4f, 0x4d, 0x78, 0xf8, 0xbb, 0x04, 0xac, 0x1e, 0x62, 0x33, 0x78, 0x6d, 0xed,
- 0x71, 0xa7, 0xeb, 0x01, 0x1a, 0xf0, 0x21, 0xdd, 0x19, 0xc5, 0x80, 0xa2, 0xea, 0x44, 0xbf, 0x49,
- 0x40, 0xee, 0xc0, 0x74, 0x7f, 0x14, 0x43, 0xfe, 0x1f, 0x0d, 0xf9, 0x88, 0xde, 0x1f, 0xc9, 0x10,
- 0x43, 0x6a, 0x27, 0x46, 0x44, 0xce, 0x45, 0x9d, 0x0c, 0xe6, 0x9c, 0x04, 0x8a, 0x23, 0xf2, 0xaf,
- 0x99, 0xf1, 0x26, 0x62, 0xfd, 0x26, 0x01, 0xeb, 0xb2, 0x96, 0x85, 0x14, 0x9d, 0xa0, 0x19, 0xeb,
- 0x21, 0x05, 0x48, 0x97, 0x6b, 0x62, 0x5d, 0xbf, 0x83, 0x26, 0xbc, 0x43, 0xaf, 0x61, 0x82, 0xa8,
- 0x78, 0xbf, 0x4d, 0xc0, 0x46, 0x84, 0x15, 0xc7, 0xa2, 0xb2, 0x4b, 0x33, 0xd6, 0x02, 0x66, 0x20,
- 0xe3, 0xd8, 0x36, 0xae, 0xb0, 0xa2, 0x80, 0x56, 0x6c, 0xd1, 0x37, 0x2e, 0xb5, 0x42, 0xde, 0x1f,
- 0xc2, 0x8c, 0x16, 0xac, 0x86, 0x42, 0x8e, 0xaa, 0x82, 0x31, 0xcf, 0x86, 0x6d, 0x71, 0xe9, 0x7b,
- 0xa8, 0xeb, 0x2d, 0x72, 0x1d, 0x5d, 0x84, 0xc3, 0x5a, 0x64, 0x6e, 0x55, 0xe3, 0xe4, 0x57, 0xb6,
- 0x1a, 0x8a, 0xbf, 0x14, 0xa2, 0x77, 0x51, 0xe1, 0x36, 0xd9, 0xba, 0x32, 0xc4, 0xaa, 0x87, 0x23,
- 0xdf, 0x26, 0x60, 0x33, 0x26, 0xd7, 0x88, 0x29, 0x23, 0xbd, 0x19, 0xad, 0xf0, 0x3a, 0x59, 0xdf,
- 0x41, 0x93, 0xee, 0xd0, 0x6b, 0x9b, 0x24, 0x82, 0x5e, 0x86, 0xa4, 0x88, 0xc5, 0x55, 0x85, 0x79,
- 0x31, 0xd8, 0x7a, 0xba, 0x74, 0x15, 0x95, 0x65, 0xc8, 0xa2, 0xa7, 0xcc, 0xab, 0xc4, 0x65, 0x98,
- 0x1f, 0x00, 0x96, 0x8c, 0x78, 0xc8, 0xe4, 0x20, 0xcc, 0x11, 0x57, 0x9d, 0x84, 0x33, 0x0d, 0x97,
- 0x9c, 0x42, 0x5a, 0x63, 0x0d, 0xbb, 0xd3, 0x30, 0x2d, 0xe6, 0x99, 0xe9, 0x5f, 0x1b, 0x1b, 0x8f,
- 0x75, 0xc4, 0x5c, 0xa1, 0x61, 0x4c, 0xe1, 0xf8, 0x21, 0x5e, 0xf3, 0x11, 0x57, 0xc5, 0x50, 0x8b,
- 0xef, 0xc1, 0x90, 0xa5, 0x21, 0x4f, 0xe5, 0xdd, 0xf0, 0x53, 0x48, 0xed, 0x3b, 0x4c, 0xe7, 0xca,
- 0x34, 0x32, 0xb4, 0x3a, 0x84, 0xa6, 0x1a, 0x1b, 0x3a, 0x1c, 0x37, 0x61, 0xd2, 0x33, 0x48, 0xc9,
- 0x22, 0x1c, 0x61, 0x55, 0x9c, 0x93, 0x6f, 0x20, 0xde, 0x06, 0x5d, 0x8b, 0xb2, 0xce, 0x2b, 0xab,
- 0x3f, 0x87, 0x79, 0x55, 0x55, 0x47, 0x40, 0x56, 0x77, 0x23, 0x5d, 0x8f, 0x44, 0xf6, 0xea, 0xe4,
- 0x33, 0x48, 0x69, 0xac, 0x6e, 0xdb, 0xfc, 0x47, 0xb3, 0xd9, 0x41, 0x38, 0x01, 0x7c, 0xc0, 0x2c,
- 0xc6, 0x7f, 0x40, 0x30, 0xb6, 0xa3, 0x81, 0x0d, 0x84, 0x23, 0x75, 0xc8, 0x3c, 0xb4, 0x9d, 0x06,
- 0x1b, 0x19, 0xfd, 0x5d, 0x44, 0x7f, 0x63, 0x7b, 0x33, 0x12, 0xbd, 0x29, 0x30, 0x6b, 0x4a, 0x47,
- 0x0f, 0xe6, 0x0f, 0xec, 0x97, 0x1d, 0xcb, 0xd6, 0x8d, 0x52, 0x5b, 0x6f, 0xb1, 0xc1, 0xdd, 0x85,
- 0x8f, 0x1e, 0x2f, 0xbf, 0xec, 0xa9, 0x2d, 0x77, 0x99, 0x83, 0x13, 0x51, 0xf1, 0x3a, 0x42, 0x3f,
- 0x42, 0x4d, 0x77, 0xe9, 0x7b, 0x91, 0x9a, 0x4c, 0x01, 0x51, 0x33, 0x14, 0x86, 0x5b, 0x7c, 0x2d,
- 0x1a, 0xfd, 0xaf, 0xc4, 0x06, 0xfa, 0x3a, 0x01, 0x2b, 0x47, 0x8c, 0x07, 0x74, 0xc8, 0xd9, 0x46,
- 0xbc, 0x01, 0x51, 0x64, 0xfa, 0x09, 0x1a, 0x70, 0x9f, 0xdc, 0x1b, 0xc1, 0x80, 0xa2, 0x2b, 0x35,
- 0xf5, 0xb0, 0x15, 0x0b, 0xe0, 0x8d, 0xa8, 0x5d, 0x15, 0x32, 0x32, 0x8a, 0xfb, 0xa4, 0x29, 0x1b,
- 0xcd, 0x00, 0x92, 0x3b, 0x94, 0xd7, 0x28, 0x6d, 0x2e, 0x7d, 0x1f, 0xd5, 0xbd, 0x4d, 0xde, 0xbc,
- 0x8e, 0x3a, 0xf2, 0x0a, 0xb2, 0xfb, 0xa2, 0x67, 0xb6, 0xae, 0xe9, 0x61, 0x64, 0x82, 0x95, 0x87,
- 0xdb, 0x23, 0x79, 0xf8, 0x87, 0x04, 0x64, 0x77, 0x1b, 0xdc, 0x3c, 0xd7, 0x39, 0x43, 0x2d, 0xf2,
- 0x3e, 0x18, 0x51, 0xf5, 0x3e, 0xaa, 0xfe, 0x94, 0x7e, 0x3c, 0x4a, 0x6a, 0x25, 0xb9, 0x87, 0xfa,
- 0xc4, 0x46, 0xfb, 0x7d, 0x02, 0x32, 0x1a, 0x3b, 0x67, 0x0e, 0xff, 0x9f, 0x18, 0xe2, 0xa0, 0x6a,
- 0x61, 0x48, 0x05, 0x16, 0x07, 0xb7, 0x4d, 0xb8, 0x27, 0x9f, 0xf7, 0x2c, 0x92, 0xcd, 0x38, 0x45,
- 0x95, 0xeb, 0x24, 0x1f, 0xa9, 0x52, 0x36, 0xe1, 0xcf, 0x21, 0xeb, 0x43, 0x54, 0x03, 0xac, 0x20,
- 0x6a, 0xa6, 0x8f, 0xea, 0xb1, 0xe9, 0x3b, 0x88, 0xbc, 0x49, 0x6e, 0x45, 0x23, 0x7b, 0x23, 0x33,
- 0x97, 0x74, 0x60, 0x59, 0x46, 0x6b, 0x58, 0x41, 0x18, 0x34, 0xb6, 0x10, 0xa9, 0x0e, 0x93, 0x5e,
- 0xa5, 0x4c, 0x04, 0xe8, 0xd4, 0x1f, 0xa0, 0xeb, 0x35, 0xb0, 0x97, 0x47, 0x49, 0x36, 0xae, 0x0c,
- 0x96, 0x82, 0xb0, 0xa3, 0xf4, 0x4e, 0x5b, 0xa8, 0x80, 0x92, 0xdb, 0xb1, 0x0a, 0xbc, 0x9e, 0xe9,
- 0x4b, 0xbf, 0xf5, 0x72, 0x36, 0x16, 0xd7, 0x4e, 0x64, 0xc3, 0xf3, 0x35, 0x37, 0xee, 0xee, 0x96,
- 0x83, 0x39, 0xa2, 0xe1, 0x84, 0x62, 0x20, 0x3f, 0x14, 0x99, 0x10, 0x1e, 0xdd, 0x44, 0xb8, 0x35,
- 0x72, 0x23, 0x0a, 0x4e, 0xf6, 0x03, 0x35, 0x48, 0x0f, 0x2c, 0x56, 0x41, 0x89, 0x33, 0x79, 0x29,
- 0x62, 0x9e, 0xe7, 0x7a, 0xe3, 0x09, 0xb2, 0x3c, 0xa4, 0x44, 0x85, 0xe4, 0x21, 0xa4, 0xab, 0xdc,
- 0x61, 0x7a, 0xbb, 0xa2, 0x37, 0x5e, 0x30, 0xee, 0x96, 0x7b, 0x9c, 0xac, 0x04, 0x22, 0x2d, 0x19,
- 0xe5, 0x1e, 0x8f, 0xdd, 0x40, 0x63, 0x5b, 0x09, 0x72, 0x88, 0x6d, 0x15, 0x33, 0xcf, 0x99, 0x02,
- 0x2a, 0x75, 0x2e, 0x99, 0x4f, 0x84, 0xf1, 0x4b, 0x1d, 0x3a, 0x76, 0x37, 0x41, 0x1e, 0x41, 0x56,
- 0xc1, 0xec, 0x9f, 0xe9, 0x9d, 0x16, 0xc3, 0xa9, 0x62, 0xbc, 0xcb, 0xb9, 0x00, 0x92, 0x6f, 0x09,
- 0x82, 0x9d, 0xc2, 0x42, 0x3f, 0x21, 0xf2, 0xbb, 0x55, 0xb0, 0xf1, 0x0f, 0x87, 0x2b, 0x6e, 0xb3,
- 0xaa, 0x68, 0x79, 0x39, 0xc9, 0xc8, 0x1e, 0xcd, 0xff, 0x8d, 0x24, 0x6a, 0x0e, 0x9a, 0x8f, 0x22,
- 0xd2, 0xdb, 0xa8, 0x22, 0x4f, 0xfb, 0x09, 0x09, 0x8c, 0x55, 0xc5, 0x21, 0x7b, 0x8a, 0x76, 0xfb,
- 0xd1, 0x23, 0x07, 0x03, 0xfe, 0x2f, 0x1f, 0x61, 0xc3, 0x03, 0xa8, 0xd2, 0x70, 0x03, 0x32, 0xb2,
- 0x58, 0xfc, 0x30, 0xc3, 0xdf, 0x42, 0x15, 0xb7, 0xf2, 0x97, 0xa8, 0x10, 0xd6, 0x1b, 0x90, 0x91,
- 0xbd, 0xd0, 0x95, 0x5a, 0xe2, 0xf6, 0x93, 0xf2, 0x65, 0xfb, 0x32, 0x5f, 0xd4, 0xc1, 0x08, 0x7c,
- 0xfd, 0xb9, 0xf2, 0x60, 0x04, 0x22, 0x16, 0x3a, 0x18, 0x01, 0x2d, 0xe4, 0x31, 0x36, 0xf4, 0x78,
- 0xf5, 0xb8, 0xd1, 0x0d, 0xbd, 0xe4, 0x79, 0x5d, 0x22, 0x59, 0x8b, 0xbf, 0x78, 0x5c, 0xf2, 0x05,
- 0xcc, 0x7a, 0x63, 0xdf, 0x00, 0x58, 0x2e, 0x6e, 0x7e, 0x4c, 0xdf, 0x46, 0xd8, 0xdb, 0xf4, 0x66,
- 0x24, 0xac, 0xcb, 0xac, 0x66, 0x8d, 0x0b, 0xb4, 0xa7, 0xd8, 0x1f, 0x05, 0xc6, 0xe6, 0xc3, 0xef,
- 0xb7, 0xa1, 0xb9, 0x7a, 0xb8, 0xf2, 0x88, 0x63, 0x24, 0xe4, 0xd4, 0x8b, 0xad, 0x59, 0x27, 0x5f,
- 0x02, 0x39, 0x62, 0x7c, 0x68, 0x72, 0x3e, 0x34, 0x04, 0x8b, 0x1a, 0xae, 0x87, 0xe3, 0x11, 0xc4,
- 0xc6, 0x39, 0x3d, 0x71, 0x61, 0xbe, 0x6a, 0xb6, 0x7b, 0x96, 0xce, 0x19, 0xae, 0x27, 0xeb, 0xfd,
- 0x40, 0xf8, 0xc9, 0xea, 0x5b, 0x57, 0xdc, 0x9d, 0x1f, 0x1a, 0x4c, 0x04, 0x63, 0xa4, 0x90, 0x6a,
- 0x02, 0x49, 0xec, 0xcc, 0x7d, 0x98, 0xeb, 0x8f, 0xc8, 0xc9, 0x0d, 0x4f, 0x61, 0x68, 0x78, 0x9e,
- 0x8f, 0x67, 0xd1, 0x31, 0x72, 0x0c, 0x20, 0xdf, 0xaa, 0x70, 0x88, 0x94, 0xf2, 0x77, 0x04, 0xb1,
- 0x1b, 0x5a, 0xbd, 0x8e, 0xd2, 0x05, 0x61, 0xe3, 0x60, 0xb5, 0x7a, 0x61, 0x56, 0xef, 0x52, 0x23,
- 0xe0, 0x0d, 0xde, 0xfa, 0xce, 0x3f, 0x28, 0xfa, 0x96, 0x0b, 0xc0, 0x2f, 0x20, 0x29, 0x8a, 0xc7,
- 0x2b, 0x8e, 0xdf, 0xdd, 0xc8, 0x8a, 0x17, 0x39, 0xf9, 0x19, 0xae, 0xcb, 0x1a, 0x66, 0xd3, 0x64,
- 0x4e, 0x7e, 0xc9, 0xa3, 0x6b, 0x8c, 0xf7, 0x9c, 0x0e, 0x72, 0x5d, 0xba, 0x86, 0xc0, 0xcb, 0x24,
- 0xeb, 0x05, 0xd4, 0x0f, 0x75, 0x02, 0xc9, 0xaa, 0xef, 0xb1, 0x3f, 0xb6, 0xf5, 0x3e, 0xf0, 0xc5,
- 0x9a, 0x1b, 0x42, 0xf5, 0xc3, 0x9c, 0x41, 0xb6, 0xca, 0x75, 0x87, 0x7b, 0x9f, 0x37, 0x45, 0x4b,
- 0x6a, 0x77, 0x48, 0xff, 0xcb, 0xef, 0xd0, 0x67, 0xcf, 0xc1, 0x61, 0x0e, 0x9c, 0x16, 0x55, 0x32,
- 0x68, 0x7f, 0xa2, 0xeb, 0x0a, 0xcc, 0x1a, 0x7e, 0x19, 0x12, 0xc7, 0xe4, 0x93, 0xc4, 0xf6, 0x9e,
- 0x05, 0x59, 0xdb, 0x69, 0xe1, 0x8d, 0xd1, 0xb0, 0x1d, 0x43, 0xe1, 0xec, 0xa5, 0xe4, 0xcc, 0xbd,
- 0x82, 0x3f, 0x7d, 0xf8, 0x45, 0xa1, 0x65, 0xf2, 0xb3, 0x5e, 0x5d, 0x44, 0xa7, 0xe8, 0x49, 0xaa,
- 0x9f, 0xa0, 0xdc, 0xf1, 0x7e, 0x90, 0x72, 0xbf, 0xd8, 0xb2, 0x15, 0xed, 0xaf, 0xe3, 0x2b, 0x65,
- 0x0f, 0xef, 0xa9, 0x7f, 0x84, 0x5f, 0x19, 0xaf, 0x4c, 0x54, 0x26, 0x2b, 0x53, 0x95, 0xe9, 0xca,
- 0x4c, 0x65, 0xb6, 0x3e, 0x8d, 0x6b, 0x77, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0xb4, 0x0e, 0xe5,
- 0xbc, 0xdc, 0x22, 0x00, 0x00,
+ // 2650 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4b, 0x73, 0x1b, 0xc7,
+ 0xf1, 0x27, 0xf8, 0x66, 0x03, 0x24, 0x81, 0x01, 0x1f, 0x10, 0x48, 0x4a, 0xe2, 0xf8, 0x45, 0xd3,
+ 0x16, 0x60, 0x89, 0xb2, 0xcb, 0x7f, 0xfb, 0xef, 0x8a, 0xf9, 0x12, 0x8d, 0x48, 0x14, 0x90, 0x05,
+ 0x29, 0x39, 0x89, 0x55, 0xa8, 0x05, 0x76, 0x00, 0x6e, 0x69, 0x81, 0x45, 0x76, 0x07, 0x94, 0x58,
+ 0x2a, 0x55, 0xaa, 0x9c, 0x87, 0x73, 0xf7, 0x3d, 0xa7, 0xa4, 0x52, 0x95, 0xef, 0x91, 0xa3, 0x4f,
+ 0x39, 0xe5, 0x9a, 0xca, 0x21, 0x9f, 0xc0, 0xe7, 0xd4, 0xf4, 0xcc, 0x02, 0xbb, 0xd8, 0x5d, 0x92,
+ 0x70, 0x5c, 0x95, 0x13, 0xb9, 0xdd, 0x3d, 0xbf, 0xee, 0xe9, 0x9e, 0xe9, 0xe9, 0xe9, 0x01, 0xe4,
+ 0xcf, 0x6d, 0x8b, 0x9f, 0xe9, 0xb5, 0xae, 0x63, 0x73, 0xdb, 0x2d, 0xca, 0xaf, 0x02, 0x7e, 0x91,
+ 0x69, 0xf9, 0x95, 0x5f, 0x6f, 0xd9, 0x76, 0xcb, 0x62, 0x45, 0xbd, 0x6b, 0x16, 0xf5, 0x4e, 0xc7,
+ 0xe6, 0x3a, 0x37, 0xed, 0x8e, 0x2b, 0xa5, 0xf2, 0x6b, 0x8a, 0x8b, 0x5f, 0xf5, 0x5e, 0xb3, 0xc8,
+ 0xda, 0x5d, 0x7e, 0xa1, 0x98, 0xb9, 0x20, 0x7c, 0x9b, 0x71, 0x05, 0x9e, 0x1f, 0x52, 0xdc, 0xb0,
+ 0xdb, 0x6d, 0xbb, 0x13, 0xcd, 0x3b, 0x63, 0xba, 0xc5, 0xcf, 0x14, 0x8f, 0x06, 0x79, 0x96, 0xdd,
+ 0x32, 0x1b, 0xba, 0x55, 0x33, 0xd8, 0xb9, 0xd9, 0x60, 0xd1, 0xe3, 0x03, 0xbc, 0xb5, 0x20, 0x4f,
+ 0x37, 0xf4, 0x2e, 0x67, 0x8e, 0x62, 0xde, 0x0a, 0x32, 0xed, 0x2e, 0xeb, 0x34, 0x2d, 0xfb, 0x45,
+ 0xed, 0xee, 0x4e, 0x8c, 0x40, 0xbb, 0x61, 0xd6, 0xda, 0x66, 0xbd, 0x66, 0xd4, 0x95, 0xc0, 0x66,
+ 0x84, 0x80, 0x6e, 0xe9, 0x4e, 0x7b, 0x20, 0x72, 0x33, 0x28, 0xc2, 0x5e, 0xf2, 0x5a, 0xc3, 0xee,
+ 0x34, 0xcd, 0x96, 0xe4, 0xd3, 0x3f, 0x25, 0x20, 0x79, 0x80, 0x26, 0x1f, 0x39, 0x76, 0xaf, 0x4b,
+ 0x96, 0x61, 0xdc, 0x34, 0x72, 0x89, 0xdb, 0x89, 0xad, 0xb9, 0xbd, 0xa9, 0x7f, 0x7f, 0xff, 0xdd,
+ 0x46, 0x42, 0x1b, 0x37, 0x0d, 0x52, 0x82, 0xc5, 0xe0, 0xe4, 0xdd, 0xdc, 0xf8, 0xed, 0x89, 0xad,
+ 0xe4, 0xbd, 0xe5, 0x82, 0x8a, 0xe2, 0x23, 0xc9, 0x96, 0x58, 0x7b, 0x73, 0xff, 0xfc, 0xfe, 0xbb,
+ 0x8d, 0x49, 0x81, 0xa5, 0x2d, 0x58, 0x7e, 0x8e, 0x4b, 0x76, 0x60, 0xc6, 0x83, 0x98, 0x40, 0x88,
+ 0x05, 0x0f, 0x22, 0x3c, 0xd6, 0x93, 0xa4, 0xff, 0x07, 0x29, 0x9f, 0x95, 0x2e, 0x79, 0x17, 0xa6,
+ 0x4c, 0xce, 0xda, 0x6e, 0x2e, 0x81, 0x10, 0xd9, 0x20, 0x04, 0x0a, 0x69, 0x52, 0x82, 0xfe, 0x31,
+ 0x01, 0xe4, 0xf0, 0x9c, 0x75, 0xf8, 0x03, 0xd3, 0xe2, 0xcc, 0xd1, 0x7a, 0x16, 0x7b, 0xc8, 0x2e,
+ 0xe8, 0x37, 0x09, 0xc8, 0x0e, 0x91, 0x4f, 0x2e, 0xba, 0x8c, 0x2c, 0x00, 0x34, 0x91, 0x52, 0xd3,
+ 0x2d, 0x2b, 0x3d, 0x46, 0x52, 0x30, 0xdb, 0xd0, 0x39, 0x6b, 0xd9, 0xce, 0x45, 0x3a, 0x41, 0xd2,
+ 0x90, 0x72, 0x7b, 0xf5, 0x5a, 0x9f, 0x32, 0x4e, 0x08, 0x2c, 0x3c, 0xef, 0x9a, 0x35, 0x26, 0xa0,
+ 0x6a, 0xfc, 0xa2, 0xcb, 0xd2, 0x13, 0x64, 0x19, 0x32, 0xd2, 0xc9, 0x7e, 0xf2, 0xa4, 0x20, 0xcb,
+ 0xf9, 0xf8, 0xc9, 0x53, 0xd4, 0x84, 0xc5, 0x21, 0x43, 0xc8, 0xe7, 0x30, 0xf1, 0x9c, 0x5d, 0x60,
+ 0x18, 0x16, 0xee, 0x15, 0xbc, 0xc9, 0x85, 0x67, 0x51, 0x88, 0x98, 0x81, 0x26, 0x86, 0x92, 0x25,
+ 0x98, 0x3a, 0xd7, 0xad, 0x1e, 0xcb, 0x8d, 0x8b, 0x50, 0x6a, 0xf2, 0x83, 0xfe, 0x25, 0x01, 0x49,
+ 0xdf, 0x90, 0xb8, 0x68, 0xaf, 0xc0, 0x34, 0xeb, 0xe8, 0x75, 0x4b, 0x8e, 0x9e, 0xd5, 0xd4, 0x17,
+ 0x59, 0x83, 0x39, 0x35, 0x01, 0xd3, 0xc8, 0x4d, 0x20, 0xf0, 0xac, 0x24, 0x94, 0x0c, 0xb2, 0x01,
+ 0x30, 0x98, 0x56, 0x6e, 0x12, 0xb9, 0x73, 0x48, 0x41, 0xbf, 0xde, 0x81, 0x29, 0xa7, 0x67, 0x31,
+ 0x37, 0x37, 0x85, 0x11, 0x5b, 0x8d, 0x99, 0x94, 0x26, 0xa5, 0xe8, 0x67, 0x90, 0xf2, 0x71, 0x5c,
+ 0x72, 0x07, 0x66, 0x64, 0x58, 0x42, 0x21, 0xf7, 0x03, 0x78, 0x32, 0xf4, 0x39, 0xa4, 0xf6, 0x6d,
+ 0x87, 0x95, 0x3a, 0x2e, 0xd7, 0x3b, 0x0d, 0x46, 0xde, 0x86, 0xa4, 0xa9, 0xfe, 0xaf, 0x0d, 0xcf,
+ 0x18, 0x3c, 0x4e, 0xc9, 0x20, 0x3b, 0x30, 0x2d, 0x13, 0x00, 0xce, 0x3c, 0x79, 0x6f, 0xc9, 0xd3,
+ 0xf2, 0x05, 0x52, 0xab, 0x5c, 0xe7, 0x3d, 0x77, 0x6f, 0x4a, 0xac, 0xd0, 0x31, 0x4d, 0x89, 0xd2,
+ 0x4f, 0x61, 0xde, 0xaf, 0xcc, 0x25, 0xdb, 0xc1, 0xd5, 0xd9, 0x07, 0xf1, 0x4b, 0x79, 0xcb, 0xf3,
+ 0x43, 0x58, 0x2c, 0xb7, 0x1b, 0xe6, 0x09, 0x73, 0xb9, 0xc6, 0x7e, 0xd5, 0x63, 0x2e, 0x27, 0x0b,
+ 0x83, 0xa8, 0x60, 0x38, 0x08, 0x4c, 0xf6, 0x7a, 0xa6, 0xa1, 0x42, 0x89, 0xff, 0xd3, 0x5f, 0x43,
+ 0x4a, 0x0e, 0x71, 0xbb, 0x76, 0xc7, 0x65, 0xe4, 0x27, 0x30, 0xed, 0x30, 0xb7, 0x67, 0x71, 0xb5,
+ 0x68, 0xde, 0xf1, 0x74, 0xfa, 0xa5, 0x02, 0x1f, 0x1a, 0x8a, 0x6b, 0x6a, 0x18, 0x2d, 0x00, 0x09,
+ 0x73, 0x49, 0x12, 0x66, 0xaa, 0xa7, 0xfb, 0xfb, 0x87, 0xd5, 0x6a, 0x7a, 0x4c, 0x7c, 0x3c, 0xd8,
+ 0x2d, 0x3d, 0x3a, 0xd5, 0x0e, 0xd3, 0x09, 0xfa, 0x0c, 0x66, 0x9f, 0x88, 0x35, 0x55, 0x65, 0x61,
+ 0x83, 0x3f, 0x86, 0x94, 0x4c, 0x43, 0x72, 0x17, 0x28, 0x5f, 0x66, 0x0b, 0x2a, 0xf3, 0xec, 0x0a,
+ 0xde, 0x3e, 0xfe, 0xff, 0xc5, 0x98, 0x96, 0xd4, 0x07, 0x9f, 0x7b, 0x33, 0x6a, 0xd9, 0xd2, 0x7f,
+ 0x4c, 0xc2, 0xf4, 0x13, 0x9c, 0x01, 0xb9, 0x05, 0x33, 0xe7, 0xcc, 0x71, 0x4d, 0xbb, 0x13, 0x8c,
+ 0x9b, 0x47, 0x25, 0x1f, 0xc1, 0xac, 0xca, 0xac, 0x5e, 0x56, 0x5a, 0xf4, 0x66, 0xbf, 0x2b, 0xe9,
+ 0xfe, 0x9c, 0xd2, 0x97, 0x8d, 0x4a, 0x6a, 0x13, 0xff, 0x7d, 0x52, 0x9b, 0xbc, 0x6e, 0x52, 0x23,
+ 0x9f, 0x43, 0x4a, 0x6d, 0x27, 0xb1, 0x65, 0xbc, 0x9d, 0x41, 0x82, 0x23, 0xc5, 0xe6, 0xf1, 0x8f,
+ 0x4e, 0x1a, 0x7d, 0xb2, 0x4b, 0xf6, 0x61, 0x5e, 0x21, 0xb4, 0x30, 0x2f, 0xe6, 0xa6, 0x63, 0xd3,
+ 0xa1, 0x1f, 0x43, 0xa9, 0x55, 0xb9, 0x74, 0x1f, 0xe6, 0xe5, 0xc6, 0xf5, 0x36, 0xd8, 0x4c, 0xec,
+ 0x06, 0x0b, 0x80, 0x30, 0xff, 0xfe, 0xfc, 0x19, 0x64, 0x06, 0xe7, 0x93, 0xce, 0xf5, 0xba, 0xee,
+ 0xb2, 0xdc, 0xba, 0x02, 0x12, 0x9c, 0xc2, 0xb1, 0x59, 0x97, 0xe6, 0x1c, 0xe8, 0x5c, 0xdf, 0x4b,
+ 0x0b, 0xa0, 0xa4, 0x2f, 0x9f, 0x68, 0x8b, 0x42, 0x4a, 0x08, 0xa9, 0xd1, 0xe4, 0x29, 0x64, 0xfd,
+ 0x27, 0x9a, 0x07, 0xba, 0xa1, 0x42, 0x84, 0xa0, 0xb8, 0x94, 0x2e, 0x85, 0x45, 0xb3, 0xa4, 0x98,
+ 0x42, 0xa0, 0x7f, 0x4e, 0x40, 0xba, 0xca, 0xac, 0xe6, 0xf5, 0x36, 0xd0, 0xb0, 0xa4, 0x9f, 0xe0,
+ 0xdf, 0x40, 0x15, 0x58, 0x08, 0x72, 0xe2, 0x37, 0x0f, 0xc9, 0xc0, 0xfc, 0xe3, 0xf2, 0x49, 0xad,
+ 0x7a, 0x5a, 0xa9, 0x94, 0xb5, 0x93, 0xc3, 0x83, 0xf4, 0xb8, 0x20, 0x9d, 0x3e, 0x7e, 0xf8, 0xb8,
+ 0xfc, 0xf4, 0x71, 0xed, 0x50, 0xd3, 0xca, 0x5a, 0x7a, 0x82, 0x96, 0x21, 0x53, 0x6e, 0xee, 0xb6,
+ 0x58, 0x87, 0x57, 0x7b, 0x75, 0xb7, 0xe1, 0x98, 0x75, 0xe6, 0x88, 0x34, 0x6b, 0x37, 0x75, 0x41,
+ 0xec, 0x27, 0x32, 0x6d, 0x4e, 0x51, 0x4a, 0x86, 0x48, 0xd1, 0xea, 0xc4, 0xef, 0x27, 0x8c, 0x59,
+ 0x49, 0x28, 0x19, 0xf4, 0x53, 0x80, 0x63, 0xd6, 0xae, 0x33, 0xc7, 0x3d, 0x33, 0xbb, 0x02, 0x09,
+ 0x57, 0x4d, 0xad, 0xa3, 0xb7, 0x99, 0x87, 0x84, 0x94, 0xc7, 0x7a, 0x9b, 0xa9, 0x4d, 0x3d, 0xee,
+ 0x6d, 0x6a, 0x7a, 0x08, 0xa9, 0x07, 0x96, 0xfd, 0xe2, 0x98, 0x71, 0x5d, 0xc4, 0x82, 0x7c, 0x08,
+ 0xd3, 0x6d, 0xe6, 0x4b, 0xc8, 0x1b, 0x05, 0x7f, 0x05, 0x63, 0x37, 0xbb, 0x35, 0x64, 0xab, 0x1c,
+ 0xa0, 0x29, 0xe1, 0x7b, 0x7f, 0xbb, 0x0b, 0xf3, 0x72, 0x63, 0x57, 0x99, 0x23, 0x82, 0x44, 0x9e,
+ 0xc2, 0xfc, 0x11, 0xe3, 0x3e, 0xc3, 0x56, 0x0a, 0xb2, 0xca, 0x2b, 0x78, 0x55, 0x5e, 0xe1, 0x50,
+ 0x54, 0x79, 0xf9, 0xfe, 0xce, 0x18, 0xc8, 0xd2, 0xfc, 0xd7, 0x7f, 0xff, 0xd7, 0xb7, 0xe3, 0x4b,
+ 0x84, 0x60, 0xc1, 0x78, 0x7e, 0xb7, 0xd8, 0x1e, 0xe0, 0x3c, 0x83, 0xf4, 0x69, 0xd7, 0xd0, 0x39,
+ 0xf3, 0x61, 0x47, 0x60, 0xe4, 0x63, 0xf4, 0xd1, 0x0d, 0xc4, 0x5e, 0xa5, 0x11, 0xd8, 0x9f, 0x24,
+ 0xb6, 0xc9, 0x01, 0xcc, 0x1d, 0x31, 0xae, 0x92, 0x54, 0x9c, 0xcd, 0xfd, 0x3c, 0x20, 0xe5, 0xe8,
+ 0x22, 0x62, 0xce, 0x91, 0x19, 0x85, 0x49, 0x9e, 0x41, 0xe6, 0x91, 0xe9, 0xf2, 0xe0, 0x01, 0x12,
+ 0x87, 0xb6, 0x1c, 0x75, 0x92, 0xb8, 0xf4, 0x06, 0x82, 0x66, 0x49, 0xc6, 0x33, 0xd4, 0xec, 0x23,
+ 0x55, 0x61, 0xf1, 0x88, 0x05, 0xd0, 0x09, 0x14, 0x54, 0xfd, 0x5b, 0x3a, 0xc8, 0x47, 0x1e, 0x4d,
+ 0xf4, 0x26, 0xe2, 0xe5, 0xc8, 0x4a, 0x08, 0xaf, 0xf8, 0xca, 0x34, 0x5e, 0x13, 0x0d, 0x52, 0xc2,
+ 0xe6, 0x5d, 0x2f, 0x91, 0xc6, 0x99, 0x9b, 0x1e, 0x4a, 0xc3, 0x2e, 0xcd, 0x21, 0x32, 0x21, 0x69,
+ 0x0f, 0xb9, 0x9f, 0x8c, 0x19, 0x10, 0x81, 0xf9, 0x28, 0x98, 0x57, 0xe3, 0x90, 0x57, 0x22, 0x33,
+ 0xb4, 0x4b, 0x6f, 0x21, 0xfe, 0x0d, 0xb2, 0xea, 0xe1, 0x0f, 0x25, 0x78, 0xf2, 0x4b, 0x48, 0x1f,
+ 0xb1, 0xa0, 0x96, 0x80, 0x43, 0xa2, 0x53, 0x3f, 0x7d, 0x13, 0x71, 0x6f, 0x92, 0xf5, 0x18, 0x5c,
+ 0xe9, 0x97, 0x26, 0xac, 0x84, 0xe6, 0x50, 0xb1, 0x1d, 0xee, 0x46, 0xfb, 0x5c, 0xc9, 0xa1, 0x04,
+ 0xdd, 0x46, 0x0d, 0x6f, 0x12, 0x7a, 0x99, 0x86, 0x62, 0x17, 0xd1, 0x5e, 0xc2, 0xd2, 0xf0, 0x24,
+ 0x04, 0x08, 0x59, 0x8e, 0x40, 0x2e, 0x19, 0xf9, 0x6c, 0x04, 0x99, 0xde, 0x47, 0x7d, 0x05, 0xf2,
+ 0xfe, 0xd5, 0xfa, 0x8a, 0xaf, 0xc4, 0x9f, 0x9a, 0x98, 0xe1, 0xef, 0x12, 0xb0, 0x7a, 0x88, 0xc5,
+ 0xe0, 0xb5, 0xb5, 0xc7, 0xed, 0xae, 0x4f, 0xd1, 0x80, 0x0f, 0xe9, 0xce, 0x28, 0x06, 0x14, 0x55,
+ 0x25, 0xfa, 0x4d, 0x02, 0x72, 0x07, 0xa6, 0xfb, 0xa3, 0x18, 0xf2, 0xff, 0x68, 0xc8, 0x47, 0xf4,
+ 0xfe, 0x48, 0x86, 0x18, 0x52, 0x3b, 0x31, 0x22, 0x62, 0x2e, 0xf2, 0x64, 0x30, 0xe6, 0x24, 0x90,
+ 0x1c, 0x91, 0x7f, 0xcd, 0x88, 0x37, 0x11, 0xeb, 0x37, 0x09, 0x58, 0x97, 0xb9, 0x2c, 0xa4, 0xe8,
+ 0x04, 0xcd, 0x58, 0x0f, 0x29, 0x40, 0xba, 0x1c, 0x13, 0x3b, 0xf5, 0x3b, 0x68, 0xc2, 0x3b, 0xf4,
+ 0x1a, 0x26, 0x88, 0x8c, 0xf7, 0xdb, 0x04, 0x6c, 0x44, 0x58, 0x71, 0x2c, 0x32, 0xbb, 0x34, 0x63,
+ 0x2d, 0x60, 0x06, 0x32, 0x8e, 0x6d, 0xe3, 0x0a, 0x2b, 0x0a, 0x68, 0xc5, 0x16, 0x7d, 0xe3, 0x52,
+ 0x2b, 0xe4, 0xf9, 0x21, 0xcc, 0x68, 0xc1, 0x6a, 0xc8, 0xe5, 0xa8, 0x2a, 0xe8, 0xf3, 0x6c, 0xd8,
+ 0x16, 0x97, 0xbe, 0x87, 0xba, 0xde, 0x22, 0xd7, 0xd1, 0x45, 0x38, 0xac, 0x45, 0xc6, 0x56, 0x15,
+ 0x4e, 0x7e, 0x65, 0xab, 0x21, 0xff, 0x4b, 0x21, 0xfa, 0x01, 0x2a, 0xdc, 0x26, 0x5b, 0x57, 0xba,
+ 0x58, 0xd5, 0x70, 0xe4, 0xdb, 0x04, 0x6c, 0xc6, 0xc4, 0x1a, 0x31, 0xa5, 0xa7, 0x37, 0xa3, 0x15,
+ 0x5e, 0x27, 0xea, 0x3b, 0x68, 0xd2, 0x1d, 0x7a, 0x6d, 0x93, 0x84, 0xd3, 0xcb, 0x90, 0x14, 0xbe,
+ 0xb8, 0x2a, 0x31, 0x2f, 0x06, 0x4b, 0x4f, 0x97, 0xae, 0xa2, 0xb2, 0x0c, 0x59, 0xf4, 0x94, 0x79,
+ 0x99, 0xb8, 0x0c, 0xf3, 0x03, 0xc0, 0x92, 0x11, 0x0f, 0x99, 0x1c, 0xb8, 0x39, 0xe2, 0xa8, 0x93,
+ 0x70, 0xa6, 0xe1, 0x92, 0x53, 0x48, 0x6b, 0xac, 0x61, 0x77, 0x1a, 0xa6, 0xc5, 0x3c, 0x33, 0xfd,
+ 0x63, 0x63, 0xfd, 0xb1, 0x8e, 0x98, 0x2b, 0x34, 0x8c, 0x29, 0x26, 0xee, 0xe0, 0x89, 0x21, 0x01,
+ 0xa5, 0x63, 0x5d, 0x92, 0x0f, 0xce, 0x52, 0x92, 0x65, 0x29, 0x3c, 0x38, 0x41, 0x02, 0x43, 0xc2,
+ 0x0b, 0x4f, 0x2a, 0xe9, 0x49, 0xb6, 0x74, 0xf9, 0x2b, 0x59, 0x81, 0xbf, 0x26, 0x87, 0x58, 0x5a,
+ 0x44, 0x1c, 0x4f, 0x43, 0xd7, 0x0a, 0xcf, 0x74, 0xb2, 0x34, 0xe4, 0x5d, 0x79, 0x1e, 0xfd, 0x14,
+ 0x52, 0xfb, 0x0e, 0xd3, 0xb9, 0x72, 0x07, 0x19, 0x1a, 0x1d, 0x42, 0x53, 0xc5, 0x14, 0x1d, 0x8e,
+ 0x95, 0x70, 0xc3, 0x53, 0x48, 0xc9, 0xc4, 0x1f, 0x61, 0x55, 0x9c, 0x63, 0xdf, 0x40, 0xbc, 0x0d,
+ 0xba, 0x16, 0x65, 0x9d, 0x97, 0xca, 0x7f, 0x0e, 0xf3, 0x2a, 0x93, 0x8f, 0x80, 0xac, 0xce, 0x63,
+ 0xba, 0x1e, 0x89, 0xec, 0xe5, 0xe6, 0xa7, 0x90, 0xd2, 0x58, 0xdd, 0xb6, 0xf9, 0x8f, 0x66, 0xb3,
+ 0x83, 0x70, 0x02, 0xf8, 0x80, 0x59, 0x8c, 0xff, 0x00, 0x67, 0x6c, 0x47, 0x03, 0x1b, 0x08, 0x47,
+ 0xea, 0x90, 0x79, 0x60, 0x3b, 0x0d, 0x36, 0x32, 0xfa, 0xbb, 0x88, 0xfe, 0xc6, 0xf6, 0x66, 0x24,
+ 0x7a, 0x53, 0x60, 0xd6, 0x94, 0x8e, 0x1e, 0xcc, 0x1f, 0xd8, 0x2f, 0x3a, 0x96, 0xad, 0x1b, 0xa5,
+ 0xb6, 0xde, 0x62, 0x83, 0xf3, 0x12, 0x3f, 0x3d, 0x5e, 0x7e, 0xd9, 0x53, 0x5b, 0xee, 0x32, 0x07,
+ 0xbb, 0xb0, 0xe2, 0x0a, 0x44, 0x3f, 0x42, 0x4d, 0x1f, 0xd0, 0xf7, 0x22, 0x35, 0x99, 0x02, 0xa2,
+ 0x66, 0x28, 0x0c, 0xb7, 0xf8, 0x4a, 0x5c, 0x2e, 0x5e, 0x8b, 0x05, 0xf4, 0x75, 0x02, 0x56, 0x8e,
+ 0x18, 0x0f, 0xe8, 0x90, 0xfd, 0x94, 0x78, 0x03, 0xa2, 0xc8, 0xf4, 0x13, 0x34, 0xe0, 0x3e, 0xb9,
+ 0x37, 0x82, 0x01, 0x45, 0x57, 0x6a, 0xea, 0xe1, 0x66, 0x0e, 0xe0, 0x8d, 0xa8, 0x5d, 0x25, 0x4f,
+ 0x32, 0xca, 0xf4, 0x49, 0x53, 0x16, 0xb7, 0x01, 0x24, 0x77, 0x28, 0xae, 0x51, 0xda, 0x5c, 0xfa,
+ 0x3e, 0xaa, 0x7b, 0x9b, 0xbc, 0x79, 0x1d, 0x75, 0xe4, 0x25, 0x64, 0xf7, 0x45, 0x9d, 0x6e, 0x5d,
+ 0x73, 0x86, 0x91, 0x01, 0x56, 0x33, 0xdc, 0x1e, 0x69, 0x86, 0x7f, 0x48, 0x40, 0x76, 0xb7, 0xc1,
+ 0xcd, 0x73, 0x9d, 0x33, 0xd4, 0x22, 0xf3, 0xde, 0x88, 0xaa, 0xf7, 0x51, 0xf5, 0x67, 0xf4, 0xe3,
+ 0x51, 0x42, 0x2b, 0xc9, 0x32, 0x91, 0x8a, 0x85, 0xf6, 0xfb, 0x04, 0x64, 0x34, 0x76, 0xce, 0x1c,
+ 0xfe, 0x3f, 0x31, 0xc4, 0x41, 0xd5, 0xc2, 0x90, 0x0a, 0x2c, 0x0e, 0x4e, 0xb8, 0xf0, 0x3d, 0x60,
+ 0xde, 0xb3, 0x48, 0x5e, 0x00, 0x28, 0xaa, 0x5c, 0x27, 0xf9, 0x48, 0x95, 0xb2, 0xf0, 0x7f, 0x06,
+ 0x59, 0x1f, 0xa2, 0x6a, 0x9a, 0x05, 0x51, 0x33, 0x7d, 0x54, 0x8f, 0x4d, 0xdf, 0x41, 0xe4, 0x4d,
+ 0x72, 0x2b, 0x1a, 0xd9, 0x6b, 0xd3, 0xb9, 0xa4, 0x03, 0xcb, 0xd2, 0x5b, 0xc3, 0x0a, 0xc2, 0xa0,
+ 0xb1, 0x89, 0x48, 0x55, 0xb5, 0xf4, 0x2a, 0x65, 0xc2, 0x41, 0xa7, 0x7e, 0x07, 0x5d, 0xaf, 0x68,
+ 0xbe, 0xdc, 0x4b, 0xb2, 0x58, 0x66, 0xb0, 0x14, 0x84, 0x1d, 0xa5, 0x5e, 0xdb, 0x42, 0x05, 0x94,
+ 0xdc, 0x8e, 0x55, 0xe0, 0xd5, 0x69, 0x5f, 0xf9, 0xad, 0x97, 0xfd, 0xb8, 0xb8, 0x12, 0x26, 0x1b,
+ 0xee, 0xe9, 0xb9, 0x71, 0x67, 0xb7, 0x6c, 0x06, 0x12, 0x0d, 0xbb, 0x22, 0x03, 0xf9, 0x21, 0xcf,
+ 0x84, 0xf0, 0xe8, 0x26, 0xc2, 0xad, 0x91, 0x1b, 0x51, 0x70, 0xb2, 0x1e, 0xa8, 0x41, 0x7a, 0x60,
+ 0xb1, 0x72, 0x4a, 0x9c, 0xc9, 0x4b, 0x11, 0x3d, 0x44, 0xd7, 0x6b, 0x89, 0x90, 0xe5, 0x21, 0x25,
+ 0xca, 0x25, 0x0f, 0x20, 0x5d, 0xe5, 0x0e, 0xd3, 0xdb, 0x15, 0xbd, 0xf1, 0x9c, 0x71, 0xb7, 0xdc,
+ 0xe3, 0x64, 0x25, 0xe0, 0x69, 0xc9, 0x28, 0xf7, 0x78, 0xec, 0x02, 0x1a, 0xdb, 0x4a, 0x90, 0x43,
+ 0x2c, 0xe5, 0x98, 0x79, 0xce, 0x14, 0x50, 0xa9, 0x73, 0x49, 0x4f, 0x24, 0x8c, 0x5f, 0xea, 0xd0,
+ 0xb1, 0x0f, 0x12, 0xe4, 0x21, 0x64, 0x15, 0xcc, 0xfe, 0x99, 0xde, 0x69, 0x31, 0xec, 0x64, 0xc6,
+ 0x4f, 0x39, 0x17, 0x40, 0xf2, 0x0d, 0x41, 0xb0, 0x53, 0x58, 0xe8, 0x07, 0x44, 0xbe, 0x95, 0x05,
+ 0x2f, 0x1b, 0x61, 0x77, 0xc5, 0x2d, 0x56, 0xe5, 0x2d, 0x2f, 0x26, 0x19, 0x59, 0xa3, 0xf9, 0xdf,
+ 0x65, 0xa2, 0x7a, 0xaf, 0xf9, 0x28, 0x22, 0xbd, 0x8d, 0x2a, 0xf2, 0xb4, 0x1f, 0x90, 0x40, 0x2b,
+ 0x57, 0x6c, 0xb2, 0x27, 0x68, 0xb7, 0x1f, 0x3d, 0xb2, 0x19, 0xe1, 0x7f, 0x6d, 0x09, 0x1b, 0x1e,
+ 0x40, 0x95, 0x86, 0x1b, 0x90, 0x91, 0xc9, 0xe2, 0x87, 0x19, 0xfe, 0x16, 0xaa, 0xb8, 0x95, 0xbf,
+ 0x44, 0x85, 0xb0, 0xde, 0x80, 0x8c, 0xac, 0x85, 0xae, 0xd4, 0x12, 0xb7, 0x9e, 0xd4, 0x5c, 0xb6,
+ 0x2f, 0x9b, 0x8b, 0xda, 0x18, 0x81, 0x17, 0xa7, 0x2b, 0x37, 0x46, 0xc0, 0x63, 0xa1, 0x8d, 0x11,
+ 0xd0, 0x42, 0x1e, 0x61, 0x41, 0x8f, 0x47, 0x8f, 0x1b, 0x5d, 0xd0, 0x4b, 0x9e, 0x57, 0x25, 0x92,
+ 0xb5, 0xf8, 0x83, 0xc7, 0x25, 0x5f, 0xc2, 0xac, 0xd7, 0x6a, 0x0e, 0x80, 0xe5, 0xe2, 0x7a, 0xd6,
+ 0xf4, 0x6d, 0x84, 0xbd, 0x4d, 0x6f, 0x46, 0xc2, 0xba, 0xcc, 0x6a, 0xd6, 0xb8, 0x40, 0x7b, 0x82,
+ 0xf5, 0x51, 0xa0, 0x55, 0x3f, 0x7c, 0xa7, 0x0e, 0xf5, 0xf2, 0xc3, 0x99, 0x47, 0x6c, 0x23, 0x21,
+ 0xa7, 0x2e, 0xd3, 0x66, 0x9d, 0x7c, 0x05, 0xe4, 0x88, 0xf1, 0xa1, 0x6e, 0xfd, 0x50, 0xe3, 0x2d,
+ 0xaa, 0xa1, 0x1f, 0xf6, 0x47, 0x10, 0x1b, 0xdf, 0x06, 0x88, 0x0b, 0xf3, 0x55, 0xb3, 0xdd, 0xb3,
+ 0x74, 0xce, 0x70, 0x3c, 0x59, 0xef, 0x3b, 0xc2, 0x4f, 0x56, 0xef, 0x6b, 0x71, 0x67, 0x7e, 0xa8,
+ 0x19, 0x12, 0xf4, 0x91, 0x42, 0xaa, 0x09, 0x24, 0xb1, 0x32, 0xf7, 0x61, 0xae, 0xdf, 0x96, 0x27,
+ 0x37, 0x3c, 0x85, 0xa1, 0x86, 0x7d, 0x3e, 0x9e, 0x45, 0xc7, 0xc8, 0x31, 0x80, 0xbc, 0x55, 0x61,
+ 0xe3, 0x2a, 0xe5, 0xaf, 0x08, 0x62, 0x17, 0xb4, 0xba, 0x02, 0xd3, 0x05, 0x61, 0xe3, 0x60, 0xb4,
+ 0xba, 0xa4, 0xab, 0xbb, 0xd4, 0x08, 0x78, 0x83, 0x5b, 0xdf, 0xf9, 0xdd, 0xa2, 0x6f, 0xb8, 0x00,
+ 0xfc, 0x12, 0x92, 0x22, 0x79, 0xbc, 0xe4, 0xf8, 0xd6, 0x47, 0x56, 0x3c, 0xcf, 0xc9, 0xa7, 0xbf,
+ 0x2e, 0x6b, 0x98, 0x4d, 0x93, 0x39, 0xf9, 0x25, 0x8f, 0xae, 0x31, 0xde, 0x73, 0x3a, 0xc8, 0x75,
+ 0xe9, 0x1a, 0x02, 0x2f, 0x93, 0xac, 0xe7, 0x50, 0x3f, 0xd4, 0x09, 0x24, 0xab, 0xbe, 0xcf, 0x7e,
+ 0xab, 0xd8, 0x7b, 0x54, 0x8c, 0x35, 0x37, 0x84, 0xea, 0x87, 0x39, 0x83, 0x6c, 0x95, 0xeb, 0x0e,
+ 0xf7, 0x9e, 0x54, 0x45, 0x49, 0x6a, 0x77, 0x48, 0xff, 0xb5, 0x79, 0xe8, 0xa9, 0x75, 0xb0, 0x99,
+ 0x03, 0xbb, 0x45, 0xa5, 0x0c, 0xda, 0xef, 0x22, 0xbb, 0x02, 0xb3, 0x86, 0xaf, 0x51, 0x62, 0x9b,
+ 0x7c, 0x92, 0xd8, 0xde, 0xb3, 0x20, 0x6b, 0x3b, 0x2d, 0x3c, 0x31, 0x1a, 0xb6, 0x63, 0x28, 0x9c,
+ 0xbd, 0x94, 0xec, 0xf3, 0x57, 0xf0, 0xe7, 0x16, 0xbf, 0x28, 0xb4, 0x4c, 0x7e, 0xd6, 0xab, 0x0b,
+ 0xef, 0x14, 0x3d, 0x49, 0xf5, 0xb3, 0x97, 0x3b, 0xde, 0x8f, 0x60, 0xee, 0x17, 0x5b, 0xb6, 0xa2,
+ 0xfd, 0x75, 0x7c, 0xa5, 0xec, 0xe1, 0x3d, 0xf1, 0x3f, 0x1b, 0x54, 0xc6, 0x2b, 0x13, 0x95, 0xc9,
+ 0xca, 0x54, 0x65, 0xba, 0x32, 0x53, 0x99, 0xad, 0x4f, 0xe3, 0xd8, 0x9d, 0xff, 0x04, 0x00, 0x00,
+ 0xff, 0xff, 0x16, 0x72, 0x40, 0x54, 0x50, 0x23, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -2418,6 +2421,8 @@
ListDeviceIds(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*common.IDs, error)
// Request to a voltha Core to reconcile a set of devices based on their IDs
ReconcileDevices(ctx context.Context, in *common.IDs, opts ...grpc.CallOption) (*empty.Empty, error)
+ // Get the device updates of a given device using a filter
+ GetDeviceUpdates(ctx context.Context, in *DeviceUpdateFilter, opts ...grpc.CallOption) (*DeviceUpdates, error)
// Get more information on a given physical device
GetDevice(ctx context.Context, in *common.ID, opts ...grpc.CallOption) (*Device, error)
// Pre-provision a new physical device
@@ -2707,6 +2712,15 @@
return out, nil
}
+func (c *volthaServiceClient) GetDeviceUpdates(ctx context.Context, in *DeviceUpdateFilter, opts ...grpc.CallOption) (*DeviceUpdates, error) {
+ out := new(DeviceUpdates)
+ err := c.cc.Invoke(ctx, "/voltha.VolthaService/GetDeviceUpdates", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *volthaServiceClient) GetDevice(ctx context.Context, in *common.ID, opts ...grpc.CallOption) (*Device, error) {
out := new(Device)
err := c.cc.Invoke(ctx, "/voltha.VolthaService/GetDevice", in, out, opts...)
@@ -3200,6 +3214,8 @@
ListDeviceIds(context.Context, *empty.Empty) (*common.IDs, error)
// Request to a voltha Core to reconcile a set of devices based on their IDs
ReconcileDevices(context.Context, *common.IDs) (*empty.Empty, error)
+ // Get the device updates of a given device using a filter
+ GetDeviceUpdates(context.Context, *DeviceUpdateFilter) (*DeviceUpdates, error)
// Get more information on a given physical device
GetDevice(context.Context, *common.ID) (*Device, error)
// Pre-provision a new physical device
@@ -3674,6 +3690,24 @@
return interceptor(ctx, in, info, handler)
}
+func _VolthaService_GetDeviceUpdates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(DeviceUpdateFilter)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(VolthaServiceServer).GetDeviceUpdates(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/voltha.VolthaService/GetDeviceUpdates",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(VolthaServiceServer).GetDeviceUpdates(ctx, req.(*DeviceUpdateFilter))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _VolthaService_GetDevice_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(common.ID)
if err := dec(in); err != nil {
@@ -4533,6 +4567,10 @@
Handler: _VolthaService_ReconcileDevices_Handler,
},
{
+ MethodName: "GetDeviceUpdates",
+ Handler: _VolthaService_GetDeviceUpdates_Handler,
+ },
+ {
MethodName: "GetDevice",
Handler: _VolthaService_GetDevice_Handler,
},
diff --git a/vendor/modules.txt b/vendor/modules.txt
index 1d3dded..0682623 100644
--- a/vendor/modules.txt
+++ b/vendor/modules.txt
@@ -70,7 +70,7 @@
github.com/mitchellh/go-homedir
# github.com/mitchellh/mapstructure v1.1.2
github.com/mitchellh/mapstructure
-# github.com/opencord/voltha-lib-go/v4 v4.0.4
+# github.com/opencord/voltha-lib-go/v4 v4.0.5
github.com/opencord/voltha-lib-go/v4/pkg/adapters
github.com/opencord/voltha-lib-go/v4/pkg/adapters/adapterif
github.com/opencord/voltha-lib-go/v4/pkg/adapters/common
@@ -87,9 +87,10 @@
github.com/opencord/voltha-lib-go/v4/pkg/probe
github.com/opencord/voltha-lib-go/v4/pkg/techprofile
github.com/opencord/voltha-lib-go/v4/pkg/version
-# github.com/opencord/voltha-protos/v4 v4.0.9
+# github.com/opencord/voltha-protos/v4 v4.0.10
github.com/opencord/voltha-protos/v4/go/common
github.com/opencord/voltha-protos/v4/go/ext/config
+github.com/opencord/voltha-protos/v4/go/extension
github.com/opencord/voltha-protos/v4/go/inter_container
github.com/opencord/voltha-protos/v4/go/omci
github.com/opencord/voltha-protos/v4/go/openflow_13