| 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 | V0043PartitionInfoDefaults | [optional] | |
| grace_time | int | GraceTime - Grace time in seconds to be extended to a job which has been selected for preemption | [optional] |
| maximums | V0043PartitionInfoMaximums | [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 | V0043PartitionInfoTimeouts | [optional] | |
| topology | str | Topology - Name of the topology, defined in topology.yaml, used by jobs in this partition | [optional] |
| partition | V0041OpenapiPartitionRespPartitionsInnerPartition | [optional] | |
| suspend_time | V0043Uint32NoValStruct | [optional] |
from slurmrest_python.models.v0043_partition_info import V0043PartitionInfo
# TODO update the JSON string below
json = "{}"
# create an instance of V0043PartitionInfo from a JSON string
v0043_partition_info_instance = V0043PartitionInfo.from_json(json)
# print the JSON string representation of the object
print(V0043PartitionInfo.to_json())
# convert the object into a dict
v0043_partition_info_dict = v0043_partition_info_instance.to_dict()
# create an instance of V0043PartitionInfo from a dict
v0043_partition_info_from_dict = V0043PartitionInfo.from_dict(v0043_partition_info_dict)