APIVersionRequest
(version_string=None, experimental=False)¶Bases: cinder.utils.ComparableMixin
This class represents an API Version Request.
This class includes convenience methods for manipulation and comparison of version numbers as needed to implement API microversions.
get_string
()¶Returns a string representation of this object.
If this method is used to create an APIVersionRequest, the resulting object will be an equivalent request.
matches
(min_version, max_version=None, experimental=False)¶Compares this version to the specified min/max range.
Returns whether the version object represents a version greater than or equal to the minimum version and less than or equal to the maximum version.
If min_version is null then there is no minimum limit. If max_version is null then there is no maximum limit. If self is null then raise ValueError.
min_version – Minimum acceptable version.
max_version – Maximum acceptable version.
experimental – Whether to match experimental APIs.
boolean
matches_versioned_method
(method)¶Compares this version to that of a versioned method.
legacy_api_version2
()¶max_api_version
()¶min_api_version
()¶Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.