Skip to content

Commit

Permalink
* refractor leaf-ref "profile-name" to point to config.
Browse files Browse the repository at this point in the history
*  edit to ccm interval: remove 300ms and add 100ms enum.
  • Loading branch information
GokusSGUltra committed Sep 22, 2024
1 parent 69c941c commit 3aa5484
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion release/models/cfm/openconfig-cfm.yang
Original file line number Diff line number Diff line change
Expand Up @@ -149,17 +149,30 @@ module openconfig-cfm {
leaf "profile-name" {
description "A unique profile name identifying the profile";
type leafref {
path "../../../../../../../../../performance-measurement-profiles-global/performance-measurement-profile/config/profile-name";
path "../config/profile-name";
}
}

container config {
description "Associated performance Measurement profile.";

leaf "profile-name" {
description "A unique profile name identifying the profile";
type leafref {
path "../config/profile-name";
}

}

container state {
description "Operational data for loss measurement.";
config false;

leaf "profile-name" {
type string;
description "Name of the measurement profile.";
}

uses performance-measurement-state;
}
}
Expand Down Expand Up @@ -1121,6 +1134,7 @@ module openconfig-cfm {

grouping performance-measurement-state {
description "Performance measurement state grouping.";

uses loss-measurement-state;
uses delay-measurement-state;
}
Expand Down

0 comments on commit 3aa5484

Please sign in to comment.