Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.91 KB

File metadata and controls

37 lines (28 loc) · 1.91 KB

V0041OpenapiLicensesRespLicensesInner

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.v0041_openapi_licenses_resp_licenses_inner import V0041OpenapiLicensesRespLicensesInner

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

# convert the object into a dict
v0041_openapi_licenses_resp_licenses_inner_dict = v0041_openapi_licenses_resp_licenses_inner_instance.to_dict()
# create an instance of V0041OpenapiLicensesRespLicensesInner from a dict
v0041_openapi_licenses_resp_licenses_inner_from_dict = V0041OpenapiLicensesRespLicensesInner.from_dict(v0041_openapi_licenses_resp_licenses_inner_dict)

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