Commit 21a164b9 authored by lengyelb's avatar lengyelb
Browse files

Merge branch '28.541_Rel18_Adding_MCE_ID_YANG' into 'Integration_Rel18_SA5_153_YANG'

28.541 rel18 CR1138 adding mce id yang

See merge request !984
parents 1b11c5e9 ee2f5995
Loading
Loading
Loading
Loading
Loading
+37 −1
Original line number Diff line number Diff line
@@ -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" {