Clean up doc-required-mismatch
Change-Id: Ia1449c50295f6b3551f176edf9bd439ace65ec90
This commit is contained in:
parent
1849f8bd47
commit
aeb0e78148
@ -23,6 +23,7 @@ options:
|
||||
- The Container Orchestration Engine for this clustertemplate
|
||||
choices: [kubernetes, swarm, mesos]
|
||||
type: str
|
||||
required: true
|
||||
dns_nameserver:
|
||||
description:
|
||||
- The DNS nameserver address
|
||||
@ -66,6 +67,7 @@ options:
|
||||
description:
|
||||
- Image id the cluster will be based on
|
||||
type: str
|
||||
required: true
|
||||
labels:
|
||||
description:
|
||||
- One or more key/value pairs
|
||||
|
@ -20,7 +20,6 @@ options:
|
||||
name:
|
||||
description:
|
||||
- Name or ID of the group.
|
||||
required: true
|
||||
type: str
|
||||
domain:
|
||||
description:
|
||||
|
@ -37,7 +37,7 @@ options:
|
||||
driver:
|
||||
description:
|
||||
- The name of the Ironic Driver to use with this node.
|
||||
required: true
|
||||
- Required when I(state=present)
|
||||
type: str
|
||||
chassis_uuid:
|
||||
description:
|
||||
@ -54,6 +54,7 @@ options:
|
||||
- Information for this server's driver. Will vary based on which
|
||||
driver is in use. Any sub-field which is populated will be validated
|
||||
during creation.
|
||||
required: true
|
||||
type: dict
|
||||
suboptions:
|
||||
power:
|
||||
|
@ -185,7 +185,7 @@ def main():
|
||||
argument_spec = openstack_full_argument_spec(
|
||||
state=dict(required=False, default='present',
|
||||
choices=['absent', 'present']),
|
||||
name=dict(required=False),
|
||||
name=dict(required=True),
|
||||
|
||||
# required when state is 'present'
|
||||
ram=dict(required=False, type='int'),
|
||||
|
@ -21,7 +21,7 @@ options:
|
||||
network:
|
||||
description:
|
||||
- Network ID or name this port belongs to.
|
||||
required: true
|
||||
- Required when creating a new port.
|
||||
type: str
|
||||
name:
|
||||
description:
|
||||
|
@ -41,10 +41,12 @@ options:
|
||||
resource_type:
|
||||
description:
|
||||
- The resource type (eg. nova_flavor, cinder_volume_type).
|
||||
required: true
|
||||
type: str
|
||||
resource_name:
|
||||
description:
|
||||
- The resource name (eg. tiny).
|
||||
required: true
|
||||
type: str
|
||||
requirements:
|
||||
- "python >= 3.6"
|
||||
|
@ -21,7 +21,6 @@ options:
|
||||
name:
|
||||
description:
|
||||
- Name or ID of the project
|
||||
required: true
|
||||
type: str
|
||||
domain:
|
||||
description:
|
||||
|
@ -31,12 +31,12 @@ options:
|
||||
recordset_type:
|
||||
description:
|
||||
- Recordset type
|
||||
required: true
|
||||
- Required when I(state=present).
|
||||
type: str
|
||||
records:
|
||||
description:
|
||||
- List of recordset definitions
|
||||
required: true
|
||||
- List of recordset definitions.
|
||||
- Required when I(state=present).
|
||||
type: list
|
||||
description:
|
||||
description:
|
||||
|
@ -31,7 +31,7 @@ options:
|
||||
image:
|
||||
description:
|
||||
- The name or id of the base image to boot.
|
||||
required: true
|
||||
- Required when I(boot_from_volume=true)
|
||||
type: str
|
||||
image_exclude:
|
||||
description:
|
||||
|
@ -42,8 +42,8 @@ options:
|
||||
changed as the servers API does not provide lock status.
|
||||
choices: [stop, start, pause, unpause, lock, unlock, suspend, resume,
|
||||
rebuild]
|
||||
default: present
|
||||
type: str
|
||||
required: true
|
||||
image:
|
||||
description:
|
||||
- Image the server should be rebuilt with
|
||||
|
@ -21,7 +21,6 @@ options:
|
||||
name:
|
||||
description:
|
||||
- Name or ID of the user
|
||||
required: true
|
||||
type: str
|
||||
domain:
|
||||
description:
|
||||
|
@ -1,25 +1,14 @@
|
||||
plugins/module_utils/openstack.py future-import-boilerplate
|
||||
plugins/module_utils/openstack.py metaclass-boilerplate
|
||||
plugins/modules/os_coe_cluster_template.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_group_info.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_image.py validate-modules:doc-choices-do-not-match-spec
|
||||
plugins/modules/os_image.py validate-modules:doc-default-does-not-match-spec
|
||||
plugins/modules/os_ironic.py validate-modules:doc-choices-do-not-match-spec
|
||||
plugins/modules/os_ironic.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_nova_flavor.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_port.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_project_access.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_project_info.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_quota.py validate-modules:doc-choices-do-not-match-spec
|
||||
plugins/modules/os_quota.py validate-modules:return-syntax-error
|
||||
plugins/modules/os_recordset.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_server.py validate-modules:doc-default-does-not-match-spec
|
||||
plugins/modules/os_server.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_server_action.py validate-modules:doc-default-does-not-match-spec
|
||||
plugins/modules/os_server_action.py validate-modules:doc-required-mismatch
|
||||
plugins/modules/os_stack.py validate-modules:doc-default-does-not-match-spec
|
||||
plugins/modules/os_subnet.py validate-modules:doc-choices-do-not-match-spec
|
||||
plugins/modules/os_user_info.py validate-modules:doc-required-mismatch
|
||||
plugins/doc_fragments/openstack.py future-import-boilerplate
|
||||
plugins/doc_fragments/openstack.py metaclass-boilerplate
|
||||
tests/unit/mock/path.py future-import-boilerplate
|
||||
|
Loading…
x
Reference in New Issue
Block a user