6105dddba8
From looking through monasca server code there is nowhere that is actuall reading the X-Auth-User, X-Auth-Key, X-Auth-Url or X-Auth-Region headers. The shell also enforces that a user provide keystone authentication. This means we are sending the server a user's password for no reason. They were initially added in the very first monascaclient commit so assume they were unneeded and remove it. Change-Id: Ic6e6dd1a14474537ab9180bb4af1a3fae09fc8a6
65 lines
2.3 KiB
Python
65 lines
2.3 KiB
Python
# (C) Copyright 2014-2015 Hewlett Packard Enterprise Development Company LP
|
|
#
|
|
# 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 monascaclient.apiclient import base
|
|
from monascaclient.common import monasca_manager
|
|
|
|
|
|
class AlarmDefinitions(base.Resource):
|
|
|
|
def __repr__(self):
|
|
return "<AlarmDefinitions %s>" % self._info
|
|
|
|
|
|
class AlarmDefinitionsManager(monasca_manager.MonascaManager):
|
|
resource_class = AlarmDefinitions
|
|
base_url = '/alarm-definitions'
|
|
|
|
def create(self, **kwargs):
|
|
"""Create an alarm definition."""
|
|
resp, body = self.client.json_request('POST', self.base_url,
|
|
data=kwargs)
|
|
return body
|
|
|
|
def get(self, **kwargs):
|
|
"""Get the details for a specific alarm definition."""
|
|
url_str = self.base_url + '/%s' % kwargs['alarm_id']
|
|
resp, body = self.client.json_request('GET', url_str)
|
|
return body
|
|
|
|
def list(self, **kwargs):
|
|
"""Get a list of alarm definitions."""
|
|
return self._list('', 'dimensions', **kwargs)
|
|
|
|
def delete(self, **kwargs):
|
|
"""Delete a specific alarm definition."""
|
|
url_str = self.base_url + '/%s' % kwargs['alarm_id']
|
|
resp, body = self.client.json_request('DELETE', url_str)
|
|
return resp
|
|
|
|
def update(self, **kwargs):
|
|
"""Update a specific alarm definition."""
|
|
url_str = self.base_url + '/%s' % kwargs['alarm_id']
|
|
del kwargs['alarm_id']
|
|
resp, body = self.client.json_request('PUT', url_str, data=kwargs)
|
|
return body
|
|
|
|
def patch(self, **kwargs):
|
|
"""Patch a specific alarm definition."""
|
|
url_str = self.base_url + '/%s' % kwargs['alarm_id']
|
|
del kwargs['alarm_id']
|
|
resp, body = self.client.json_request('PATCH', url_str, data=kwargs)
|
|
return body
|