Bases: ironic.objects.base.IronicObject
, oslo_versionedobjects.base.VersionedObjectDictCompat
Create a NodeHistory record in the DB.
context – Security context. NOTE: This should only be used internally by the indirection_api. Unfortunately, RPC requires context as the first argument, even though we don’t use it. A context should be set when instantiating the object, e.g.: NodeHistory(context)
Delete the NodeHistory from the DB.
context – Security context. NOTE: This should only be used internally by the indirection_api. Unfortunately, RPC requires context as the first argument, even though we don’t use it. A context should be set when instantiating the object, e.g.: NodeHistory(context)
NodeHistoryNotFound
Get a history based on its id or uuid.
history_ident – The id or uuid of a history.
context – Security context
A NodeHistory
object.
InvalidIdentity
Get a NodeHistory object by its integer ID.
cls – the NodeHistory
context – Security context
history_id – The ID of a history.
A NodeHistory
object.
NodeHistoryNotFound
Get a NodeHistory object by its UUID.
cls – the NodeHistory
context – Security context
uuid – The UUID of a NodeHistory.
A NodeHistory
object.
NodeHistoryNotFound
Return a list of NodeHistory objects.
cls – the NodeHistory
context – Security context.
limit – Maximum number of resources to return in a single result.
marker – Pagination marker for large data sets.
sort_key – Column to sort results by.
sort_dir – Direction to sort. “asc” or “desc”.
A list of NodeHistory
object.
InvalidParameterValue
Return a list of NodeHistory objects belongs to a given node ID.
cls – the NodeHistory
context – Security context.
node_id – The ID of the node.
limit – Maximum number of resources to return in a single result.
marker – Pagination marker for large data sets.
sort_key – Column to sort results by.
sort_dir – Direction to sort. “asc” or “desc”.
A list of NodeHistory
object.
InvalidParameterValue
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.