Skip to content

Commit

Permalink
version fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dplore committed Sep 19, 2024
2 parents d257d04 + 9b0a82e commit 59e6d68
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 10 deletions.
35 changes: 34 additions & 1 deletion release/models/gnsi/openconfig-gnsi-credentialz.yang
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ module openconfig-gnsi-credentialz {
/system/aaa/authentication/users/user/config/password-hashed
/system/aaa/authentication/users/user/state/password-hashed";

oc-ext:openconfig-version "0.6.0";
oc-ext:openconfig-version "0.7.0";

revision 2024-09-10 {
description
"Adding GLOME capabilities.";
reference "0.7.0";
}

revision 2024-02-13 {
description
Expand Down Expand Up @@ -142,6 +148,26 @@ module openconfig-gnsi-credentialz {
}
}

// GLOME related definitions.

grouping glome-key-version {
description
"Version identifier for the configured GLOME key.";

leaf active-glome-key-version {
type version;
description
"The version of the GLOME key.";
}

leaf active-glome-key-created-on {
type created-on;
description
"The timestamp of the moment when the GLOME key
was created.";
}
}

// Success/failure counters.
grouping counters {
description
Expand Down Expand Up @@ -232,9 +258,16 @@ module openconfig-gnsi-credentialz {
"Console-related state.";

uses counters;

leaf enabled {
type boolean;
description
"Whether GLOME is enabled or not.";
}
}
}
}

// System role console related definitions.

grouping user-console-credentials-version {
Expand Down
17 changes: 16 additions & 1 deletion release/models/lacp/openconfig-lacp.yang
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ module openconfig-lacp {
managing aggregate interfaces. It works in conjunction with
the OpenConfig interfaces and aggregate interfaces models.";

oc-ext:openconfig-version "2.0.0";
oc-ext:openconfig-version "2.1.0";

revision "2024-09-24" {
description
"Add LACP fallback leaf under both config and state.";
reference "2.1.0";
}

revision "2023-12-11" {
description
Expand Down Expand Up @@ -407,6 +413,15 @@ grouping aggregation-lacp-members-statistics {
system-id";
}

leaf fallback {
type boolean;
description
"If the fallback is set to true, current LACP interface is
able to establish a Link Aggregation (LAG) before it receives
LACP PDUs from its peer, and fallback to a single port active
after the expiry of the timeout period.";
}

uses aggregation-lacp-global-config;
}

Expand Down
16 changes: 14 additions & 2 deletions release/models/platform/openconfig-platform-common.yang
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,23 @@ submodule openconfig-platform-common {
"This modules contains common groupings that are used in multiple
components within the platform module.";

oc-ext:openconfig-version "0.28.0";
oc-ext:openconfig-version "0.30.0";

revision "2024-08-26" {
revision "2024-10-13" {
description
"Add storage state io-errors.";
reference "0.30.0";
}

revision "2024-10-13" {
description
"Deprecate component id leaf";
reference "0.29.0";
}

revision "2024-08-08" {
description
"Update description of model-name leaf.";
reference "0.28.0";
}

Expand Down
27 changes: 21 additions & 6 deletions release/models/platform/openconfig-platform.yang
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,23 @@ module openconfig-platform {
(presence or absence of a component) and state (physical
attributes or status).";

oc-ext:openconfig-version "0.28.0";

revision "2024-08-26" {
oc-ext:openconfig-version "0.30.0";
revision "2024-10-13" {
description
"Add storage state io-errors.";
reference "0.30.0";
}

revision "2024-10-13" {
description
"Deprecate component id leaf";
reference "0.29.0";
}

revision "2024-08-08" {
description
"Update description of model-name leaf.";
reference "0.28.0";
}

Expand Down Expand Up @@ -421,6 +433,7 @@ module openconfig-platform {

leaf id {
type string;
status deprecated;
description
"Unique identifier assigned by the system for the
component";
Expand Down Expand Up @@ -544,11 +557,13 @@ module openconfig-platform {
}

leaf model-name {
when "../removable = 'true' or ../type = 'oc-platform-types:CHASSIS'";
mandatory true;
type string;
description
"A human readable string describing the model of a component.
This string is optional and should only be populated if part-no
is also populated.";
"Model name that would be found in a catalog of stock keeping
units (SKU) and should be the orderable name of the
component.";
}

leaf clei-code {
Expand Down

0 comments on commit 59e6d68

Please sign in to comment.