diff --git a/release/models/gnsi/openconfig-gnsi-certz.yang b/release/models/gnsi/openconfig-gnsi-certz.yang index 9b5e9a1ca..33016f316 100644 --- a/release/models/gnsi/openconfig-gnsi-certz.yang +++ b/release/models/gnsi/openconfig-gnsi-certz.yang @@ -32,6 +32,14 @@ module openconfig-gnsi-certz { oc-ext:openconfig-version "0.5.0"; + revision 2024-03- { + description + "align yang with the openconfig/gnsi version as of: + https://github.com/openconfig/gnsi/tree/e08ebfe537e1603015291898e6d5e9abe1562a0b + (update counter names)"; + reference "0.6.0"; + } + revision 2024-02-13 { description "Major style updates and move to openconfig/public from openconfig/gnsi. @@ -87,36 +95,36 @@ module openconfig-gnsi-certz { "A collection of counters that were collected while evaluating access to the gRPC server."; - container certz-counters { + container counters { config false; description - "A collection of counters that were collected by the gRPC during - the authentication process."; + "A collection of counters that were collected by the gRPC during + the authentication process."; - leaf access-rejects { + leaf connection-rejects { type oc-yang:counter64; description - "The total number of times a TLS handshake failure has occurred and - the gRPC server denied access a client."; + "The total number of times that gRPC clients have failed + in establishing a connection to the server."; } - leaf last-access-reject { + leaf last-connection-reject { type oc-types:timeticks64; description - "A timestamp of the last time the gRPC denied access to - the server."; + "A timestamp of the last time a gRPC client failed + in establishing a connection to the server."; } - leaf access-accepts { + leaf connection-accepts { type oc-yang:counter64; description - "The total number of times a successful TLS handshake is completed - and the gPRC server allows access to a client."; + "The total number of times that gRPC clients have succeeded + in establishing a connection to the server."; } - leaf last-access-accept { + leaf last-connection-accept { type oc-types:timeticks64; description - "A timestamp of the last time the gRPC allowed access to - the server."; - } + "A timestamp of the last time a gRPC client succeeded + in establishing a connection to the server."; + } } }