mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-28 20:40:24 +02:00
Add support for 'ppp secret' path (#286)
* Add support for 'ppp secret' path * Add changelog fragment
This commit is contained in:
parent
1953a79942
commit
331a97b12d
4 changed files with 25 additions and 0 deletions
2
changelogs/fragments/286-add_ppp_secret_path.yml
Normal file
2
changelogs/fragments/286-add_ppp_secret_path.yml
Normal 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).
|
|
@ -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',),
|
||||
|
|
|
@ -186,6 +186,7 @@ options:
|
|||
- port remote-access
|
||||
- ppp aaa
|
||||
- ppp profile
|
||||
- ppp secret
|
||||
- queue interface
|
||||
- queue simple
|
||||
- queue tree
|
||||
|
|
|
@ -195,6 +195,7 @@ options:
|
|||
- port remote-access
|
||||
- ppp aaa
|
||||
- ppp profile
|
||||
- ppp secret
|
||||
- queue interface
|
||||
- queue simple
|
||||
- queue tree
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue