Commit a49e09e0 authored by rosabolzek's avatar rosabolzek Committed by lengyelb
Browse files

remove managedNfProfile from types and correct references to it , as well as lint errors

parent ac0e11a0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ module _3gpp-5gc-nrm-FiveQiDscpMappingSet {
  yang-version 1.1;

  namespace urn:3gpp:sa5:_3gpp-5gc-nrm-FiveQiDscpMappingSet;
  prefix FiveQiDscpMapping3gpp;
  prefix FiveQiDscpM3gpp;

  import _3gpp-common-top { prefix top3gpp; }
  import _3gpp-common-managed-element { prefix me3gpp; }
+3 −1
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ module _3gpp-5gc-nrm-amffunction {
  import ietf-yang-types { prefix yang; }
  import _3gpp-common-top { prefix top3gpp; }
  import _3gpp-nr-nrm-ntnfunction { prefix ntn3gpp; }
  import _3gpp-5gc-nrm-managed-nfprofile { prefix mnfp3gpp;}


  organization "3gpp SA5";
@@ -497,9 +498,10 @@ module _3gpp-5gc-nrm-amffunction {

    list managedNFProfile {
      key idx;
      leaf idx{ type uint32;}
      min-elements 1;
      max-elements 1;
      uses types3gpp:ManagedNFProfile;
      uses mnfp3gpp:ManagedNFProfileGrp;
      description "";
    }

+1 −3
Original line number Diff line number Diff line
@@ -21,9 +21,7 @@ module _3gpp-5gc-nrm-dnfunction {
  revision 2023-09-18 { reference CR-1043 ; }
  revision 2019-10-28 { reference S5-193518 ; }

  revision 2019-05-15 {
    description "initial revision";
  }
  revision 2019-05-15 { reference "initial revision"; }

  grouping DNFunctionGrp {
    uses mf3gpp:ManagedFunctionGrp;
+2 −7
Original line number Diff line number Diff line
@@ -35,13 +35,8 @@ module _3gpp-5gc-nrm-ep {

  revision 2024-08-19 { reference CR-1314 ; }
  revision 2023-09-18 { reference CR-1043 ; }
  revision 2019-11-18 {
    description "Ericsson refactoring.";
  }

  revision 2018-07-31 {
    description "Initial revision";
  }
  revision 2019-11-18 { reference "Ericsson refactoring."; }
  revision 2018-07-31 { reference "Initial revision"; }

  grouping EP_N2Grp {
    uses eprp3gpp:EP_Common;
+11 −3
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ module _3gpp-5gc-nrm-gmlcfunction {
  import _3gpp-common-yang-types { prefix types3gpp; }
  import _3gpp-5g-common-yang-types { prefix types5g3gpp; }
  import _3gpp-common-top { prefix top3gpp; }
  import _3gpp-5gc-nrm-managed-nfprofile { prefix mnfp3gpp;}
  
  organization "3GPP SA5";
  contact "https://www.3gpp.org/DynaReport/TSG-WG--S5--officials.htm?Itemid=464";
@@ -78,11 +79,11 @@ module _3gpp-5gc-nrm-gmlcfunction {
       uses mf3gpp:ManagedFunctionGrp;

        list pLMNInfoList {
          description "It defines the PLMN(s) of a Network Function. ";
          key "idx";
          leaf idx { type uint32; }
          min-elements 1;
          uses types3gpp:PLMNId;
          uses types5g3gpp:SNssai;
        }
        leaf sBIFqdn {
          type string;
@@ -93,15 +94,22 @@ module _3gpp-5gc-nrm-gmlcfunction {
        description "This parameter defines profile for managed NF.
         See TS 23.501";
        key idx;
        leaf idx { type uint32; }
        min-elements 1;
        uses types3gpp:ManagedNFProfile;
        uses mnfp3gpp:ManagedNFProfileGrp;
        }
        list commModelList {
          description "The attribute specifies a list of commModel which is 
          defined as a datatype (see clause 5.3.69). It can be used by NF 
          and NF services to interact with each other in 5G Core network ";
          reference "see TS 23.501.";
          key "groupId";
          min-elements 1;
          uses types5g3gpp:CommModel;
        }
        list gmlcInfo {
          description "This attribute represents information of an GMLC NF
          Instance.";
          key "idx";
          leaf idx { type uint32; }
          max-elements 1;
Loading