Skip to content

Commit

Permalink
Merge pull request #1484 from yang-catalog/main
Browse files Browse the repository at this point in the history
Cronjob - daily update of yang files.
  • Loading branch information
SlavomirMazurPantheon committed Oct 8, 2023
2 parents d5ff8d4 + b106ed8 commit 0a04268
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 12 deletions.
13 changes: 13 additions & 0 deletions experimental/ietf-extracted-YANG-modules/example-adm.yang
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module example-adm {
yang-version 1.1;
namespace "ari:/example-adm";
prefix example-adm;

import ietf-amm {
prefix amm;
}

organization "Example Org.";
description "Example module.";
amm:enum "4294967296";
}
20 changes: 10 additions & 10 deletions ...es/[email protected] → ...es/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ module ietf-distributed-notif {
This version of this YANG module is part of RFC XXXX; see the
RFC itself for full legal notices.";

revision 2023-03-06 {
revision 2023-09-17 {
description
"Initial version";
reference
"RFC XXXX: Subscription to Distributed Notifications";
}

grouping message-observation-domain-ids {
grouping message-publisher-ids {
description
"Provides a reusable list of message-observation-domain-ids.";
"Provides a reusable list of message-publisher-ids.";

leaf-list message-observation-domain-id {
leaf-list message-publisher-id {
type uint32;
config false;
ordered-by user;
Expand All @@ -59,33 +59,33 @@ module ietf-distributed-notif {

augment "/sn:subscriptions/sn:subscription" {
description
"This augmentation allows the message
Observation Domain ID to be exposed for a subscription.";
"This augmentation allows the Message
Publisher ID to be exposed for a subscription.";

uses message-observation-domain-ids;
uses message-publisher-ids;
}

augment "/sn:subscription-started" {
description
"This augmentation allows MSO specific parameters to be
exposed for a subscription.";

uses message-observation-domain-ids;
uses message-publisher-ids;
}

augment "/sn:subscription-modified" {
description
"This augmentation allows MSO specific parameters to be
exposed for a subscription.";

uses message-observation-domain-ids;
uses message-publisher-ids;
}

augment "/sn:establish-subscription/sn:output" {
description
"This augmentation allows MSO specific parameters to be
exposed for a subscription.";

uses message-observation-domain-ids;
uses message-publisher-ids;
}
}
3 changes: 2 additions & 1 deletion experimental/ietf-extracted-YANG-modules/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ module ietf-notification-sequencing {
<mailto:[email protected]>
Alex Huang Feng
<mailto:[email protected]>";

description
"Defines NETCONF Event Notification structure with the sysName and
the sequenceNumber.
Expand Down Expand Up @@ -66,7 +67,7 @@ module ietf-notification-sequencing {
"IP address or a DNS domain name from the server from which
the message was published.";
}
leaf publisherId {
leaf messagePublisherId {
type uint32;
mandatory true;
description
Expand Down
20 changes: 19 additions & 1 deletion ...s/[email protected] → ...s/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ module ietf-yang-push-revision {
This version of this YANG module is part of RFC XXXX; see the RFC
itself for full legal notices.";

revision 2023-07-03 {
revision 2023-09-17 {
description
"First revision";
reference
Expand All @@ -77,6 +77,23 @@ module ietf-yang-push-revision {
revision-label in the YANG subscription.";
}

// Identities
identity revision-unsupported {
base sn:establish-subscription-error;
base sn:modify-subscription-error;
description
"Revision not supported. This failure can be due to subscribing
to a specific revision not supported by the publisher.";
}

identity revision-label-unsupported {
base sn:establish-subscription-error;
base sn:modify-subscription-error;
description
"Revision-label not supported. This failure can be due to subscribing
to a specific revision-label not supported by the publisher.";
}

grouping yang-push-module-version-config {
description
"This grouping combines the module name, the revision and
Expand Down Expand Up @@ -141,6 +158,7 @@ module ietf-yang-push-revision {
uses ypr:yang-push-module-version;
}
}

grouping yang-push-module-version-config-list {
description
"This grouping defines a list of yang-push-module-version-config
Expand Down

0 comments on commit 0a04268

Please sign in to comment.