Tidy up validate-modules ignores for modules: cloud/profitbricks (#1387)
* fixed validation-modules for plugins/modules/cloud/profitbricks/profitbricks_datacenter.py * fixed validation-modules for plugins/modules/cloud/profitbricks/profitbricks_nic.py * fixed validation-modules for plugins/modules/cloud/profitbricks/profitbricks.py * fixed validation-modules for plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py * fixed validation-modules for plugins/modules/cloud/profitbricks/profitbricks_volume.py * Tidy up validate-modules ignores for cloud/profitbricks modules * CI errors for 2.9pull/1391/head
parent
4a7379b61d
commit
a99d011867
|
@ -22,52 +22,63 @@ options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The name of the virtual machine.
|
- The name of the virtual machine.
|
||||||
required: true
|
type: str
|
||||||
image:
|
image:
|
||||||
description:
|
description:
|
||||||
- The system image ID for creating the virtual machine, e.g. a3eae284-a2fe-11e4-b187-5f1f641608c8.
|
- The system image ID for creating the virtual machine, e.g. a3eae284-a2fe-11e4-b187-5f1f641608c8.
|
||||||
required: true
|
type: str
|
||||||
image_password:
|
image_password:
|
||||||
description:
|
description:
|
||||||
- Password set for the administrative user.
|
- Password set for the administrative user.
|
||||||
|
type: str
|
||||||
ssh_keys:
|
ssh_keys:
|
||||||
description:
|
description:
|
||||||
- Public SSH keys allowing access to the virtual machine.
|
- Public SSH keys allowing access to the virtual machine.
|
||||||
|
type: list
|
||||||
datacenter:
|
datacenter:
|
||||||
description:
|
description:
|
||||||
- The datacenter to provision this virtual machine.
|
- The datacenter to provision this virtual machine.
|
||||||
|
type: str
|
||||||
cores:
|
cores:
|
||||||
description:
|
description:
|
||||||
- The number of CPU cores to allocate to the virtual machine.
|
- The number of CPU cores to allocate to the virtual machine.
|
||||||
default: 2
|
default: 2
|
||||||
|
type: int
|
||||||
ram:
|
ram:
|
||||||
description:
|
description:
|
||||||
- The amount of memory to allocate to the virtual machine.
|
- The amount of memory to allocate to the virtual machine.
|
||||||
default: 2048
|
default: 2048
|
||||||
|
type: int
|
||||||
cpu_family:
|
cpu_family:
|
||||||
description:
|
description:
|
||||||
- The CPU family type to allocate to the virtual machine.
|
- The CPU family type to allocate to the virtual machine.
|
||||||
|
type: str
|
||||||
default: AMD_OPTERON
|
default: AMD_OPTERON
|
||||||
choices: [ "AMD_OPTERON", "INTEL_XEON" ]
|
choices: [ "AMD_OPTERON", "INTEL_XEON" ]
|
||||||
volume_size:
|
volume_size:
|
||||||
description:
|
description:
|
||||||
- The size in GB of the boot volume.
|
- The size in GB of the boot volume.
|
||||||
|
type: int
|
||||||
default: 10
|
default: 10
|
||||||
bus:
|
bus:
|
||||||
description:
|
description:
|
||||||
- The bus type for the volume.
|
- The bus type for the volume.
|
||||||
|
type: str
|
||||||
default: VIRTIO
|
default: VIRTIO
|
||||||
choices: [ "IDE", "VIRTIO"]
|
choices: [ "IDE", "VIRTIO"]
|
||||||
instance_ids:
|
instance_ids:
|
||||||
description:
|
description:
|
||||||
- list of instance ids, currently only used when state='absent' to remove instances.
|
- list of instance ids, currently only used when state='absent' to remove instances.
|
||||||
|
type: list
|
||||||
count:
|
count:
|
||||||
description:
|
description:
|
||||||
- The number of virtual machines to create.
|
- The number of virtual machines to create.
|
||||||
|
type: int
|
||||||
default: 1
|
default: 1
|
||||||
location:
|
location:
|
||||||
description:
|
description:
|
||||||
- The datacenter location. Use only if you want to create the Datacenter or else this value is ignored.
|
- The datacenter location. Use only if you want to create the Datacenter or else this value is ignored.
|
||||||
|
type: str
|
||||||
default: us/las
|
default: us/las
|
||||||
choices: [ "us/las", "de/fra", "de/fkb" ]
|
choices: [ "us/las", "de/fra", "de/fkb" ]
|
||||||
assign_public_ip:
|
assign_public_ip:
|
||||||
|
@ -78,13 +89,16 @@ options:
|
||||||
lan:
|
lan:
|
||||||
description:
|
description:
|
||||||
- The ID of the LAN you wish to add the servers to.
|
- The ID of the LAN you wish to add the servers to.
|
||||||
|
type: int
|
||||||
default: 1
|
default: 1
|
||||||
subscription_user:
|
subscription_user:
|
||||||
description:
|
description:
|
||||||
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
||||||
|
type: str
|
||||||
subscription_password:
|
subscription_password:
|
||||||
description:
|
description:
|
||||||
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
||||||
|
type: str
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
- wait for the instance to be in state 'running' before returning
|
- wait for the instance to be in state 'running' before returning
|
||||||
|
@ -93,6 +107,7 @@ options:
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
type: int
|
||||||
default: 600
|
default: 600
|
||||||
remove_boot_volume:
|
remove_boot_volume:
|
||||||
description:
|
description:
|
||||||
|
@ -102,8 +117,15 @@ options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- create or terminate instances
|
- create or terminate instances
|
||||||
|
- 'The choices available are: C(running), C(stopped), C(absent), C(present).'
|
||||||
|
type: str
|
||||||
default: 'present'
|
default: 'present'
|
||||||
choices: [ "running", "stopped", "absent", "present" ]
|
disk_type:
|
||||||
|
description:
|
||||||
|
- the type of disk to be allocated.
|
||||||
|
type: str
|
||||||
|
choices: [SSD, HDD]
|
||||||
|
default: HDD
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
- "profitbricks"
|
- "profitbricks"
|
||||||
|
|
|
@ -17,24 +17,28 @@ options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The name of the virtual datacenter.
|
- The name of the virtual datacenter.
|
||||||
required: true
|
type: str
|
||||||
description:
|
description:
|
||||||
description:
|
description:
|
||||||
- The description of the virtual datacenter.
|
- The description of the virtual datacenter.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
location:
|
location:
|
||||||
description:
|
description:
|
||||||
- The datacenter location.
|
- The datacenter location.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
default: us/las
|
default: us/las
|
||||||
choices: [ "us/las", "de/fra", "de/fkb" ]
|
choices: [ "us/las", "de/fra", "de/fkb" ]
|
||||||
subscription_user:
|
subscription_user:
|
||||||
description:
|
description:
|
||||||
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
subscription_password:
|
subscription_password:
|
||||||
description:
|
description:
|
||||||
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
|
@ -45,13 +49,15 @@ options:
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
type: int
|
||||||
default: 600
|
default: 600
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- create or terminate datacenters
|
- Create or terminate datacenters.
|
||||||
|
- "The available choices are: C(present), C(absent)."
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
default: 'present'
|
default: 'present'
|
||||||
choices: [ "present", "absent" ]
|
|
||||||
|
|
||||||
requirements: [ "profitbricks" ]
|
requirements: [ "profitbricks" ]
|
||||||
author: Matt Baldwin (@baldwinSPC) <baldwin@stackpointcloud.com>
|
author: Matt Baldwin (@baldwinSPC) <baldwin@stackpointcloud.com>
|
||||||
|
@ -203,7 +209,7 @@ def main():
|
||||||
subscription_password=dict(no_log=True),
|
subscription_password=dict(no_log=True),
|
||||||
wait=dict(type='bool', default=True),
|
wait=dict(type='bool', default=True),
|
||||||
wait_timeout=dict(default=600, type='int'),
|
wait_timeout=dict(default=600, type='int'),
|
||||||
state=dict(default='present'),
|
state=dict(default='present'), # @TODO add choices
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if not HAS_PB_SDK:
|
if not HAS_PB_SDK:
|
||||||
|
|
|
@ -16,26 +16,28 @@ options:
|
||||||
datacenter:
|
datacenter:
|
||||||
description:
|
description:
|
||||||
- The datacenter in which to operate.
|
- The datacenter in which to operate.
|
||||||
required: true
|
type: str
|
||||||
server:
|
server:
|
||||||
description:
|
description:
|
||||||
- The server name or ID.
|
- The server name or ID.
|
||||||
required: true
|
type: str
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The name or ID of the NIC. This is only required on deletes, but not on create.
|
- The name or ID of the NIC. This is only required on deletes, but not on create.
|
||||||
required: true
|
type: str
|
||||||
lan:
|
lan:
|
||||||
description:
|
description:
|
||||||
- The LAN to place the NIC on. You can pass a LAN that doesn't exist and it will be created. Required on create.
|
- The LAN to place the NIC on. You can pass a LAN that doesn't exist and it will be created. Required on create.
|
||||||
required: true
|
type: str
|
||||||
subscription_user:
|
subscription_user:
|
||||||
description:
|
description:
|
||||||
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
subscription_password:
|
subscription_password:
|
||||||
description:
|
description:
|
||||||
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
|
@ -46,13 +48,15 @@ options:
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
type: int
|
||||||
default: 600
|
default: 600
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Indicate desired state of the resource
|
- Indicate desired state of the resource
|
||||||
|
- "The available choices are: C(present), C(absent)."
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
default: 'present'
|
default: 'present'
|
||||||
choices: ["present", "absent"]
|
|
||||||
|
|
||||||
requirements: [ "profitbricks" ]
|
requirements: [ "profitbricks" ]
|
||||||
author: Matt Baldwin (@baldwinSPC) <baldwin@stackpointcloud.com>
|
author: Matt Baldwin (@baldwinSPC) <baldwin@stackpointcloud.com>
|
||||||
|
@ -228,7 +232,7 @@ def main():
|
||||||
argument_spec=dict(
|
argument_spec=dict(
|
||||||
datacenter=dict(),
|
datacenter=dict(),
|
||||||
server=dict(),
|
server=dict(),
|
||||||
name=dict(default=str(uuid.uuid4()).replace('-', '')[:10]),
|
name=dict(default=str(uuid.uuid4()).replace('-', '')[:10]), # @FIXME please do not do that
|
||||||
lan=dict(),
|
lan=dict(),
|
||||||
subscription_user=dict(),
|
subscription_user=dict(),
|
||||||
subscription_password=dict(no_log=True),
|
subscription_password=dict(no_log=True),
|
||||||
|
@ -241,7 +245,7 @@ def main():
|
||||||
if not HAS_PB_SDK:
|
if not HAS_PB_SDK:
|
||||||
module.fail_json(msg='profitbricks required for this module')
|
module.fail_json(msg='profitbricks required for this module')
|
||||||
|
|
||||||
if not module.params.get('subscription_user'):
|
if not module.params.get('subscription_user'): # @ FIXME use required in argument_spec, same for lines below
|
||||||
module.fail_json(msg='subscription_user parameter is required')
|
module.fail_json(msg='subscription_user parameter is required')
|
||||||
if not module.params.get('subscription_password'):
|
if not module.params.get('subscription_password'):
|
||||||
module.fail_json(msg='subscription_password parameter is required')
|
module.fail_json(msg='subscription_password parameter is required')
|
||||||
|
@ -275,7 +279,7 @@ def main():
|
||||||
|
|
||||||
try:
|
try:
|
||||||
(nic_dict) = create_nic(module, profitbricks)
|
(nic_dict) = create_nic(module, profitbricks)
|
||||||
module.exit_json(nics=nic_dict)
|
module.exit_json(nics=nic_dict) # @FIXME changed not calculated?
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
module.fail_json(msg='failed to set nic state: %s' % str(e))
|
module.fail_json(msg='failed to set nic state: %s' % str(e))
|
||||||
|
|
||||||
|
|
|
@ -16,49 +16,56 @@ options:
|
||||||
datacenter:
|
datacenter:
|
||||||
description:
|
description:
|
||||||
- The datacenter in which to create the volumes.
|
- The datacenter in which to create the volumes.
|
||||||
required: true
|
type: str
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The name of the volumes. You can enumerate the names using auto_increment.
|
- The name of the volumes. You can enumerate the names using auto_increment.
|
||||||
required: true
|
type: str
|
||||||
size:
|
size:
|
||||||
description:
|
description:
|
||||||
- The size of the volume.
|
- The size of the volume.
|
||||||
|
type: int
|
||||||
required: false
|
required: false
|
||||||
default: 10
|
default: 10
|
||||||
bus:
|
bus:
|
||||||
description:
|
description:
|
||||||
- The bus type.
|
- The bus type.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
default: VIRTIO
|
default: VIRTIO
|
||||||
choices: [ "IDE", "VIRTIO"]
|
choices: [ "IDE", "VIRTIO"]
|
||||||
image:
|
image:
|
||||||
description:
|
description:
|
||||||
- The system image ID for the volume, e.g. a3eae284-a2fe-11e4-b187-5f1f641608c8. This can also be a snapshot image ID.
|
- The system image ID for the volume, e.g. a3eae284-a2fe-11e4-b187-5f1f641608c8. This can also be a snapshot image ID.
|
||||||
required: true
|
type: str
|
||||||
image_password:
|
image_password:
|
||||||
description:
|
description:
|
||||||
- Password set for the administrative user.
|
- Password set for the administrative user.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
ssh_keys:
|
ssh_keys:
|
||||||
description:
|
description:
|
||||||
- Public SSH keys allowing access to the virtual machine.
|
- Public SSH keys allowing access to the virtual machine.
|
||||||
|
type: list
|
||||||
required: false
|
required: false
|
||||||
disk_type:
|
disk_type:
|
||||||
description:
|
description:
|
||||||
- The disk type of the volume.
|
- The disk type of the volume.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
default: HDD
|
default: HDD
|
||||||
choices: [ "HDD", "SSD" ]
|
choices: [ "HDD", "SSD" ]
|
||||||
licence_type:
|
licence_type:
|
||||||
description:
|
description:
|
||||||
- The licence type for the volume. This is used when the image is non-standard.
|
- The licence type for the volume. This is used when the image is non-standard.
|
||||||
|
- "The available choices are: C(LINUX), C(WINDOWS), C(UNKNOWN), C(OTHER)."
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
default: UNKNOWN
|
default: UNKNOWN
|
||||||
choices: ["LINUX", "WINDOWS", "UNKNOWN" , "OTHER"]
|
|
||||||
count:
|
count:
|
||||||
description:
|
description:
|
||||||
- The number of volumes you wish to create.
|
- The number of volumes you wish to create.
|
||||||
|
type: int
|
||||||
required: false
|
required: false
|
||||||
default: 1
|
default: 1
|
||||||
auto_increment:
|
auto_increment:
|
||||||
|
@ -69,14 +76,17 @@ options:
|
||||||
instance_ids:
|
instance_ids:
|
||||||
description:
|
description:
|
||||||
- list of instance ids, currently only used when state='absent' to remove instances.
|
- list of instance ids, currently only used when state='absent' to remove instances.
|
||||||
|
type: list
|
||||||
required: false
|
required: false
|
||||||
subscription_user:
|
subscription_user:
|
||||||
description:
|
description:
|
||||||
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
subscription_password:
|
subscription_password:
|
||||||
description:
|
description:
|
||||||
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
|
@ -87,13 +97,15 @@ options:
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
type: int
|
||||||
default: 600
|
default: 600
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- create or terminate datacenters
|
- create or terminate datacenters
|
||||||
|
- "The available choices are: C(present), C(absent)."
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
default: 'present'
|
default: 'present'
|
||||||
choices: ["present", "absent"]
|
|
||||||
|
|
||||||
requirements: [ "profitbricks" ]
|
requirements: [ "profitbricks" ]
|
||||||
author: Matt Baldwin (@baldwinSPC) <baldwin@stackpointcloud.com>
|
author: Matt Baldwin (@baldwinSPC) <baldwin@stackpointcloud.com>
|
||||||
|
|
|
@ -16,22 +16,24 @@ options:
|
||||||
datacenter:
|
datacenter:
|
||||||
description:
|
description:
|
||||||
- The datacenter in which to operate.
|
- The datacenter in which to operate.
|
||||||
required: true
|
type: str
|
||||||
server:
|
server:
|
||||||
description:
|
description:
|
||||||
- The name of the server you wish to detach or attach the volume.
|
- The name of the server you wish to detach or attach the volume.
|
||||||
required: true
|
type: str
|
||||||
volume:
|
volume:
|
||||||
description:
|
description:
|
||||||
- The volume name or ID.
|
- The volume name or ID.
|
||||||
required: true
|
type: str
|
||||||
subscription_user:
|
subscription_user:
|
||||||
description:
|
description:
|
||||||
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environment variable.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
subscription_password:
|
subscription_password:
|
||||||
description:
|
description:
|
||||||
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
- THe ProfitBricks password. Overrides the PB_PASSWORD environment variable.
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
|
@ -42,13 +44,15 @@ options:
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
type: int
|
||||||
default: 600
|
default: 600
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Indicate desired state of the resource
|
- Indicate desired state of the resource
|
||||||
|
- "The available choices are: C(present), C(absent)."
|
||||||
|
type: str
|
||||||
required: false
|
required: false
|
||||||
default: 'present'
|
default: 'present'
|
||||||
choices: ["present", "absent"]
|
|
||||||
|
|
||||||
requirements: [ "profitbricks" ]
|
requirements: [ "profitbricks" ]
|
||||||
author: Matt Baldwin (@baldwinSPC) <baldwin@stackpointcloud.com>
|
author: Matt Baldwin (@baldwinSPC) <baldwin@stackpointcloud.com>
|
||||||
|
|
|
@ -163,32 +163,11 @@ plugins/modules/cloud/packet/packet_sshkey.py validate-modules:parameter-type-no
|
||||||
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/packet/packet_volume_attachment.py validate-modules:doc-required-mismatch
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:doc-default-does-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.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.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
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_nic.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-choices-do-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
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/pubnub/pubnub_blocks.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/pubnub/pubnub_blocks.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path # fix needed
|
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path # fix needed
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
||||||
|
|
|
@ -163,32 +163,11 @@ plugins/modules/cloud/packet/packet_sshkey.py validate-modules:parameter-type-no
|
||||||
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/packet/packet_volume_attachment.py validate-modules:doc-required-mismatch
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:doc-default-does-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.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.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
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_nic.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-choices-do-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
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:doc-required-mismatch
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/pubnub/pubnub_blocks.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/pubnub/pubnub_blocks.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path # fix needed
|
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path # fix needed
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
||||||
|
|
|
@ -136,25 +136,9 @@ plugins/modules/cloud/packet/packet_device.py validate-modules:parameter-type-no
|
||||||
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/profitbricks/profitbricks.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:doc-default-does-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_datacenter.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
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_nic.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_nic.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:doc-choices-do-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
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/profitbricks/profitbricks_volume.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:doc-choices-do-not-match-spec
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/profitbricks/profitbricks_volume_attachments.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path
|
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/rackspace/rax.py validate-modules:undocumented-parameter
|
||||||
|
|
Loading…
Reference in New Issue