forked from cloudera-labs/cloudera.cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatahub_definition_info.py
195 lines (173 loc) · 6.03 KB
/
datahub_definition_info.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2021 Cloudera, Inc. All Rights Reserved.
#
# 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.
from ansible.module_utils.basic import AnsibleModule
from ansible_collections.cloudera.cloud.plugins.module_utils.cdp_common import CdpModule
ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'}
DOCUMENTATION = r'''
---
module: datahub_definition_info
short_description: Gather information about CDP Datahub Cluster Definitions
description:
- Gather information about CDP Datahub Cluster Definitions
author:
- "Chris Perro (@cmperro)"
- "Webster Mudge (@wmudge)"
- "Dan Chaffelson (@chaffelson)"
requirements:
- cdpy
options:
name:
description:
- If a name is provided, that Definition will be described.
- If a crn is provided, that Definition will be described.
- If no name provided, all Definitions will be listed.
type: str
required: False
aliases:
- definition
- crn
content:
description: Flag dictating if the workload template content of the cluster definition is returned
type: bool
required: False
default: False
aliases:
- definition_content
extends_documentation_fragment:
- cloudera.cloud.cdp_sdk_options
- cloudera.cloud.cdp_auth_options
'''
EXAMPLES = r'''
# Note: These examples do not set authentication details.
# List basic information about all Datahubs
- cloudera.cloud.datahub_definition_info:
# Gather detailed information about a named Datahub
- cloudera.cloud.datahub_definition_info:
name: example-definition
'''
RETURN = r'''
---
definitions:
description: The information about the named Definition or Definitions
type: list
returned: on success
elements: complex
contains:
clusterDefinitionName:
description: The name of the cluster definition.
returned: always
type: str
crn:
description: The CRN of the cluster definition.
returned: always
type: str
type:
description: The type of cluster definition.
returned: always
type: str
sample:
- DATAENGINEERING
- DATAMART
- DISCOVERY_DATA_AND_EXPLORATION
- FLOW_MANAGEMENT
- OPERATIONALDATABASE
- STREAMING
nodeCount:
description: The node count of the cluster definition.
returned: always
type: str
cloudPlatform:
description: The cloud provider of the cluster definition.
returned: always
type: str
productVersion:
description: The product version of the cluster definition.
returned: always
type: str
description:
description: The description of the cluster definition.
returned: always
type: str
workloadTemplate:
description: The workload template of the cluster definition, in JSON.
returned: when specified
type: str
sdk_out:
description: Returns the captured CDP SDK log.
returned: when supported
type: str
sdk_out_lines:
description: Returns a list of each line of the captured CDP SDK log.
returned: when supported
type: list
elements: str
'''
class DatahubDefinitionInfo(CdpModule):
def __init__(self, module):
super(DatahubDefinitionInfo, self).__init__(module)
# Set variables
self.name = self._get_param('name')
self.content = self._get_param('content')
# Initialize internal values
self.all_definitions = []
# Initialize return values
self.definitions = []
# Execute logic process
self.process()
@CdpModule._Decorators.process_debug
def process(self):
self.all_definitions = self.cdpy.datahub.list_cluster_definitions()
if self.name:
short_desc = next((d for d in self.all_definitions if d['crn'] == self.name or
d['clusterDefinitionName']== self.name), None)
if short_desc is not None:
if self.content:
self.definitions.append(self._describe_definition(short_desc))
else:
self.definitions.append(short_desc)
else:
self.module.warn("Definition not found, '%s'" % self.name)
else:
if self.content:
for short_desc in self.all_definitions:
self.definitions.append(self._describe_definition(short_desc))
else:
self.definitions = self.all_definitions
def _describe_definition(self, short_desc):
full_desc = self.cdpy.datahub.describe_cluster_definition(short_desc['crn'])
if full_desc is not None:
full_desc.update(productVersion=short_desc['productVersion'], nodeCount=short_desc['nodeCount'])
return full_desc
else:
self.module.fail_json(msg="Failed to retrieve Cluster Definition content, '%s'" %
short_desc['clusterDefinitionName'])
def main():
module = AnsibleModule(
argument_spec=CdpModule.argument_spec(
name=dict(required=False, type='str', aliases=['definition', 'crn']),
content=dict(required=False, type='bool', default=False, aliases=['definition_content'])
),
supports_check_mode=True
)
result = DatahubDefinitionInfo(module)
output = dict(changed=False, definitions=result.definitions)
if result.debug:
output.update(sdk_out=result.log_out, sdk_out_lines=result.log_lines)
module.exit_json(**output)
if __name__ == '__main__':
main()