Improving argument_spec
This commit is contained in:
parent
2f58306564
commit
693f8e623a
1 changed files with 5 additions and 5 deletions
|
@ -800,15 +800,15 @@ def main():
|
|||
argument_spec=dict(
|
||||
interface=dict(required=True),
|
||||
sparse=dict(type='bool', default=True),
|
||||
dr_prio=dict(),
|
||||
hello_auth_key=dict(),
|
||||
dr_prio=dict(type='str'),
|
||||
hello_auth_key=dict(type='str'),
|
||||
hello_interval=dict(type='int'),
|
||||
jp_policy_out=dict(),
|
||||
jp_policy_in=dict(),
|
||||
jp_policy_out=dict(type='str'),
|
||||
jp_policy_in=dict(type='str'),
|
||||
jp_type_out=dict(choices=['prefix', 'routemap']),
|
||||
jp_type_in=dict(choices=['prefix', 'routemap']),
|
||||
border=dict(type='bool'),
|
||||
neighbor_policy=dict(),
|
||||
neighbor_policy=dict(type='str'),
|
||||
neighbor_type=dict(choices=['prefix', 'routemap']),
|
||||
state=dict(choices=['present', 'absent', 'default'],
|
||||
default='present'),
|
||||
|
|
Loading…
Reference in a new issue