d50225a152
Change-Id: I74ddffcf876f6122d693449a52de8180b0cbeec2
80 lines
2.9 KiB
Python
80 lines
2.9 KiB
Python
# 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 muranoclient.common import base
|
|
|
|
|
|
class Template(base.Resource):
|
|
"""It involves the template resource.
|
|
"""
|
|
def __repr__(self):
|
|
return "<Template %s>" % self._info
|
|
|
|
def data(self, **kwargs):
|
|
return self.manager.data(self, **kwargs)
|
|
|
|
|
|
class EnvTemplateManager(base.Manager):
|
|
"""It involves the template manager.
|
|
"""
|
|
resource_class = Template
|
|
|
|
def list(self):
|
|
"""It lists the environment templates.
|
|
"""
|
|
return self._list('/v1/templates', 'templates')
|
|
|
|
def create(self, data):
|
|
"""It creates a environment template
|
|
:param data: The environment template information.
|
|
"""
|
|
return self._create('/v1/templates', data)
|
|
|
|
def update(self, env_template_id, name):
|
|
"""It updates the environment template name.
|
|
:param env_template_id: The environment template ID.
|
|
:param name: The name to be updated.
|
|
"""
|
|
return self._update('/v1/templates/{id}'.format(id=env_template_id),
|
|
data={'name': name})
|
|
|
|
def delete(self, env_template_id):
|
|
"""It deletes an environment template name.
|
|
:param env_template_id: The environment template ID.
|
|
"""
|
|
return self._delete('/v1/templates/{id}'.format(id=env_template_id))
|
|
|
|
def get(self, env_template_id):
|
|
"""It gets information about an environment template name.
|
|
:param env_template_id: The environment template ID.
|
|
"""
|
|
return self._get("/v1/templates/{id}".format(id=env_template_id))
|
|
|
|
def create_app(self, env_template_id, data):
|
|
"""It creates an application in an environment template.
|
|
:param env_template_id: The environment template ID.
|
|
:param data: the application information.
|
|
"""
|
|
return self.\
|
|
_create('/v1/templates/{id}/services'.
|
|
format(id=env_template_id), data)
|
|
|
|
def delete_app(self, env_template_id, app_id):
|
|
"""It deletes an application in an environment template.
|
|
:param env_template_id: The environment template ID.
|
|
:param app_id: the application ID to be deleted.
|
|
"""
|
|
return self._delete('/v1/templates/{id}/services/{app_id}'.
|
|
format(id=env_template_id, service_id=app_id))
|