forked from HewlettPackard/oneview-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oneview_storage_volume_template_facts.py
135 lines (109 loc) · 4.05 KB
/
oneview_storage_volume_template_facts.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/usr/bin/python
# -*- coding: utf-8 -*-
###
# Copyright (2016-2017) Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###
ANSIBLE_METADATA = {'status': ['stableinterface'],
'supported_by': 'curated',
'metadata_version': '1.0'}
DOCUMENTATION = '''
---
module: oneview_storage_volume_template_facts
short_description: Retrieve facts about Storage Volume Templates of the OneView.
description:
- Retrieve facts about Storage Volume Templates of the OneView.
version_added: "2.3"
requirements:
- "python >= 2.7.9"
- "hpOneView >= 2.0.1"
author: "Gustavo Hennig (@GustavoHennig)"
options:
name:
description:
- Storage Volume Template name.
required: false
options:
description:
- "Retrieve additional facts. Options available: C(connectableVolumeTemplates)."
required: false
extends_documentation_fragment:
- oneview
- oneview.factsparams
'''
EXAMPLES = '''
- name: Gather facts about all Storage Volume Templates
oneview_storage_volume_template_facts:
config: "{{ config }}"
delegate_to: localhost
- debug: var=storage_volume_templates
- name: Gather paginated, filtered and sorted facts about Storage Volume Templates
oneview_storage_volume_template_facts:
config: "{{ config }}"
params:
start: 0
count: 3
sort: 'name:descending'
filter: status='OK'
- debug: var=storage_volume_templates
- name: Gather facts about a Storage Volume Template by name
oneview_storage_volume_template_facts:
config: "{{ config }}"
name: "FusionTemplateExample"
delegate_to: localhost
- debug: var=storage_volume_templates
- name: Gather facts about the connectable Storage Volume Templates
oneview_storage_volume_template_facts:
config: "{{ config }}"
name: "FusionTemplateExample"
options:
- connectableVolumeTemplates
delegate_to: localhost
- debug: var=storage_volume_templates
- debug: var=connectable_volume_templates
'''
RETURN = '''
storage_volume_templates:
description: Has all the OneView facts about the Storage Volume Templates.
returned: Always, but can be null.
type: complex
connectable_volume_templates:
description: Has facts about the Connectable Storage Volume Templates.
returned: When requested, but can be null.
type: complex
'''
from ansible.module_utils.basic import AnsibleModule
from module_utils.oneview import OneViewModuleBase
class StorageVolumeTemplateFactsModule(OneViewModuleBase):
def __init__(self):
argument_spec = dict(
name=dict(required=False, type='str'),
options=dict(required=False, type='list'),
params=dict(required=False, type='dict'),
)
super(StorageVolumeTemplateFactsModule, self).__init__(additional_arg_spec=argument_spec)
self.resource_client = self.oneview_client.storage_volume_templates
def execute_module(self):
if self.module.params.get('name'):
storage_volume_template = self.resource_client.get_by('name', self.module.params['name'])
else:
storage_volume_template = self.resource_client.get_all(**self.facts_params)
ansible_facts = dict(storage_volume_templates=storage_volume_template)
if 'connectableVolumeTemplates' in self.options:
ansible_facts['connectable_volume_templates'] = self.resource_client.get_connectable_volume_templates()
return dict(changed=False, ansible_facts=ansible_facts)
def main():
StorageVolumeTemplateFactsModule().run()
if __name__ == '__main__':
main()