You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromslurmrest_python.models.v0041_openapi_licenses_resp_licenses_innerimportV0041OpenapiLicensesRespLicensesInner# TODO update the JSON string belowjson="{}"# create an instance of V0041OpenapiLicensesRespLicensesInner from a JSON stringv0041_openapi_licenses_resp_licenses_inner_instance=V0041OpenapiLicensesRespLicensesInner.from_json(json)
# print the JSON string representation of the objectprint(V0041OpenapiLicensesRespLicensesInner.to_json())
# convert the object into a dictv0041_openapi_licenses_resp_licenses_inner_dict=v0041_openapi_licenses_resp_licenses_inner_instance.to_dict()
# create an instance of V0041OpenapiLicensesRespLicensesInner from a dictv0041_openapi_licenses_resp_licenses_inner_from_dict=V0041OpenapiLicensesRespLicensesInner.from_dict(v0041_openapi_licenses_resp_licenses_inner_dict)