Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.66 KB

File metadata and controls

37 lines (28 loc) · 1.66 KB

V0043License

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) (UNIX timestamp or time string recognized by Slurm (e.g., '[MM/DD[/YY]-]HH:MM[:SS]')) [optional]

Example

from slurmrest_python.models.v0043_license import V0043License

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

# convert the object into a dict
v0043_license_dict = v0043_license_instance.to_dict()
# create an instance of V0043License from a dict
v0043_license_from_dict = V0043License.from_dict(v0043_license_dict)

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