Skip to content

Commit

Permalink
Merge branch 'main' into fbs_groups
Browse files Browse the repository at this point in the history
  • Loading branch information
stalabi1 authored Nov 13, 2024
2 parents 498a0f1 + e500d90 commit a5a10ce
Show file tree
Hide file tree
Showing 16 changed files with 1,105 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/module_utils/network/sonic/argspec/facts/facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def __init__(self, **kwargs):
'poe',
'mgmt_servers',
'ospf_area',
'ssh',
'fbs_groups'
]

Expand Down
65 changes: 65 additions & 0 deletions plugins/module_utils/network/sonic/argspec/ssh/ssh.py
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
Loading

0 comments on commit a5a10ce

Please sign in to comment.