Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.84 KB

File metadata and controls

39 lines (30 loc) · 1.84 KB

V0042OpenapiSlurmdbdConfigResp

Properties

Name Type Description Notes
clusters List[V0042ClusterRec] [optional]
tres List[V0042Tres] [optional]
accounts List[V0042Account] [optional]
users List[V0042User] [optional]
qos List[V0042Qos] [optional]
wckeys List[V0042Wckey] [optional]
associations List[V0042Assoc] [optional]
instances List[V0042Instance] [optional]
meta V0042OpenapiMeta [optional]
errors List[V0042OpenapiError] [optional]
warnings List[V0042OpenapiWarning] [optional]

Example

from slurmrest_python.models.v0042_openapi_slurmdbd_config_resp import V0042OpenapiSlurmdbdConfigResp

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

# convert the object into a dict
v0042_openapi_slurmdbd_config_resp_dict = v0042_openapi_slurmdbd_config_resp_instance.to_dict()
# create an instance of V0042OpenapiSlurmdbdConfigResp from a dict
v0042_openapi_slurmdbd_config_resp_from_dict = V0042OpenapiSlurmdbdConfigResp.from_dict(v0042_openapi_slurmdbd_config_resp_dict)

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