X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=pkg%2Frtmgr%2Ftypes.go;h=958ad6d6a5cec1d696cbc6dcbdb59e672b75b545;hb=0e38e1ba0b4df4e65b60ed45ed9a6638bcda44c1;hp=9378656100997598ca27017285682f28a5427bd5;hpb=da0fd3afb09b447a54a4b84b67e0965d7d85b8ff;p=ric-plt%2Frtmgr.git diff --git a/pkg/rtmgr/types.go b/pkg/rtmgr/types.go index 9378656..958ad6d 100644 --- a/pkg/rtmgr/types.go +++ b/pkg/rtmgr/types.go @@ -92,6 +92,11 @@ type E2TInstance struct { Ranlist []string `json:"ranlist"` } +type E2tIdentity struct { + E2taddress string `json:"e2tAddress"` + Rannames []string `json:"ranNames"` +} + type ConfigRtmgr struct { Pcs PlatformComponents `json:"PlatformComponents"` } @@ -99,13 +104,14 @@ type ConfigRtmgr struct { type RicComponents struct { XApps []XApp E2Ts map [string]E2TInstance + MeidMap []string Pcs PlatformComponents } type Subscription struct { SubID int32 - Fqdn string - Port uint16 + Fqdn string + Port uint16 } type PlatformRoutes []struct { @@ -120,4 +126,12 @@ type RtmgrRoutes struct { Prs PlatformRoutes `json:"PlatformRoutes"` } +type FqDn struct { + Address *string + Port *uint16 +} +type XappList struct { + SubscriptionID uint16 + FqdnList []FqDn +}