| Name | Type | Description | Notes |
|---|---|---|---|
| nodes | V0044PartitionInfoNodes | [optional] | |
| accounts | V0044PartitionInfoAccounts | [optional] | |
| groups | V0044PartitionInfoGroups | [optional] | |
| qos | V0044PartitionInfoQos | [optional] | |
| alternate | str | Alternate - Partition name of alternate partition to be used if the state of this partition is DRAIN or INACTIVE | [optional] |
| tres | V0044PartitionInfoTres | [optional] | |
| cluster | str | Cluster name | [optional] |
| select_type | List[str] | Scheduler consumable resource selection type | [optional] |
| cpus | V0044PartitionInfoCpus | [optional] | |
| defaults | V0044PartitionInfoDefaults | [optional] | |
| grace_time | int | GraceTime - Grace time in seconds to be extended to a job which has been selected for preemption | [optional] |
| maximums | V0044PartitionInfoMaximums | [optional] | |
| minimums | V0044PartitionInfoMinimums | [optional] | |
| name | str | PartitionName - Name by which the partition may be referenced | [optional] |
| node_sets | str | NodeSets - Comma-separated list of nodesets which are associated with this partition | [optional] |
| priority | V0044PartitionInfoPriority | [optional] | |
| timeouts | V0044PartitionInfoTimeouts | [optional] | |
| topology | str | Topology - Name of the topology, defined in topology.yaml, used by jobs in this partition | [optional] |
| partition | V0041OpenapiPartitionRespPartitionsInnerPartition | [optional] | |
| suspend_time | V0044Uint32NoValStruct | [optional] |
from slurmrest_python.models.v0044_partition_info import V0044PartitionInfo
# TODO update the JSON string below
json = "{}"
# create an instance of V0044PartitionInfo from a JSON string
v0044_partition_info_instance = V0044PartitionInfo.from_json(json)
# print the JSON string representation of the object
print(V0044PartitionInfo.to_json())
# convert the object into a dict
v0044_partition_info_dict = v0044_partition_info_instance.to_dict()
# create an instance of V0044PartitionInfo from a dict
v0044_partition_info_from_dict = V0044PartitionInfo.from_dict(v0044_partition_info_dict)