O-DU Slice Assurance App towards latest O-DU implementation
[nonrtric.git] / test / usecases / odusliceassurance / goversion / messages / policyRatio.go
index 502e867..eeba22e 100644 (file)
 package messages
 
 type ORanDuRestConf struct {
-       DistributedUnitFunction DistributedUnitFunction `json:"distributed-unit-functions"`
+       DistributedUnitFunction []DistributedUnitFunction `json:"o-ran-sc-du-hello-world:distributed-unit-functions"`
 }
 
 type DistributedUnitFunction struct {
-       Id             string           `json:"id"`
-       RRMPolicyRatio []RRMPolicyRatio `json:"radio-resource-management-policy-ratio"`
+       Id               string           `json:"id"`
+       OperationalState string           `json:"operational-state"`
+       AdmState         string           `json:"administrative-state"`
+       UserLabel        string           `json:"user-label"`
+       RRMPolicyRatio   []RRMPolicyRatio `json:"radio-resource-management-policy-ratio"`
+       Cell             []Cell           `json:"cell"`
 }
 
 type RRMPolicyRatio struct {
@@ -46,3 +50,56 @@ type RRMPolicyMember struct {
        SliceDifferentiator int    `json:"slice-differentiator"`
        SliceServiceType    int    `json:"slice-service-type"`
 }
+
+type Cell struct {
+       Id                                  string                              `json:"id"`
+       LocalId                             int                                 `json:"local-id"`
+       PhysicalCellId                      int                                 `json:"physical-cell-id"`
+       BaseStationChannelBandwidth         BaseStationChannelBandwidth         `json:"base-station-channel-bandwidth"`
+       OperationalState                    string                              `json:"operational-state"`
+       TrackingAreaCode                    int                                 `json:"tracking-area-code"`
+       AdmState                            string                              `json:"administrative-state"`
+       PublicLandMobileNetworks            []PublicLandMobileNetworks          `json:"public-land-mobile-networks"`
+       SupportedMeasurements               []SupportedMeasurements             `json:"supported-measurements"`
+       TrafficState                        string                              `json:"traffic-state"`
+       AbsoluteRadioFrequencyChannelNumber AbsoluteRadioFrequencyChannelNumber `json:"absolute-radio-frequency-channel-number"`
+       UserLabel                           string                              `json:"user-label"`
+       SynchronizationSignalBlock          SynchronizationSignalBlock          `json:"synchronization-signal-block"`
+}
+
+type BaseStationChannelBandwidth struct {
+       Uplink              int `json:"uplink"`
+       Downlink            int `json:"downlink"`
+       SupplementaryUplink int `json:"supplementary-uplink"`
+}
+
+type PublicLandMobileNetworks struct {
+       SliceDifferentiator int    `json:"slice-differentiator"`
+       SliceServiceType    int    `json:"slice-service-type"`
+       MobileCountryCode   string `json:"mobile-country-code"`
+       MobileNetworkCode   string `json:"mobile-network-code"`
+}
+
+type SupportedMeasurements struct {
+       PerformanceMeasurementType         string                               `json:"performance-measurement-type"`
+       SupportedSnssaiSubcounterInstances []SupportedSnssaiSubcounterInstances `json:"supported-snssai-subcounter-instances"`
+}
+
+type SupportedSnssaiSubcounterInstances struct {
+       SliceDifferentiator int `json:"slice-differentiator"`
+       SliceServiceType    int `json:"slice-service-type"`
+}
+
+type AbsoluteRadioFrequencyChannelNumber struct {
+       Uplink              int `json:"uplink"`
+       Downlink            int `json:"downlink"`
+       SupplementaryUplink int `json:"supplementary-uplink"`
+}
+
+type SynchronizationSignalBlock struct {
+       Duration               int `json:"duration"`
+       FrequencyChannelNumber int `json:"frequency-channel-number"`
+       Periodicity            int `json:"periodicity"`
+       SubcarrierSpacing      int `json:"subcarrier-spacing"`
+       Offset                 int `json:"offset"`
+}