1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-12 15:05:07 +00:00

arg_spec adjustments: modules [a-f]* (#10494)

* arg_spec adjustments: modules [a-f]*

* add changelog frag

* Update changelogs/fragments/10494-rfdn-1.yml

Co-authored-by: Felix Fontein <felix@fontein.de>

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Alexei Znamensky 2025-07-29 04:44:25 +12:00 committed by GitHub
parent de0618b843
commit 736ce1983d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 134 additions and 110 deletions

View file

@ -175,18 +175,18 @@ def main():
module = AnsibleModule(
argument_spec=dict(
api_key=dict(required=True, no_log=True),
api_host=dict(required=False, default="https://api.datadoghq.com"),
api_host=dict(default="https://api.datadoghq.com"),
app_key=dict(required=True, no_log=True),
state=dict(required=False, choices=["present", "absent"], default="present"),
monitor_tags=dict(required=False, type="list", elements="str"),
scope=dict(required=False, type="list", elements="str"),
monitor_id=dict(required=False, type="int"),
downtime_message=dict(required=False, no_log=True),
start=dict(required=False, type="int"),
end=dict(required=False, type="int"),
timezone=dict(required=False, type="str"),
rrule=dict(required=False, type="str"),
id=dict(required=False, type="int"),
state=dict(choices=["present", "absent"], default="present"),
monitor_tags=dict(type="list", elements="str"),
scope=dict(type="list", elements="str"),
monitor_id=dict(type="int"),
downtime_message=dict(no_log=True),
start=dict(type="int"),
end=dict(type="int"),
timezone=dict(type="str"),
rrule=dict(type="str"),
id=dict(type="int"),
)
)