# -*- coding: utf-8 -*-
from ecl.network import network_service
from ecl import resource2
from ecl import exceptions
[docs]class Extension(resource2.Resource):
resource_key = 'extension'
resources_key = 'extensions'
service = network_service.NetworkService("v2.0")
base_path = '/' + service.version + '/extensions'
# capabilities
allow_get = True
allow_list = True
# Properties
#: An alias the extension is known under.
alias = resource2.Body('alias')
#: Text describing what the extension does.
description = resource2.Body('description')
#: The id of this extension.
id = resource2.Body('id')
#: Description links
links = resource2.Body('links', type=list)
#: The name of this extension.
name = resource2.Body('name')
#: A URL pointing to the namespace for this extension.
namespace = resource2.Body('namespace')
#: Timestamp when the extension was last updated.
updated_at = resource2.Body('updated')
@classmethod
[docs] def find(cls, session, name_or_id, ignore_missing=True, **params):
"""Find a resource by its name or id.
:param session: The session to use for making this request.
:type session: :class:`~ecl.session.Session`
:param name_or_id: This resource's identifier, if needed by
the request. The default is ``None``.
:param bool ignore_missing: When set to ``False``
:class:`~ecl.exceptions.ResourceNotFound` will be
raised when the resource does not exist.
When set to ``True``, None will be returned when
attempting to find a nonexistent resource.
:param dict params: Any additional parameters to be passed into
underlying methods, such as to
:meth:`~ecl.resource2.Resource.existing`
in order to pass on URI parameters.
:return: The :class:`Resource` object matching the given name or id
or None if nothing matches.
:raises: :class:`ecl.exceptions.DuplicateResource` if more
than one resource is found for this request.
:raises: :class:`ecl.exceptions.ResourceNotFound` if nothing
is found and ignore_missing is ``False``.
"""
# Try to short-circuit by looking directly for a matching ID.
data = cls.list(session, **params)
result = cls._get_one_match(name_or_id, data)
if result is not None:
return result
if ignore_missing:
return None
raise exceptions.ResourceNotFound(
"No %s found for %s" % (cls.__name__, name_or_id))