-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,105 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -81,6 +81,7 @@ def __init__(self, **kwargs): | |
'poe', | ||
'mgmt_servers', | ||
'ospf_area', | ||
'ssh', | ||
'fbs_groups' | ||
] | ||
|
||
|
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,65 @@ | ||
# | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2024 Dell Inc. or its subsidiaries. All Rights Reserved | ||
# GNU General Public License v3.0+ | ||
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
|
||
############################################# | ||
# WARNING # | ||
############################################# | ||
# | ||
# This file is auto generated by the resource | ||
# module builder playbook. | ||
# | ||
# Do not edit this file manually. | ||
# | ||
# Changes to this file will be over written | ||
# by the resource module builder. | ||
# | ||
# Changes should be made in the model used to | ||
# generate this file or in the resource module | ||
# builder template. | ||
# | ||
############################################# | ||
|
||
""" | ||
The arg spec for the sonic_ssh module | ||
""" | ||
|
||
from __future__ import absolute_import, division, print_function | ||
__metaclass__ = type | ||
|
||
|
||
class SshArgs(object): # pylint: disable=R0903 | ||
"""The arg spec for the sonic_ssh module | ||
""" | ||
|
||
def __init__(self, **kwargs): | ||
pass | ||
|
||
argument_spec = { | ||
'config': { | ||
'options': { | ||
'client': { | ||
'options': { | ||
'cipher': { | ||
'type': 'str' | ||
}, | ||
'kex': { | ||
'type': 'str' | ||
}, | ||
'mac': { | ||
'type': 'str' | ||
} | ||
}, | ||
'type': 'dict' | ||
} | ||
}, | ||
'type': 'dict' | ||
}, | ||
'state': { | ||
'choices': ['merged', 'deleted', 'replaced', 'overridden'], | ||
'default': 'merged', | ||
'type': 'str' | ||
} | ||
} # pylint: disable=C0301 |
Oops, something went wrong.