
Encoding the path separators results in urls refused by by apache with 404 unless AllowEncodedSlashes is turned on, which is not the default. The existing encoding of path separators seems unnecessary. Change-Id: I3b77aafc6104119503363e5db36b0379964daba5
78 lines
2.7 KiB
Python
78 lines
2.7 KiB
Python
# 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 six.moves.urllib import parse
|
|
|
|
from heatclient.common import base
|
|
from heatclient.common import utils
|
|
|
|
|
|
class SoftwareDeployment(base.Resource):
|
|
def __repr__(self):
|
|
return "<SoftwareDeployment %s>" % self._info
|
|
|
|
def update(self, **fields):
|
|
self.manager.update(deployment_id=self.id, **fields)
|
|
|
|
def delete(self):
|
|
return self.manager.delete(deployment_id=self.id)
|
|
|
|
|
|
class SoftwareDeploymentManager(base.BaseManager):
|
|
resource_class = SoftwareDeployment
|
|
|
|
def list(self, **kwargs):
|
|
"""Get a list of software deployments.
|
|
|
|
:rtype: list of :class:`SoftwareDeployment`
|
|
"""
|
|
url = '/software_deployments?%s' % parse.urlencode(kwargs)
|
|
return self._list(url, "software_deployments")
|
|
|
|
def metadata(self, server_id):
|
|
"""Get a collection of software deployment metadata for given server.
|
|
|
|
:rtype: list of :class:`SoftwareDeployment`
|
|
"""
|
|
url = '/software_deployments/metadata/%s' % parse.quote(
|
|
server_id)
|
|
resp = self.client.get(url)
|
|
body = utils.get_response_body(resp)
|
|
return body.get('metadata')
|
|
|
|
def get(self, deployment_id):
|
|
"""Get the details for a specific software deployment.
|
|
|
|
:param deployment_id: ID of the software deployment
|
|
"""
|
|
resp = self.client.get('/software_deployments/%s' % deployment_id)
|
|
body = utils.get_response_body(resp)
|
|
|
|
return SoftwareDeployment(self, body.get('software_deployment'))
|
|
|
|
def create(self, **kwargs):
|
|
"""Create a software deployment."""
|
|
resp = self.client.post('/software_deployments', data=kwargs)
|
|
body = utils.get_response_body(resp)
|
|
return SoftwareDeployment(self, body.get('software_deployment'))
|
|
|
|
def update(self, deployment_id, **kwargs):
|
|
"""Update a software deployment."""
|
|
resp = self.client.put('/software_deployments/%s' %
|
|
deployment_id, data=kwargs)
|
|
body = utils.get_response_body(resp)
|
|
return SoftwareDeployment(self, body.get('software_deployment'))
|
|
|
|
def delete(self, deployment_id):
|
|
"""Delete a software deployment."""
|
|
self._delete("/software_deployments/%s" % deployment_id)
|