Monty Taylor 2d472aea49
Rename Resource get and update to not clash with dict
The next change is going to make Resource a subclass of dict so that we
can return Resource objects in the shade layer. Unfortunately, the
Resource base class has two methods, get and update, that conflict with
standard dict method names. To keep things reviewable, just change the
method names.

Most consumers should not be using either of these methods directly.
They are mostly there for lower-level things to use. However, they COULD
be using them, so it's important to note that this is a breaking change.

Change-Id: I2fedeea6e405dcbd333482c1964173ade98ca04d
2018-08-09 07:36:18 -05:00

65 lines
2.4 KiB
Python

# Copyright(c) 2018 Nippon Telegraph and Telephone Corporation
#
# 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 openstack.instance_ha import instance_ha_service
from openstack import resource
class Notification(resource.Resource):
resource_key = "notification"
resources_key = "notifications"
base_path = "/notifications"
service = instance_ha_service.InstanceHaService()
# capabilities
# 1] GET /v1/notifications
# 2] GET /v1/notifications/<notification_uuid>
# 3] POST /v1/notifications
allow_list = True
allow_fetch = True
allow_create = True
allow_commit = False
allow_delete = False
# Properties
# Refer "https://github.com/openstack/masakari/tree/
# master/masakari/api/openstack/ha/schemas/notificaions.py"
# for properties of notifications API
#: A ID of representing this notification.
id = resource.Body("id")
#: A Uuid of representing this notification.
notification_uuid = resource.Body("notification_uuid")
#: A created time of representing this notification.
created_at = resource.Body("created_at")
#: A latest updated time of representing this notification.
updated_at = resource.Body("updated_at")
#: The type of failure. Valuse values include ''COMPUTE_HOST'',
#: ''VM'', ''PROCESS''
type = resource.Body("type")
#: The hostname of this notification.
hostname = resource.Body("hostname")
#: The status for this notitication.
status = resource.Body("status")
#: The generated_time for this notitication.
generated_time = resource.Body("generated_time")
#: The payload of this notification.
payload = resource.Body("payload")
#: The source host uuid of this notification.
source_host_uuid = resource.Body("source_host_uuid")
_query_mapping = resource.QueryParameters(
"sort_key", "sort_dir", source_host_uuid="source_host_uuid",
type="type", status="status", generated_since="generated-since")