You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AllowAccounts - Comma-separated list of accounts which may execute jobs in the partition
[optional]
deny
str
DenyAccounts - Comma-separated list of accounts which may not execute jobs in the partition
[optional]
Example
fromslurmrest_python.models.v0044_partition_info_accountsimportV0044PartitionInfoAccounts# TODO update the JSON string belowjson="{}"# create an instance of V0044PartitionInfoAccounts from a JSON stringv0044_partition_info_accounts_instance=V0044PartitionInfoAccounts.from_json(json)
# print the JSON string representation of the objectprint(V0044PartitionInfoAccounts.to_json())
# convert the object into a dictv0044_partition_info_accounts_dict=v0044_partition_info_accounts_instance.to_dict()
# create an instance of V0044PartitionInfoAccounts from a dictv0044_partition_info_accounts_from_dict=V0044PartitionInfoAccounts.from_dict(v0044_partition_info_accounts_dict)