summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEthan Devenport <edevenport@users.noreply.github.com>2016-08-31 06:24:55 +0000
committerEthan Devenport <edevenport@users.noreply.github.com>2016-08-31 06:24:55 +0000
commit86285e882497c2ba21b39b71c9305e53853630bc (patch)
treecd27011e4974039b1a28d46cc7b4326fdf704a25
parente9fd5ad5dc5a72ae9255fcff0c65f3653462d13a (diff)
downloadansible-modules-extras-86285e882497c2ba21b39b71c9305e53853630bc.tar.gz
Set variable types, defined choices, and cleaned up whitespace.
-rw-r--r--cloud/profitbricks/profitbricks.py13
-rw-r--r--cloud/profitbricks/profitbricks_volume.py30
2 files changed, 25 insertions, 18 deletions
diff --git a/cloud/profitbricks/profitbricks.py b/cloud/profitbricks/profitbricks.py
index b0791f37..a0bc79c7 100644
--- a/cloud/profitbricks/profitbricks.py
+++ b/cloud/profitbricks/profitbricks.py
@@ -580,15 +580,16 @@ def main():
datacenter=dict(),
name=dict(),
image=dict(),
- cores=dict(default=2),
- ram=dict(default=2048),
- cpu_family=dict(default='AMD_OPTERON'),
- volume_size=dict(default=10),
- disk_type=dict(default='HDD'),
+ cores=dict(type='int', default=2),
+ ram=dict(type='int', default=2048),
+ cpu_family=dict(choices=['AMD_OPTERON', 'INTEL_XEON'],
+ default='AMD_OPTERON'),
+ volume_size=dict(type='int', default=10),
+ disk_type=dict(choices=['HDD', 'SSD'], default='HDD'),
image_password=dict(default=None),
ssh_keys=dict(type='list', default=[]),
bus=dict(default='VIRTIO'),
- lan=dict(default=1),
+ lan=dict(type='int', default=1),
count=dict(type='int', default=1),
auto_increment=dict(type='bool', default=True),
instance_ids=dict(type='list', default=[]),
diff --git a/cloud/profitbricks/profitbricks_volume.py b/cloud/profitbricks/profitbricks_volume.py
index 6b7877f3..25b7f771 100644
--- a/cloud/profitbricks/profitbricks_volume.py
+++ b/cloud/profitbricks/profitbricks_volume.py
@@ -41,7 +41,7 @@ options:
required: false
default: VIRTIO
choices: [ "IDE", "VIRTIO"]
- image:
+ image:
description:
- The system image ID for the volume, e.g. a3eae284-a2fe-11e4-b187-5f1f641608c8. This can also be a snapshot image ID.
required: true
@@ -63,13 +63,13 @@ options:
choices: [ "HDD", "SSD" ]
licence_type:
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.
required: false
default: UNKNOWN
choices: ["LINUX", "WINDOWS", "UNKNOWN" , "OTHER"]
count:
description:
- - The number of volumes you wish to create.
+ - The number of volumes you wish to create.
required: false
default: 1
auto_increment:
@@ -170,6 +170,7 @@ def _wait_for_completion(profitbricks, promise, wait_timeout, msg):
promise['requestId']
) + '" to complete.')
+
def _create_volume(module, profitbricks, datacenter, name):
size = module.params.get('size')
bus = module.params.get('bus')
@@ -201,20 +202,22 @@ def _create_volume(module, profitbricks, datacenter, name):
except Exception as e:
module.fail_json(msg="failed to create the volume: %s" % str(e))
-
+
return volume_response
+
def _delete_volume(module, profitbricks, datacenter, volume):
try:
profitbricks.delete_volume(datacenter, volume)
except Exception as e:
module.fail_json(msg="failed to remove the volume: %s" % str(e))
+
def create_volume(module, profitbricks):
"""
Creates a volume.
- This will create a volume in a datacenter.
+ This will create a volume in a datacenter.
module : AnsibleModule object
profitbricks: authenticated profitbricks object.
@@ -256,7 +259,7 @@ def create_volume(module, profitbricks):
else:
module.fail_json(msg=e.message)
- number_range = xrange(count_offset,count_offset + count + len(numbers))
+ number_range = xrange(count_offset, count_offset + count + len(numbers))
available_numbers = list(set(number_range).difference(numbers))
names = []
numbers_to_use = available_numbers[:count]
@@ -265,7 +268,7 @@ def create_volume(module, profitbricks):
else:
names = [name] * count
- for name in names:
+ for name in names:
create_response = _create_volume(module, profitbricks, str(datacenter), name)
volumes.append(create_response)
_attach_volume(module, profitbricks, datacenter, create_response['id'])
@@ -282,11 +285,12 @@ def create_volume(module, profitbricks):
return results
+
def delete_volume(module, profitbricks):
"""
Removes a volume.
- This will create a volume in a datacenter.
+ This will create a volume in a datacenter.
module : AnsibleModule object
profitbricks: authenticated profitbricks object.
@@ -324,6 +328,7 @@ def delete_volume(module, profitbricks):
return changed
+
def _attach_volume(module, profitbricks, datacenter, volume):
"""
Attaches a volume.
@@ -339,12 +344,12 @@ def _attach_volume(module, profitbricks, datacenter, volume):
server = module.params.get('server')
# Locate UUID for Server
- if server:
+ if server:
if not (uuid_match.match(server)):
server_list = profitbricks.list_servers(datacenter)
for s in server_list['items']:
if server == s['properties']['name']:
- server= s['id']
+ server = s['id']
break
try:
@@ -352,18 +357,19 @@ def _attach_volume(module, profitbricks, datacenter, volume):
except Exception as e:
module.fail_json(msg='failed to attach volume: %s' % str(e))
+
def main():
module = AnsibleModule(
argument_spec=dict(
datacenter=dict(),
server=dict(),
name=dict(),
- size=dict(default=10),
+ size=dict(type='int', default=10),
bus=dict(default='VIRTIO'),
image=dict(),
image_password=dict(default=None),
ssh_keys=dict(type='list', default=[]),
- disk_type=dict(default='HDD'),
+ disk_type=dict(choices=['HDD', 'SSD'], default='HDD'),
licence_type=dict(default='UNKNOWN'),
count=dict(type='int', default=1),
auto_increment=dict(type='bool', default=True),