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