/usr/lib/python2.6/site-packages/openstack/key_manager/v1
Edit: /usr/lib/python2.6/site-packages/openstack/key_manager/v1/_proxy.pyc (12400B)
5
Wc @ s] d d k l Z d d k l Z d d k l Z d d k l Z d e i f d YZ
d S( i( t container( t order( t secret( t proxyt Proxyc B s e Z d Z e d Z e d Z d Z d Z d Z d Z e d Z
e d Z d Z d
Z
d Z d Z e d
Z e d Z d Z d Z d Z RS( c K s | i t i | S( s Create a new container from attributes
:param dict attrs: Keyword arguments which will be used to create
a :class:`~openstack.key_manager.v1.container.Container`,
comprised of the properties on the Container class.
:returns: The results of container creation
:rtype: :class:`~openstack.key_manager.v1.container.Container`
( t _createt
_containert Container( t selft attrs( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt create_container s
c C s | i t i | d | d S( s2 Delete a container
:param container: The value can be either the ID of a container or a
:class:`~openstack.key_manager.v1.container.Container`
instance.
:param bool ignore_missing: When set to ``False``
:class:`~openstack.exceptions.ResourceNotFound` will be
raised when the container does not exist.
When set to ``True``, no exception will be set when
attempting to delete a nonexistent container.
:returns: ``None``
t ignore_missingN( t _deleteR R ( R R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt delete_container! s c C s | i t i | d | S( s Find a single container
:param name_or_id: The name or ID of a container.
:param bool ignore_missing: When set to ``False``
:class:`~openstack.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.
:returns: One :class:`~openstack.key_manager.v1.container.Container`
or None
R ( t _findR R ( R t
name_or_idR ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt find_container2 s c C s | i t i | S( s Get a single container
:param container: The value can be the ID of a container or a
:class:`~openstack.key_manager.v1.container.Container`
instance.
:returns: One :class:`~openstack.key_manager.v1.container.Container`
:raises: :class:`~openstack.exceptions.ResourceNotFound`
when no resource can be found.
( t _getR R ( R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt
get_containerA s c K s | i t i d t | S( s3 Return a generator of containers
:param kwargs \*\*query: Optional query parameters to be sent to limit
the resources being returned.
:returns: A generator of container objects
:rtype: :class:`~openstack.key_manager.v1.container.Container`
t paginated( t _listR R t False( R t query( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt
containersN s c K s | i t i | | S( s Update a container
:param container: Either the id of a container or a
:class:`~openstack.key_manager.v1.container.Container`
instance.
:attrs kwargs: The attributes to update on the container represented
by ``value``.
:returns: The updated container
:rtype: :class:`~openstack.key_manager.v1.container.Container`
( t _updateR R ( R R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt update_containerY s c K s | i t i | S( s~ Create a new order from attributes
:param dict attrs: Keyword arguments which will be used to create
a :class:`~openstack.key_manager.v1.order.Order`,
comprised of the properties on the Order class.
:returns: The results of order creation
:rtype: :class:`~openstack.key_manager.v1.order.Order`
( R t _ordert Order( R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt create_orderg s
c C s | i t i | d | d S( s% Delete an order
:param order: The value can be either the ID of a order or a
:class:`~openstack.key_manager.v1.order.Order`
instance.
:param bool ignore_missing: When set to ``False``
:class:`~openstack.exceptions.ResourceNotFound` will be
raised when the order does not exist.
When set to ``True``, no exception will be set when
attempting to delete a nonexistent order.
:returns: ``None``
R N( R R R ( R R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt delete_orders s c C s | i t i | d | S( s Find a single order
:param name_or_id: The name or ID of a order.
:param bool ignore_missing: When set to ``False``
:class:`~openstack.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.
:returns: One :class:`~openstack.key_manager.v1.order.Order` or None
R ( R R R ( R R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt
find_order s c C s | i t i | S( sw Get a single order
:param order: The value can be the ID of an order or a
:class:`~openstack.key_manager.v1.order.Order`
instance.
:returns: One :class:`~openstack.key_manager.v1.order.Order`
:raises: :class:`~openstack.exceptions.ResourceNotFound`
when no resource can be found.
( R R R ( R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt get_order s c K s | i t i d t | S( s# Return a generator of orders
:param kwargs \*\*query: Optional query parameters to be sent to limit
the resources being returned.
:returns: A generator of order objects
:rtype: :class:`~openstack.key_manager.v1.order.Order`
R ( R R R R ( R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt orders s c K s | i t i | | S( s Update a order
:param order: Either the id of a order or a
:class:`~openstack.key_manager.v1.order.Order`
instance.
:attrs kwargs: The attributes to update on the order represented
by ``value``.
:returns: The updated order
:rtype: :class:`~openstack.key_manager.v1.order.Order`
( R R R ( R R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt update_order s c K s | i t i | S( s Create a new secret from attributes
:param dict attrs: Keyword arguments which will be used to create a
:class:`~openstack.key_manager.v1.secret.Secret`,
comprised of the properties on the Order class.
:returns: The results of secret creation
:rtype: :class:`~openstack.key_manager.v1.secret.Secret`
( R t _secrett Secret( R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt
create_secret s
c C s | i t i | d | d S( s- Delete a secret
:param secret: The value can be either the ID of a secret or a
:class:`~openstack.key_manager.v1.secret.Secret`
instance.
:param bool ignore_missing: When set to ``False``
:class:`~openstack.exceptions.ResourceNotFound` will be
raised when the secret does not exist.
When set to ``True``, no exception will be set when
attempting to delete a nonexistent secret.
:returns: ``None``
R N( R R" R# ( R R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt
delete_secret s c C s | i t i | d | S( s Find a single secret
:param name_or_id: The name or ID of a secret.
:param bool ignore_missing: When set to ``False``
:class:`~openstack.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.
:returns: One :class:`~openstack.key_manager.v1.secret.Secret` or
None
R ( R R" R# ( R R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt find_secret s c C s | i t i | S( s Get a single secret
:param secret: The value can be the ID of a secret or a
:class:`~openstack.key_manager.v1.secret.Secret`
instance.
:returns: One :class:`~openstack.key_manager.v1.secret.Secret`
:raises: :class:`~openstack.exceptions.ResourceNotFound`
when no resource can be found.
( R R" R# ( R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt
get_secret s c K s | i t i d t | S( s' Return a generator of secrets
:param kwargs \*\*query: Optional query parameters to be sent to limit
the resources being returned.
:returns: A generator of secret objects
:rtype: :class:`~openstack.key_manager.v1.secret.Secret`
R ( R R" R# R ( R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt secrets s c K s | i t i | | S( s Update a secret
:param secret: Either the id of a secret or a
:class:`~openstack.key_manager.v1.secret.Secret`
instance.
:attrs kwargs: The attributes to update on the secret represented
by ``value``.
:returns: The updated secret
:rtype: :class:`~openstack.key_manager.v1.secret.Secret`
( R R" R# ( R R R ( ( sE /tmp/pip-build-wCUybK/openstacksdk/openstack/key_manager/v1/_proxy.pyt
update_secret s ( t __name__t
__module__R
t TrueR
R R R R R R R R R R! R$ R% R&