gpt4 book ai didi

model-driven - 如何从 YANG 语言的分组中细化节点的强制属性?

转载 作者:行者123 更新时间:2023-12-01 13:30:56 25 4
gpt4 key购买 nike

我定义了一个分组,其中有一个叶子的强制属性设置为 false。但在某些情况下,我想使用这种分组并指定叶子应该是强制性的。我如何在 YANG 中实现这一点?

最佳答案

在指定分组的用途时,您将使用 refine 语句。

module mandatory-and-grouping {
namespace "org:example:mandatory-and-grouping";
prefix "mag";

grouping my-grouping {
leaf my-leaf {
type string;
}
}

container top {
uses my-grouping {
refine my-leaf {
mandatory true;
}
}
}
}

7.13.2. The "refine" Statement

Some of the properties of each node in the grouping can be refinedwith the "refine" statement. The argument is a string thatidentifies a node in the grouping. This node is called the refine'starget node. If a node in the grouping is not present as a targetnode of a "refine" statement, it is not refined and thus is usedexactly as it was defined in the grouping.

The argument string is a descendant schema node identifier (seeSection 6.5).

The following refinements can be done:

  • A leaf or choice node may get a default value, or a new defaultvalue if it already had one.
  • A leaf-list node may get a set of default values, or a new set ofdefault values if it already had defaults; i.e., the set ofrefined default values replaces the defaults already given.
  • Any node may get a specialized "description" string.
  • Any node may get a specialized "reference" string.
  • Any node may get a different "config" statement.
  • A leaf, anydata, anyxml, or choice node may get a different"mandatory" statement.
  • A container node may get a "presence" statement.
  • A leaf, leaf-list, list, container, anydata, or anyxml node mayget additional "must" expressions.
  • A leaf-list or list node may get a different "min-elements" or"max-elements" statement.
  • A leaf, leaf-list, list, container, choice, case, anydata, oranyxml node may get additional "if-feature" expressions.
  • Any node can get refined extensions, if the extension allowsrefinement. See Section 7.19 for details.

RFC7950, Section 7.13.2

关于model-driven - 如何从 YANG 语言的分组中细化节点的强制属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45967768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com