| Name | Type | Description | Notes |
|---|---|---|---|
| accounts | str | Comma-separated list of permitted accounts | [optional] |
| burst_buffer | str | BurstBuffer - Burst buffer resources reserved | [optional] |
| core_count | int | CoreCnt - Number of cores reserved | [optional] |
| core_specializations | List[V0044ReservationCoreSpec] | [optional] | |
| end_time | V0044Uint64NoValStruct | [optional] | |
| features | str | Features - Expression describing the reservation's required node features | [optional] |
| flags | List[str] | Flags associated with this reservation | [optional] |
| groups | str | Groups - Comma-separated list of permitted groups | [optional] |
| licenses | str | Licenses - Comma-separated list of licenses reserved | [optional] |
| max_start_delay | int | MaxStartDelay - Maximum time an eligible job not requesting this reservation can delay a job requesting it in seconds | [optional] |
| name | str | ReservationName - Name of the reservation | [optional] |
| node_count | int | NodeCnt - Number of nodes reserved | [optional] |
| node_list | str | Nodes - Comma-separated list of node names and/or node ranges reserved | [optional] |
| partition | str | PartitionName - Partition used to reserve nodes from | [optional] |
| purge_completed | V0044ReservationInfoPurgeCompleted | [optional] | |
| start_time | V0044Uint64NoValStruct | [optional] | |
| watts | V0044Uint32NoValStruct | [optional] | |
| tres | str | Comma-separated list of required TRES | [optional] |
| users | str | Comma-separated list of permitted users | [optional] |
from slurmrest_python.models.v0044_reservation_info import V0044ReservationInfo
# TODO update the JSON string below
json = "{}"
# create an instance of V0044ReservationInfo from a JSON string
v0044_reservation_info_instance = V0044ReservationInfo.from_json(json)
# print the JSON string representation of the object
print(V0044ReservationInfo.to_json())
# convert the object into a dict
v0044_reservation_info_dict = v0044_reservation_info_instance.to_dict()
# create an instance of V0044ReservationInfo from a dict
v0044_reservation_info_from_dict = V0044ReservationInfo.from_dict(v0044_reservation_info_dict)