Add support for 'ppp secret' path (#286)

* Add support for 'ppp secret' path

* Add changelog fragment
This commit is contained in:
samburney 2024-05-18 23:29:49 +09:30 committed by GitHub
parent 1953a79942
commit 331a97b12d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 25 additions and 0 deletions

View file

@ -4600,6 +4600,27 @@ PATHS = {
},
),
),
('ppp', 'secret'): APIData(
unversioned=VersionedAPIData(
fully_understood=True,
primary_keys=('name', ),
fields={
'caller-id': KeyInfo(default=''),
'disabled': KeyInfo(default=False),
'ipv6-routes': KeyInfo(default=''),
'limit-bytes-in': KeyInfo(default=0),
'limit-bytes-out': KeyInfo(default=0),
'local-address': KeyInfo(can_disable=True),
'name': KeyInfo(required=True),
'password': KeyInfo(),
'profile': KeyInfo(default='default'),
'remote-address': KeyInfo(can_disable=True),
'remote-ipv6-prefix': KeyInfo(can_disable=True),
'routes': KeyInfo(can_disable=True),
'service': KeyInfo(default='any'),
},
),
),
('routing', 'bgp', 'aggregate'): APIData(
unversioned=VersionedAPIData(
primary_keys=('prefix',),