Tidy up validations + bug fixes + deprecations (#1830)

* fixed validation-modules for plugins/modules/database/misc/elasticsearch_plugin.py

* fixed validation-modules for plugins/modules/database/misc/kibana_plugin.py

* fixed validation-modules for plugins/modules/database/misc/riak.py

* fixed validation-modules for plugins/modules/database/vertica/vertica_info.py

* fixed validation-modules for plugins/modules/database/vertica/vertica_role.py

* fixed validation-modules for plugins/modules/database/vertica/vertica_schema.py

* fixed validation-modules for plugins/modules/database/vertica/vertica_user.py

* fixed validation-modules for plugins/modules/storage/ibm/ibm_sa_domain.py

* fixed validation-modules for plugins/modules/storage/ibm/ibm_sa_host_ports.py

* fixed validation-modules for plugins/modules/storage/ibm/ibm_sa_host.py

* fixed validation-modules for plugins/modules/storage/ibm/ibm_sa_pool.py

* fixed validation-modules for plugins/modules/storage/ibm/ibm_sa_vol.py

* fixed validation-modules for plugins/modules/storage/ibm/ibm_sa_vol_map.py

* fixed validation-modules for plugins/modules/storage/ibm/ibm_sa_host_ports.py

* fixed validation-modules for plugins/modules/system/runit.py

* fixed validation-modules for plugins/modules/source_control/bzr.py

* fixed validation-modules for plugins/modules/source_control/hg.py

* fixed validation-modules for plugins/modules/storage/emc/emc_vnx_sg_member.py

* fixed validation-modules for plugins/modules/identity/opendj/opendj_backendprop.py

* fixed validation-modules for plugins/modules/files/iso_extract.py

* fixed validation-modules for plugins/modules/monitoring/logstash_plugin.py

* fixed validation-modules for plugins/modules/database/aerospike/aerospike_migrations.py

* Tidy up a number of sanity checks for some modules

* added changelog fragment

* Some parameters in vertica_* had their aliases documented as the name, and sometimes vice-versa as well

* Adjustments per PR

* Rolled back sanity ignores for runit

* Update changelogs/fragments/1830-valmod_docmissingtype_batch1.yml

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

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Alexei Znamensky 2021-02-16 21:27:24 +13:00 committed by GitHub
commit 3778eac1ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 164 additions and 152 deletions

View file

@ -23,51 +23,63 @@ options:
description:
- Name of the domain to be managed.
required: true
type: str
state:
description:
- The desired state of the domain.
default: "present"
choices: [ "present", "absent" ]
type: str
ldap_id:
description:
- ldap id to add to the domain.
required: false
type: str
size:
description:
- Size of the domain.
required: false
type: str
hard_capacity:
description:
- Hard capacity of the domain.
required: false
type: str
soft_capacity:
description:
- Soft capacity of the domain.
required: false
type: str
max_cgs:
description:
- Number of max cgs.
required: false
type: str
max_dms:
description:
- Number of max dms.
required: false
type: str
max_mirrors:
description:
- Number of max_mirrors.
required: false
type: str
max_pools:
description:
- Number of max_pools.
required: false
type: str
max_volumes:
description:
- Number of max_volumes.
required: false
type: str
perf_class:
description:
- Add the domain to a performance class.
required: false
type: str
extends_documentation_fragment:
- community.general.ibm_storage

View file

@ -22,15 +22,18 @@ options:
description:
- Host name.
required: true
type: str
state:
description:
- Host state.
default: "present"
choices: [ "present", "absent" ]
type: str
cluster:
description:
- The name of the cluster to include the host.
required: false
type: str
domain:
description:
- The domains the cluster will be attached to.
@ -38,15 +41,18 @@ options:
separate domain names with commas.
To include all existing domains, use an asterisk ("*").
required: false
type: str
iscsi_chap_name:
description:
- The host's CHAP name identifier
required: false
type: str
iscsi_chap_secret:
description:
- The password of the initiator used to
authenticate to the system when CHAP is enable
required: false
type: str
extends_documentation_fragment:
- community.general.ibm_storage

View file

@ -23,28 +23,32 @@ options:
description:
- Host name.
required: true
type: str
state:
description:
- Host ports state.
default: "present"
choices: [ "present", "absent" ]
type: str
iscsi_name:
description:
- iSCSI initiator name.
required: false
type: str
fcaddress:
description:
- Fiber channel address.
required: false
type: str
num_of_visible_targets:
description:
- Number of visible targets.
required: false
type: str
extends_documentation_fragment:
- community.general.ibm_storage
author:
- Tzur Eliyahu (@tzure)
'''

View file

@ -22,27 +22,33 @@ options:
description:
- Pool name.
required: true
type: str
state:
description:
- Pool state.
default: "present"
choices: [ "present", "absent" ]
type: str
size:
description:
- Pool size in GB
required: false
type: str
snapshot_size:
description:
- Pool snapshot size in GB
required: false
type: str
domain:
description:
- Adds the pool to the specified domain.
required: false
type: str
perf_class:
description:
- Assigns a perf_class to the pool.
required: false
type: str
extends_documentation_fragment:
- community.general.ibm_storage

View file

@ -22,19 +22,23 @@ options:
description:
- Volume name.
required: true
type: str
pool:
description:
- Volume pool.
required: false
type: str
state:
description:
- Volume state.
default: "present"
choices: [ "present", "absent" ]
type: str
size:
description:
- Volume size.
required: false
type: str
extends_documentation_fragment:
- community.general.ibm_storage

View file

@ -24,29 +24,35 @@ options:
description:
- Volume name.
required: true
type: str
state:
default: "present"
choices: [ "present", "absent" ]
description:
- When the state is present the volume is mapped.
When the state is absent, the volume is meant to be unmapped.
type: str
cluster:
description:
- Maps the volume to a cluster.
required: false
type: str
host:
description:
- Maps the volume to a host.
required: false
type: str
lun:
description:
- The LUN identifier.
required: false
type: str
override:
description:
- Overrides the existing volume mapping.
required: false
type: str
extends_documentation_fragment:
- community.general.ibm_storage