-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cronjob - daily check of IETF modules.
- Loading branch information
Miroslav Kovac
committed
Oct 11, 2024
1 parent
50b1bcf
commit d925787
Showing
22 changed files
with
5,821 additions
and
29 deletions.
There are no files selected for viewing
103 changes: 103 additions & 0 deletions
103
experimental/ietf-extracted-YANG-modules/[email protected]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
module ietf-netconf-private-candidate { | ||
yang-version 1.1; | ||
namespace "urn:ietf:params:xml:ns:netconf:private-candidate:1.0"; | ||
prefix pc; | ||
|
||
import ietf-nmda-compare { | ||
prefix cmp; | ||
} | ||
|
||
organization | ||
"IETF NETCONF (Network Configuration) Working Group"; | ||
contact | ||
"WG Web: <http://tools.ietf.org/wg/netconf/> | ||
WG List: <[email protected]> | ||
WG Chair: Kent Watsen | ||
<[email protected]> | ||
WG Chair: Per Andersson | ||
<[email protected]> | ||
Editor: James Cumming | ||
<[email protected]> | ||
Editor: Robert Wills | ||
<[email protected]>"; | ||
description | ||
"NETCONF private candidate support. | ||
Copyright (c) 2024 IETF Trust and the persons identified as | ||
authors of the code. All rights reserved. | ||
Redistribution and use in source and binary forms, with or | ||
without modification, is permitted pursuant to, and subject | ||
to the license terms contained in, the Revised BSD License | ||
set forth in Section 4.c of the IETF Trustâs Legal Provisions | ||
Relating to IETF Documents | ||
(https://trustee.ietf.org/license-info). | ||
This version of this YANG module is part of | ||
draft-ietf-netconf-privcand; see these documents for full | ||
legal notices."; | ||
|
||
revision 2024-09-12 { | ||
description | ||
"Introduce private candidate support"; | ||
reference | ||
"draft-ietf-netconf-privcand: | ||
Netconf Private Candidates"; | ||
} | ||
|
||
feature private-candidate { | ||
description | ||
"NETCONF :private-candidate capability; | ||
If the server advertises the :private-candidate | ||
capability for a session, then this feature must | ||
also be enabled for that session. Otherwise, | ||
this feature must not be enabled."; | ||
reference | ||
"draft-ietf-netconf-privcand"; | ||
} | ||
|
||
rpc update { | ||
if-feature "private-candidate"; | ||
description | ||
"Updates the private candidate from the running | ||
configuration."; | ||
reference | ||
"draft-ietf-netconf-privcand"; | ||
input { | ||
leaf resolution-mode { | ||
description | ||
"Mode to resolve conflicts between running and | ||
private-candidate configurations."; | ||
default revert-on-conflict; | ||
type enumeration { | ||
enum revert-on-conflict; | ||
enum ignore; | ||
enum overwrite; | ||
} | ||
} | ||
} | ||
} | ||
augment /cmp:compare/cmp:input { | ||
leaf reference-point { | ||
reference "draft-ietf-netconf-privcand"; | ||
if-feature "private-candidate"; | ||
description | ||
"When this leaf is provided and the source or | ||
destination is the candidate datastore, operating | ||
in private candidate mode, the comparison will | ||
either occur between the last-update point of | ||
the private candidate or the creation-point of | ||
the private candidate."; | ||
default last-update; | ||
type enumeration { | ||
enum last-update; | ||
enum creation-point; | ||
} | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ietf-babel@2024-10-10.yang |
Oops, something went wrong.