-
Notifications
You must be signed in to change notification settings - Fork 104
Added support for description to aci_syslog_group module. (DCNE-373) #763
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
DevSinha13
wants to merge
5
commits into
CiscoDevNet:master
Choose a base branch
from
DevSinha13:description
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4c70cc3
[minor_change] Added support for description to aci_syslog_group module.
Dev-Sinha13 1551ff6
[ignore] Updated Test file for aci_syslog_group
Dev-Sinha13 b9b4084
[minor_change] Added two new attributes to aci_syslog_group and optio…
Dev-Sinha13 a346493
[ignore] Added description for default values of attributes in aci_sy…
Dev-Sinha13 8ee35df
[ignore] Fixed documentation issues
Dev-Sinha13 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright: (c) 2021, Tim Cragg (@timcragg) | ||
# Copyright: (c) 2025, Dev Sinha (@DevSinha13) | ||
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
|
||
from __future__ import absolute_import, division, print_function | ||
|
@@ -59,6 +61,11 @@ | |
- Name of the syslog group | ||
type: str | ||
aliases: [ syslog_group, syslog_group_name ] | ||
description: | ||
description: | ||
- Description for the syslog group. | ||
type: str | ||
aliases: [ descr ] | ||
state: | ||
description: | ||
- Use C(present) or C(absent) for adding or removing. | ||
|
@@ -76,6 +83,7 @@ | |
link: https://developer.cisco.com/docs/apic-mim-ref/ | ||
author: | ||
- Tim Cragg (@timcragg) | ||
- Dev Sinha (@DevSinha13) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. update example below with description attribute included |
||
""" | ||
|
||
EXAMPLES = r""" | ||
|
@@ -257,6 +265,7 @@ def main(): | |
include_ms=dict(type="bool"), | ||
include_time_zone=dict(type="bool"), | ||
state=dict(type="str", default="present", choices=["absent", "present", "query"]), | ||
description=dict(type="str", aliases=["descr"]), | ||
) | ||
|
||
module = AnsibleModule( | ||
|
@@ -280,6 +289,7 @@ def main(): | |
include_ms = aci.boolean(module.params.get("include_ms")) | ||
include_time_zone = aci.boolean(module.params.get("include_time_zone")) | ||
state = module.params.get("state") | ||
description = module.params.get("description") | ||
|
||
aci.construct_url( | ||
root_class=dict( | ||
|
@@ -297,6 +307,7 @@ def main(): | |
class_config = dict( | ||
name=name, | ||
format=format, | ||
descr=description, | ||
includeMilliSeconds=include_ms, | ||
) | ||
if include_time_zone is not None: | ||
|
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the format attribute in latest version it is also possible to configure Enhanced Log option
rfc5424-ts
, same applies to format in aci_syslog_remote_dest. Please find out what this is and add to choices if applicable.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also the children syslogConsole and syslogFile seem to have format also, is this something that can be configured?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In UI and model 6.0.9d the severity is restricted to only 3 option for console, please check if we should remove existing values if they do not work? Also verify the models of earlier versions of ACI.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.)Ok I have added the new option "rfc5424-ts"
2.)Yes it can be configured and exposed a format attribute for syslogConsole and syslogFile
3.)I have addressed the severity options