Base API Library
Bases: object
Base API wrapper for keystoneauth1.session.Session
Encapsulate the translation between keystoneauth1.session.Session and requests.Session in a single layer:
Restore some requests.session.Session compatibility; keystoneauth1.session.Session.request() has the method and url arguments swapped from the rest of the requests-using world.
Provide basic endpoint handling when a Service Catalog is not available.
Create a new resource
url (string) – The API-specific portion of the URL path
session (Session) – HTTP client session
method (string) – HTTP method (default POST)
Delete a resource
url (string) – The API-specific portion of the URL path
session (Session) – HTTP client session
Find a single resource by name or ID
path (string) – The API-specific portion of the URL path
value (string) – search expression (required, really)
attr (string) – name of attribute for secondary search
headers (dict) – Headers dictionary to pass to requests
Find a resource via attribute or ID
Most APIs return a list wrapped by a dict with the resource name as key. Some APIs (Identity) return a dict when a query string is present and there is one return value. Take steps to unwrap these bodies and return a single dict without any resource wrappers.
path (string) – The API-specific portion of the URL path
value (string) – value to search for
attr (string) – attribute to use for resource search
resource (string) – plural of the object resource name; defaults to path
n = find(netclient, ‘network’, ‘networks’, ‘matrix’)
Bulk load and filter locally
path (string) – The API-specific portion of the URL path
kwargs – A dict of AVPs to match - logical AND
headers (dict) – Headers dictionary to pass to requests
list of resource dicts
Find a resource by name or ID
path (string) – The API-specific portion of the URL path
resource dict
Return a list of resources
GET ${ENDPOINT}/${PATH}?${PARAMS}
path is often the object’s plural resource type
path (string) – The API-specific portion of the URL path
session (Session) – HTTP client session
body – data that will be encoded as JSON and passed in POST request (GET will be sent by default)
detailed (bool) – Adds ‘/details’ to path for some APIs to return extended attributes
headers (dict) – Headers dictionary to pass to requests
JSON-decoded response, could be a list or a dict-wrapped-list
Authentication Library
Auth plugins options builder
Builds dynamically the list of options expected by each available authentication plugin.
Validate authentication options, and provide helpful error messages
required_scope – indicate whether a scoped token is required
Validate authorization options, and provide helpful error messages.
Return Keystone 2 Keystone authentication for service provider.
local_auth – authentication to use with the local Keystone
service_provider – service provider id as registered in Keystone
project_id – project id to scope to in the service provider
project_name – project name to scope to in the service provider
project_domain_id – id of domain in the service provider
project_domain_name – name of domain to in the service provider
Keystone2Keystone auth object for service provider
Gather plugin options so the help action has them available
Gather plugin list and cache it
API Utilities Library
Filter a list of dicts
data (list) – The list to be filtered. The list is modified in-place and will be changed if any filtering occurs.
attr (string) – The name of the attribute to filter. If attr does not exist no match will succeed and no rows will be returned. If attr is None no filtering will be performed and all rows will be returned.
value (string) – The value to filter. None is considered to be a ‘no filter’ value. ‘’ matches against a Python empty string.
property_field (string) – The name of the data field containing a property dict to filter. If property_field is None, attr is a field name. If property_field is not None, attr is a property key name inside the named property field.
Returns the filtered list
This simple filter (one attribute, one exact-match value) searches a
list of dicts to select items. It first searches the item dict for a
matching attr
then does an exact-match on the value
. If
property_field
is given, it will look inside that field (if it
exists and is a dict) for a matching value
.
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.