Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

File metadata and controls

33 lines (24 loc) · 1.4 KB

V0042PartitionInfoDefaults

Properties

Name Type Description Notes
memory_per_cpu int DefMemPerCPU or DefMemPerNode [optional]
partition_memory_per_cpu V0042Uint64NoValStruct [optional]
partition_memory_per_node V0042Uint64NoValStruct [optional]
time V0042Uint32NoValStruct [optional]
job str JobDefaults [optional]

Example

from slurmrest_python.models.v0042_partition_info_defaults import V0042PartitionInfoDefaults

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

# convert the object into a dict
v0042_partition_info_defaults_dict = v0042_partition_info_defaults_instance.to_dict()
# create an instance of V0042PartitionInfoDefaults from a dict
v0042_partition_info_defaults_from_dict = V0042PartitionInfoDefaults.from_dict(v0042_partition_info_defaults_dict)

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