mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* Tidy up validate-modules ignores doc-required-mismatch * Tidy up validate-modules ignores doc-required-mismatch - update on 2.11 * Fixed chengelog frag * rolledback removal of parameter from cloud/smartos/vmadm.py * removed changelog frag for the rollback * Update plugins/modules/cloud/smartos/vmadm.py Co-authored-by: Felix Fontein <felix@fontein.de> * Revert "removed changelog frag for the rollback" This reverts commit56a02ead3b
. * suggestion from PR * yet another PR suggestion Co-authored-by: Felix Fontein <felix@fontein.de> (cherry picked from commitb69ea1dfd9
) Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
a46fb7bcae
commit
1dfe7963cf
51 changed files with 158 additions and 220 deletions
2
changelogs/fragments/1415-valmod_req_mismatch.yml
Normal file
2
changelogs/fragments/1415-valmod_req_mismatch.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- vmadm - simplification of code (https://github.com/ansible-collections/community.general/pull/1415).
|
|
@ -24,7 +24,6 @@ options:
|
||||||
- Value can also be specified using C(INFOBLOX_HOST) environment
|
- Value can also be specified using C(INFOBLOX_HOST) environment
|
||||||
variable.
|
variable.
|
||||||
type: str
|
type: str
|
||||||
required: true
|
|
||||||
username:
|
username:
|
||||||
description:
|
description:
|
||||||
- Configures the username to use to authenticate the connection to
|
- Configures the username to use to authenticate the connection to
|
||||||
|
|
|
@ -15,6 +15,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Online OAuth token.
|
- Online OAuth token.
|
||||||
type: str
|
type: str
|
||||||
|
required: true
|
||||||
aliases: [ oauth_token ]
|
aliases: [ oauth_token ]
|
||||||
api_url:
|
api_url:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -41,7 +41,6 @@ options:
|
||||||
id:
|
id:
|
||||||
description:
|
description:
|
||||||
- "ID of the scheduling policy."
|
- "ID of the scheduling policy."
|
||||||
required: true
|
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- "Name of the scheduling policy, can be used as glob expression."
|
- "Name of the scheduling policy, can be used as glob expression."
|
||||||
|
@ -77,7 +76,6 @@ ovirt_scheduling_policies:
|
||||||
import fnmatch
|
import fnmatch
|
||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
from ansible.module_utils.common.removed import removed_module
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible_collections.community.general.plugins.module_utils._ovirt import (
|
from ansible_collections.community.general.plugins.module_utils._ovirt import (
|
||||||
check_sdk,
|
check_sdk,
|
||||||
|
|
|
@ -48,7 +48,6 @@ options:
|
||||||
project_id:
|
project_id:
|
||||||
description:
|
description:
|
||||||
- UUID of a project of the device to/from which to assign/remove a subnet.
|
- UUID of a project of the device to/from which to assign/remove a subnet.
|
||||||
required: True
|
|
||||||
type: str
|
type: str
|
||||||
|
|
||||||
device_count:
|
device_count:
|
||||||
|
@ -63,6 +62,7 @@ options:
|
||||||
- IPv4 or IPv6 subnet which you want to manage. It must come from a reserved block for your project in the Packet Host.
|
- IPv4 or IPv6 subnet which you want to manage. It must come from a reserved block for your project in the Packet Host.
|
||||||
aliases: [name]
|
aliases: [name]
|
||||||
type: str
|
type: str
|
||||||
|
required: true
|
||||||
|
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -45,6 +45,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- UUID of the project to which the device and volume belong.
|
- UUID of the project to which the device and volume belong.
|
||||||
type: str
|
type: str
|
||||||
|
required: true
|
||||||
|
|
||||||
volume:
|
volume:
|
||||||
description:
|
description:
|
||||||
|
@ -52,6 +53,7 @@ options:
|
||||||
- It can be a UUID, an API-generated volume name, or user-defined description string.
|
- It can be a UUID, an API-generated volume name, or user-defined description string.
|
||||||
- 'Example values: 4a347482-b546-4f67-8300-fb5018ef0c5, volume-4a347482, "my volume"'
|
- 'Example values: 4a347482-b546-4f67-8300-fb5018ef0c5, volume-4a347482, "my volume"'
|
||||||
type: str
|
type: str
|
||||||
|
required: true
|
||||||
|
|
||||||
device:
|
device:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -21,193 +21,235 @@ options:
|
||||||
description:
|
description:
|
||||||
- When enabled, the zone dataset will be mounted on C(/zones/archive)
|
- When enabled, the zone dataset will be mounted on C(/zones/archive)
|
||||||
upon removal.
|
upon removal.
|
||||||
|
type: bool
|
||||||
autoboot:
|
autoboot:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Whether or not a VM is booted when the system is rebooted.
|
- Whether or not a VM is booted when the system is rebooted.
|
||||||
|
type: bool
|
||||||
brand:
|
brand:
|
||||||
required: true
|
|
||||||
choices: [ joyent, joyent-minimal, lx, kvm, bhyve ]
|
choices: [ joyent, joyent-minimal, lx, kvm, bhyve ]
|
||||||
default: joyent
|
default: joyent
|
||||||
description:
|
description:
|
||||||
- Type of virtual machine. The C(bhyve) option was added in community.general 0.2.0.
|
- Type of virtual machine. The C(bhyve) option was added in community.general 0.2.0.
|
||||||
|
type: str
|
||||||
boot:
|
boot:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Set the boot order for KVM VMs.
|
- Set the boot order for KVM VMs.
|
||||||
|
type: str
|
||||||
cpu_cap:
|
cpu_cap:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Sets a limit on the amount of CPU time that can be used by a VM.
|
- Sets a limit on the amount of CPU time that can be used by a VM.
|
||||||
Use C(0) for no cap.
|
Use C(0) for no cap.
|
||||||
|
type: int
|
||||||
cpu_shares:
|
cpu_shares:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Sets a limit on the number of fair share scheduler (FSS) CPU shares for
|
- Sets a limit on the number of fair share scheduler (FSS) CPU shares for
|
||||||
a VM. This limit is relative to all other VMs on the system.
|
a VM. This limit is relative to all other VMs on the system.
|
||||||
|
type: int
|
||||||
cpu_type:
|
cpu_type:
|
||||||
required: false
|
required: false
|
||||||
choices: [ qemu64, host ]
|
choices: [ qemu64, host ]
|
||||||
default: qemu64
|
default: qemu64
|
||||||
description:
|
description:
|
||||||
- Control the type of virtual CPU exposed to KVM VMs.
|
- Control the type of virtual CPU exposed to KVM VMs.
|
||||||
|
type: str
|
||||||
customer_metadata:
|
customer_metadata:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Metadata to be set and associated with this VM, this contain customer
|
- Metadata to be set and associated with this VM, this contain customer
|
||||||
modifiable keys.
|
modifiable keys.
|
||||||
|
type: dict
|
||||||
delegate_dataset:
|
delegate_dataset:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Whether to delegate a ZFS dataset to an OS VM.
|
- Whether to delegate a ZFS dataset to an OS VM.
|
||||||
|
type: bool
|
||||||
disk_driver:
|
disk_driver:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Default value for a virtual disk model for KVM guests.
|
- Default value for a virtual disk model for KVM guests.
|
||||||
|
type: str
|
||||||
disks:
|
disks:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- A list of disks to add, valid properties are documented in vmadm(1M).
|
- A list of disks to add, valid properties are documented in vmadm(1M).
|
||||||
|
type: list
|
||||||
dns_domain:
|
dns_domain:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Domain value for C(/etc/hosts).
|
- Domain value for C(/etc/hosts).
|
||||||
|
type: str
|
||||||
docker:
|
docker:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Docker images need this flag enabled along with the I(brand) set to C(lx).
|
- Docker images need this flag enabled along with the I(brand) set to C(lx).
|
||||||
|
type: bool
|
||||||
filesystems:
|
filesystems:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Mount additional filesystems into an OS VM.
|
- Mount additional filesystems into an OS VM.
|
||||||
|
type: list
|
||||||
firewall_enabled:
|
firewall_enabled:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Enables the firewall, allowing fwadm(1M) rules to be applied.
|
- Enables the firewall, allowing fwadm(1M) rules to be applied.
|
||||||
|
type: bool
|
||||||
force:
|
force:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Force a particular action (i.e. stop or delete a VM).
|
- Force a particular action (i.e. stop or delete a VM).
|
||||||
|
type: bool
|
||||||
fs_allowed:
|
fs_allowed:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Comma separated list of filesystem types this zone is allowed to mount.
|
- Comma separated list of filesystem types this zone is allowed to mount.
|
||||||
|
type: str
|
||||||
hostname:
|
hostname:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Zone/VM hostname.
|
- Zone/VM hostname.
|
||||||
|
type: str
|
||||||
image_uuid:
|
image_uuid:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Image UUID.
|
- Image UUID.
|
||||||
|
type: str
|
||||||
indestructible_delegated:
|
indestructible_delegated:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Adds an C(@indestructible) snapshot to delegated datasets.
|
- Adds an C(@indestructible) snapshot to delegated datasets.
|
||||||
|
type: bool
|
||||||
indestructible_zoneroot:
|
indestructible_zoneroot:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Adds an C(@indestructible) snapshot to zoneroot.
|
- Adds an C(@indestructible) snapshot to zoneroot.
|
||||||
|
type: bool
|
||||||
internal_metadata:
|
internal_metadata:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Metadata to be set and associated with this VM, this contains operator
|
- Metadata to be set and associated with this VM, this contains operator
|
||||||
generated keys.
|
generated keys.
|
||||||
|
type: dict
|
||||||
internal_metadata_namespace:
|
internal_metadata_namespace:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- List of namespaces to be set as I(internal_metadata-only); these namespaces
|
- List of namespaces to be set as I(internal_metadata-only); these namespaces
|
||||||
will come from I(internal_metadata) rather than I(customer_metadata).
|
will come from I(internal_metadata) rather than I(customer_metadata).
|
||||||
|
type: str
|
||||||
kernel_version:
|
kernel_version:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Kernel version to emulate for LX VMs.
|
- Kernel version to emulate for LX VMs.
|
||||||
|
type: str
|
||||||
limit_priv:
|
limit_priv:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Set (comma separated) list of privileges the zone is allowed to use.
|
- Set (comma separated) list of privileges the zone is allowed to use.
|
||||||
|
type: str
|
||||||
maintain_resolvers:
|
maintain_resolvers:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Resolvers in C(/etc/resolv.conf) will be updated when updating
|
- Resolvers in C(/etc/resolv.conf) will be updated when updating
|
||||||
the I(resolvers) property.
|
the I(resolvers) property.
|
||||||
|
type: bool
|
||||||
max_locked_memory:
|
max_locked_memory:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Total amount of memory (in MiBs) on the host that can be locked by this VM.
|
- Total amount of memory (in MiBs) on the host that can be locked by this VM.
|
||||||
|
type: int
|
||||||
max_lwps:
|
max_lwps:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Maximum number of lightweight processes this VM is allowed to have running.
|
- Maximum number of lightweight processes this VM is allowed to have running.
|
||||||
|
type: int
|
||||||
max_physical_memory:
|
max_physical_memory:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Maximum amount of memory (in MiBs) on the host that the VM is allowed to use.
|
- Maximum amount of memory (in MiBs) on the host that the VM is allowed to use.
|
||||||
|
type: int
|
||||||
max_swap:
|
max_swap:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Maximum amount of virtual memory (in MiBs) the VM is allowed to use.
|
- Maximum amount of virtual memory (in MiBs) the VM is allowed to use.
|
||||||
|
type: int
|
||||||
mdata_exec_timeout:
|
mdata_exec_timeout:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Timeout in seconds (or 0 to disable) for the C(svc:/smartdc/mdata:execute) service
|
- Timeout in seconds (or 0 to disable) for the C(svc:/smartdc/mdata:execute) service
|
||||||
that runs user-scripts in the zone.
|
that runs user-scripts in the zone.
|
||||||
|
type: int
|
||||||
name:
|
name:
|
||||||
required: false
|
required: false
|
||||||
aliases: [ alias ]
|
aliases: [ alias ]
|
||||||
description:
|
description:
|
||||||
- Name of the VM. vmadm(1M) uses this as an optional name.
|
- Name of the VM. vmadm(1M) uses this as an optional name.
|
||||||
|
type: str
|
||||||
nic_driver:
|
nic_driver:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Default value for a virtual NIC model for KVM guests.
|
- Default value for a virtual NIC model for KVM guests.
|
||||||
|
type: str
|
||||||
nics:
|
nics:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- A list of nics to add, valid properties are documented in vmadm(1M).
|
- A list of nics to add, valid properties are documented in vmadm(1M).
|
||||||
|
type: list
|
||||||
nowait:
|
nowait:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Consider the provisioning complete when the VM first starts, rather than
|
- Consider the provisioning complete when the VM first starts, rather than
|
||||||
when the VM has rebooted.
|
when the VM has rebooted.
|
||||||
|
type: bool
|
||||||
qemu_opts:
|
qemu_opts:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Additional qemu arguments for KVM guests. This overwrites the default arguments
|
- Additional qemu arguments for KVM guests. This overwrites the default arguments
|
||||||
provided by vmadm(1M) and should only be used for debugging.
|
provided by vmadm(1M) and should only be used for debugging.
|
||||||
|
type: str
|
||||||
qemu_extra_opts:
|
qemu_extra_opts:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Additional qemu cmdline arguments for KVM guests.
|
- Additional qemu cmdline arguments for KVM guests.
|
||||||
|
type: str
|
||||||
quota:
|
quota:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Quota on zone filesystems (in MiBs).
|
- Quota on zone filesystems (in MiBs).
|
||||||
|
type: int
|
||||||
ram:
|
ram:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Amount of virtual RAM for a KVM guest (in MiBs).
|
- Amount of virtual RAM for a KVM guest (in MiBs).
|
||||||
|
type: int
|
||||||
resolvers:
|
resolvers:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- List of resolvers to be put into C(/etc/resolv.conf).
|
- List of resolvers to be put into C(/etc/resolv.conf).
|
||||||
|
type: list
|
||||||
routes:
|
routes:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Dictionary that maps destinations to gateways, these will be set as static
|
- Dictionary that maps destinations to gateways, these will be set as static
|
||||||
routes in the VM.
|
routes in the VM.
|
||||||
|
type: dict
|
||||||
spice_opts:
|
spice_opts:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Addition options for SPICE-enabled KVM VMs.
|
- Addition options for SPICE-enabled KVM VMs.
|
||||||
|
type: str
|
||||||
spice_password:
|
spice_password:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Password required to connect to SPICE. By default no password is set.
|
- Password required to connect to SPICE. By default no password is set.
|
||||||
Please note this can be read from the Global Zone.
|
Please note this can be read from the Global Zone.
|
||||||
|
type: str
|
||||||
state:
|
state:
|
||||||
required: true
|
|
||||||
choices: [ present, running, absent, deleted, stopped, created, restarted, rebooted ]
|
choices: [ present, running, absent, deleted, stopped, created, restarted, rebooted ]
|
||||||
|
default: running
|
||||||
description:
|
description:
|
||||||
- States for the VM to be in. Please note that C(present), C(stopped) and C(restarted)
|
- States for the VM to be in. Please note that C(present), C(stopped) and C(restarted)
|
||||||
operate on a VM that is currently provisioned. C(present) means that the VM will be
|
operate on a VM that is currently provisioned. C(present) means that the VM will be
|
||||||
|
@ -215,74 +257,91 @@ options:
|
||||||
shutdown the zone before removing it.
|
shutdown the zone before removing it.
|
||||||
C(stopped) means the zone will be created if it doesn't exist already, before shutting
|
C(stopped) means the zone will be created if it doesn't exist already, before shutting
|
||||||
it down.
|
it down.
|
||||||
|
type: str
|
||||||
tmpfs:
|
tmpfs:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Amount of memory (in MiBs) that will be available in the VM for the C(/tmp) filesystem.
|
- Amount of memory (in MiBs) that will be available in the VM for the C(/tmp) filesystem.
|
||||||
|
type: int
|
||||||
uuid:
|
uuid:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- UUID of the VM. Can either be a full UUID or C(*) for all VMs.
|
- UUID of the VM. Can either be a full UUID or C(*) for all VMs.
|
||||||
|
type: str
|
||||||
vcpus:
|
vcpus:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Number of virtual CPUs for a KVM guest.
|
- Number of virtual CPUs for a KVM guest.
|
||||||
|
type: int
|
||||||
vga:
|
vga:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Specify VGA emulation used by KVM VMs.
|
- Specify VGA emulation used by KVM VMs.
|
||||||
|
type: str
|
||||||
virtio_txburst:
|
virtio_txburst:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Number of packets that can be sent in a single flush of the tx queue of virtio NICs.
|
- Number of packets that can be sent in a single flush of the tx queue of virtio NICs.
|
||||||
|
type: int
|
||||||
virtio_txtimer:
|
virtio_txtimer:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Timeout (in nanoseconds) for the TX timer of virtio NICs.
|
- Timeout (in nanoseconds) for the TX timer of virtio NICs.
|
||||||
|
type: int
|
||||||
vnc_password:
|
vnc_password:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Password required to connect to VNC. By default no password is set.
|
- Password required to connect to VNC. By default no password is set.
|
||||||
Please note this can be read from the Global Zone.
|
Please note this can be read from the Global Zone.
|
||||||
|
type: str
|
||||||
vnc_port:
|
vnc_port:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- TCP port to listen of the VNC server. Or set C(0) for random,
|
- TCP port to listen of the VNC server. Or set C(0) for random,
|
||||||
or C(-1) to disable.
|
or C(-1) to disable.
|
||||||
|
type: int
|
||||||
zfs_data_compression:
|
zfs_data_compression:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Specifies compression algorithm used for this VMs data dataset. This option
|
- Specifies compression algorithm used for this VMs data dataset. This option
|
||||||
only has effect on delegated datasets.
|
only has effect on delegated datasets.
|
||||||
|
type: str
|
||||||
zfs_data_recsize:
|
zfs_data_recsize:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Suggested block size (power of 2) for files in the delegated dataset's filesystem.
|
- Suggested block size (power of 2) for files in the delegated dataset's filesystem.
|
||||||
|
type: int
|
||||||
zfs_filesystem_limit:
|
zfs_filesystem_limit:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Maximum number of filesystems the VM can have.
|
- Maximum number of filesystems the VM can have.
|
||||||
|
type: int
|
||||||
zfs_io_priority:
|
zfs_io_priority:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- IO throttle priority value relative to other VMs.
|
- IO throttle priority value relative to other VMs.
|
||||||
|
type: int
|
||||||
zfs_root_compression:
|
zfs_root_compression:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Specifies compression algorithm used for this VMs root dataset. This option
|
- Specifies compression algorithm used for this VMs root dataset. This option
|
||||||
only has effect on the zoneroot dataset.
|
only has effect on the zoneroot dataset.
|
||||||
|
type: str
|
||||||
zfs_root_recsize:
|
zfs_root_recsize:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Suggested block size (power of 2) for files in the zoneroot dataset's filesystem.
|
- Suggested block size (power of 2) for files in the zoneroot dataset's filesystem.
|
||||||
|
type: int
|
||||||
zfs_snapshot_limit:
|
zfs_snapshot_limit:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- Number of snapshots the VM can have.
|
- Number of snapshots the VM can have.
|
||||||
|
type: int
|
||||||
zpool:
|
zpool:
|
||||||
required: false
|
required: false
|
||||||
description:
|
description:
|
||||||
- ZFS pool the VM's zone dataset will be created in.
|
- ZFS pool the VM's zone dataset will be created in.
|
||||||
|
type: str
|
||||||
requirements:
|
requirements:
|
||||||
- python >= 2.6
|
- python >= 2.6
|
||||||
'''
|
'''
|
||||||
|
@ -497,17 +556,11 @@ def set_vm_state(module, vm_uuid, vm_state):
|
||||||
def create_payload(module, uuid):
|
def create_payload(module, uuid):
|
||||||
# Create the JSON payload (vmdef) and return the filename.
|
# Create the JSON payload (vmdef) and return the filename.
|
||||||
|
|
||||||
p = module.params
|
|
||||||
|
|
||||||
# Filter out the few options that are not valid VM properties.
|
# Filter out the few options that are not valid VM properties.
|
||||||
module_options = ['debug', 'force', 'state']
|
module_options = ['debug', 'force', 'state']
|
||||||
vmattrs = filter(lambda prop: prop not in module_options, p)
|
# @TODO make this a simple {} comprehension as soon as py2 is ditched
|
||||||
|
# @TODO {k: v for k, v in p.items() if k not in module_options}
|
||||||
vmdef = {}
|
vmdef = dict([(k, v) for k, v in module.params.items() if k not in module_options and v])
|
||||||
|
|
||||||
for attr in vmattrs:
|
|
||||||
if p[attr]:
|
|
||||||
vmdef[attr] = p[attr]
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
vmdef_json = json.dumps(vmdef)
|
vmdef_json = json.dumps(vmdef)
|
||||||
|
|
|
@ -145,7 +145,6 @@ options:
|
||||||
key_pair:
|
key_pair:
|
||||||
description:
|
description:
|
||||||
- (String) Specify a Key Pair to attach to the instances
|
- (String) Specify a Key Pair to attach to the instances
|
||||||
required: true
|
|
||||||
|
|
||||||
kubernetes:
|
kubernetes:
|
||||||
description:
|
description:
|
||||||
|
@ -181,7 +180,6 @@ options:
|
||||||
monitoring:
|
monitoring:
|
||||||
description:
|
description:
|
||||||
- (Boolean) Describes whether instance Enhanced Monitoring is enabled
|
- (Boolean) Describes whether instance Enhanced Monitoring is enabled
|
||||||
required: true
|
|
||||||
|
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
|
@ -214,7 +212,6 @@ options:
|
||||||
on_demand_instance_type:
|
on_demand_instance_type:
|
||||||
description:
|
description:
|
||||||
- (String) On-demand instance type that will be provisioned
|
- (String) On-demand instance type that will be provisioned
|
||||||
required: true
|
|
||||||
|
|
||||||
opsworks:
|
opsworks:
|
||||||
description:
|
description:
|
||||||
|
@ -342,7 +339,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- (String) The capacity unit to launch instances by.
|
- (String) The capacity unit to launch instances by.
|
||||||
- "The available choices are: C(instance), C(weight)."
|
- "The available choices are: C(instance), C(weight)."
|
||||||
required: true
|
|
||||||
|
|
||||||
up_scaling_policies:
|
up_scaling_policies:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -21,6 +21,7 @@ options:
|
||||||
mgmt_token:
|
mgmt_token:
|
||||||
description:
|
description:
|
||||||
- a management token is required to manipulate the acl lists
|
- a management token is required to manipulate the acl lists
|
||||||
|
required: true
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- whether the ACL pair should be present or absent
|
- whether the ACL pair should be present or absent
|
||||||
|
|
|
@ -49,7 +49,6 @@ options:
|
||||||
- The value should be associated with the given key, required if C(state)
|
- The value should be associated with the given key, required if C(state)
|
||||||
is C(present).
|
is C(present).
|
||||||
type: str
|
type: str
|
||||||
required: yes
|
|
||||||
recurse:
|
recurse:
|
||||||
description:
|
description:
|
||||||
- If the key represents a prefix, each entry with the prefix can be
|
- If the key represents a prefix, each entry with the prefix can be
|
||||||
|
|
|
@ -21,15 +21,17 @@ options:
|
||||||
description:
|
description:
|
||||||
- Indicate desired state of the cluster
|
- Indicate desired state of the cluster
|
||||||
choices: [ cleanup, offline, online, restart ]
|
choices: [ cleanup, offline, online, restart ]
|
||||||
required: yes
|
type: str
|
||||||
node:
|
node:
|
||||||
description:
|
description:
|
||||||
- Specify which node of the cluster you want to manage. None == the
|
- Specify which node of the cluster you want to manage. None == the
|
||||||
cluster status itself, 'all' == check the status of all nodes.
|
cluster status itself, 'all' == check the status of all nodes.
|
||||||
|
type: str
|
||||||
timeout:
|
timeout:
|
||||||
description:
|
description:
|
||||||
- Timeout when the module should considered that the action has failed
|
- Timeout when the module should considered that the action has failed
|
||||||
default: 300
|
default: 300
|
||||||
|
type: int
|
||||||
force:
|
force:
|
||||||
description:
|
description:
|
||||||
- Force the change of the cluster state
|
- Force the change of the cluster state
|
||||||
|
|
|
@ -20,47 +20,57 @@ options:
|
||||||
- C(config) (new in 1.6), ensures a configuration setting on an instance.
|
- C(config) (new in 1.6), ensures a configuration setting on an instance.
|
||||||
- C(flush) flushes all the instance or a specified db.
|
- C(flush) flushes all the instance or a specified db.
|
||||||
- C(slave) sets a redis instance in slave or master mode.
|
- C(slave) sets a redis instance in slave or master mode.
|
||||||
required: true
|
|
||||||
choices: [ config, flush, slave ]
|
choices: [ config, flush, slave ]
|
||||||
|
type: str
|
||||||
login_password:
|
login_password:
|
||||||
description:
|
description:
|
||||||
- The password used to authenticate with (usually not used)
|
- The password used to authenticate with (usually not used)
|
||||||
|
type: str
|
||||||
login_host:
|
login_host:
|
||||||
description:
|
description:
|
||||||
- The host running the database
|
- The host running the database
|
||||||
default: localhost
|
default: localhost
|
||||||
|
type: str
|
||||||
login_port:
|
login_port:
|
||||||
description:
|
description:
|
||||||
- The port to connect to
|
- The port to connect to
|
||||||
default: 6379
|
default: 6379
|
||||||
|
type: int
|
||||||
master_host:
|
master_host:
|
||||||
description:
|
description:
|
||||||
- The host of the master instance [slave command]
|
- The host of the master instance [slave command]
|
||||||
|
type: str
|
||||||
master_port:
|
master_port:
|
||||||
description:
|
description:
|
||||||
- The port of the master instance [slave command]
|
- The port of the master instance [slave command]
|
||||||
|
type: int
|
||||||
slave_mode:
|
slave_mode:
|
||||||
description:
|
description:
|
||||||
- the mode of the redis instance [slave command]
|
- the mode of the redis instance [slave command]
|
||||||
default: slave
|
default: slave
|
||||||
choices: [ master, slave ]
|
choices: [ master, slave ]
|
||||||
|
type: str
|
||||||
db:
|
db:
|
||||||
description:
|
description:
|
||||||
- The database to flush (used in db mode) [flush command]
|
- The database to flush (used in db mode) [flush command]
|
||||||
|
type: int
|
||||||
flush_mode:
|
flush_mode:
|
||||||
description:
|
description:
|
||||||
- Type of flush (all the dbs in a redis instance or a specific one)
|
- Type of flush (all the dbs in a redis instance or a specific one)
|
||||||
[flush command]
|
[flush command]
|
||||||
default: all
|
default: all
|
||||||
choices: [ all, db ]
|
choices: [ all, db ]
|
||||||
|
type: str
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- A redis config key.
|
- A redis config key.
|
||||||
|
type: str
|
||||||
value:
|
value:
|
||||||
description:
|
description:
|
||||||
- A redis config value. When memory size is needed, it is possible
|
- A redis config value. When memory size is needed, it is possible
|
||||||
to specify it in the usal form of 1KB, 2M, 400MB where the base is 1024.
|
to specify it in the usal form of 1KB, 2M, 400MB where the base is 1024.
|
||||||
Units are case insensitive i.e. 1m = 1mb = 1M = 1MB.
|
Units are case insensitive i.e. 1m = 1mb = 1M = 1MB.
|
||||||
|
type: str
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- Requires the redis-py Python package on the remote host. You can
|
- Requires the redis-py Python package on the remote host. You can
|
||||||
|
|
|
@ -21,28 +21,36 @@ options:
|
||||||
- name of the database to add or remove
|
- name of the database to add or remove
|
||||||
required: true
|
required: true
|
||||||
aliases: [ db ]
|
aliases: [ db ]
|
||||||
|
type: str
|
||||||
login_user:
|
login_user:
|
||||||
description:
|
description:
|
||||||
- The username used to authenticate with
|
- The username used to authenticate with
|
||||||
|
type: str
|
||||||
login_password:
|
login_password:
|
||||||
description:
|
description:
|
||||||
- The password used to authenticate with
|
- The password used to authenticate with
|
||||||
|
type: str
|
||||||
login_host:
|
login_host:
|
||||||
description:
|
description:
|
||||||
- Host running the database
|
- Host running the database
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
login_port:
|
login_port:
|
||||||
description:
|
description:
|
||||||
- Port of the MSSQL server. Requires login_host be defined as other than localhost if login_port is used
|
- Port of the MSSQL server. Requires login_host be defined as other than localhost if login_port is used
|
||||||
default: 1433
|
default: '1433'
|
||||||
|
type: str
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- The database state
|
- The database state
|
||||||
default: present
|
default: present
|
||||||
choices: [ "present", "absent", "import" ]
|
choices: [ "present", "absent", "import" ]
|
||||||
|
type: str
|
||||||
target:
|
target:
|
||||||
description:
|
description:
|
||||||
- Location, on the remote host, of the dump file to read from or write to. Uncompressed SQL
|
- Location, on the remote host, of the dump file to read from or write to. Uncompressed SQL
|
||||||
files (C(.sql)) files are supported.
|
files (C(.sql)) files are supported.
|
||||||
|
type: str
|
||||||
autocommit:
|
autocommit:
|
||||||
description:
|
description:
|
||||||
- Automatically commit the change only if the import succeed. Sometimes it is necessary to use autocommit=true, since some content can't be changed
|
- Automatically commit the change only if the import succeed. Sometimes it is necessary to use autocommit=true, since some content can't be changed
|
||||||
|
|
|
@ -19,28 +19,34 @@ options:
|
||||||
- Name of the parameter to update.
|
- Name of the parameter to update.
|
||||||
required: true
|
required: true
|
||||||
aliases: [parameter]
|
aliases: [parameter]
|
||||||
|
type: str
|
||||||
value:
|
value:
|
||||||
description:
|
description:
|
||||||
- Value of the parameter to be set.
|
- Value of the parameter to be set.
|
||||||
required: true
|
type: str
|
||||||
db:
|
db:
|
||||||
description:
|
description:
|
||||||
- Name of the Vertica database.
|
- Name of the Vertica database.
|
||||||
|
type: str
|
||||||
cluster:
|
cluster:
|
||||||
description:
|
description:
|
||||||
- Name of the Vertica cluster.
|
- Name of the Vertica cluster.
|
||||||
default: localhost
|
default: localhost
|
||||||
|
type: str
|
||||||
port:
|
port:
|
||||||
description:
|
description:
|
||||||
- Vertica cluster port to connect to.
|
- Vertica cluster port to connect to.
|
||||||
default: 5433
|
default: '5433'
|
||||||
|
type: str
|
||||||
login_user:
|
login_user:
|
||||||
description:
|
description:
|
||||||
- The username used to authenticate with.
|
- The username used to authenticate with.
|
||||||
default: dbadmin
|
default: dbadmin
|
||||||
|
type: str
|
||||||
login_password:
|
login_password:
|
||||||
description:
|
description:
|
||||||
- The password used to authenticate with.
|
- The password used to authenticate with.
|
||||||
|
type: str
|
||||||
notes:
|
notes:
|
||||||
- The default authentication assumes that you are either logging in as or sudo'ing
|
- The default authentication assumes that you are either logging in as or sudo'ing
|
||||||
to the C(dbadmin) account on the host.
|
to the C(dbadmin) account on the host.
|
||||||
|
|
|
@ -23,14 +23,12 @@ options:
|
||||||
- This file must exist ahead of time.
|
- This file must exist ahead of time.
|
||||||
- This parameter is required, unless C(xmlstring) is given.
|
- This parameter is required, unless C(xmlstring) is given.
|
||||||
type: path
|
type: path
|
||||||
required: yes
|
|
||||||
aliases: [ dest, file ]
|
aliases: [ dest, file ]
|
||||||
xmlstring:
|
xmlstring:
|
||||||
description:
|
description:
|
||||||
- A string containing XML on which to operate.
|
- A string containing XML on which to operate.
|
||||||
- This parameter is required, unless C(path) is given.
|
- This parameter is required, unless C(path) is given.
|
||||||
type: str
|
type: str
|
||||||
required: yes
|
|
||||||
xpath:
|
xpath:
|
||||||
description:
|
description:
|
||||||
- A valid XPath expression describing the item(s) you want to manipulate.
|
- A valid XPath expression describing the item(s) you want to manipulate.
|
||||||
|
|
|
@ -21,17 +21,20 @@ options:
|
||||||
description:
|
description:
|
||||||
- Account API Key.
|
- Account API Key.
|
||||||
required: true
|
required: true
|
||||||
|
type: str
|
||||||
|
|
||||||
account_secret:
|
account_secret:
|
||||||
description:
|
description:
|
||||||
- Account Secret Key.
|
- Account Secret Key.
|
||||||
required: true
|
required: true
|
||||||
|
type: str
|
||||||
|
|
||||||
domain:
|
domain:
|
||||||
description:
|
description:
|
||||||
- Domain to work with. Can be the domain name (e.g. "mydomain.com") or the numeric ID of the domain in DNS Made Easy (e.g. "839989") for faster
|
- Domain to work with. Can be the domain name (e.g. "mydomain.com") or the numeric ID of the domain in DNS Made Easy (e.g. "839989") for faster
|
||||||
resolution
|
resolution
|
||||||
required: true
|
required: true
|
||||||
|
type: str
|
||||||
|
|
||||||
sandbox:
|
sandbox:
|
||||||
description:
|
description:
|
||||||
|
@ -43,11 +46,13 @@ options:
|
||||||
description:
|
description:
|
||||||
- Record name to get/create/delete/update. If record_name is not specified; all records for the domain will be returned in "result" regardless
|
- Record name to get/create/delete/update. If record_name is not specified; all records for the domain will be returned in "result" regardless
|
||||||
of the state argument.
|
of the state argument.
|
||||||
|
type: str
|
||||||
|
|
||||||
record_type:
|
record_type:
|
||||||
description:
|
description:
|
||||||
- Record type.
|
- Record type.
|
||||||
choices: [ 'A', 'AAAA', 'CNAME', 'ANAME', 'HTTPRED', 'MX', 'NS', 'PTR', 'SRV', 'TXT' ]
|
choices: [ 'A', 'AAAA', 'CNAME', 'ANAME', 'HTTPRED', 'MX', 'NS', 'PTR', 'SRV', 'TXT' ]
|
||||||
|
type: str
|
||||||
|
|
||||||
record_value:
|
record_value:
|
||||||
description:
|
description:
|
||||||
|
@ -57,17 +62,20 @@ options:
|
||||||
- >
|
- >
|
||||||
If record_value is not specified; no changes will be made and the record will be returned in 'result'
|
If record_value is not specified; no changes will be made and the record will be returned in 'result'
|
||||||
(in other words, this module can be used to fetch a record's current id, type, and ttl)
|
(in other words, this module can be used to fetch a record's current id, type, and ttl)
|
||||||
|
type: str
|
||||||
|
|
||||||
record_ttl:
|
record_ttl:
|
||||||
description:
|
description:
|
||||||
- record's "Time to live". Number of seconds the record remains cached in DNS servers.
|
- record's "Time to live". Number of seconds the record remains cached in DNS servers.
|
||||||
default: 1800
|
default: 1800
|
||||||
|
type: int
|
||||||
|
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- whether the record should exist or not
|
- whether the record should exist or not
|
||||||
required: true
|
required: true
|
||||||
choices: [ 'present', 'absent' ]
|
choices: [ 'present', 'absent' ]
|
||||||
|
type: str
|
||||||
|
|
||||||
validate_certs:
|
validate_certs:
|
||||||
description:
|
description:
|
||||||
|
@ -85,53 +93,56 @@ options:
|
||||||
systemDescription:
|
systemDescription:
|
||||||
description:
|
description:
|
||||||
- Description used by the monitor.
|
- Description used by the monitor.
|
||||||
required: true
|
|
||||||
default: ''
|
default: ''
|
||||||
|
type: str
|
||||||
|
|
||||||
maxEmails:
|
maxEmails:
|
||||||
description:
|
description:
|
||||||
- Number of emails sent to the contact list by the monitor.
|
- Number of emails sent to the contact list by the monitor.
|
||||||
required: true
|
|
||||||
default: 1
|
default: 1
|
||||||
|
type: int
|
||||||
|
|
||||||
protocol:
|
protocol:
|
||||||
description:
|
description:
|
||||||
- Protocol used by the monitor.
|
- Protocol used by the monitor.
|
||||||
required: true
|
|
||||||
default: 'HTTP'
|
default: 'HTTP'
|
||||||
choices: ['TCP', 'UDP', 'HTTP', 'DNS', 'SMTP', 'HTTPS']
|
choices: ['TCP', 'UDP', 'HTTP', 'DNS', 'SMTP', 'HTTPS']
|
||||||
|
type: str
|
||||||
|
|
||||||
port:
|
port:
|
||||||
description:
|
description:
|
||||||
- Port used by the monitor.
|
- Port used by the monitor.
|
||||||
required: true
|
|
||||||
default: 80
|
default: 80
|
||||||
|
type: int
|
||||||
|
|
||||||
sensitivity:
|
sensitivity:
|
||||||
description:
|
description:
|
||||||
- Number of checks the monitor performs before a failover occurs where Low = 8, Medium = 5,and High = 3.
|
- Number of checks the monitor performs before a failover occurs where Low = 8, Medium = 5,and High = 3.
|
||||||
required: true
|
|
||||||
default: 'Medium'
|
default: 'Medium'
|
||||||
choices: ['Low', 'Medium', 'High']
|
choices: ['Low', 'Medium', 'High']
|
||||||
|
type: str
|
||||||
|
|
||||||
contactList:
|
contactList:
|
||||||
description:
|
description:
|
||||||
- Name or id of the contact list that the monitor will notify.
|
- Name or id of the contact list that the monitor will notify.
|
||||||
- The default C('') means the Account Owner.
|
- The default C('') means the Account Owner.
|
||||||
required: true
|
|
||||||
default: ''
|
default: ''
|
||||||
|
type: str
|
||||||
|
|
||||||
httpFqdn:
|
httpFqdn:
|
||||||
description:
|
description:
|
||||||
- The fully qualified domain name used by the monitor.
|
- The fully qualified domain name used by the monitor.
|
||||||
|
type: str
|
||||||
|
|
||||||
httpFile:
|
httpFile:
|
||||||
description:
|
description:
|
||||||
- The file at the Fqdn that the monitor queries for HTTP or HTTPS.
|
- The file at the Fqdn that the monitor queries for HTTP or HTTPS.
|
||||||
|
type: str
|
||||||
|
|
||||||
httpQueryString:
|
httpQueryString:
|
||||||
description:
|
description:
|
||||||
- The string in the httpFile that the monitor queries for HTTP or HTTPS.
|
- The string in the httpFile that the monitor queries for HTTP or HTTPS.
|
||||||
|
type: str
|
||||||
|
|
||||||
failover:
|
failover:
|
||||||
description:
|
description:
|
||||||
|
@ -150,23 +161,28 @@ options:
|
||||||
description:
|
description:
|
||||||
- Primary IP address for the failover.
|
- Primary IP address for the failover.
|
||||||
- Required if adding or changing the monitor or failover.
|
- Required if adding or changing the monitor or failover.
|
||||||
|
type: str
|
||||||
|
|
||||||
ip2:
|
ip2:
|
||||||
description:
|
description:
|
||||||
- Secondary IP address for the failover.
|
- Secondary IP address for the failover.
|
||||||
- Required if adding or changing the failover.
|
- Required if adding or changing the failover.
|
||||||
|
type: str
|
||||||
|
|
||||||
ip3:
|
ip3:
|
||||||
description:
|
description:
|
||||||
- Tertiary IP address for the failover.
|
- Tertiary IP address for the failover.
|
||||||
|
type: str
|
||||||
|
|
||||||
ip4:
|
ip4:
|
||||||
description:
|
description:
|
||||||
- Quaternary IP address for the failover.
|
- Quaternary IP address for the failover.
|
||||||
|
type: str
|
||||||
|
|
||||||
ip5:
|
ip5:
|
||||||
description:
|
description:
|
||||||
- Quinary IP address for the failover.
|
- Quinary IP address for the failover.
|
||||||
|
type: str
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- The DNS Made Easy service requires that machines interacting with the API have the proper time and timezone set. Be sure you are within a few
|
- The DNS Made Easy service requires that machines interacting with the API have the proper time and timezone set. Be sure you are within a few
|
||||||
|
|
|
@ -29,7 +29,6 @@ requirements:
|
||||||
- python-ldap
|
- python-ldap
|
||||||
options:
|
options:
|
||||||
passwd:
|
passwd:
|
||||||
required: true
|
|
||||||
description:
|
description:
|
||||||
- The (plaintext) password to be set for I(dn).
|
- The (plaintext) password to be set for I(dn).
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
|
|
|
@ -25,22 +25,23 @@ options:
|
||||||
- Specifies the fully qualified hostname to add or remove from
|
- Specifies the fully qualified hostname to add or remove from
|
||||||
the system
|
the system
|
||||||
required: true
|
required: true
|
||||||
|
type: str
|
||||||
view:
|
view:
|
||||||
description:
|
description:
|
||||||
- Sets the DNS view to associate this A record with. The DNS
|
- Sets the DNS view to associate this A record with. The DNS
|
||||||
view must already be configured on the system
|
view must already be configured on the system
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
|
type: str
|
||||||
ipv4addr:
|
ipv4addr:
|
||||||
description:
|
description:
|
||||||
- Configures the IPv4 address for this A record. Users can dynamically
|
- Configures the IPv4 address for this A record. Users can dynamically
|
||||||
allocate ipv4 address to A record by passing dictionary containing,
|
allocate ipv4 address to A record by passing dictionary containing,
|
||||||
I(nios_next_ip) and I(CIDR network range). See example
|
I(nios_next_ip) and I(CIDR network range). See example
|
||||||
required: true
|
|
||||||
aliases:
|
aliases:
|
||||||
- ipv4
|
- ipv4
|
||||||
|
type: str
|
||||||
ttl:
|
ttl:
|
||||||
description:
|
description:
|
||||||
- Configures the TTL to be associated with this A record
|
- Configures the TTL to be associated with this A record
|
||||||
|
|
|
@ -29,14 +29,12 @@ options:
|
||||||
description:
|
description:
|
||||||
- Sets the DNS view to associate this AAAA record with. The DNS
|
- Sets the DNS view to associate this AAAA record with. The DNS
|
||||||
view must already be configured on the system
|
view must already be configured on the system
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
ipv6addr:
|
ipv6addr:
|
||||||
description:
|
description:
|
||||||
- Configures the IPv6 address for this AAAA record.
|
- Configures the IPv6 address for this AAAA record.
|
||||||
required: true
|
|
||||||
aliases:
|
aliases:
|
||||||
- ipv6
|
- ipv6
|
||||||
ttl:
|
ttl:
|
||||||
|
|
|
@ -29,14 +29,12 @@ options:
|
||||||
description:
|
description:
|
||||||
- Sets the DNS view to associate this CNAME record with. The DNS
|
- Sets the DNS view to associate this CNAME record with. The DNS
|
||||||
view must already be configured on the system
|
view must already be configured on the system
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
canonical:
|
canonical:
|
||||||
description:
|
description:
|
||||||
- Configures the canonical name for this CNAME record.
|
- Configures the canonical name for this CNAME record.
|
||||||
required: true
|
|
||||||
aliases:
|
aliases:
|
||||||
- cname
|
- cname
|
||||||
ttl:
|
ttl:
|
||||||
|
|
|
@ -34,7 +34,6 @@ options:
|
||||||
- Specifies the name of the network view to assign the configured
|
- Specifies the name of the network view to assign the configured
|
||||||
DNS view to. The network view must already be configured on the
|
DNS view to. The network view must already be configured on the
|
||||||
target system.
|
target system.
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
extattrs:
|
extattrs:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -25,7 +25,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies the hostname with which fixed DHCP ip-address is stored
|
- Specifies the hostname with which fixed DHCP ip-address is stored
|
||||||
for respective mac.
|
for respective mac.
|
||||||
required: false
|
required: true
|
||||||
ipaddr:
|
ipaddr:
|
||||||
description:
|
description:
|
||||||
- IPV4/V6 address of the fixed address.
|
- IPV4/V6 address of the fixed address.
|
||||||
|
@ -37,6 +37,7 @@ options:
|
||||||
network:
|
network:
|
||||||
description:
|
description:
|
||||||
- Specifies the network range in which ipaddr exists.
|
- Specifies the network range in which ipaddr exists.
|
||||||
|
required: true
|
||||||
network_view:
|
network_view:
|
||||||
description:
|
description:
|
||||||
- Configures the name of the network view to associate with this
|
- Configures the name of the network view to associate with this
|
||||||
|
|
|
@ -31,7 +31,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- Sets the DNS view to associate this host record with. The DNS
|
- Sets the DNS view to associate this host record with. The DNS
|
||||||
view must already be configured on the system
|
view must already be configured on the system
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
|
|
|
@ -28,7 +28,6 @@ options:
|
||||||
vip_setting:
|
vip_setting:
|
||||||
description:
|
description:
|
||||||
- Configures the network settings for the grid member.
|
- Configures the network settings for the grid member.
|
||||||
required: true
|
|
||||||
type: list
|
type: list
|
||||||
elements: dict
|
elements: dict
|
||||||
suboptions:
|
suboptions:
|
||||||
|
@ -44,7 +43,6 @@ options:
|
||||||
ipv6_setting:
|
ipv6_setting:
|
||||||
description:
|
description:
|
||||||
- Configures the IPv6 settings for the grid member.
|
- Configures the IPv6 settings for the grid member.
|
||||||
required: true
|
|
||||||
type: list
|
type: list
|
||||||
elements: dict
|
elements: dict
|
||||||
suboptions:
|
suboptions:
|
||||||
|
|
|
@ -29,20 +29,17 @@ options:
|
||||||
description:
|
description:
|
||||||
- Sets the DNS view to associate this a record with. The DNS
|
- Sets the DNS view to associate this a record with. The DNS
|
||||||
view must already be configured on the system
|
view must already be configured on the system
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
mail_exchanger:
|
mail_exchanger:
|
||||||
description:
|
description:
|
||||||
- Configures the mail exchanger FQDN for this MX record.
|
- Configures the mail exchanger FQDN for this MX record.
|
||||||
required: true
|
|
||||||
aliases:
|
aliases:
|
||||||
- mx
|
- mx
|
||||||
preference:
|
preference:
|
||||||
description:
|
description:
|
||||||
- Configures the preference (0-65535) for this MX record.
|
- Configures the preference (0-65535) for this MX record.
|
||||||
required: true
|
|
||||||
ttl:
|
ttl:
|
||||||
description:
|
description:
|
||||||
- Configures the TTL to be associated with this host record
|
- Configures the TTL to be associated with this host record
|
||||||
|
|
|
@ -29,7 +29,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- Sets the DNS view to associate this a record with. The DNS
|
- Sets the DNS view to associate this a record with. The DNS
|
||||||
view must already be configured on the system
|
view must already be configured on the system
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
|
@ -38,19 +37,16 @@ options:
|
||||||
- Configures the order (0-65535) for this NAPTR record. This parameter
|
- Configures the order (0-65535) for this NAPTR record. This parameter
|
||||||
specifies the order in which the NAPTR rules are applied when
|
specifies the order in which the NAPTR rules are applied when
|
||||||
multiple rules are present.
|
multiple rules are present.
|
||||||
required: true
|
|
||||||
preference:
|
preference:
|
||||||
description:
|
description:
|
||||||
- Configures the preference (0-65535) for this NAPTR record. The
|
- Configures the preference (0-65535) for this NAPTR record. The
|
||||||
preference field determines the order NAPTR records are processed
|
preference field determines the order NAPTR records are processed
|
||||||
when multiple records with the same order parameter are present.
|
when multiple records with the same order parameter are present.
|
||||||
required: true
|
|
||||||
replacement:
|
replacement:
|
||||||
description:
|
description:
|
||||||
- Configures the replacement field for this NAPTR record.
|
- Configures the replacement field for this NAPTR record.
|
||||||
For nonterminal NAPTR records, this field specifies the
|
For nonterminal NAPTR records, this field specifies the
|
||||||
next domain name to look up.
|
next domain name to look up.
|
||||||
required: true
|
|
||||||
services:
|
services:
|
||||||
description:
|
description:
|
||||||
- Configures the services field (128 characters maximum) for this
|
- Configures the services field (128 characters maximum) for this
|
||||||
|
|
|
@ -37,19 +37,16 @@ options:
|
||||||
ipv4addr:
|
ipv4addr:
|
||||||
description:
|
description:
|
||||||
- The IPv4 Address of the record. Mutually exclusive with the ipv6addr.
|
- The IPv4 Address of the record. Mutually exclusive with the ipv6addr.
|
||||||
required: true
|
|
||||||
aliases:
|
aliases:
|
||||||
- ipv4
|
- ipv4
|
||||||
ipv6addr:
|
ipv6addr:
|
||||||
description:
|
description:
|
||||||
- The IPv6 Address of the record. Mutually exclusive with the ipv4addr.
|
- The IPv6 Address of the record. Mutually exclusive with the ipv4addr.
|
||||||
required: true
|
|
||||||
aliases:
|
aliases:
|
||||||
- ipv6
|
- ipv6
|
||||||
ptrdname:
|
ptrdname:
|
||||||
description:
|
description:
|
||||||
- The domain name of the DNS PTR record in FQDN format.
|
- The domain name of the DNS PTR record in FQDN format.
|
||||||
required: true
|
|
||||||
ttl:
|
ttl:
|
||||||
description:
|
description:
|
||||||
- Time To Live (TTL) value for the record.
|
- Time To Live (TTL) value for the record.
|
||||||
|
|
|
@ -29,26 +29,21 @@ options:
|
||||||
description:
|
description:
|
||||||
- Sets the DNS view to associate this a record with. The DNS
|
- Sets the DNS view to associate this a record with. The DNS
|
||||||
view must already be configured on the system
|
view must already be configured on the system
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
port:
|
port:
|
||||||
description:
|
description:
|
||||||
- Configures the port (0-65535) of this SRV record.
|
- Configures the port (0-65535) of this SRV record.
|
||||||
required: true
|
|
||||||
priority:
|
priority:
|
||||||
description:
|
description:
|
||||||
- Configures the priority (0-65535) for this SRV record.
|
- Configures the priority (0-65535) for this SRV record.
|
||||||
required: true
|
|
||||||
target:
|
target:
|
||||||
description:
|
description:
|
||||||
- Configures the target FQDN for this SRV record.
|
- Configures the target FQDN for this SRV record.
|
||||||
required: true
|
|
||||||
weight:
|
weight:
|
||||||
description:
|
description:
|
||||||
- Configures the weight (0-65535) for this SRV record.
|
- Configures the weight (0-65535) for this SRV record.
|
||||||
required: true
|
|
||||||
ttl:
|
ttl:
|
||||||
description:
|
description:
|
||||||
- Configures the TTL to be associated with this host record
|
- Configures the TTL to be associated with this host record
|
||||||
|
|
|
@ -29,7 +29,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- Sets the DNS view to associate this tst record with. The DNS
|
- Sets the DNS view to associate this tst record with. The DNS
|
||||||
view must already be configured on the system
|
view must already be configured on the system
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
|
@ -39,7 +38,6 @@ options:
|
||||||
per substring, up to a total of 512 bytes. To enter leading,
|
per substring, up to a total of 512 bytes. To enter leading,
|
||||||
trailing, or embedded spaces in the text, add quotes around the
|
trailing, or embedded spaces in the text, add quotes around the
|
||||||
text to preserve the spaces.
|
text to preserve the spaces.
|
||||||
required: true
|
|
||||||
ttl:
|
ttl:
|
||||||
description:
|
description:
|
||||||
- Configures the TTL to be associated with this tst record
|
- Configures the TTL to be associated with this tst record
|
||||||
|
|
|
@ -32,7 +32,6 @@ options:
|
||||||
- Configures the DNS view name for the configured resource. The
|
- Configures the DNS view name for the configured resource. The
|
||||||
specified DNS zone must already exist on the running NIOS instance
|
specified DNS zone must already exist on the running NIOS instance
|
||||||
prior to configuring zones.
|
prior to configuring zones.
|
||||||
required: true
|
|
||||||
default: default
|
default: default
|
||||||
aliases:
|
aliases:
|
||||||
- dns_view
|
- dns_view
|
||||||
|
@ -45,6 +44,7 @@ options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The name of the grid primary server
|
- The name of the grid primary server
|
||||||
|
required: true
|
||||||
grid_secondaries:
|
grid_secondaries:
|
||||||
description:
|
description:
|
||||||
- Configures the grid secondary servers for this zone.
|
- Configures the grid secondary servers for this zone.
|
||||||
|
@ -54,6 +54,7 @@ options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The name of the grid secondary server
|
- The name of the grid secondary server
|
||||||
|
required: true
|
||||||
ns_group:
|
ns_group:
|
||||||
description:
|
description:
|
||||||
- Configures the name server group for this zone. Name server group is
|
- Configures the name server group for this zone. Name server group is
|
||||||
|
|
|
@ -18,18 +18,21 @@ options:
|
||||||
description:
|
description:
|
||||||
- The name or IP address of the Cobbler system.
|
- The name or IP address of the Cobbler system.
|
||||||
default: 127.0.0.1
|
default: 127.0.0.1
|
||||||
|
type: str
|
||||||
port:
|
port:
|
||||||
description:
|
description:
|
||||||
- Port number to be used for REST connection.
|
- Port number to be used for REST connection.
|
||||||
- The default value depends on parameter C(use_ssl).
|
- The default value depends on parameter C(use_ssl).
|
||||||
|
type: int
|
||||||
username:
|
username:
|
||||||
description:
|
description:
|
||||||
- The username to log in to Cobbler.
|
- The username to log in to Cobbler.
|
||||||
default: cobbler
|
default: cobbler
|
||||||
|
type: str
|
||||||
password:
|
password:
|
||||||
description:
|
description:
|
||||||
- The password to log in to Cobbler.
|
- The password to log in to Cobbler.
|
||||||
required: yes
|
type: str
|
||||||
use_ssl:
|
use_ssl:
|
||||||
description:
|
description:
|
||||||
- If C(no), an HTTP connection will be used instead of the default HTTPS connection.
|
- If C(no), an HTTP connection will be used instead of the default HTTPS connection.
|
||||||
|
|
|
@ -18,18 +18,21 @@ options:
|
||||||
description:
|
description:
|
||||||
- The name or IP address of the Cobbler system.
|
- The name or IP address of the Cobbler system.
|
||||||
default: 127.0.0.1
|
default: 127.0.0.1
|
||||||
|
type: str
|
||||||
port:
|
port:
|
||||||
description:
|
description:
|
||||||
- Port number to be used for REST connection.
|
- Port number to be used for REST connection.
|
||||||
- The default value depends on parameter C(use_ssl).
|
- The default value depends on parameter C(use_ssl).
|
||||||
|
type: int
|
||||||
username:
|
username:
|
||||||
description:
|
description:
|
||||||
- The username to log in to Cobbler.
|
- The username to log in to Cobbler.
|
||||||
default: cobbler
|
default: cobbler
|
||||||
|
type: str
|
||||||
password:
|
password:
|
||||||
description:
|
description:
|
||||||
- The password to log in to Cobbler.
|
- The password to log in to Cobbler.
|
||||||
required: yes
|
type: str
|
||||||
use_ssl:
|
use_ssl:
|
||||||
description:
|
description:
|
||||||
- If C(no), an HTTP connection will be used instead of the default HTTPS connection.
|
- If C(no), an HTTP connection will be used instead of the default HTTPS connection.
|
||||||
|
@ -44,12 +47,15 @@ options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The system name to manage.
|
- The system name to manage.
|
||||||
|
type: str
|
||||||
properties:
|
properties:
|
||||||
description:
|
description:
|
||||||
- A dictionary with system properties.
|
- A dictionary with system properties.
|
||||||
|
type: dict
|
||||||
interfaces:
|
interfaces:
|
||||||
description:
|
description:
|
||||||
- A list of dictionaries containing interface options.
|
- A list of dictionaries containing interface options.
|
||||||
|
type: dict
|
||||||
sync:
|
sync:
|
||||||
description:
|
description:
|
||||||
- Sync on changes.
|
- Sync on changes.
|
||||||
|
@ -61,6 +67,7 @@ options:
|
||||||
- Whether the system should be present, absent or a query is made.
|
- Whether the system should be present, absent or a query is made.
|
||||||
choices: [ absent, present, query ]
|
choices: [ absent, present, query ]
|
||||||
default: present
|
default: present
|
||||||
|
type: str
|
||||||
author:
|
author:
|
||||||
- Dag Wieers (@dagwieers)
|
- Dag Wieers (@dagwieers)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -32,7 +32,6 @@ options:
|
||||||
type:
|
type:
|
||||||
type: str
|
type: str
|
||||||
description: The provider's type.
|
description: The provider's type.
|
||||||
required: true
|
|
||||||
choices: ['Openshift', 'Amazon', 'oVirt', 'VMware', 'Azure', 'Director', 'OpenStack', 'GCE']
|
choices: ['Openshift', 'Amazon', 'oVirt', 'VMware', 'Azure', 'Director', 'OpenStack', 'GCE']
|
||||||
zone:
|
zone:
|
||||||
type: str
|
type: str
|
||||||
|
|
|
@ -21,6 +21,7 @@ options:
|
||||||
C(present) will ensure data properties are compliant with OneView.
|
C(present) will ensure data properties are compliant with OneView.
|
||||||
C(absent) will remove the resource from OneView, if it exists.
|
C(absent) will remove the resource from OneView, if it exists.
|
||||||
choices: ['present', 'absent']
|
choices: ['present', 'absent']
|
||||||
|
required: true
|
||||||
data:
|
data:
|
||||||
description:
|
description:
|
||||||
- List with the Fibre Channel Network properties.
|
- List with the Fibre Channel Network properties.
|
||||||
|
|
|
@ -53,7 +53,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- When C(present) the deploy key added to the project if it doesn't exist.
|
- When C(present) the deploy key added to the project if it doesn't exist.
|
||||||
- When C(absent) it will be removed from the project if it exists.
|
- When C(absent) it will be removed from the project if it exists.
|
||||||
required: true
|
|
||||||
default: present
|
default: present
|
||||||
type: str
|
type: str
|
||||||
choices: [ "present", "absent" ]
|
choices: [ "present", "absent" ]
|
||||||
|
|
|
@ -44,7 +44,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- When C(present) the hook will be updated to match the input or created if it doesn't exist.
|
- When C(present) the hook will be updated to match the input or created if it doesn't exist.
|
||||||
- When C(absent) hook will be deleted if it exists.
|
- When C(absent) hook will be deleted if it exists.
|
||||||
required: true
|
|
||||||
default: present
|
default: present
|
||||||
type: str
|
type: str
|
||||||
choices: [ "present", "absent" ]
|
choices: [ "present", "absent" ]
|
||||||
|
|
|
@ -37,7 +37,6 @@ options:
|
||||||
api_token:
|
api_token:
|
||||||
description:
|
description:
|
||||||
- Your private token to interact with the GitLab API.
|
- Your private token to interact with the GitLab API.
|
||||||
required: True
|
|
||||||
type: str
|
type: str
|
||||||
description:
|
description:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -25,7 +25,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- Absolute path of where the repository should be cloned to.
|
- Absolute path of where the repository should be cloned to.
|
||||||
This parameter is required, unless clone and update are set to no
|
This parameter is required, unless clone and update are set to no
|
||||||
required: yes
|
|
||||||
revision:
|
revision:
|
||||||
description:
|
description:
|
||||||
- Equivalent C(-r) option in hg command which could be the changeset, revision number,
|
- Equivalent C(-r) option in hg command which could be the changeset, revision number,
|
||||||
|
|
|
@ -28,11 +28,12 @@ options:
|
||||||
removed from the pool. If the state is present, nodes will be
|
removed from the pool. If the state is present, nodes will be
|
||||||
attached to the pool. If state is absent, nodes will be detached
|
attached to the pool. If state is absent, nodes will be detached
|
||||||
from the pool.
|
from the pool.
|
||||||
required: true
|
type: str
|
||||||
nodes:
|
nodes:
|
||||||
description:
|
description:
|
||||||
- List of nodes that have to be probed into the pool.
|
- List of nodes that have to be probed into the pool.
|
||||||
required: true
|
required: true
|
||||||
|
type: list
|
||||||
force:
|
force:
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
|
|
|
@ -26,7 +26,6 @@ options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- The desired state of the domain.
|
- The desired state of the domain.
|
||||||
required: true
|
|
||||||
default: "present"
|
default: "present"
|
||||||
choices: [ "present", "absent" ]
|
choices: [ "present", "absent" ]
|
||||||
ldap_id:
|
ldap_id:
|
||||||
|
|
|
@ -25,7 +25,6 @@ options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Host state.
|
- Host state.
|
||||||
required: true
|
|
||||||
default: "present"
|
default: "present"
|
||||||
choices: [ "present", "absent" ]
|
choices: [ "present", "absent" ]
|
||||||
cluster:
|
cluster:
|
||||||
|
|
|
@ -26,7 +26,6 @@ options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Host ports state.
|
- Host ports state.
|
||||||
required: true
|
|
||||||
default: "present"
|
default: "present"
|
||||||
choices: [ "present", "absent" ]
|
choices: [ "present", "absent" ]
|
||||||
iscsi_name:
|
iscsi_name:
|
||||||
|
|
|
@ -25,7 +25,6 @@ options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Pool state.
|
- Pool state.
|
||||||
required: true
|
|
||||||
default: "present"
|
default: "present"
|
||||||
choices: [ "present", "absent" ]
|
choices: [ "present", "absent" ]
|
||||||
size:
|
size:
|
||||||
|
|
|
@ -29,7 +29,6 @@ options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Volume state.
|
- Volume state.
|
||||||
required: true
|
|
||||||
default: "present"
|
default: "present"
|
||||||
choices: [ "present", "absent" ]
|
choices: [ "present", "absent" ]
|
||||||
size:
|
size:
|
||||||
|
|
|
@ -30,7 +30,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- When the state is present the volume is mapped.
|
- When the state is present the volume is mapped.
|
||||||
When the state is absent, the volume is meant to be unmapped.
|
When the state is absent, the volume is meant to be unmapped.
|
||||||
required: true
|
|
||||||
cluster:
|
cluster:
|
||||||
description:
|
description:
|
||||||
- Maps the volume to a cluster.
|
- Maps the volume to a cluster.
|
||||||
|
|
|
@ -30,7 +30,6 @@ options:
|
||||||
- Whether to allow (C(present)), or unallow (C(absent)) a permission.
|
- Whether to allow (C(present)), or unallow (C(absent)) a permission.
|
||||||
- When set to C(present), at least one "entity" param of I(users), I(groups), or I(everyone) are required.
|
- When set to C(present), at least one "entity" param of I(users), I(groups), or I(everyone) are required.
|
||||||
- When set to C(absent), removes permissions from the specified entities, or removes all permissions if no entity params are specified.
|
- When set to C(absent), removes permissions from the specified entities, or removes all permissions if no entity params are specified.
|
||||||
required: true
|
|
||||||
choices: [ absent, present ]
|
choices: [ absent, present ]
|
||||||
default: present
|
default: present
|
||||||
users:
|
users:
|
||||||
|
|
|
@ -25,7 +25,6 @@ options:
|
||||||
- The name of the device.
|
- The name of the device.
|
||||||
- C(all) is valid to rescan C(available) all devices (AIX cfgmgr command).
|
- C(all) is valid to rescan C(available) all devices (AIX cfgmgr command).
|
||||||
type: str
|
type: str
|
||||||
required: true
|
|
||||||
force:
|
force:
|
||||||
description:
|
description:
|
||||||
- Forces action.
|
- Forces action.
|
||||||
|
|
|
@ -36,7 +36,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- The key of the user preference.
|
- The key of the user preference.
|
||||||
type: str
|
type: str
|
||||||
required: true
|
|
||||||
type:
|
type:
|
||||||
description:
|
description:
|
||||||
- The type of value to write.
|
- The type of value to write.
|
||||||
|
|
|
@ -91,13 +91,9 @@ plugins/modules/cloud/oneandone/oneandone_load_balancer.py validate-modules:para
|
||||||
plugins/modules/cloud/oneandone/oneandone_monitoring_policy.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/oneandone/oneandone_monitoring_policy.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/oneandone/oneandone_private_network.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/oneandone/oneandone_private_network.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/oneandone/oneandone_server.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/oneandone/oneandone_server.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/online/online_server_facts.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/online/online_server_facts.py validate-modules:return-syntax-error
|
plugins/modules/cloud/online/online_server_facts.py validate-modules:return-syntax-error
|
||||||
plugins/modules/cloud/online/online_server_info.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/online/online_server_info.py validate-modules:return-syntax-error
|
plugins/modules/cloud/online/online_server_info.py validate-modules:return-syntax-error
|
||||||
plugins/modules/cloud/online/online_user_facts.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/online/online_user_facts.py validate-modules:return-syntax-error
|
plugins/modules/cloud/online/online_user_facts.py validate-modules:return-syntax-error
|
||||||
plugins/modules/cloud/online/online_user_info.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/online/online_user_info.py validate-modules:return-syntax-error
|
plugins/modules/cloud/online/online_user_info.py validate-modules:return-syntax-error
|
||||||
plugins/modules/cloud/opennebula/one_host.py validate-modules:doc-missing-type
|
plugins/modules/cloud/opennebula/one_host.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/opennebula/one_host.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/opennebula/one_host.py validate-modules:parameter-list-no-elements
|
||||||
|
@ -139,7 +135,6 @@ plugins/modules/cloud/ovirt/ovirt_permission_facts.py validate-modules:parameter
|
||||||
plugins/modules/cloud/ovirt/ovirt_quota_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_quota_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_quota_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/ovirt/ovirt_quota_facts.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py validate-modules:parameter-list-no-elements
|
||||||
|
@ -165,12 +160,10 @@ plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:parameter-lis
|
||||||
plugins/modules/cloud/packet/packet_device.py validate-modules:doc-missing-type
|
plugins/modules/cloud/packet/packet_device.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/packet/packet_ip_subnet.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:doc-missing-type
|
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/packet/packet_volume_attachment.py pylint:ansible-bad-function
|
plugins/modules/cloud/packet/packet_volume_attachment.py pylint:ansible-bad-function
|
||||||
plugins/modules/cloud/packet/packet_volume_attachment.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-missing-type
|
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-missing-type
|
||||||
|
@ -206,15 +199,12 @@ plugins/modules/cloud/scaleway/scaleway_volume_info.py validate-modules:return-s
|
||||||
plugins/modules/cloud/smartos/imgadm.py validate-modules:doc-missing-type
|
plugins/modules/cloud/smartos/imgadm.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/smartos/imgadm.py validate-modules:no-default-for-required-parameter
|
plugins/modules/cloud/smartos/imgadm.py validate-modules:no-default-for-required-parameter
|
||||||
plugins/modules/cloud/smartos/smartos_image_info.py validate-modules:doc-missing-type
|
plugins/modules/cloud/smartos/smartos_image_info.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:doc-default-does-not-match-spec
|
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/softlayer/sl_vm.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/softlayer/sl_vm.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-missing-type
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
||||||
|
@ -246,15 +236,11 @@ plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:parameter-list-no-elements
|
plugins/modules/clustering/consul/consul.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:undocumented-parameter
|
plugins/modules/clustering/consul/consul.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/clustering/consul/consul_acl.py validate-modules:doc-missing-type
|
plugins/modules/clustering/consul/consul_acl.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/consul/consul_acl.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/clustering/consul/consul_acl.py validate-modules:parameter-list-no-elements
|
plugins/modules/clustering/consul/consul_acl.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul_kv.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/clustering/consul/consul_kv.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/consul/consul_kv.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/clustering/consul/consul_session.py validate-modules:parameter-list-no-elements
|
plugins/modules/clustering/consul/consul_session.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul_session.py validate-modules:parameter-state-invalid-choice
|
plugins/modules/clustering/consul/consul_session.py validate-modules:parameter-state-invalid-choice
|
||||||
plugins/modules/clustering/etcd3.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/etcd3.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/clustering/pacemaker_cluster.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/clustering/pacemaker_cluster.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/clustering/znode.py validate-modules:doc-missing-type
|
plugins/modules/clustering/znode.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/znode.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/znode.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/aerospike/aerospike_migrations.py yamllint:unparsable-with-libyaml
|
plugins/modules/database/aerospike/aerospike_migrations.py yamllint:unparsable-with-libyaml
|
||||||
|
@ -264,20 +250,14 @@ plugins/modules/database/misc/elasticsearch_plugin.py validate-modules:parameter
|
||||||
plugins/modules/database/misc/kibana_plugin.py validate-modules:doc-missing-type
|
plugins/modules/database/misc/kibana_plugin.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/misc/kibana_plugin.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/database/misc/kibana_plugin.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/database/misc/kibana_plugin.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/database/misc/kibana_plugin.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/misc/redis.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/database/misc/redis.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/database/misc/riak.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/database/misc/riak.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/database/misc/riak.py validate-modules:doc-missing-type
|
plugins/modules/database/misc/riak.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/misc/riak.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/database/misc/riak.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/mssql/mssql_db.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/database/mssql/mssql_db.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/database/postgresql/postgresql_db.py use-argspec-type-path
|
plugins/modules/database/postgresql/postgresql_db.py use-argspec-type-path
|
||||||
plugins/modules/database/postgresql/postgresql_db.py validate-modules:use-run-command-not-popen
|
plugins/modules/database/postgresql/postgresql_db.py validate-modules:use-run-command-not-popen
|
||||||
plugins/modules/database/postgresql/postgresql_privs.py validate-modules:parameter-documented-multiple-times
|
plugins/modules/database/postgresql/postgresql_privs.py validate-modules:parameter-documented-multiple-times
|
||||||
plugins/modules/database/postgresql/postgresql_tablespace.py validate-modules:mutually_exclusive-unknown
|
plugins/modules/database/postgresql/postgresql_tablespace.py validate-modules:mutually_exclusive-unknown
|
||||||
plugins/modules/database/postgresql/postgresql_user.py validate-modules:doc-choices-do-not-match-spec
|
plugins/modules/database/postgresql/postgresql_user.py validate-modules:doc-choices-do-not-match-spec
|
||||||
plugins/modules/database/vertica/vertica_configuration.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/database/vertica/vertica_configuration.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/database/vertica/vertica_info.py validate-modules:doc-missing-type
|
plugins/modules/database/vertica/vertica_info.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/vertica/vertica_role.py validate-modules:doc-missing-type
|
plugins/modules/database/vertica/vertica_role.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/vertica/vertica_role.py validate-modules:undocumented-parameter
|
plugins/modules/database/vertica/vertica_role.py validate-modules:undocumented-parameter
|
||||||
|
@ -286,7 +266,6 @@ plugins/modules/database/vertica/vertica_schema.py validate-modules:undocumented
|
||||||
plugins/modules/database/vertica/vertica_user.py validate-modules:doc-missing-type
|
plugins/modules/database/vertica/vertica_user.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/vertica/vertica_user.py validate-modules:undocumented-parameter
|
plugins/modules/database/vertica/vertica_user.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/files/iso_extract.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/files/iso_extract.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/files/xml.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/files/xml.py validate-modules:parameter-list-no-elements
|
plugins/modules/files/xml.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/identity/keycloak/keycloak_client.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/identity/keycloak/keycloak_client.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/identity/keycloak/keycloak_client.py validate-modules:doc-missing-type
|
plugins/modules/identity/keycloak/keycloak_client.py validate-modules:doc-missing-type
|
||||||
|
@ -314,9 +293,6 @@ plugins/modules/monitoring/statusio_maintenance.py pylint:blacklisted-name
|
||||||
plugins/modules/monitoring/statusio_maintenance.py validate-modules:parameter-list-no-elements
|
plugins/modules/monitoring/statusio_maintenance.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/net_tools/cloudflare_dns.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/cloudflare_dns.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/dnsimple.py validate-modules:parameter-list-no-elements
|
plugins/modules/net_tools/dnsimple.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/net_tools/dnsmadeeasy.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/net_tools/dnsmadeeasy.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/dnsmadeeasy.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/net_tools/ip_netns.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/ip_netns.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:parameter-type-not-in-doc
|
||||||
|
@ -326,62 +302,52 @@ plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:undocumented-parameter # Parameter removed but reason for removal is shown by custom code
|
plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:undocumented-parameter # Parameter removed but reason for removal is shown by custom code
|
||||||
plugins/modules/net_tools/ldap/ldap_passwd.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/ldap/ldap_passwd.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ldap/ldap_passwd.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/netcup_dns.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/netcup_dns.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/netcup_dns.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/netcup_dns.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:parameter-list-no-elements
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:parameter-list-no-elements
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:undocumented-parameter
|
||||||
|
@ -393,7 +359,6 @@ plugins/modules/net_tools/nios/nios_network.py validate-modules:parameter-type-n
|
||||||
plugins/modules/net_tools/nios/nios_network.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_network.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:undocumented-parameter
|
||||||
|
@ -407,25 +372,21 @@ plugins/modules/net_tools/nios/nios_nsgroup.py validate-modules:parameter-type-n
|
||||||
plugins/modules/net_tools/nios/nios_nsgroup.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_nsgroup.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:undocumented-parameter
|
||||||
|
@ -461,10 +422,6 @@ plugins/modules/packaging/os/redhat_subscription.py validate-modules:return-synt
|
||||||
plugins/modules/packaging/os/slackpkg.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/slackpkg.py validate-modules:parameter-invalid
|
||||||
plugins/modules/packaging/os/urpmi.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/urpmi.py validate-modules:parameter-invalid
|
||||||
plugins/modules/packaging/os/xbps.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/xbps.py validate-modules:parameter-invalid
|
||||||
plugins/modules/remote_management/cobbler/cobbler_sync.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/remote_management/cobbler/cobbler_sync.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/remote_management/cobbler/cobbler_system.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/remote_management/cobbler/cobbler_system.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:doc-missing-type
|
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:doc-missing-type
|
||||||
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/dellemc/ome_device_info.py validate-modules:parameter-list-no-elements
|
plugins/modules/remote_management/dellemc/ome_device_info.py validate-modules:parameter-list-no-elements
|
||||||
|
@ -487,7 +444,6 @@ plugins/modules/remote_management/manageiq/manageiq_policies.py validate-modules
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-choices-do-not-match-spec
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-choices-do-not-match-spec
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-missing-type
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-missing-type
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:undocumented-parameter
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:undocumented-parameter
|
||||||
|
@ -505,7 +461,6 @@ plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py valid
|
||||||
plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py validate-modules:undocumented-parameter
|
plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:doc-missing-type
|
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:doc-missing-type
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:undocumented-parameter
|
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/oneview/oneview_fc_network_info.py validate-modules:parameter-type-not-in-doc
|
||||||
|
@ -555,32 +510,20 @@ plugins/modules/source_control/github/github_release.py validate-modules:doc-mis
|
||||||
plugins/modules/source_control/github/github_release.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/source_control/github/github_release.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/source_control/github/github_webhook.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/source_control/github/github_webhook.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/source_control/github/github_webhook_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/source_control/github/github_webhook_info.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/source_control/gitlab/gitlab_deploy_key.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/source_control/gitlab/gitlab_hook.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/source_control/gitlab/gitlab_runner.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/source_control/gitlab/gitlab_runner.py validate-modules:parameter-list-no-elements
|
plugins/modules/source_control/gitlab/gitlab_runner.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/source_control/hg.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/source_control/hg.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/source_control/hg.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:doc-missing-type
|
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/glusterfs/gluster_heal_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/glusterfs/gluster_heal_info.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:parameter-list-no-elements
|
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-list-no-elements
|
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/ibm/ibm_sa_domain.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_domain.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_domain.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_host.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_host.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_host.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_host_ports.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_host_ports.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_host_ports.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_pool.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_pool.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_pool.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_vol.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_vol.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_vol.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_vol_map.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_vol_map.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_vol_map.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/netapp/na_cdot_aggregate.py validate-modules:doc-missing-type
|
plugins/modules/storage/netapp/na_cdot_aggregate.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/netapp/na_cdot_aggregate.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/netapp/na_cdot_aggregate.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/netapp/na_cdot_license.py validate-modules:incompatible-default-type
|
plugins/modules/storage/netapp/na_cdot_license.py validate-modules:incompatible-default-type
|
||||||
|
@ -622,12 +565,10 @@ plugins/modules/storage/purestorage/purefa_facts.py validate-modules:return-synt
|
||||||
plugins/modules/storage/purestorage/purefb_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/storage/purestorage/purefb_facts.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/storage/purestorage/purefb_facts.py validate-modules:return-syntax-error
|
plugins/modules/storage/purestorage/purefb_facts.py validate-modules:return-syntax-error
|
||||||
plugins/modules/storage/zfs/zfs.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/zfs/zfs.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:parameter-list-no-elements
|
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/zfs/zfs_facts.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/zfs/zfs_facts.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/zfs/zpool_facts.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/zfs/zpool_facts.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/system/aix_devices.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/system/alternatives.py pylint:blacklisted-name
|
plugins/modules/system/alternatives.py pylint:blacklisted-name
|
||||||
plugins/modules/system/beadm.py pylint:blacklisted-name
|
plugins/modules/system/beadm.py pylint:blacklisted-name
|
||||||
plugins/modules/system/cronvar.py pylint:blacklisted-name
|
plugins/modules/system/cronvar.py pylint:blacklisted-name
|
||||||
|
@ -641,7 +582,6 @@ plugins/modules/system/java_cert.py pylint:blacklisted-name
|
||||||
plugins/modules/system/launchd.py use-argspec-type-path # False positive
|
plugins/modules/system/launchd.py use-argspec-type-path # False positive
|
||||||
plugins/modules/system/lvg.py pylint:blacklisted-name
|
plugins/modules/system/lvg.py pylint:blacklisted-name
|
||||||
plugins/modules/system/lvol.py pylint:blacklisted-name
|
plugins/modules/system/lvol.py pylint:blacklisted-name
|
||||||
plugins/modules/system/osx_defaults.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/system/osx_defaults.py validate-modules:parameter-state-invalid-choice
|
plugins/modules/system/osx_defaults.py validate-modules:parameter-state-invalid-choice
|
||||||
plugins/modules/system/parted.py pylint:blacklisted-name
|
plugins/modules/system/parted.py pylint:blacklisted-name
|
||||||
plugins/modules/system/parted.py validate-modules:parameter-state-invalid-choice
|
plugins/modules/system/parted.py validate-modules:parameter-state-invalid-choice
|
||||||
|
|
|
@ -91,13 +91,9 @@ plugins/modules/cloud/oneandone/oneandone_load_balancer.py validate-modules:para
|
||||||
plugins/modules/cloud/oneandone/oneandone_monitoring_policy.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/oneandone/oneandone_monitoring_policy.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/oneandone/oneandone_private_network.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/oneandone/oneandone_private_network.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/oneandone/oneandone_server.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/oneandone/oneandone_server.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/online/online_server_facts.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/online/online_server_facts.py validate-modules:return-syntax-error
|
plugins/modules/cloud/online/online_server_facts.py validate-modules:return-syntax-error
|
||||||
plugins/modules/cloud/online/online_server_info.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/online/online_server_info.py validate-modules:return-syntax-error
|
plugins/modules/cloud/online/online_server_info.py validate-modules:return-syntax-error
|
||||||
plugins/modules/cloud/online/online_user_facts.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/online/online_user_facts.py validate-modules:return-syntax-error
|
plugins/modules/cloud/online/online_user_facts.py validate-modules:return-syntax-error
|
||||||
plugins/modules/cloud/online/online_user_info.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/online/online_user_info.py validate-modules:return-syntax-error
|
plugins/modules/cloud/online/online_user_info.py validate-modules:return-syntax-error
|
||||||
plugins/modules/cloud/opennebula/one_host.py validate-modules:doc-missing-type
|
plugins/modules/cloud/opennebula/one_host.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/opennebula/one_host.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/opennebula/one_host.py validate-modules:parameter-list-no-elements
|
||||||
|
@ -139,7 +135,6 @@ plugins/modules/cloud/ovirt/ovirt_permission_facts.py validate-modules:parameter
|
||||||
plugins/modules/cloud/ovirt/ovirt_quota_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_quota_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_quota_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/ovirt/ovirt_quota_facts.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py validate-modules:parameter-list-no-elements
|
||||||
|
@ -165,12 +160,10 @@ plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:parameter-lis
|
||||||
plugins/modules/cloud/packet/packet_device.py validate-modules:doc-missing-type
|
plugins/modules/cloud/packet/packet_device.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/packet/packet_ip_subnet.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:doc-missing-type
|
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/packet/packet_sshkey.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/packet/packet_volume_attachment.py pylint:ansible-bad-function
|
plugins/modules/cloud/packet/packet_volume_attachment.py pylint:ansible-bad-function
|
||||||
plugins/modules/cloud/packet/packet_volume_attachment.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-missing-type
|
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-missing-type
|
||||||
|
@ -206,15 +199,12 @@ plugins/modules/cloud/scaleway/scaleway_volume_info.py validate-modules:return-s
|
||||||
plugins/modules/cloud/smartos/imgadm.py validate-modules:doc-missing-type
|
plugins/modules/cloud/smartos/imgadm.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/smartos/imgadm.py validate-modules:no-default-for-required-parameter
|
plugins/modules/cloud/smartos/imgadm.py validate-modules:no-default-for-required-parameter
|
||||||
plugins/modules/cloud/smartos/smartos_image_info.py validate-modules:doc-missing-type
|
plugins/modules/cloud/smartos/smartos_image_info.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:doc-default-does-not-match-spec
|
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/softlayer/sl_vm.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/softlayer/sl_vm.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-missing-type
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
||||||
|
@ -246,15 +236,11 @@ plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:parameter-list-no-elements
|
plugins/modules/clustering/consul/consul.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:undocumented-parameter
|
plugins/modules/clustering/consul/consul.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/clustering/consul/consul_acl.py validate-modules:doc-missing-type
|
plugins/modules/clustering/consul/consul_acl.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/consul/consul_acl.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/clustering/consul/consul_acl.py validate-modules:parameter-list-no-elements
|
plugins/modules/clustering/consul/consul_acl.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul_kv.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/clustering/consul/consul_kv.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/consul/consul_kv.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/clustering/consul/consul_session.py validate-modules:parameter-list-no-elements
|
plugins/modules/clustering/consul/consul_session.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul_session.py validate-modules:parameter-state-invalid-choice
|
plugins/modules/clustering/consul/consul_session.py validate-modules:parameter-state-invalid-choice
|
||||||
plugins/modules/clustering/etcd3.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/etcd3.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/clustering/pacemaker_cluster.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/clustering/pacemaker_cluster.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/clustering/znode.py validate-modules:doc-missing-type
|
plugins/modules/clustering/znode.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/znode.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/znode.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/aerospike/aerospike_migrations.py yamllint:unparsable-with-libyaml
|
plugins/modules/database/aerospike/aerospike_migrations.py yamllint:unparsable-with-libyaml
|
||||||
|
@ -264,20 +250,14 @@ plugins/modules/database/misc/elasticsearch_plugin.py validate-modules:parameter
|
||||||
plugins/modules/database/misc/kibana_plugin.py validate-modules:doc-missing-type
|
plugins/modules/database/misc/kibana_plugin.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/misc/kibana_plugin.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/database/misc/kibana_plugin.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/database/misc/kibana_plugin.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/database/misc/kibana_plugin.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/misc/redis.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/database/misc/redis.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/database/misc/riak.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/database/misc/riak.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/database/misc/riak.py validate-modules:doc-missing-type
|
plugins/modules/database/misc/riak.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/misc/riak.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/database/misc/riak.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/mssql/mssql_db.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/database/mssql/mssql_db.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/database/postgresql/postgresql_db.py use-argspec-type-path
|
plugins/modules/database/postgresql/postgresql_db.py use-argspec-type-path
|
||||||
plugins/modules/database/postgresql/postgresql_db.py validate-modules:use-run-command-not-popen
|
plugins/modules/database/postgresql/postgresql_db.py validate-modules:use-run-command-not-popen
|
||||||
plugins/modules/database/postgresql/postgresql_privs.py validate-modules:parameter-documented-multiple-times
|
plugins/modules/database/postgresql/postgresql_privs.py validate-modules:parameter-documented-multiple-times
|
||||||
plugins/modules/database/postgresql/postgresql_tablespace.py validate-modules:mutually_exclusive-unknown
|
plugins/modules/database/postgresql/postgresql_tablespace.py validate-modules:mutually_exclusive-unknown
|
||||||
plugins/modules/database/postgresql/postgresql_user.py validate-modules:doc-choices-do-not-match-spec
|
plugins/modules/database/postgresql/postgresql_user.py validate-modules:doc-choices-do-not-match-spec
|
||||||
plugins/modules/database/vertica/vertica_configuration.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/database/vertica/vertica_configuration.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/database/vertica/vertica_info.py validate-modules:doc-missing-type
|
plugins/modules/database/vertica/vertica_info.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/vertica/vertica_role.py validate-modules:doc-missing-type
|
plugins/modules/database/vertica/vertica_role.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/vertica/vertica_role.py validate-modules:undocumented-parameter
|
plugins/modules/database/vertica/vertica_role.py validate-modules:undocumented-parameter
|
||||||
|
@ -286,7 +266,6 @@ plugins/modules/database/vertica/vertica_schema.py validate-modules:undocumented
|
||||||
plugins/modules/database/vertica/vertica_user.py validate-modules:doc-missing-type
|
plugins/modules/database/vertica/vertica_user.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/vertica/vertica_user.py validate-modules:undocumented-parameter
|
plugins/modules/database/vertica/vertica_user.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/files/iso_extract.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/files/iso_extract.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/files/xml.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/files/xml.py validate-modules:parameter-list-no-elements
|
plugins/modules/files/xml.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/identity/keycloak/keycloak_client.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/identity/keycloak/keycloak_client.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/identity/keycloak/keycloak_client.py validate-modules:doc-missing-type
|
plugins/modules/identity/keycloak/keycloak_client.py validate-modules:doc-missing-type
|
||||||
|
@ -314,9 +293,6 @@ plugins/modules/monitoring/statusio_maintenance.py pylint:blacklisted-name
|
||||||
plugins/modules/monitoring/statusio_maintenance.py validate-modules:parameter-list-no-elements
|
plugins/modules/monitoring/statusio_maintenance.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/net_tools/cloudflare_dns.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/cloudflare_dns.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/dnsimple.py validate-modules:parameter-list-no-elements
|
plugins/modules/net_tools/dnsimple.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/net_tools/dnsmadeeasy.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/net_tools/dnsmadeeasy.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/dnsmadeeasy.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/net_tools/ip_netns.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/ip_netns.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:parameter-type-not-in-doc
|
||||||
|
@ -326,62 +302,52 @@ plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:undocumented-parameter # Parameter removed but reason for removal is shown by custom code
|
plugins/modules/net_tools/ldap/ldap_entry.py validate-modules:undocumented-parameter # Parameter removed but reason for removal is shown by custom code
|
||||||
plugins/modules/net_tools/ldap/ldap_passwd.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/ldap/ldap_passwd.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ldap/ldap_passwd.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/netcup_dns.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/netcup_dns.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/netcup_dns.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/netcup_dns.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_a_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_aaaa_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_cname_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_dns_view.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_fixed_address.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:parameter-list-no-elements
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_host_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:parameter-list-no-elements
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_member.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_member.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_mx_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_naptr_record.py validate-modules:undocumented-parameter
|
||||||
|
@ -393,7 +359,6 @@ plugins/modules/net_tools/nios/nios_network.py validate-modules:parameter-type-n
|
||||||
plugins/modules/net_tools/nios/nios_network.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_network.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_network_view.py validate-modules:undocumented-parameter
|
||||||
|
@ -407,25 +372,21 @@ plugins/modules/net_tools/nios/nios_nsgroup.py validate-modules:parameter-type-n
|
||||||
plugins/modules/net_tools/nios/nios_nsgroup.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_nsgroup.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_ptr_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_srv_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_txt_record.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/nios/nios_zone.py validate-modules:undocumented-parameter
|
plugins/modules/net_tools/nios/nios_zone.py validate-modules:undocumented-parameter
|
||||||
|
@ -461,10 +422,6 @@ plugins/modules/packaging/os/redhat_subscription.py validate-modules:return-synt
|
||||||
plugins/modules/packaging/os/slackpkg.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/slackpkg.py validate-modules:parameter-invalid
|
||||||
plugins/modules/packaging/os/urpmi.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/urpmi.py validate-modules:parameter-invalid
|
||||||
plugins/modules/packaging/os/xbps.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/xbps.py validate-modules:parameter-invalid
|
||||||
plugins/modules/remote_management/cobbler/cobbler_sync.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/remote_management/cobbler/cobbler_sync.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/remote_management/cobbler/cobbler_system.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/remote_management/cobbler/cobbler_system.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:doc-missing-type
|
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:doc-missing-type
|
||||||
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/dellemc/ome_device_info.py validate-modules:parameter-list-no-elements
|
plugins/modules/remote_management/dellemc/ome_device_info.py validate-modules:parameter-list-no-elements
|
||||||
|
@ -487,7 +444,6 @@ plugins/modules/remote_management/manageiq/manageiq_policies.py validate-modules
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-choices-do-not-match-spec
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-choices-do-not-match-spec
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-missing-type
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-missing-type
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:invalid-ansiblemodule-schema
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:invalid-ansiblemodule-schema
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:undocumented-parameter
|
plugins/modules/remote_management/manageiq/manageiq_provider.py validate-modules:undocumented-parameter
|
||||||
|
@ -505,7 +461,6 @@ plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py valid
|
||||||
plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py validate-modules:undocumented-parameter
|
plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:doc-missing-type
|
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:doc-missing-type
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:undocumented-parameter
|
plugins/modules/remote_management/oneview/oneview_fc_network.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/remote_management/oneview/oneview_fc_network_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/oneview/oneview_fc_network_info.py validate-modules:parameter-type-not-in-doc
|
||||||
|
@ -555,32 +510,20 @@ plugins/modules/source_control/github/github_release.py validate-modules:doc-mis
|
||||||
plugins/modules/source_control/github/github_release.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/source_control/github/github_release.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/source_control/github/github_webhook.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/source_control/github/github_webhook.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/source_control/github/github_webhook_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/source_control/github/github_webhook_info.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/source_control/gitlab/gitlab_deploy_key.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/source_control/gitlab/gitlab_hook.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/source_control/gitlab/gitlab_runner.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/source_control/gitlab/gitlab_runner.py validate-modules:parameter-list-no-elements
|
plugins/modules/source_control/gitlab/gitlab_runner.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/source_control/hg.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/source_control/hg.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/source_control/hg.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:doc-missing-type
|
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/glusterfs/gluster_heal_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/glusterfs/gluster_heal_info.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:parameter-list-no-elements
|
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-list-no-elements
|
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/ibm/ibm_sa_domain.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_domain.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_domain.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_host.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_host.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_host.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_host_ports.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_host_ports.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_host_ports.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_pool.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_pool.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_pool.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_vol.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_vol.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_vol.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/ibm/ibm_sa_vol_map.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_vol_map.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_vol_map.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/netapp/na_cdot_aggregate.py validate-modules:doc-missing-type
|
plugins/modules/storage/netapp/na_cdot_aggregate.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/netapp/na_cdot_aggregate.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/netapp/na_cdot_aggregate.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/netapp/na_cdot_license.py validate-modules:incompatible-default-type
|
plugins/modules/storage/netapp/na_cdot_license.py validate-modules:incompatible-default-type
|
||||||
|
@ -622,12 +565,10 @@ plugins/modules/storage/purestorage/purefa_facts.py validate-modules:return-synt
|
||||||
plugins/modules/storage/purestorage/purefb_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/storage/purestorage/purefb_facts.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/storage/purestorage/purefb_facts.py validate-modules:return-syntax-error
|
plugins/modules/storage/purestorage/purefb_facts.py validate-modules:return-syntax-error
|
||||||
plugins/modules/storage/zfs/zfs.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/zfs/zfs.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:parameter-list-no-elements
|
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/zfs/zfs_delegate_admin.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/zfs/zfs_facts.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/zfs/zfs_facts.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/zfs/zpool_facts.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/zfs/zpool_facts.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/system/aix_devices.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/system/alternatives.py pylint:blacklisted-name
|
plugins/modules/system/alternatives.py pylint:blacklisted-name
|
||||||
plugins/modules/system/beadm.py pylint:blacklisted-name
|
plugins/modules/system/beadm.py pylint:blacklisted-name
|
||||||
plugins/modules/system/cronvar.py pylint:blacklisted-name
|
plugins/modules/system/cronvar.py pylint:blacklisted-name
|
||||||
|
@ -641,7 +582,6 @@ plugins/modules/system/java_cert.py pylint:blacklisted-name
|
||||||
plugins/modules/system/launchd.py use-argspec-type-path # False positive
|
plugins/modules/system/launchd.py use-argspec-type-path # False positive
|
||||||
plugins/modules/system/lvg.py pylint:blacklisted-name
|
plugins/modules/system/lvg.py pylint:blacklisted-name
|
||||||
plugins/modules/system/lvol.py pylint:blacklisted-name
|
plugins/modules/system/lvol.py pylint:blacklisted-name
|
||||||
plugins/modules/system/osx_defaults.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/system/osx_defaults.py validate-modules:parameter-state-invalid-choice
|
plugins/modules/system/osx_defaults.py validate-modules:parameter-state-invalid-choice
|
||||||
plugins/modules/system/parted.py pylint:blacklisted-name
|
plugins/modules/system/parted.py pylint:blacklisted-name
|
||||||
plugins/modules/system/parted.py validate-modules:parameter-state-invalid-choice
|
plugins/modules/system/parted.py validate-modules:parameter-state-invalid-choice
|
||||||
|
|
|
@ -202,7 +202,6 @@ plugins/modules/cloud/scaleway/scaleway_volume_info.py validate-modules:return-s
|
||||||
plugins/modules/cloud/smartos/imgadm.py validate-modules:doc-missing-type
|
plugins/modules/cloud/smartos/imgadm.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/smartos/imgadm.py validate-modules:no-default-for-required-parameter
|
plugins/modules/cloud/smartos/imgadm.py validate-modules:no-default-for-required-parameter
|
||||||
plugins/modules/cloud/smartos/smartos_image_info.py validate-modules:doc-missing-type
|
plugins/modules/cloud/smartos/smartos_image_info.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:doc-default-does-not-match-spec
|
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:doc-default-does-not-match-spec
|
||||||
|
@ -232,18 +231,15 @@ plugins/modules/clustering/consul/consul.py validate-modules:undocumented-parame
|
||||||
plugins/modules/clustering/consul/consul_acl.py validate-modules:doc-missing-type
|
plugins/modules/clustering/consul/consul_acl.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/consul/consul_kv.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/consul/consul_kv.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/clustering/etcd3.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/etcd3.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/clustering/pacemaker_cluster.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/clustering/znode.py validate-modules:doc-missing-type
|
plugins/modules/clustering/znode.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/znode.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/clustering/znode.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/misc/elasticsearch_plugin.py validate-modules:doc-missing-type
|
plugins/modules/database/misc/elasticsearch_plugin.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/misc/elasticsearch_plugin.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/database/misc/elasticsearch_plugin.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/misc/kibana_plugin.py validate-modules:doc-missing-type
|
plugins/modules/database/misc/kibana_plugin.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/misc/kibana_plugin.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/database/misc/kibana_plugin.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/misc/redis.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/database/misc/riak.py validate-modules:doc-default-does-not-match-spec
|
plugins/modules/database/misc/riak.py validate-modules:doc-default-does-not-match-spec
|
||||||
plugins/modules/database/misc/riak.py validate-modules:doc-missing-type
|
plugins/modules/database/misc/riak.py validate-modules:doc-missing-type
|
||||||
plugins/modules/database/misc/riak.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/database/misc/riak.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/mssql/mssql_db.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/database/postgresql/postgresql_db.py use-argspec-type-path
|
plugins/modules/database/postgresql/postgresql_db.py use-argspec-type-path
|
||||||
plugins/modules/database/postgresql/postgresql_db.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/database/postgresql/postgresql_db.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/database/postgresql/postgresql_db.py validate-modules:use-run-command-not-popen
|
plugins/modules/database/postgresql/postgresql_db.py validate-modules:use-run-command-not-popen
|
||||||
|
@ -272,8 +268,6 @@ plugins/modules/monitoring/bigpanda.py validate-modules:doc-default-does-not-mat
|
||||||
plugins/modules/monitoring/icinga2_host.py validate-modules:undocumented-parameter
|
plugins/modules/monitoring/icinga2_host.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/monitoring/statusio_maintenance.py pylint:blacklisted-name
|
plugins/modules/monitoring/statusio_maintenance.py pylint:blacklisted-name
|
||||||
plugins/modules/net_tools/cloudflare_dns.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/cloudflare_dns.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/net_tools/dnsmadeeasy.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/net_tools/dnsmadeeasy.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/net_tools/ip_netns.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/ip_netns.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:doc-missing-type
|
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/net_tools/ipinfoio_facts.py validate-modules:parameter-type-not-in-doc
|
||||||
|
@ -368,8 +362,6 @@ plugins/modules/packaging/os/redhat_subscription.py validate-modules:return-synt
|
||||||
plugins/modules/packaging/os/slackpkg.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/slackpkg.py validate-modules:parameter-invalid
|
||||||
plugins/modules/packaging/os/urpmi.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/urpmi.py validate-modules:parameter-invalid
|
||||||
plugins/modules/packaging/os/xbps.py validate-modules:parameter-invalid
|
plugins/modules/packaging/os/xbps.py validate-modules:parameter-invalid
|
||||||
plugins/modules/remote_management/cobbler/cobbler_sync.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/remote_management/cobbler/cobbler_system.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:doc-missing-type
|
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:doc-missing-type
|
||||||
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/remote_management/dellemc/idrac_server_config_profile.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/remote_management/foreman/foreman.py validate-modules:deprecation-mismatch
|
plugins/modules/remote_management/foreman/foreman.py validate-modules:deprecation-mismatch
|
||||||
|
@ -450,7 +442,6 @@ plugins/modules/source_control/hg.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:doc-missing-type
|
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/emc/emc_vnx_sg_member.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/glusterfs/gluster_heal_info.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/glusterfs/gluster_heal_info.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/glusterfs/gluster_peer.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/storage/glusterfs/gluster_volume.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/storage/ibm/ibm_sa_domain.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_domain.py validate-modules:doc-missing-type
|
||||||
plugins/modules/storage/ibm/ibm_sa_host.py validate-modules:doc-missing-type
|
plugins/modules/storage/ibm/ibm_sa_host.py validate-modules:doc-missing-type
|
||||||
|
|
Loading…
Reference in a new issue