diff options
author | Trevor McKay <tmckay@redhat.com> | 2014-03-13 13:36:48 -0400 |
---|---|---|
committer | Trevor McKay <tmckay@redhat.com> | 2014-03-13 18:23:50 -0400 |
commit | 6b014ee3650e1d616195c5816f224e9d481c9746 (patch) | |
tree | f746305dbaaf55236dc6552d1e8f45f4453839bb /saharaclient/api/node_group_templates.py | |
parent | 38882f71987cb6be80a660b51c2ff0a31c2eacb1 (diff) | |
download | python-saharaclient-6b014ee3650e1d616195c5816f224e9d481c9746.tar.gz |
Swap the saharaclient and savannaclient directories
Exchange the contents of the saharaclient and savannaclient directories
so that 'savannlient' is the effective alias and 'saharaclient' contains
all of the source code.
* Change all of the imports that reference savannaclient to saharaclient
* Change paths that reference savannaclient (under doc)
* Leave variable and class names unchaned at this point
* Leave references to python_savannaclient unchanged since the top
* level dir name has not yet changed
Partial-implements: blueprint savanna-renaming-client
Change-Id: I83cb21922ae5a8cec291990b3ab67bb9e3cb2d62
Diffstat (limited to 'saharaclient/api/node_group_templates.py')
-rw-r--r-- | saharaclient/api/node_group_templates.py | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/saharaclient/api/node_group_templates.py b/saharaclient/api/node_group_templates.py new file mode 100644 index 0000000..f9ae36a --- /dev/null +++ b/saharaclient/api/node_group_templates.py @@ -0,0 +1,84 @@ +# 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 saharaclient.api import base + + +class NodeGroupTemplate(base.Resource): + resource_name = 'Node Group Template' + + +class NodeGroupTemplateManager(base.ResourceManager): + resource_class = NodeGroupTemplate + + def _assign_field(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, + 'flavor_id': flavor_id, + 'node_processes': node_processes + } + + self._copy_if_defined(data, + description=description, + node_configs=node_configs, + floating_ip_pool=floating_ip_pool) + + if volumes_per_node: + data.update({"volumes_per_node": volumes_per_node, + "volumes_size": volumes_size}) + + return data + + 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 = self._assign_field(name, plugin_name, hadoop_version, flavor_id, + description, volumes_per_node, volumes_size, + node_processes, node_configs, + floating_ip_pool) + + return self._create('/node-group-templates', data, + 'node_group_template') + + def update(self, ng_template_id, 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 = self._assign_field(name, plugin_name, hadoop_version, flavor_id, + description, volumes_per_node, + volumes_size, node_processes, + node_configs, floating_ip_pool) + + return self._update('/node-group-templates/%s' % ng_template_id, 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) |