diff --git a/yang-models/_3gpp-nr-nrm-gnbcucpfunction.yang b/yang-models/_3gpp-nr-nrm-gnbcucpfunction.yang index 7ddb27b0be141a5e4a554ce967856b60ab8119f2..d7e206c642d324682b4cb18dcc79478e32e2b9c1 100755 --- a/yang-models/_3gpp-nr-nrm-gnbcucpfunction.yang +++ b/yang-models/_3gpp-nr-nrm-gnbcucpfunction.yang @@ -9,15 +9,17 @@ module _3gpp-nr-nrm-gnbcucpfunction { import _3gpp-common-managed-element { prefix me3gpp; } import _3gpp-common-top { prefix top3gpp; } import _3gpp-5gc-nrm-configurable5qiset { prefix fiveqi3gpp; } + import ietf-inet-types { prefix inet; } organization "3GPP SA5"; contact "https://www.3gpp.org/DynaReport/TSG-WG--S5--officials.htm?Itemid=464"; description "Defines the YANG mapping of the GNBCUCPFunction Information Object Class (IOC) that is part of the NR Network Resource Model (NRM). - Copyright 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, + Copyright 2024, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved."; reference "3GPP TS 28.541 5G Network Resource Model (NRM)"; + revision 2024-01-12 { reference CR-1138 ; } revision 2023-09-18 { reference CR-1043 ; } revision 2023-04-26 { reference CR-0916; } revision 2022-07-28 { reference "CR-0770"; } @@ -141,6 +143,40 @@ module _3gpp-nr-nrm-gnbcucpfunction { description "This attribute determines whether the DAPS handover function is enabled or disabled."; } + + list qceIdMappingInfoList { + description "List of the mapping relationship between QoE collection entity + identity, PLMN where QoE collection entity resides, and the IP address of + the QoE collection entity."; + key idx; + min-elements 1; + uses QceIdMappingInfoGrp; + leaf idx { type string; } + } + } + + grouping QceIdMappingInfoGrp { + leaf qoECollectionEntityAddress { + type inet:ip-address; + description "Specifies the address to which the QMC reports shall be + transferred. Ipv4 or Ipv6 address may be used."; + } + + leaf qoECollectionEntityIdentity { + type string; + description "Specifies the unique identity to which the QMC reports + shall be transferred."; + } + + list pLMNTarget { + description "The PLMN identifier where QoE collection entity + resides. "; + key "mcc mnc"; + min-elements 1; + max-elements 1; + yext3gpp:inVariant; + uses types3gpp:PLMNId; + } } augment "/me3gpp:ManagedElement" {