| Name | Type | Description | Notes |
|---|---|---|---|
| cluster | str | Cluster name | [optional] |
| extra | str | Arbitrary string used for node filtering if extra constraints are enabled | [optional] |
| instance_id | str | Cloud instance ID | [optional] |
| instance_type | str | Cloud instance type | [optional] |
| node_name | str | NodeName | [optional] |
| time | V0041OpenapiSlurmdbdConfigRespInstancesInnerTime | [optional] |
from slurmrest_python.models.v0042_instance import V0042Instance
# TODO update the JSON string below
json = "{}"
# create an instance of V0042Instance from a JSON string
v0042_instance_instance = V0042Instance.from_json(json)
# print the JSON string representation of the object
print(V0042Instance.to_json())
# convert the object into a dict
v0042_instance_dict = v0042_instance_instance.to_dict()
# create an instance of V0042Instance from a dict
v0042_instance_from_dict = V0042Instance.from_dict(v0042_instance_dict)