X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Frtmgr%2Ftypes.go;h=b9c4cd699563e9f432abd2abc577786eaf556db6;hb=cd7867c8f527f46fd8702b0b8d6b380a8e134bea;hp=9378656100997598ca27017285682f28a5427bd5;hpb=da0fd3afb09b447a54a4b84b67e0965d7d85b8ff;p=ric-plt%2Frtmgr.git diff --git a/pkg/rtmgr/types.go b/pkg/rtmgr/types.go index 9378656..b9c4cd6 100644 --- a/pkg/rtmgr/types.go +++ b/pkg/rtmgr/types.go @@ -99,13 +99,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 +121,12 @@ type RtmgrRoutes struct { Prs PlatformRoutes `json:"PlatformRoutes"` } +type FqDn struct { + Address *string + Port *uint16 +} +type XappList struct { + SubscriptionID uint16 + FqdnList []FqDn +}