Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

V0044PartitionInfoQos

Properties

Name Type Description Notes
allowed str AllowQOS - Comma-separated list of Qos which may execute jobs in the partition [optional]
deny str DenyQOS - Comma-separated list of Qos which may not execute jobs in the partition [optional]
assigned str QOS - QOS name containing limits that will apply to all jobs in this partition [optional]

Example

from slurmrest_python.models.v0044_partition_info_qos import V0044PartitionInfoQos

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

# convert the object into a dict
v0044_partition_info_qos_dict = v0044_partition_info_qos_instance.to_dict()
# create an instance of V0044PartitionInfoQos from a dict
v0044_partition_info_qos_from_dict = V0044PartitionInfoQos.from_dict(v0044_partition_info_qos_dict)

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