For details on how to use key_management, see Using OpenStack Key Manager
The key_management high-level interface is available through the
key_manager member of a Connection
object.  The key_manager member will only be added if the service is
detected.
openstack.key_manager.v1._proxy.Proxy(*args, **kwargs)¶create_secret(**attrs)¶Create a new secret from attributes
| Parameters: | attrs (dict) – Keyword arguments which will be used to create a
Secret,
comprised of the properties on the Order class. | 
|---|---|
| Returns: | The results of secret creation | 
| Return type: | Secret | 
update_secret(secret, **attrs)¶Update a secret
| Parameters: | secret – Either the id of a secret or a
Secret
instance. | 
|---|---|
| Attrs kwargs: | The attributes to update on the secret represented
by value. | 
| Returns: | The updated secret | 
| Return type: | Secret | 
delete_secret(secret, ignore_missing=True)¶Delete a secret
| Parameters: | 
  | 
|---|---|
| Returns: | 
  | 
get_secret(secret)¶Get a single secret
| Parameters: | secret – The value can be the ID of a secret or a
Secret
instance. | 
|---|---|
| Returns: | One Secret | 
| Raises: | ResourceNotFound
when no resource can be found. | 
find_secret(name_or_id, ignore_missing=True)¶Find a single secret
| Parameters: | 
  | 
|---|---|
| Returns: | One   | 
openstack.key_manager.v1._proxy.Proxy(*args, **kwargs)create_container(**attrs)¶Create a new container from attributes
| Parameters: | attrs (dict) – Keyword arguments which will be used to create
a Container,
comprised of the properties on the Container class. | 
|---|---|
| Returns: | The results of container creation | 
| Return type: | Container | 
update_container(container, **attrs)¶Update a container
| Parameters: | container – Either the id of a container or a
Container
instance. | 
|---|---|
| Attrs kwargs: | The attributes to update on the container represented
by value. | 
| Returns: | The updated container | 
| Return type: | Container | 
delete_container(container, ignore_missing=True)¶Delete a container
| Parameters: | 
  | 
|---|---|
| Returns: | 
  | 
get_container(container)¶Get a single container
| Parameters: | container – The value can be the ID of a container or a
Container
instance. | 
|---|---|
| Returns: | One Container | 
| Raises: | ResourceNotFound
when no resource can be found. | 
find_container(name_or_id, ignore_missing=True)¶Find a single container
| Parameters: | 
  | 
|---|---|
| Returns: | One   | 
openstack.key_manager.v1._proxy.Proxy(*args, **kwargs)create_order(**attrs)¶Create a new order from attributes
| Parameters: | attrs (dict) – Keyword arguments which will be used to create
a Order,
comprised of the properties on the Order class. | 
|---|---|
| Returns: | The results of order creation | 
| Return type: | Order | 
update_order(order, **attrs)¶Update a order
| Parameters: | order – Either the id of a order or a
Order
instance. | 
|---|---|
| Attrs kwargs: | The attributes to update on the order represented
by value. | 
| Returns: | The updated order | 
| Return type: | Order | 
delete_order(order, ignore_missing=True)¶Delete an order
| Parameters: | 
  | 
|---|---|
| Returns: | 
  | 
get_order(order)¶Get a single order
| Parameters: | order – The value can be the ID of an order or a
Order
instance. | 
|---|---|
| Returns: | One Order | 
| Raises: | ResourceNotFound
when no resource can be found. | 
find_order(name_or_id, ignore_missing=True)¶Find a single order
| Parameters: | 
  | 
|---|---|
| Returns: | One   | 
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.