Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.57 KB

File metadata and controls

37 lines (28 loc) · 1.57 KB

V0042License

Properties

Name Type Description Notes
license_name str Name of the license [optional]
total int Total number of licenses present [optional]
used int Number of licenses in use [optional]
free int Number of licenses currently available [optional]
remote bool Indicates whether licenses are served by the database [optional]
reserved int Number of licenses reserved [optional]
last_consumed int Last known number of licenses that were consumed in the license manager (Remote Only) [optional]
last_deficit int Number of "missing licenses" from the cluster's perspective [optional]
last_update int When the license information was last updated (UNIX Timestamp) [optional]

Example

from slurmrest_python.models.v0042_license import V0042License

# TODO update the JSON string below
json = "{}"
# create an instance of V0042License from a JSON string
v0042_license_instance = V0042License.from_json(json)
# print the JSON string representation of the object
print(V0042License.to_json())

# convert the object into a dict
v0042_license_dict = v0042_license_instance.to_dict()
# create an instance of V0042License from a dict
v0042_license_from_dict = V0042License.from_dict(v0042_license_dict)

[Back to Model list] [Back to API list] [Back to README]