Files
python-saharaclient/savannaclient/api/node_group_templates.py
Nikita Konovalov 2554d3da7f Sync with dashboard
All recent changes made to savanna-dashboard
applied to client.

This patch should be last sync between repositories.

Savanna Dashboard will be updated to use python-savannaclient

Change-Id: Ib9807c05ba5af650e1f668e8c642be58025b85ef
2013-09-27 12:59:23 +04:00

63 lines
2.1 KiB
Python

# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright (c) 2013 Mirantis Inc.
#
# 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 savannaclient.api import base
class NodeGroupTemplate(base.Resource):
resource_name = 'Node Group Template'
class NodeGroupTemplateManager(base.ResourceManager):
resource_class = NodeGroupTemplate
def create(self, name, plugin_name, hadoop_version, flavor_id,
description=None, volumes_per_node=None, volumes_size=None,
node_processes=None, node_configs=None, floating_ip_pool=None):
data = {
'name': name,
'plugin_name': plugin_name,
'hadoop_version': hadoop_version,
'description': description,
'flavor_id': flavor_id,
'node_processes': node_processes
}
if not node_configs:
data["node_configs"] = dict()
if floating_ip_pool:
data.update({"floating_ip_pool": floating_ip_pool})
if volumes_per_node:
data.update({"volumes_per_node": volumes_per_node,
"volumes_size": volumes_size})
return self._create('/node-group-templates', data,
'node_group_template')
def list(self):
return self._list('/node-group-templates', 'node_group_templates')
def get(self, ng_template_id):
return self._get('/node-group-templates/%s' % ng_template_id,
'node_group_template')
def delete(self, ng_template_id):
self._delete('/node-group-templates/%s' % ng_template_id)