added more attributes for existing facilities (#74331)

pull/75424/head
Brian Coca 3 years ago committed by GitHub
parent 75e6bdb579
commit f1ad6cf479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -138,11 +138,12 @@ attributes:
action: action:
support: full support: full
check_mode: check_mode:
version_added: '0.9'
support: full support: full
diff_mode: diff_mode:
support: full support: full
version_added: '0.9' vault:
support: full
version_added: '2.2'
''' '''
EXAMPLES = r''' EXAMPLES = r'''

@ -14,6 +14,13 @@ attributes:
action: action:
description: Indicates this has a corresponding action plugin so some parts of the options can be executed on the controller description: Indicates this has a corresponding action plugin so some parts of the options can be executed on the controller
support: none support: none
action_group:
description: Action is part of action_group(s), for convenient setting of module_defaults.
support: none
membership: []
api:
description: Instead of executing code on a target, this action interacts with an API on behalf of the target.
support: none
async: async:
description: Supports being used with the ``async`` keyword description: Supports being used with the ``async`` keyword
support: full support: full
@ -21,10 +28,11 @@ attributes:
description: Is usable alongside become keywords description: Is usable alongside become keywords
support: full support: full
bypass_host_loop: bypass_host_loop:
description: Forces a 'global' task that does not execute per host, cannot be used in non lockstep strategies description: Forces a 'global' task that does not execute per host, this bypasses per host templating and serial,
throttle and other loop considerations. Also, this action cannot be used in non lockstep strategies
support: none support: none
check_mode: check_mode:
description: Can run in check_mode and return changed status prediction description: Can run in check_mode and return changed status prediction withought modifying target
support: none support: none
connection: connection:
description: Uses the target's configured connection information to execute code on it description: Uses the target's configured connection information to execute code on it
@ -35,27 +43,51 @@ attributes:
delegation: delegation:
description: Can be used in conjunction with delegate_to and related keywords description: Can be used in conjunction with delegate_to and related keywords
support: full support: full
diff: diff_mode:
description: Will return details on what has changed when in diff is enabled description: Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode
support: none support: none
facts: facts:
description: Action returns an ``ansible_facts`` dictionary that will update existing host facts description: Action returns an ``ansible_facts`` dictionary that will update existing host facts
support: none support: none
forced_local:
description: The connection itself is passed to the action while the code is still executed on the controller
support: none
forced_action_plugin:
description: This action uses a specific action plugin instead of 'normal' or matching by name
support: none
action_plugin: none
info:
description: This returns general info (not facts) that you might want to register into a variable for later use
support: none
loops: loops:
description: both ``loop`` and ``with_`` looping keywords will be honored. description: both ``loop`` and ``with_`` looping keywords will be honored
support: full support: full
proprietary: proprietary:
description: Can only be run against specific proprietary OS, normally a network appliance or similar description: Designed to only be run against specific proprietary OS(s), normally a network appliance or similar
support: none support: none
platforms: []
posix: posix:
description: Can be run against most POSIX (and GNU/Linux) OS targets description: Can be run against most POSIX (and GNU/Linux) OS targets
support: full support: full
safe_file_operations:
description: Uses Ansbile's strict file operation functions to ensure proper permissions and avoid data corruption
support: none
tags: tags:
description: Tags will determine if this task considered for execution description: Tags will be evaluated to determine if this task considered for execution
support: full support: full
tty:
description: requires direct access to a TTY
support: none
turbo:
description: Uses an Ansible supplied caching mechanism (Turbo!) on the remote for authentication and
3rd party libraries to speed up recurrent execution
support: none
until: until:
description: Usable inside until/retry loops description: Usable with until/retry loops
support: full support: full
vault:
description: Can automatically decrypt Ansible vaulted files
support: none
windows: windows:
description: Can be run against Windows OS targets description: Can be run against Windows OS targets
support: none support: none

Loading…
Cancel
Save