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

@ -0,0 +1,2 @@
minor_changes:
- api_info, api_modify - add missing path ``/ppp secret`` (https://github.com/ansible-collections/community.routeros/pull/286).

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( ('routing', 'bgp', 'aggregate'): APIData(
unversioned=VersionedAPIData( unversioned=VersionedAPIData(
primary_keys=('prefix',), primary_keys=('prefix',),

View file

@ -186,6 +186,7 @@ options:
- port remote-access - port remote-access
- ppp aaa - ppp aaa
- ppp profile - ppp profile
- ppp secret
- queue interface - queue interface
- queue simple - queue simple
- queue tree - queue tree

View file

@ -195,6 +195,7 @@ options:
- port remote-access - port remote-access
- ppp aaa - ppp aaa
- ppp profile - ppp profile
- ppp secret
- queue interface - queue interface
- queue simple - queue simple
- queue tree - queue tree