Commit 6af053ce authored by qiwen's avatar qiwen Committed by lengyelb
Browse files

Update file _3gpp-5gc-nrm-nfprofile.yang

parent e91b0fb5
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
@@ -981,6 +981,34 @@ module _3gpp-5gc-nrm-nfprofile {
      mandatory true;
      type string;
    }

    leaf-list dnaiList {
      description "List of Data network access identifiers supported by the SMF for this DNN.
                   The absence of this attribute indicates that the SMF can be selected for this DNN for any DNAI.";
      min-elements 1;
      type string; //dnai is the type but its only a string with desc: DNAI (Data network access identifier), is this needed as its own typedef or string is ok
    }

    list dnaiSatelliteMappingList {
      description "List of the mapping relationship between satellite ID and at least one DNAI.";
      min-elements 1;
      key "satelliteid";
      uses dnaiSatelliteMapping;
    }
  }

  grouping dnaiSatelliteMapping {
    leaf-list dnaiList {
      description "List of Data network access identifiers supported by the SMF for this DNN.
                   The absence of this attribute indicates that the SMF can be selected for this DNN for any DNAI.";
      min-elements 1;
      type string; //dnai is the type but its only a string with desc: DNAI (Data network access identifier), is this needed as its own typedef or string is ok
    }
    
    leaf satelliteid {
      description "Unique identifier of a GEO satellite.";
      type string;
    }
  }
  
  grouping PlmnSnssai {