Slurm REST API

API to access and control Slurm
More information: https://www.schedmd.com/
Contact Info: sales@schedmd.com
Version: Slurm-24.05.4&openapi/slurmdbd&openapi/slurmctld
BasePath:
Apache 2.0
https://www.apache.org/licenses/LICENSE-2.0.html

Access

  1. APIKey KeyParamName:X-SLURM-USER-NAME KeyInQuery:false KeyInHeader:true
  2. APIKey KeyParamName:X-SLURM-USER-TOKEN KeyInQuery:false KeyInHeader:true
  3. HTTP Basic Authentication

Methods

[ Jump to Models ]

Table of Contents

Slurm

Slurmdb

Slurm

Up
delete /slurm/v0.0.41/job/{job_id}
cancel or signal job (slurmV0041DeleteJob)

Path parameters

job_id (required)
Path Parameter — Job ID default: null

Query parameters

signal (optional)
Query Parameter — Signal to send to Job default: null
flags (optional)
Query Parameter — Signalling flags default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

job signal result v0.0.41_openapi_resp

default

job signal result v0.0.41_openapi_resp

Up
delete /slurm/v0.0.41/jobs/
send signal to list of jobs (slurmV0041DeleteJobs)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_kill_jobs_msg v0.0.41_kill_jobs_msg (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ],
  "status" : [ {
    "federation" : {
      "sibling" : "sibling"
    },
    "job_id" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "error" : {
      "code" : 0,
      "string" : "string",
      "message" : "message"
    },
    "step_id" : "step_id"
  }, {
    "federation" : {
      "sibling" : "sibling"
    },
    "job_id" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "error" : {
      "code" : 0,
      "string" : "string",
      "message" : "message"
    },
    "step_id" : "step_id"
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

description of jobs to signal v0.0.41_openapi_kill_jobs_resp

default

description of jobs to signal v0.0.41_openapi_kill_jobs_resp

Up
delete /slurm/v0.0.41/node/{node_name}
delete node (slurmV0041DeleteNode)

Path parameters

node_name (required)
Path Parameter — Node name default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

node delete request result v0.0.41_openapi_resp

default

node delete request result v0.0.41_openapi_resp

Up
get /slurm/v0.0.41/diag/
get diagnostics (slurmV0041GetDiag)

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ],
  "statistics" : {
    "bf_cycle_max" : 4,
    "rpcs_by_message_type" : [ {
      "cycle_last" : 6,
      "average_time" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      },
      "type_id" : 0,
      "queued" : 5,
      "count" : 7,
      "dropped" : 4,
      "message_type" : "message_type",
      "total_time" : 4,
      "cycle_max" : 8
    }, {
      "cycle_last" : 6,
      "average_time" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      },
      "type_id" : 0,
      "queued" : 5,
      "count" : 7,
      "dropped" : 4,
      "message_type" : "message_type",
      "total_time" : 4,
      "cycle_max" : 8
    } ],
    "bf_backfilled_het_jobs" : 3,
    "bf_table_size" : 7,
    "schedule_cycle_depth" : 7,
    "bf_depth_sum" : 0,
    "job_states_ts" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "bf_queue_len" : 4,
    "jobs_started" : 6,
    "schedule_cycle_max" : 2,
    "server_thread_count" : 5,
    "bf_queue_len_sum" : 4,
    "bf_cycle_last" : 0,
    "bf_exit" : {
      "state_changed" : 5,
      "bf_max_time" : 3,
      "bf_max_job_start" : 7,
      "bf_node_space_size" : 7,
      "end_job_queue" : 8,
      "bf_max_job_test" : 3
    },
    "agent_thread_count" : 7,
    "jobs_completed" : 3,
    "bf_depth_mean" : 0,
    "bf_depth_try_sum" : 6,
    "schedule_cycle_mean" : 1,
    "bf_table_size_sum" : 9,
    "agent_queue_size" : 5,
    "jobs_failed" : 1,
    "bf_last_depth_try" : 4,
    "req_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "bf_cycle_counter" : 3,
    "schedule_queue_length" : 8,
    "bf_queue_len_mean" : 1,
    "schedule_exit" : {
      "max_sched_time" : 9,
      "licenses" : 6,
      "default_queue_depth" : 4,
      "max_job_start" : 5,
      "max_rpc_cnt" : 9,
      "end_job_queue" : 1
    },
    "jobs_canceled" : 6,
    "schedule_cycle_sum" : 7,
    "jobs_submitted" : 9,
    "schedule_cycle_mean_depth" : 1,
    "schedule_cycle_per_minute" : 6,
    "req_time_start" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "jobs_running" : 6,
    "bf_last_backfilled_jobs" : 6,
    "bf_last_depth" : 3,
    "bf_backfilled_jobs" : 5,
    "rpcs_by_user" : [ {
      "average_time" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      },
      "user_id" : 0,
      "count" : 2,
      "total_time" : 1,
      "user" : "user"
    }, {
      "average_time" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      },
      "user_id" : 0,
      "count" : 2,
      "total_time" : 1,
      "user" : "user"
    } ],
    "bf_cycle_mean" : 7,
    "pending_rpcs_by_hostlist" : [ {
      "type_id" : 4,
      "count" : [ "count", "count" ],
      "message_type" : "message_type"
    }, {
      "type_id" : 4,
      "count" : [ "count", "count" ],
      "message_type" : "message_type"
    } ],
    "dbd_agent_queue_size" : 9,
    "bf_table_size_mean" : 0,
    "jobs_pending" : 2,
    "agent_count" : 2,
    "bf_cycle_sum" : 6,
    "parts_packed" : 0,
    "bf_active" : true,
    "bf_depth_mean_try" : 7,
    "gettimeofday_latency" : 3,
    "pending_rpcs" : [ {
      "type_id" : 8,
      "count" : 6,
      "message_type" : "message_type"
    }, {
      "type_id" : 8,
      "count" : 6,
      "message_type" : "message_type"
    } ],
    "schedule_cycle_total" : 1,
    "bf_when_last_cycle" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "schedule_cycle_last" : 4
  }
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

diagnostic results v0.0.41_openapi_diag_resp

default

diagnostic results v0.0.41_openapi_diag_resp

Up
get /slurm/v0.0.41/job/{job_id}
get job info (slurmV0041GetJob)

Path parameters

job_id (required)
Path Parameter — Job ID default: null

Query parameters

update_time (optional)
Query Parameter — Filter jobs since update timestamp default: null
flags (optional)
Query Parameter — Query flags default: null

Return type

Example data

Content-Type: application/json
{
  "last_backfill" : {
    "number" : 0,
    "set" : true,
    "infinite" : true
  },
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "jobs" : [ {
    "container" : "container",
    "cluster" : "cluster",
    "time_minimum" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "memory_per_tres" : "memory_per_tres",
    "scheduled_nodes" : "scheduled_nodes",
    "minimum_switches" : 7,
    "qos" : "qos",
    "resize_time" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "eligible_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "exclusive" : [ "true", "true" ],
    "cpus_per_tres" : "cpus_per_tres",
    "preemptable_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "system_comment" : "system_comment",
    "federation_siblings_active" : "federation_siblings_active",
    "tasks_per_tres" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_core" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "accrue_time" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "dependency" : "dependency",
    "group_name" : "group_name",
    "profile" : [ "NOT_SET", "NOT_SET" ],
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "tres_per_job" : "tres_per_job",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "maximum_switch_wait_time" : 9,
    "core_spec" : 5,
    "mcs_label" : "mcs_label",
    "required_nodes" : "required_nodes",
    "tres_bind" : "tres_bind",
    "user_id" : 7,
    "selinux_context" : "selinux_context",
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "federation_origin" : "federation_origin",
    "container_id" : "container_id",
    "shared" : [ "none", "none" ],
    "tasks_per_board" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "user_name" : "user_name",
    "flags" : [ "KILL_INVALID_DEPENDENCY", "KILL_INVALID_DEPENDENCY" ],
    "standard_input" : "standard_input",
    "admin_comment" : "admin_comment",
    "cores_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "job_state" : [ "PENDING", "PENDING" ],
    "tasks_per_node" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "current_working_directory" : "current_working_directory",
    "standard_error" : "standard_error",
    "array_job_id" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "cluster_features" : "cluster_features",
    "partition" : "partition",
    "threads_per_core" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tres_alloc_str" : "tres_alloc_str",
    "memory_per_cpu" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "cpu_frequency_minimum" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "node_count" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "power" : {
      "flags" : [ "", "" ]
    },
    "deadline" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "mail_type" : [ "BEGIN", "BEGIN" ],
    "memory_per_node" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "state_reason" : "state_reason",
    "het_job_offset" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_board" : 4,
    "nice" : 5,
    "last_sched_evaluation" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "tres_per_node" : "tres_per_node",
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "excluded_nodes" : "excluded_nodes",
    "array_max_tasks" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "het_job_id" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_node" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "prefer" : "prefer",
    "time_limit" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "minimum_cpus_per_node" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "batch_host" : "batch_host",
    "max_cpus" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "job_size_str" : [ "job_size_str", "job_size_str" ],
    "hold" : true,
    "cpu_frequency_maximum" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "features" : "features",
    "het_job_id_set" : "het_job_id_set",
    "state_description" : "state_description",
    "show_flags" : [ "ALL", "ALL" ],
    "array_task_id" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "minimum_tmp_disk_per_node" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "tres_req_str" : "tres_req_str",
    "burst_buffer_state" : "burst_buffer_state",
    "cron" : "cron",
    "allocating_node" : "allocating_node",
    "tres_per_socket" : "tres_per_socket",
    "array_task_string" : "array_task_string",
    "submit_time" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "oversubscribe" : true,
    "wckey" : "wckey",
    "max_nodes" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "batch_flag" : true,
    "start_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "name" : "name",
    "preempt_time" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "contiguous" : true,
    "job_resources" : {
      "nodes" : {
        "allocation" : [ {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        }, {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        } ],
        "count" : 5,
        "select_type" : [ "AVAILABLE", "AVAILABLE" ],
        "whole" : true,
        "list" : "list"
      },
      "threads_per_core" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus" : 6,
      "select_type" : [ "CPU", "CPU" ]
    },
    "billable_tres" : {
      "number" : 9.301444243932576,
      "set" : true,
      "infinite" : true
    },
    "federation_siblings_viable" : "federation_siblings_viable",
    "cpus_per_task" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "batch_features" : "batch_features",
    "thread_spec" : 2,
    "cpu_frequency_governor" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "gres_detail" : [ "gres_detail", "gres_detail" ],
    "network" : "network",
    "restart_cnt" : 3,
    "resv_name" : "resv_name",
    "extra" : "extra",
    "delay_boot" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "reboot" : true,
    "cpus" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "standard_output" : "standard_output",
    "pre_sus_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "suspend_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "association_id" : 5,
    "command" : "command",
    "tres_freq" : "tres_freq",
    "requeue" : true,
    "tres_per_task" : "tres_per_task",
    "mail_user" : "mail_user",
    "nodes" : "nodes",
    "group_id" : 7,
    "job_id" : 4,
    "comment" : "comment",
    "account" : "account"
  }, {
    "container" : "container",
    "cluster" : "cluster",
    "time_minimum" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "memory_per_tres" : "memory_per_tres",
    "scheduled_nodes" : "scheduled_nodes",
    "minimum_switches" : 7,
    "qos" : "qos",
    "resize_time" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "eligible_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "exclusive" : [ "true", "true" ],
    "cpus_per_tres" : "cpus_per_tres",
    "preemptable_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "system_comment" : "system_comment",
    "federation_siblings_active" : "federation_siblings_active",
    "tasks_per_tres" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_core" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "accrue_time" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "dependency" : "dependency",
    "group_name" : "group_name",
    "profile" : [ "NOT_SET", "NOT_SET" ],
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "tres_per_job" : "tres_per_job",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "maximum_switch_wait_time" : 9,
    "core_spec" : 5,
    "mcs_label" : "mcs_label",
    "required_nodes" : "required_nodes",
    "tres_bind" : "tres_bind",
    "user_id" : 7,
    "selinux_context" : "selinux_context",
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "federation_origin" : "federation_origin",
    "container_id" : "container_id",
    "shared" : [ "none", "none" ],
    "tasks_per_board" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "user_name" : "user_name",
    "flags" : [ "KILL_INVALID_DEPENDENCY", "KILL_INVALID_DEPENDENCY" ],
    "standard_input" : "standard_input",
    "admin_comment" : "admin_comment",
    "cores_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "job_state" : [ "PENDING", "PENDING" ],
    "tasks_per_node" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "current_working_directory" : "current_working_directory",
    "standard_error" : "standard_error",
    "array_job_id" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "cluster_features" : "cluster_features",
    "partition" : "partition",
    "threads_per_core" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tres_alloc_str" : "tres_alloc_str",
    "memory_per_cpu" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "cpu_frequency_minimum" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "node_count" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "power" : {
      "flags" : [ "", "" ]
    },
    "deadline" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "mail_type" : [ "BEGIN", "BEGIN" ],
    "memory_per_node" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "state_reason" : "state_reason",
    "het_job_offset" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_board" : 4,
    "nice" : 5,
    "last_sched_evaluation" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "tres_per_node" : "tres_per_node",
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "excluded_nodes" : "excluded_nodes",
    "array_max_tasks" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "het_job_id" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_node" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "prefer" : "prefer",
    "time_limit" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "minimum_cpus_per_node" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "batch_host" : "batch_host",
    "max_cpus" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "job_size_str" : [ "job_size_str", "job_size_str" ],
    "hold" : true,
    "cpu_frequency_maximum" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "features" : "features",
    "het_job_id_set" : "het_job_id_set",
    "state_description" : "state_description",
    "show_flags" : [ "ALL", "ALL" ],
    "array_task_id" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "minimum_tmp_disk_per_node" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "tres_req_str" : "tres_req_str",
    "burst_buffer_state" : "burst_buffer_state",
    "cron" : "cron",
    "allocating_node" : "allocating_node",
    "tres_per_socket" : "tres_per_socket",
    "array_task_string" : "array_task_string",
    "submit_time" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "oversubscribe" : true,
    "wckey" : "wckey",
    "max_nodes" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "batch_flag" : true,
    "start_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "name" : "name",
    "preempt_time" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "contiguous" : true,
    "job_resources" : {
      "nodes" : {
        "allocation" : [ {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        }, {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        } ],
        "count" : 5,
        "select_type" : [ "AVAILABLE", "AVAILABLE" ],
        "whole" : true,
        "list" : "list"
      },
      "threads_per_core" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus" : 6,
      "select_type" : [ "CPU", "CPU" ]
    },
    "billable_tres" : {
      "number" : 9.301444243932576,
      "set" : true,
      "infinite" : true
    },
    "federation_siblings_viable" : "federation_siblings_viable",
    "cpus_per_task" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "batch_features" : "batch_features",
    "thread_spec" : 2,
    "cpu_frequency_governor" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "gres_detail" : [ "gres_detail", "gres_detail" ],
    "network" : "network",
    "restart_cnt" : 3,
    "resv_name" : "resv_name",
    "extra" : "extra",
    "delay_boot" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "reboot" : true,
    "cpus" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "standard_output" : "standard_output",
    "pre_sus_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "suspend_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "association_id" : 5,
    "command" : "command",
    "tres_freq" : "tres_freq",
    "requeue" : true,
    "tres_per_task" : "tres_per_task",
    "mail_user" : "mail_user",
    "nodes" : "nodes",
    "group_id" : 7,
    "job_id" : 4,
    "comment" : "comment",
    "account" : "account"
  } ],
  "last_update" : {
    "number" : 9,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

job(s) information v0.0.41_openapi_job_info_resp

default

job(s) information v0.0.41_openapi_job_info_resp

Up
get /slurm/v0.0.41/jobs/
get list of jobs (slurmV0041GetJobs)

Query parameters

update_time (optional)
Query Parameter — Filter jobs since update timestamp default: null
flags (optional)
Query Parameter — Query flags default: null

Return type

Example data

Content-Type: application/json
{
  "last_backfill" : {
    "number" : 0,
    "set" : true,
    "infinite" : true
  },
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "jobs" : [ {
    "container" : "container",
    "cluster" : "cluster",
    "time_minimum" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "memory_per_tres" : "memory_per_tres",
    "scheduled_nodes" : "scheduled_nodes",
    "minimum_switches" : 7,
    "qos" : "qos",
    "resize_time" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "eligible_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "exclusive" : [ "true", "true" ],
    "cpus_per_tres" : "cpus_per_tres",
    "preemptable_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "system_comment" : "system_comment",
    "federation_siblings_active" : "federation_siblings_active",
    "tasks_per_tres" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_core" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "accrue_time" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "dependency" : "dependency",
    "group_name" : "group_name",
    "profile" : [ "NOT_SET", "NOT_SET" ],
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "tres_per_job" : "tres_per_job",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "maximum_switch_wait_time" : 9,
    "core_spec" : 5,
    "mcs_label" : "mcs_label",
    "required_nodes" : "required_nodes",
    "tres_bind" : "tres_bind",
    "user_id" : 7,
    "selinux_context" : "selinux_context",
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "federation_origin" : "federation_origin",
    "container_id" : "container_id",
    "shared" : [ "none", "none" ],
    "tasks_per_board" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "user_name" : "user_name",
    "flags" : [ "KILL_INVALID_DEPENDENCY", "KILL_INVALID_DEPENDENCY" ],
    "standard_input" : "standard_input",
    "admin_comment" : "admin_comment",
    "cores_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "job_state" : [ "PENDING", "PENDING" ],
    "tasks_per_node" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "current_working_directory" : "current_working_directory",
    "standard_error" : "standard_error",
    "array_job_id" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "cluster_features" : "cluster_features",
    "partition" : "partition",
    "threads_per_core" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tres_alloc_str" : "tres_alloc_str",
    "memory_per_cpu" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "cpu_frequency_minimum" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "node_count" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "power" : {
      "flags" : [ "", "" ]
    },
    "deadline" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "mail_type" : [ "BEGIN", "BEGIN" ],
    "memory_per_node" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "state_reason" : "state_reason",
    "het_job_offset" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_board" : 4,
    "nice" : 5,
    "last_sched_evaluation" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "tres_per_node" : "tres_per_node",
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "excluded_nodes" : "excluded_nodes",
    "array_max_tasks" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "het_job_id" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_node" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "prefer" : "prefer",
    "time_limit" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "minimum_cpus_per_node" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "batch_host" : "batch_host",
    "max_cpus" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "job_size_str" : [ "job_size_str", "job_size_str" ],
    "hold" : true,
    "cpu_frequency_maximum" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "features" : "features",
    "het_job_id_set" : "het_job_id_set",
    "state_description" : "state_description",
    "show_flags" : [ "ALL", "ALL" ],
    "array_task_id" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "minimum_tmp_disk_per_node" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "tres_req_str" : "tres_req_str",
    "burst_buffer_state" : "burst_buffer_state",
    "cron" : "cron",
    "allocating_node" : "allocating_node",
    "tres_per_socket" : "tres_per_socket",
    "array_task_string" : "array_task_string",
    "submit_time" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "oversubscribe" : true,
    "wckey" : "wckey",
    "max_nodes" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "batch_flag" : true,
    "start_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "name" : "name",
    "preempt_time" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "contiguous" : true,
    "job_resources" : {
      "nodes" : {
        "allocation" : [ {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        }, {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        } ],
        "count" : 5,
        "select_type" : [ "AVAILABLE", "AVAILABLE" ],
        "whole" : true,
        "list" : "list"
      },
      "threads_per_core" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus" : 6,
      "select_type" : [ "CPU", "CPU" ]
    },
    "billable_tres" : {
      "number" : 9.301444243932576,
      "set" : true,
      "infinite" : true
    },
    "federation_siblings_viable" : "federation_siblings_viable",
    "cpus_per_task" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "batch_features" : "batch_features",
    "thread_spec" : 2,
    "cpu_frequency_governor" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "gres_detail" : [ "gres_detail", "gres_detail" ],
    "network" : "network",
    "restart_cnt" : 3,
    "resv_name" : "resv_name",
    "extra" : "extra",
    "delay_boot" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "reboot" : true,
    "cpus" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "standard_output" : "standard_output",
    "pre_sus_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "suspend_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "association_id" : 5,
    "command" : "command",
    "tres_freq" : "tres_freq",
    "requeue" : true,
    "tres_per_task" : "tres_per_task",
    "mail_user" : "mail_user",
    "nodes" : "nodes",
    "group_id" : 7,
    "job_id" : 4,
    "comment" : "comment",
    "account" : "account"
  }, {
    "container" : "container",
    "cluster" : "cluster",
    "time_minimum" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "memory_per_tres" : "memory_per_tres",
    "scheduled_nodes" : "scheduled_nodes",
    "minimum_switches" : 7,
    "qos" : "qos",
    "resize_time" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "eligible_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "exclusive" : [ "true", "true" ],
    "cpus_per_tres" : "cpus_per_tres",
    "preemptable_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "system_comment" : "system_comment",
    "federation_siblings_active" : "federation_siblings_active",
    "tasks_per_tres" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_core" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "accrue_time" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "dependency" : "dependency",
    "group_name" : "group_name",
    "profile" : [ "NOT_SET", "NOT_SET" ],
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "tres_per_job" : "tres_per_job",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "maximum_switch_wait_time" : 9,
    "core_spec" : 5,
    "mcs_label" : "mcs_label",
    "required_nodes" : "required_nodes",
    "tres_bind" : "tres_bind",
    "user_id" : 7,
    "selinux_context" : "selinux_context",
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "federation_origin" : "federation_origin",
    "container_id" : "container_id",
    "shared" : [ "none", "none" ],
    "tasks_per_board" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "user_name" : "user_name",
    "flags" : [ "KILL_INVALID_DEPENDENCY", "KILL_INVALID_DEPENDENCY" ],
    "standard_input" : "standard_input",
    "admin_comment" : "admin_comment",
    "cores_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "job_state" : [ "PENDING", "PENDING" ],
    "tasks_per_node" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "current_working_directory" : "current_working_directory",
    "standard_error" : "standard_error",
    "array_job_id" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "cluster_features" : "cluster_features",
    "partition" : "partition",
    "threads_per_core" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tres_alloc_str" : "tres_alloc_str",
    "memory_per_cpu" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "cpu_frequency_minimum" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "node_count" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "power" : {
      "flags" : [ "", "" ]
    },
    "deadline" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "mail_type" : [ "BEGIN", "BEGIN" ],
    "memory_per_node" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "state_reason" : "state_reason",
    "het_job_offset" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_board" : 4,
    "nice" : 5,
    "last_sched_evaluation" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "tres_per_node" : "tres_per_node",
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "excluded_nodes" : "excluded_nodes",
    "array_max_tasks" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "het_job_id" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_node" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "prefer" : "prefer",
    "time_limit" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "minimum_cpus_per_node" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "batch_host" : "batch_host",
    "max_cpus" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "job_size_str" : [ "job_size_str", "job_size_str" ],
    "hold" : true,
    "cpu_frequency_maximum" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "features" : "features",
    "het_job_id_set" : "het_job_id_set",
    "state_description" : "state_description",
    "show_flags" : [ "ALL", "ALL" ],
    "array_task_id" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "minimum_tmp_disk_per_node" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "tres_req_str" : "tres_req_str",
    "burst_buffer_state" : "burst_buffer_state",
    "cron" : "cron",
    "allocating_node" : "allocating_node",
    "tres_per_socket" : "tres_per_socket",
    "array_task_string" : "array_task_string",
    "submit_time" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "oversubscribe" : true,
    "wckey" : "wckey",
    "max_nodes" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "batch_flag" : true,
    "start_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "name" : "name",
    "preempt_time" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "contiguous" : true,
    "job_resources" : {
      "nodes" : {
        "allocation" : [ {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        }, {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        } ],
        "count" : 5,
        "select_type" : [ "AVAILABLE", "AVAILABLE" ],
        "whole" : true,
        "list" : "list"
      },
      "threads_per_core" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus" : 6,
      "select_type" : [ "CPU", "CPU" ]
    },
    "billable_tres" : {
      "number" : 9.301444243932576,
      "set" : true,
      "infinite" : true
    },
    "federation_siblings_viable" : "federation_siblings_viable",
    "cpus_per_task" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "batch_features" : "batch_features",
    "thread_spec" : 2,
    "cpu_frequency_governor" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "gres_detail" : [ "gres_detail", "gres_detail" ],
    "network" : "network",
    "restart_cnt" : 3,
    "resv_name" : "resv_name",
    "extra" : "extra",
    "delay_boot" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "reboot" : true,
    "cpus" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "standard_output" : "standard_output",
    "pre_sus_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "suspend_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "association_id" : 5,
    "command" : "command",
    "tres_freq" : "tres_freq",
    "requeue" : true,
    "tres_per_task" : "tres_per_task",
    "mail_user" : "mail_user",
    "nodes" : "nodes",
    "group_id" : 7,
    "job_id" : 4,
    "comment" : "comment",
    "account" : "account"
  } ],
  "last_update" : {
    "number" : 9,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

job(s) information v0.0.41_openapi_job_info_resp

default

job(s) information v0.0.41_openapi_job_info_resp

Up
get /slurm/v0.0.41/jobs/state/
get list of job states (slurmV0041GetJobsState)

Query parameters

update_time (optional)
Query Parameter — Filter jobs since update timestamp default: null
flags (optional)
Query Parameter — Query flags default: null

Return type

Example data

Content-Type: application/json
{
  "last_backfill" : {
    "number" : 0,
    "set" : true,
    "infinite" : true
  },
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "jobs" : [ {
    "container" : "container",
    "cluster" : "cluster",
    "time_minimum" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "memory_per_tres" : "memory_per_tres",
    "scheduled_nodes" : "scheduled_nodes",
    "minimum_switches" : 7,
    "qos" : "qos",
    "resize_time" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "eligible_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "exclusive" : [ "true", "true" ],
    "cpus_per_tres" : "cpus_per_tres",
    "preemptable_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "system_comment" : "system_comment",
    "federation_siblings_active" : "federation_siblings_active",
    "tasks_per_tres" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_core" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "accrue_time" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "dependency" : "dependency",
    "group_name" : "group_name",
    "profile" : [ "NOT_SET", "NOT_SET" ],
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "tres_per_job" : "tres_per_job",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "maximum_switch_wait_time" : 9,
    "core_spec" : 5,
    "mcs_label" : "mcs_label",
    "required_nodes" : "required_nodes",
    "tres_bind" : "tres_bind",
    "user_id" : 7,
    "selinux_context" : "selinux_context",
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "federation_origin" : "federation_origin",
    "container_id" : "container_id",
    "shared" : [ "none", "none" ],
    "tasks_per_board" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "user_name" : "user_name",
    "flags" : [ "KILL_INVALID_DEPENDENCY", "KILL_INVALID_DEPENDENCY" ],
    "standard_input" : "standard_input",
    "admin_comment" : "admin_comment",
    "cores_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "job_state" : [ "PENDING", "PENDING" ],
    "tasks_per_node" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "current_working_directory" : "current_working_directory",
    "standard_error" : "standard_error",
    "array_job_id" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "cluster_features" : "cluster_features",
    "partition" : "partition",
    "threads_per_core" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tres_alloc_str" : "tres_alloc_str",
    "memory_per_cpu" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "cpu_frequency_minimum" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "node_count" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "power" : {
      "flags" : [ "", "" ]
    },
    "deadline" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "mail_type" : [ "BEGIN", "BEGIN" ],
    "memory_per_node" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "state_reason" : "state_reason",
    "het_job_offset" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_board" : 4,
    "nice" : 5,
    "last_sched_evaluation" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "tres_per_node" : "tres_per_node",
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "excluded_nodes" : "excluded_nodes",
    "array_max_tasks" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "het_job_id" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_node" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "prefer" : "prefer",
    "time_limit" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "minimum_cpus_per_node" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "batch_host" : "batch_host",
    "max_cpus" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "job_size_str" : [ "job_size_str", "job_size_str" ],
    "hold" : true,
    "cpu_frequency_maximum" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "features" : "features",
    "het_job_id_set" : "het_job_id_set",
    "state_description" : "state_description",
    "show_flags" : [ "ALL", "ALL" ],
    "array_task_id" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "minimum_tmp_disk_per_node" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "tres_req_str" : "tres_req_str",
    "burst_buffer_state" : "burst_buffer_state",
    "cron" : "cron",
    "allocating_node" : "allocating_node",
    "tres_per_socket" : "tres_per_socket",
    "array_task_string" : "array_task_string",
    "submit_time" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "oversubscribe" : true,
    "wckey" : "wckey",
    "max_nodes" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "batch_flag" : true,
    "start_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "name" : "name",
    "preempt_time" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "contiguous" : true,
    "job_resources" : {
      "nodes" : {
        "allocation" : [ {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        }, {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        } ],
        "count" : 5,
        "select_type" : [ "AVAILABLE", "AVAILABLE" ],
        "whole" : true,
        "list" : "list"
      },
      "threads_per_core" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus" : 6,
      "select_type" : [ "CPU", "CPU" ]
    },
    "billable_tres" : {
      "number" : 9.301444243932576,
      "set" : true,
      "infinite" : true
    },
    "federation_siblings_viable" : "federation_siblings_viable",
    "cpus_per_task" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "batch_features" : "batch_features",
    "thread_spec" : 2,
    "cpu_frequency_governor" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "gres_detail" : [ "gres_detail", "gres_detail" ],
    "network" : "network",
    "restart_cnt" : 3,
    "resv_name" : "resv_name",
    "extra" : "extra",
    "delay_boot" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "reboot" : true,
    "cpus" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "standard_output" : "standard_output",
    "pre_sus_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "suspend_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "association_id" : 5,
    "command" : "command",
    "tres_freq" : "tres_freq",
    "requeue" : true,
    "tres_per_task" : "tres_per_task",
    "mail_user" : "mail_user",
    "nodes" : "nodes",
    "group_id" : 7,
    "job_id" : 4,
    "comment" : "comment",
    "account" : "account"
  }, {
    "container" : "container",
    "cluster" : "cluster",
    "time_minimum" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "memory_per_tres" : "memory_per_tres",
    "scheduled_nodes" : "scheduled_nodes",
    "minimum_switches" : 7,
    "qos" : "qos",
    "resize_time" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "eligible_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "exclusive" : [ "true", "true" ],
    "cpus_per_tres" : "cpus_per_tres",
    "preemptable_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "system_comment" : "system_comment",
    "federation_siblings_active" : "federation_siblings_active",
    "tasks_per_tres" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_core" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "accrue_time" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "dependency" : "dependency",
    "group_name" : "group_name",
    "profile" : [ "NOT_SET", "NOT_SET" ],
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "tres_per_job" : "tres_per_job",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "maximum_switch_wait_time" : 9,
    "core_spec" : 5,
    "mcs_label" : "mcs_label",
    "required_nodes" : "required_nodes",
    "tres_bind" : "tres_bind",
    "user_id" : 7,
    "selinux_context" : "selinux_context",
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "federation_origin" : "federation_origin",
    "container_id" : "container_id",
    "shared" : [ "none", "none" ],
    "tasks_per_board" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "user_name" : "user_name",
    "flags" : [ "KILL_INVALID_DEPENDENCY", "KILL_INVALID_DEPENDENCY" ],
    "standard_input" : "standard_input",
    "admin_comment" : "admin_comment",
    "cores_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "job_state" : [ "PENDING", "PENDING" ],
    "tasks_per_node" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "current_working_directory" : "current_working_directory",
    "standard_error" : "standard_error",
    "array_job_id" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "cluster_features" : "cluster_features",
    "partition" : "partition",
    "threads_per_core" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tres_alloc_str" : "tres_alloc_str",
    "memory_per_cpu" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "cpu_frequency_minimum" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "node_count" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "power" : {
      "flags" : [ "", "" ]
    },
    "deadline" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "mail_type" : [ "BEGIN", "BEGIN" ],
    "memory_per_node" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "state_reason" : "state_reason",
    "het_job_offset" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_board" : 4,
    "nice" : 5,
    "last_sched_evaluation" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "tres_per_node" : "tres_per_node",
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "excluded_nodes" : "excluded_nodes",
    "array_max_tasks" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "het_job_id" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "sockets_per_node" : {
      "number" : 0,
      "set" : true,
      "infinite" : true
    },
    "prefer" : "prefer",
    "time_limit" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "minimum_cpus_per_node" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "tasks_per_socket" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "batch_host" : "batch_host",
    "max_cpus" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "job_size_str" : [ "job_size_str", "job_size_str" ],
    "hold" : true,
    "cpu_frequency_maximum" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "features" : "features",
    "het_job_id_set" : "het_job_id_set",
    "state_description" : "state_description",
    "show_flags" : [ "ALL", "ALL" ],
    "array_task_id" : {
      "number" : 5,
      "set" : true,
      "infinite" : true
    },
    "minimum_tmp_disk_per_node" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "tres_req_str" : "tres_req_str",
    "burst_buffer_state" : "burst_buffer_state",
    "cron" : "cron",
    "allocating_node" : "allocating_node",
    "tres_per_socket" : "tres_per_socket",
    "array_task_string" : "array_task_string",
    "submit_time" : {
      "number" : 4,
      "set" : true,
      "infinite" : true
    },
    "oversubscribe" : true,
    "wckey" : "wckey",
    "max_nodes" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "batch_flag" : true,
    "start_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "name" : "name",
    "preempt_time" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "contiguous" : true,
    "job_resources" : {
      "nodes" : {
        "allocation" : [ {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        }, {
          "memory" : {
            "used" : 8,
            "allocated" : 9
          },
          "cpus" : {
            "count" : 9,
            "used" : 6
          },
          "name" : "name",
          "index" : 9,
          "sockets" : [ {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          }, {
            "cores" : [ {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            }, {
              "index" : 3,
              "status" : [ "INVALID", "INVALID" ]
            } ],
            "index" : 6
          } ]
        } ],
        "count" : 5,
        "select_type" : [ "AVAILABLE", "AVAILABLE" ],
        "whole" : true,
        "list" : "list"
      },
      "threads_per_core" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus" : 6,
      "select_type" : [ "CPU", "CPU" ]
    },
    "billable_tres" : {
      "number" : 9.301444243932576,
      "set" : true,
      "infinite" : true
    },
    "federation_siblings_viable" : "federation_siblings_viable",
    "cpus_per_task" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "batch_features" : "batch_features",
    "thread_spec" : 2,
    "cpu_frequency_governor" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "gres_detail" : [ "gres_detail", "gres_detail" ],
    "network" : "network",
    "restart_cnt" : 3,
    "resv_name" : "resv_name",
    "extra" : "extra",
    "delay_boot" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "reboot" : true,
    "cpus" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "standard_output" : "standard_output",
    "pre_sus_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "suspend_time" : {
      "number" : 1,
      "set" : true,
      "infinite" : true
    },
    "association_id" : 5,
    "command" : "command",
    "tres_freq" : "tres_freq",
    "requeue" : true,
    "tres_per_task" : "tres_per_task",
    "mail_user" : "mail_user",
    "nodes" : "nodes",
    "group_id" : 7,
    "job_id" : 4,
    "comment" : "comment",
    "account" : "account"
  } ],
  "last_update" : {
    "number" : 9,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

job(s) state information v0.0.41_openapi_job_info_resp

default

job(s) state information v0.0.41_openapi_job_info_resp

Up
get /slurm/v0.0.41/licenses/
get all Slurm tracked license info (slurmV0041GetLicenses)

Return type

Example data

Content-Type: application/json
{
  "licenses" : [ {
    "Used" : 6,
    "LastUpdate" : 7,
    "Total" : 0,
    "Remote" : true,
    "LastConsumed" : 5,
    "LastDeficit" : 2,
    "LicenseName" : "LicenseName",
    "Free" : 1,
    "Reserved" : 5
  }, {
    "Used" : 6,
    "LastUpdate" : 7,
    "Total" : 0,
    "Remote" : true,
    "LastConsumed" : 5,
    "LastDeficit" : 2,
    "LicenseName" : "LicenseName",
    "Free" : 1,
    "Reserved" : 5
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "last_update" : {
    "number" : 9,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

results of get all licenses v0.0.41_openapi_licenses_resp

default

results of get all licenses v0.0.41_openapi_licenses_resp

Up
get /slurm/v0.0.41/node/{node_name}
get node info (slurmV0041GetNode)

Path parameters

node_name (required)
Path Parameter — Node name default: null

Query parameters

update_time (optional)
Query Parameter — Filter jobs since update timestamp default: null
flags (optional)
Query Parameter — Query flags default: null

Return type

Example data

Content-Type: application/json
{
  "nodes" : [ {
    "reason" : "reason",
    "gpu_spec" : "gpu_spec",
    "slurmd_start_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "features" : [ "features", "features" ],
    "hostname" : "hostname",
    "cores" : 1,
    "reason_changed_at" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "reservation" : "reservation",
    "tres" : "tres",
    "cpu_binding" : 5,
    "state" : [ "INVALID", "INVALID" ],
    "sockets" : 6,
    "energy" : {
      "current_watts" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "base_consumed_energy" : 4,
      "last_collected" : 1,
      "consumed_energy" : 7,
      "previous_consumed_energy" : 1,
      "average_watts" : 2
    },
    "partitions" : [ "partitions", "partitions" ],
    "gres_drained" : "gres_drained",
    "weight" : 6,
    "version" : "version",
    "gres_used" : "gres_used",
    "mcs_label" : "mcs_label",
    "real_memory" : 4,
    "instance_id" : "instance_id",
    "burstbuffer_network_address" : "burstbuffer_network_address",
    "port" : 1,
    "name" : "name",
    "resume_after" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "temporary_disk" : 2,
    "tres_used" : "tres_used",
    "effective_cpus" : 3,
    "instance_type" : "instance_type",
    "external_sensors" : "{}",
    "res_cores_per_gpu" : 5,
    "boards" : 0,
    "alloc_cpus" : 8,
    "active_features" : [ "active_features", "active_features" ],
    "reason_set_by_user" : "reason_set_by_user",
    "free_mem" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "alloc_idle_cpus" : 9,
    "extra" : "extra",
    "operating_system" : "operating_system",
    "power" : "{}",
    "architecture" : "architecture",
    "owner" : "owner",
    "cluster_name" : "cluster_name",
    "address" : "address",
    "cpus" : 9,
    "tres_weighted" : 6.438423552598547,
    "gres" : "gres",
    "threads" : 1,
    "boot_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "alloc_memory" : 6,
    "specialized_memory" : 7,
    "specialized_cpus" : "specialized_cpus",
    "specialized_cores" : 5,
    "last_busy" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "comment" : "comment",
    "next_state_after_reboot" : [ "INVALID", "INVALID" ],
    "cpu_load" : 2
  }, {
    "reason" : "reason",
    "gpu_spec" : "gpu_spec",
    "slurmd_start_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "features" : [ "features", "features" ],
    "hostname" : "hostname",
    "cores" : 1,
    "reason_changed_at" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "reservation" : "reservation",
    "tres" : "tres",
    "cpu_binding" : 5,
    "state" : [ "INVALID", "INVALID" ],
    "sockets" : 6,
    "energy" : {
      "current_watts" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "base_consumed_energy" : 4,
      "last_collected" : 1,
      "consumed_energy" : 7,
      "previous_consumed_energy" : 1,
      "average_watts" : 2
    },
    "partitions" : [ "partitions", "partitions" ],
    "gres_drained" : "gres_drained",
    "weight" : 6,
    "version" : "version",
    "gres_used" : "gres_used",
    "mcs_label" : "mcs_label",
    "real_memory" : 4,
    "instance_id" : "instance_id",
    "burstbuffer_network_address" : "burstbuffer_network_address",
    "port" : 1,
    "name" : "name",
    "resume_after" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "temporary_disk" : 2,
    "tres_used" : "tres_used",
    "effective_cpus" : 3,
    "instance_type" : "instance_type",
    "external_sensors" : "{}",
    "res_cores_per_gpu" : 5,
    "boards" : 0,
    "alloc_cpus" : 8,
    "active_features" : [ "active_features", "active_features" ],
    "reason_set_by_user" : "reason_set_by_user",
    "free_mem" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "alloc_idle_cpus" : 9,
    "extra" : "extra",
    "operating_system" : "operating_system",
    "power" : "{}",
    "architecture" : "architecture",
    "owner" : "owner",
    "cluster_name" : "cluster_name",
    "address" : "address",
    "cpus" : 9,
    "tres_weighted" : 6.438423552598547,
    "gres" : "gres",
    "threads" : 1,
    "boot_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "alloc_memory" : 6,
    "specialized_memory" : 7,
    "specialized_cpus" : "specialized_cpus",
    "specialized_cores" : 5,
    "last_busy" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "comment" : "comment",
    "next_state_after_reboot" : [ "INVALID", "INVALID" ],
    "cpu_load" : 2
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "last_update" : {
    "number" : 6,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

node information v0.0.41_openapi_nodes_resp

default

node information v0.0.41_openapi_nodes_resp

Up
get /slurm/v0.0.41/nodes/
get node(s) info (slurmV0041GetNodes)

Query parameters

update_time (optional)
Query Parameter — Filter jobs since update timestamp default: null
flags (optional)
Query Parameter — Query flags default: null

Return type

Example data

Content-Type: application/json
{
  "nodes" : [ {
    "reason" : "reason",
    "gpu_spec" : "gpu_spec",
    "slurmd_start_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "features" : [ "features", "features" ],
    "hostname" : "hostname",
    "cores" : 1,
    "reason_changed_at" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "reservation" : "reservation",
    "tres" : "tres",
    "cpu_binding" : 5,
    "state" : [ "INVALID", "INVALID" ],
    "sockets" : 6,
    "energy" : {
      "current_watts" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "base_consumed_energy" : 4,
      "last_collected" : 1,
      "consumed_energy" : 7,
      "previous_consumed_energy" : 1,
      "average_watts" : 2
    },
    "partitions" : [ "partitions", "partitions" ],
    "gres_drained" : "gres_drained",
    "weight" : 6,
    "version" : "version",
    "gres_used" : "gres_used",
    "mcs_label" : "mcs_label",
    "real_memory" : 4,
    "instance_id" : "instance_id",
    "burstbuffer_network_address" : "burstbuffer_network_address",
    "port" : 1,
    "name" : "name",
    "resume_after" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "temporary_disk" : 2,
    "tres_used" : "tres_used",
    "effective_cpus" : 3,
    "instance_type" : "instance_type",
    "external_sensors" : "{}",
    "res_cores_per_gpu" : 5,
    "boards" : 0,
    "alloc_cpus" : 8,
    "active_features" : [ "active_features", "active_features" ],
    "reason_set_by_user" : "reason_set_by_user",
    "free_mem" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "alloc_idle_cpus" : 9,
    "extra" : "extra",
    "operating_system" : "operating_system",
    "power" : "{}",
    "architecture" : "architecture",
    "owner" : "owner",
    "cluster_name" : "cluster_name",
    "address" : "address",
    "cpus" : 9,
    "tres_weighted" : 6.438423552598547,
    "gres" : "gres",
    "threads" : 1,
    "boot_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "alloc_memory" : 6,
    "specialized_memory" : 7,
    "specialized_cpus" : "specialized_cpus",
    "specialized_cores" : 5,
    "last_busy" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "comment" : "comment",
    "next_state_after_reboot" : [ "INVALID", "INVALID" ],
    "cpu_load" : 2
  }, {
    "reason" : "reason",
    "gpu_spec" : "gpu_spec",
    "slurmd_start_time" : {
      "number" : 3,
      "set" : true,
      "infinite" : true
    },
    "features" : [ "features", "features" ],
    "hostname" : "hostname",
    "cores" : 1,
    "reason_changed_at" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "reservation" : "reservation",
    "tres" : "tres",
    "cpu_binding" : 5,
    "state" : [ "INVALID", "INVALID" ],
    "sockets" : 6,
    "energy" : {
      "current_watts" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "base_consumed_energy" : 4,
      "last_collected" : 1,
      "consumed_energy" : 7,
      "previous_consumed_energy" : 1,
      "average_watts" : 2
    },
    "partitions" : [ "partitions", "partitions" ],
    "gres_drained" : "gres_drained",
    "weight" : 6,
    "version" : "version",
    "gres_used" : "gres_used",
    "mcs_label" : "mcs_label",
    "real_memory" : 4,
    "instance_id" : "instance_id",
    "burstbuffer_network_address" : "burstbuffer_network_address",
    "port" : 1,
    "name" : "name",
    "resume_after" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "temporary_disk" : 2,
    "tres_used" : "tres_used",
    "effective_cpus" : 3,
    "instance_type" : "instance_type",
    "external_sensors" : "{}",
    "res_cores_per_gpu" : 5,
    "boards" : 0,
    "alloc_cpus" : 8,
    "active_features" : [ "active_features", "active_features" ],
    "reason_set_by_user" : "reason_set_by_user",
    "free_mem" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "alloc_idle_cpus" : 9,
    "extra" : "extra",
    "operating_system" : "operating_system",
    "power" : "{}",
    "architecture" : "architecture",
    "owner" : "owner",
    "cluster_name" : "cluster_name",
    "address" : "address",
    "cpus" : 9,
    "tres_weighted" : 6.438423552598547,
    "gres" : "gres",
    "threads" : 1,
    "boot_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "alloc_memory" : 6,
    "specialized_memory" : 7,
    "specialized_cpus" : "specialized_cpus",
    "specialized_cores" : 5,
    "last_busy" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "comment" : "comment",
    "next_state_after_reboot" : [ "INVALID", "INVALID" ],
    "cpu_load" : 2
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "last_update" : {
    "number" : 6,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

node(s) information v0.0.41_openapi_nodes_resp

default

node(s) information v0.0.41_openapi_nodes_resp

Up
get /slurm/v0.0.41/partition/{partition_name}
get partition info (slurmV0041GetPartition)

Path parameters

partition_name (required)
Path Parameter — Partition name default: null

Query parameters

update_time (optional)
Query Parameter — Filter partitions since update timestamp default: null
flags (optional)
Query Parameter — Query flags default: null

Return type

Example data

Content-Type: application/json
{
  "partitions" : [ {
    "cluster" : "cluster",
    "cpus" : {
      "task_binding" : 6,
      "total" : 1
    },
    "timeouts" : {
      "resume" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "suspend" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      }
    },
    "groups" : {
      "allowed" : "allowed"
    },
    "alternate" : "alternate",
    "select_type" : [ "CPU", "CPU" ],
    "suspend_time" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "priority" : {
      "tier" : 9,
      "job_factor" : 5
    },
    "node_sets" : "node_sets",
    "maximums" : {
      "shares" : 1,
      "nodes" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "over_time_limit" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus_per_node" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      },
      "cpus_per_socket" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "partition_memory_per_node" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "oversubscribe" : {
        "jobs" : 6,
        "flags" : [ "force", "force" ]
      },
      "memory_per_cpu" : 4,
      "time" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "partition_memory_per_cpu" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      }
    },
    "nodes" : {
      "configured" : "configured",
      "total" : 0,
      "allowed_allocation" : "allowed_allocation"
    },
    "partition" : {
      "state" : [ "INACTIVE", "INACTIVE" ]
    },
    "qos" : {
      "deny" : "deny",
      "allowed" : "allowed",
      "assigned" : "assigned"
    },
    "defaults" : {
      "partition_memory_per_node" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "memory_per_cpu" : 5,
      "time" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "job" : "job",
      "partition_memory_per_cpu" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      }
    },
    "name" : "name",
    "tres" : {
      "configured" : "configured",
      "billing_weights" : "billing_weights"
    },
    "accounts" : {
      "deny" : "deny",
      "allowed" : "allowed"
    },
    "minimums" : {
      "nodes" : 4
    },
    "grace_time" : 9
  }, {
    "cluster" : "cluster",
    "cpus" : {
      "task_binding" : 6,
      "total" : 1
    },
    "timeouts" : {
      "resume" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "suspend" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      }
    },
    "groups" : {
      "allowed" : "allowed"
    },
    "alternate" : "alternate",
    "select_type" : [ "CPU", "CPU" ],
    "suspend_time" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "priority" : {
      "tier" : 9,
      "job_factor" : 5
    },
    "node_sets" : "node_sets",
    "maximums" : {
      "shares" : 1,
      "nodes" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "over_time_limit" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus_per_node" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      },
      "cpus_per_socket" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "partition_memory_per_node" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "oversubscribe" : {
        "jobs" : 6,
        "flags" : [ "force", "force" ]
      },
      "memory_per_cpu" : 4,
      "time" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "partition_memory_per_cpu" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      }
    },
    "nodes" : {
      "configured" : "configured",
      "total" : 0,
      "allowed_allocation" : "allowed_allocation"
    },
    "partition" : {
      "state" : [ "INACTIVE", "INACTIVE" ]
    },
    "qos" : {
      "deny" : "deny",
      "allowed" : "allowed",
      "assigned" : "assigned"
    },
    "defaults" : {
      "partition_memory_per_node" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "memory_per_cpu" : 5,
      "time" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "job" : "job",
      "partition_memory_per_cpu" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      }
    },
    "name" : "name",
    "tres" : {
      "configured" : "configured",
      "billing_weights" : "billing_weights"
    },
    "accounts" : {
      "deny" : "deny",
      "allowed" : "allowed"
    },
    "minimums" : {
      "nodes" : 4
    },
    "grace_time" : 9
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "last_update" : {
    "number" : 9,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

partition information v0.0.41_openapi_partition_resp

default

partition information v0.0.41_openapi_partition_resp

Up
get /slurm/v0.0.41/partitions/
get all partition info (slurmV0041GetPartitions)

Query parameters

update_time (optional)
Query Parameter — Filter partitions since update timestamp default: null
flags (optional)
Query Parameter — Query flags default: null

Return type

Example data

Content-Type: application/json
{
  "partitions" : [ {
    "cluster" : "cluster",
    "cpus" : {
      "task_binding" : 6,
      "total" : 1
    },
    "timeouts" : {
      "resume" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "suspend" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      }
    },
    "groups" : {
      "allowed" : "allowed"
    },
    "alternate" : "alternate",
    "select_type" : [ "CPU", "CPU" ],
    "suspend_time" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "priority" : {
      "tier" : 9,
      "job_factor" : 5
    },
    "node_sets" : "node_sets",
    "maximums" : {
      "shares" : 1,
      "nodes" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "over_time_limit" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus_per_node" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      },
      "cpus_per_socket" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "partition_memory_per_node" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "oversubscribe" : {
        "jobs" : 6,
        "flags" : [ "force", "force" ]
      },
      "memory_per_cpu" : 4,
      "time" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "partition_memory_per_cpu" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      }
    },
    "nodes" : {
      "configured" : "configured",
      "total" : 0,
      "allowed_allocation" : "allowed_allocation"
    },
    "partition" : {
      "state" : [ "INACTIVE", "INACTIVE" ]
    },
    "qos" : {
      "deny" : "deny",
      "allowed" : "allowed",
      "assigned" : "assigned"
    },
    "defaults" : {
      "partition_memory_per_node" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "memory_per_cpu" : 5,
      "time" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "job" : "job",
      "partition_memory_per_cpu" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      }
    },
    "name" : "name",
    "tres" : {
      "configured" : "configured",
      "billing_weights" : "billing_weights"
    },
    "accounts" : {
      "deny" : "deny",
      "allowed" : "allowed"
    },
    "minimums" : {
      "nodes" : 4
    },
    "grace_time" : 9
  }, {
    "cluster" : "cluster",
    "cpus" : {
      "task_binding" : 6,
      "total" : 1
    },
    "timeouts" : {
      "resume" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "suspend" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      }
    },
    "groups" : {
      "allowed" : "allowed"
    },
    "alternate" : "alternate",
    "select_type" : [ "CPU", "CPU" ],
    "suspend_time" : {
      "number" : 8,
      "set" : true,
      "infinite" : true
    },
    "priority" : {
      "tier" : 9,
      "job_factor" : 5
    },
    "node_sets" : "node_sets",
    "maximums" : {
      "shares" : 1,
      "nodes" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "over_time_limit" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "cpus_per_node" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      },
      "cpus_per_socket" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "partition_memory_per_node" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "oversubscribe" : {
        "jobs" : 6,
        "flags" : [ "force", "force" ]
      },
      "memory_per_cpu" : 4,
      "time" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "partition_memory_per_cpu" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      }
    },
    "nodes" : {
      "configured" : "configured",
      "total" : 0,
      "allowed_allocation" : "allowed_allocation"
    },
    "partition" : {
      "state" : [ "INACTIVE", "INACTIVE" ]
    },
    "qos" : {
      "deny" : "deny",
      "allowed" : "allowed",
      "assigned" : "assigned"
    },
    "defaults" : {
      "partition_memory_per_node" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "memory_per_cpu" : 5,
      "time" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "job" : "job",
      "partition_memory_per_cpu" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      }
    },
    "name" : "name",
    "tres" : {
      "configured" : "configured",
      "billing_weights" : "billing_weights"
    },
    "accounts" : {
      "deny" : "deny",
      "allowed" : "allowed"
    },
    "minimums" : {
      "nodes" : 4
    },
    "grace_time" : 9
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "last_update" : {
    "number" : 9,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

partition information v0.0.41_openapi_partition_resp

default

partition information v0.0.41_openapi_partition_resp

Up
get /slurm/v0.0.41/ping/
ping test (slurmV0041GetPing)

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "pings" : [ {
    "mode" : "mode",
    "hostname" : "hostname",
    "latency" : 0,
    "pinged" : "pinged"
  }, {
    "mode" : "mode",
    "hostname" : "hostname",
    "latency" : 0,
    "pinged" : "pinged"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

results of ping test v0.0.41_openapi_ping_array_resp

default

results of ping test v0.0.41_openapi_ping_array_resp

Up
get /slurm/v0.0.41/reconfigure/
request slurmctld reconfigure (slurmV0041GetReconfigure)

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

reconfigure request result v0.0.41_openapi_resp

default

reconfigure request result v0.0.41_openapi_resp

Up
get /slurm/v0.0.41/reservation/{reservation_name}
get reservation info (slurmV0041GetReservation)

Path parameters

reservation_name (required)
Path Parameter — Reservation name default: null

Query parameters

update_time (optional)
Query Parameter — Filter reservations since update timestamp default: null

Return type

Example data

Content-Type: application/json
{
  "reservations" : [ {
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "flags" : [ "MAINT", "MAINT" ],
    "groups" : "groups",
    "users" : "users",
    "max_start_delay" : 1,
    "features" : "features",
    "start_time" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "partition" : "partition",
    "watts" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "core_specializations" : [ {
      "node" : "node",
      "core" : "core"
    }, {
      "node" : "node",
      "core" : "core"
    } ],
    "name" : "name",
    "tres" : "tres",
    "accounts" : "accounts",
    "node_count" : 5,
    "node_list" : "node_list",
    "purge_completed" : {
      "time" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      }
    },
    "core_count" : 0
  }, {
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "flags" : [ "MAINT", "MAINT" ],
    "groups" : "groups",
    "users" : "users",
    "max_start_delay" : 1,
    "features" : "features",
    "start_time" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "partition" : "partition",
    "watts" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "core_specializations" : [ {
      "node" : "node",
      "core" : "core"
    }, {
      "node" : "node",
      "core" : "core"
    } ],
    "name" : "name",
    "tres" : "tres",
    "accounts" : "accounts",
    "node_count" : 5,
    "node_list" : "node_list",
    "purge_completed" : {
      "time" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      }
    },
    "core_count" : 0
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "last_update" : {
    "number" : 9,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

reservation information v0.0.41_openapi_reservation_resp

default

reservation information v0.0.41_openapi_reservation_resp

Up
get /slurm/v0.0.41/reservations/
get all reservation info (slurmV0041GetReservations)

Query parameters

update_time (optional)
Query Parameter — Filter reservations since update timestamp default: null

Return type

Example data

Content-Type: application/json
{
  "reservations" : [ {
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "flags" : [ "MAINT", "MAINT" ],
    "groups" : "groups",
    "users" : "users",
    "max_start_delay" : 1,
    "features" : "features",
    "start_time" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "partition" : "partition",
    "watts" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "core_specializations" : [ {
      "node" : "node",
      "core" : "core"
    }, {
      "node" : "node",
      "core" : "core"
    } ],
    "name" : "name",
    "tres" : "tres",
    "accounts" : "accounts",
    "node_count" : 5,
    "node_list" : "node_list",
    "purge_completed" : {
      "time" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      }
    },
    "core_count" : 0
  }, {
    "end_time" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "flags" : [ "MAINT", "MAINT" ],
    "groups" : "groups",
    "users" : "users",
    "max_start_delay" : 1,
    "features" : "features",
    "start_time" : {
      "number" : 2,
      "set" : true,
      "infinite" : true
    },
    "burst_buffer" : "burst_buffer",
    "licenses" : "licenses",
    "partition" : "partition",
    "watts" : {
      "number" : 7,
      "set" : true,
      "infinite" : true
    },
    "core_specializations" : [ {
      "node" : "node",
      "core" : "core"
    }, {
      "node" : "node",
      "core" : "core"
    } ],
    "name" : "name",
    "tres" : "tres",
    "accounts" : "accounts",
    "node_count" : 5,
    "node_list" : "node_list",
    "purge_completed" : {
      "time" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      }
    },
    "core_count" : 0
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "last_update" : {
    "number" : 9,
    "set" : true,
    "infinite" : true
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

reservation information v0.0.41_openapi_reservation_resp

default

reservation information v0.0.41_openapi_reservation_resp

Up
get /slurm/v0.0.41/shares
get fairshare info (slurmV0041GetShares)

Query parameters

accounts (optional)
Query Parameter — Accounts to query default: null
users (optional)
Query Parameter — Users to query default: null

Return type

Example data

Content-Type: application/json
{
  "shares" : {
    "shares" : [ {
      "cluster" : "cluster",
      "parent" : "parent",
      "shares_normalized" : {
        "number" : 6.027456183070403,
        "set" : true,
        "infinite" : true
      },
      "usage" : 9,
      "fairshare" : {
        "level" : 2.027123023002322,
        "factor" : 3.616076749251911
      },
      "type" : [ "USER", "USER" ],
      "effective_usage" : 2.3021358869347655,
      "shares" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "partition" : "partition",
      "usage_normalized" : {
        "number" : 7.061401241503109,
        "set" : true,
        "infinite" : true
      },
      "name" : "name",
      "tres" : {
        "run_seconds" : [ {
          "name" : "name",
          "value" : {
            "number" : 5,
            "set" : true,
            "infinite" : true
          }
        }, {
          "name" : "name",
          "value" : {
            "number" : 5,
            "set" : true,
            "infinite" : true
          }
        } ],
        "usage" : [ {
          "name" : "name",
          "value" : 5.637376656633329
        }, {
          "name" : "name",
          "value" : 5.637376656633329
        } ],
        "group_minutes" : [ {
          "name" : "name",
          "value" : {
            "number" : 5,
            "set" : true,
            "infinite" : true
          }
        }, {
          "name" : "name",
          "value" : {
            "number" : 5,
            "set" : true,
            "infinite" : true
          }
        } ]
      },
      "id" : 0
    }, {
      "cluster" : "cluster",
      "parent" : "parent",
      "shares_normalized" : {
        "number" : 6.027456183070403,
        "set" : true,
        "infinite" : true
      },
      "usage" : 9,
      "fairshare" : {
        "level" : 2.027123023002322,
        "factor" : 3.616076749251911
      },
      "type" : [ "USER", "USER" ],
      "effective_usage" : 2.3021358869347655,
      "shares" : {
        "number" : 1,
        "set" : true,
        "infinite" : true
      },
      "partition" : "partition",
      "usage_normalized" : {
        "number" : 7.061401241503109,
        "set" : true,
        "infinite" : true
      },
      "name" : "name",
      "tres" : {
        "run_seconds" : [ {
          "name" : "name",
          "value" : {
            "number" : 5,
            "set" : true,
            "infinite" : true
          }
        }, {
          "name" : "name",
          "value" : {
            "number" : 5,
            "set" : true,
            "infinite" : true
          }
        } ],
        "usage" : [ {
          "name" : "name",
          "value" : 5.637376656633329
        }, {
          "name" : "name",
          "value" : 5.637376656633329
        } ],
        "group_minutes" : [ {
          "name" : "name",
          "value" : {
            "number" : 5,
            "set" : true,
            "infinite" : true
          }
        }, {
          "name" : "name",
          "value" : {
            "number" : 5,
            "set" : true,
            "infinite" : true
          }
        } ]
      },
      "id" : 0
    } ],
    "total_shares" : 4
  },
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

shares information v0.0.41_openapi_shares_resp

default

shares information v0.0.41_openapi_shares_resp

Up
post /slurm/v0.0.41/job/{job_id}
update job (slurmV0041PostJob)

Path parameters

job_id (required)
Path Parameter — Job ID default: null

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_job_desc_msg v0.0.41_job_desc_msg (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "job_id" : "job_id",
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "step_id" : "step_id",
  "results" : [ {
    "job_id" : 0,
    "why" : "why",
    "error_code" : 6,
    "step_id" : "step_id",
    "error" : "error"
  }, {
    "job_id" : 0,
    "why" : "why",
    "error_code" : 6,
    "step_id" : "step_id",
    "error" : "error"
  } ],
  "job_submit_user_msg" : "job_submit_user_msg",
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

job update result v0.0.41_openapi_job_post_response

default

job update result v0.0.41_openapi_job_post_response

Up
post /slurm/v0.0.41/job/allocate
submit new job allocation without any steps that must be signaled to stop (slurmV0041PostJobAllocate)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_job_alloc_req v0.0.41_job_alloc_req (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "job_id" : 0,
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "job_submit_user_msg" : "job_submit_user_msg",
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

job allocation response v0.0.41_openapi_job_alloc_resp

default

job allocation response v0.0.41_openapi_job_alloc_resp

Up
post /slurm/v0.0.41/job/submit
submit new job (slurmV0041PostJobSubmit)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_job_submit_req v0.0.41_job_submit_req (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "result" : {
    "job_id" : 0,
    "error_code" : 6,
    "step_id" : "step_id",
    "error" : "error",
    "job_submit_user_msg" : "job_submit_user_msg"
  },
  "job_id" : 1,
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "step_id" : "step_id",
  "job_submit_user_msg" : "job_submit_user_msg",
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

job submission response v0.0.41_openapi_job_submit_response

default

job submission response v0.0.41_openapi_job_submit_response

Up
post /slurm/v0.0.41/node/{node_name}
update node properties (slurmV0041PostNode)

Path parameters

node_name (required)
Path Parameter — Node name default: null

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_update_node_msg v0.0.41_update_node_msg (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

node update request result v0.0.41_openapi_resp

default

node update request result v0.0.41_openapi_resp

Slurmdb

Up
delete /slurmdb/v0.0.41/account/{account_name}
Delete account (slurmdbV0041DeleteAccount)

Path parameters

account_name (required)
Path Parameter — Account name default: null

Return type

Example data

Content-Type: application/json
{
  "removed_accounts" : [ "removed_accounts", "removed_accounts" ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Status of account deletion request v0.0.41_openapi_accounts_removed_resp

default

Status of account deletion request v0.0.41_openapi_accounts_removed_resp

Up
delete /slurmdb/v0.0.41/association/
Delete association (slurmdbV0041DeleteAssociation)

Query parameters

account (optional)
Query Parameter — CSV accounts list default: null
cluster (optional)
Query Parameter — CSV clusters list default: null
default_qos (optional)
Query Parameter — CSV QOS list default: null
format (optional)
Query Parameter — CSV format list default: null
id (optional)
Query Parameter — CSV id list default: null
only_defaults (optional)
Query Parameter — Filter to only defaults default: null
parent_account (optional)
Query Parameter — CSV names of parent account default: null
partition (optional)
Query Parameter — CSV partition name list default: null
qos (optional)
Query Parameter — CSV QOS list default: null
usage_end (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
usage_start (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
user (optional)
Query Parameter — CSV user list default: null
with_usage (optional)
Query Parameter — Include usage default: null
with_deleted (optional)
Query Parameter — Include deleted associations default: null
with_raw_qos (optional)
Query Parameter — Include a raw qos or delta_qos default: null
with_sub_accts (optional)
Query Parameter — Include sub acct information default: null
without_parent_info (optional)
Query Parameter — Exclude parent id/name default: null
without_parent_limits (optional)
Query Parameter — Exclude limits from parents default: null

Return type

Example data

Content-Type: application/json
{
  "removed_associations" : [ "removed_associations", "removed_associations" ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Status of associations delete request v0.0.41_openapi_assocs_removed_resp

default

Status of associations delete request v0.0.41_openapi_assocs_removed_resp

Up
delete /slurmdb/v0.0.41/associations/
Delete associations (slurmdbV0041DeleteAssociations)

Query parameters

account (optional)
Query Parameter — CSV accounts list default: null
cluster (optional)
Query Parameter — CSV clusters list default: null
default_qos (optional)
Query Parameter — CSV QOS list default: null
format (optional)
Query Parameter — CSV format list default: null
id (optional)
Query Parameter — CSV id list default: null
only_defaults (optional)
Query Parameter — Filter to only defaults default: null
parent_account (optional)
Query Parameter — CSV names of parent account default: null
partition (optional)
Query Parameter — CSV partition name list default: null
qos (optional)
Query Parameter — CSV QOS list default: null
usage_end (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
usage_start (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
user (optional)
Query Parameter — CSV user list default: null
with_usage (optional)
Query Parameter — Include usage default: null
with_deleted (optional)
Query Parameter — Include deleted associations default: null
with_raw_qos (optional)
Query Parameter — Include a raw qos or delta_qos default: null
with_sub_accts (optional)
Query Parameter — Include sub acct information default: null
without_parent_info (optional)
Query Parameter — Exclude parent id/name default: null
without_parent_limits (optional)
Query Parameter — Exclude limits from parents default: null

Return type

Example data

Content-Type: application/json
{
  "removed_associations" : [ "removed_associations", "removed_associations" ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of associations deleted v0.0.41_openapi_assocs_removed_resp

default

List of associations deleted v0.0.41_openapi_assocs_removed_resp

Up
delete /slurmdb/v0.0.41/cluster/{cluster_name}
Delete cluster (slurmdbV0041DeleteCluster)

Path parameters

cluster_name (required)
Path Parameter — Cluster name default: null

Query parameters

classification (optional)
Query Parameter — Type of machine default: null
cluster (optional)
Query Parameter — CSV cluster list default: null
federation (optional)
Query Parameter — CSV federation list default: null
flags (optional)
Query Parameter — Query flags default: null
format (optional)
Query Parameter — CSV format list default: null
rpc_version (optional)
Query Parameter — CSV RPC version list default: null
usage_end (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
usage_start (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
with_deleted (optional)
Query Parameter — Include deleted clusters default: null
with_usage (optional)
Query Parameter — Include usage default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "deleted_clusters" : [ "deleted_clusters", "deleted_clusters" ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Result of delete cluster request v0.0.41_openapi_clusters_removed_resp

default

Result of delete cluster request v0.0.41_openapi_clusters_removed_resp

Up
delete /slurmdb/v0.0.41/qos/{qos}
Delete QOS (slurmdbV0041DeleteSingleQos)

Path parameters

qos (required)
Path Parameter — QOS name default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "removed_qos" : [ "removed_qos", "removed_qos" ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

results of ping test v0.0.41_openapi_slurmdbd_qos_removed_resp

default

results of ping test v0.0.41_openapi_slurmdbd_qos_removed_resp

Up
delete /slurmdb/v0.0.41/user/{name}
Delete user (slurmdbV0041DeleteUser)

Path parameters

name (required)
Path Parameter — User name default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Result of user delete request v0.0.41_openapi_resp

default

Result of user delete request v0.0.41_openapi_resp

Up
delete /slurmdb/v0.0.41/wckey/{id}
Delete wckey (slurmdbV0041DeleteWckey)

Path parameters

id (required)
Path Parameter — wckey id default: null

Return type

Example data

Content-Type: application/json
{
  "deleted_wckeys" : [ "deleted_wckeys", "deleted_wckeys" ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Result of wckey deletion request v0.0.41_openapi_wckey_removed_resp

default

Result of wckey deletion request v0.0.41_openapi_wckey_removed_resp

Up
get /slurmdb/v0.0.41/account/{account_name}
Get account info (slurmdbV0041GetAccount)

Path parameters

account_name (required)
Path Parameter — Account name default: null

Query parameters

with_assocs (optional)
Query Parameter — Include associations default: null
with_coords (optional)
Query Parameter — Include coordinators default: null
with_deleted (optional)
Query Parameter — Include deleted default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "accounts" : [ {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "organization" : "organization",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "description" : "description"
  }, {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "organization" : "organization",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "description" : "description"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of accounts v0.0.41_openapi_accounts_resp

default

List of accounts v0.0.41_openapi_accounts_resp

Up
get /slurmdb/v0.0.41/accounts/
Get account list (slurmdbV0041GetAccounts)

Query parameters

description (optional)
Query Parameter — CSV description list default: null
DELETED (optional)
Query Parameter — include deleted associations default: null
WithAssociations (optional)
Query Parameter — query includes associations default: null
WithCoordinators (optional)
Query Parameter — query includes coordinators default: null
NoUsersAreCoords (optional)
Query Parameter — remove users as coordinators default: null
UsersAreCoords (optional)
Query Parameter — users are coordinators default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "accounts" : [ {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "organization" : "organization",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "description" : "description"
  }, {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "organization" : "organization",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "description" : "description"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of accounts v0.0.41_openapi_accounts_resp

default

List of accounts v0.0.41_openapi_accounts_resp

Up
get /slurmdb/v0.0.41/association/
Get association info (slurmdbV0041GetAssociation)

Query parameters

account (optional)
Query Parameter — CSV accounts list default: null
cluster (optional)
Query Parameter — CSV clusters list default: null
default_qos (optional)
Query Parameter — CSV QOS list default: null
format (optional)
Query Parameter — CSV format list default: null
id (optional)
Query Parameter — CSV id list default: null
only_defaults (optional)
Query Parameter — Filter to only defaults default: null
parent_account (optional)
Query Parameter — CSV names of parent account default: null
partition (optional)
Query Parameter — CSV partition name list default: null
qos (optional)
Query Parameter — CSV QOS list default: null
usage_end (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
usage_start (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
user (optional)
Query Parameter — CSV user list default: null
with_usage (optional)
Query Parameter — Include usage default: null
with_deleted (optional)
Query Parameter — Include deleted associations default: null
with_raw_qos (optional)
Query Parameter — Include a raw qos or delta_qos default: null
with_sub_accts (optional)
Query Parameter — Include sub acct information default: null
without_parent_info (optional)
Query Parameter — Exclude parent id/name default: null
without_parent_limits (optional)
Query Parameter — Exclude limits from parents default: null

Return type

Example data

Content-Type: application/json
{
  "associations" : [ {
    "lineage" : "lineage",
    "cluster" : "cluster",
    "shares_raw" : 3,
    "max" : {
      "jobs" : {
        "total" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "active" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "accruing" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "per" : {
          "submitted" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "wall_clock" : {
            "number" : 6,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "tres" : {
        "total" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ],
        "minutes" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "per" : {
          "node" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "job" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "group" : {
          "minutes" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "active" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        }
      },
      "per" : {
        "account" : {
          "wall_clock" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      }
    },
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "is_default" : true,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "parent_account" : "parent_account",
    "default" : {
      "qos" : "qos"
    },
    "min" : {
      "priority_threshold" : {
        "number" : 8,
        "set" : true,
        "infinite" : true
      }
    },
    "partition" : "partition",
    "qos" : [ "qos", "qos" ],
    "comment" : "comment",
    "id" : 5,
    "user" : "user",
    "account" : "account"
  }, {
    "lineage" : "lineage",
    "cluster" : "cluster",
    "shares_raw" : 3,
    "max" : {
      "jobs" : {
        "total" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "active" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "accruing" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "per" : {
          "submitted" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "wall_clock" : {
            "number" : 6,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "tres" : {
        "total" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ],
        "minutes" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "per" : {
          "node" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "job" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "group" : {
          "minutes" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "active" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        }
      },
      "per" : {
        "account" : {
          "wall_clock" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      }
    },
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "is_default" : true,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "parent_account" : "parent_account",
    "default" : {
      "qos" : "qos"
    },
    "min" : {
      "priority_threshold" : {
        "number" : 8,
        "set" : true,
        "infinite" : true
      }
    },
    "partition" : "partition",
    "qos" : [ "qos", "qos" ],
    "comment" : "comment",
    "id" : 5,
    "user" : "user",
    "account" : "account"
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of associations v0.0.41_openapi_assocs_resp

default

List of associations v0.0.41_openapi_assocs_resp

Up
get /slurmdb/v0.0.41/associations/
Get association list (slurmdbV0041GetAssociations)

Query parameters

account (optional)
Query Parameter — CSV accounts list default: null
cluster (optional)
Query Parameter — CSV clusters list default: null
default_qos (optional)
Query Parameter — CSV QOS list default: null
format (optional)
Query Parameter — CSV format list default: null
id (optional)
Query Parameter — CSV id list default: null
only_defaults (optional)
Query Parameter — Filter to only defaults default: null
parent_account (optional)
Query Parameter — CSV names of parent account default: null
partition (optional)
Query Parameter — CSV partition name list default: null
qos (optional)
Query Parameter — CSV QOS list default: null
usage_end (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
usage_start (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
user (optional)
Query Parameter — CSV user list default: null
with_usage (optional)
Query Parameter — Include usage default: null
with_deleted (optional)
Query Parameter — Include deleted associations default: null
with_raw_qos (optional)
Query Parameter — Include a raw qos or delta_qos default: null
with_sub_accts (optional)
Query Parameter — Include sub acct information default: null
without_parent_info (optional)
Query Parameter — Exclude parent id/name default: null
without_parent_limits (optional)
Query Parameter — Exclude limits from parents default: null

Return type

Example data

Content-Type: application/json
{
  "associations" : [ {
    "lineage" : "lineage",
    "cluster" : "cluster",
    "shares_raw" : 3,
    "max" : {
      "jobs" : {
        "total" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "active" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "accruing" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "per" : {
          "submitted" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "wall_clock" : {
            "number" : 6,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "tres" : {
        "total" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ],
        "minutes" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "per" : {
          "node" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "job" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "group" : {
          "minutes" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "active" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        }
      },
      "per" : {
        "account" : {
          "wall_clock" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      }
    },
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "is_default" : true,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "parent_account" : "parent_account",
    "default" : {
      "qos" : "qos"
    },
    "min" : {
      "priority_threshold" : {
        "number" : 8,
        "set" : true,
        "infinite" : true
      }
    },
    "partition" : "partition",
    "qos" : [ "qos", "qos" ],
    "comment" : "comment",
    "id" : 5,
    "user" : "user",
    "account" : "account"
  }, {
    "lineage" : "lineage",
    "cluster" : "cluster",
    "shares_raw" : 3,
    "max" : {
      "jobs" : {
        "total" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "active" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "accruing" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "per" : {
          "submitted" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "wall_clock" : {
            "number" : 6,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "tres" : {
        "total" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ],
        "minutes" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "per" : {
          "node" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "job" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "group" : {
          "minutes" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "active" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        }
      },
      "per" : {
        "account" : {
          "wall_clock" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      }
    },
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "is_default" : true,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "parent_account" : "parent_account",
    "default" : {
      "qos" : "qos"
    },
    "min" : {
      "priority_threshold" : {
        "number" : 8,
        "set" : true,
        "infinite" : true
      }
    },
    "partition" : "partition",
    "qos" : [ "qos", "qos" ],
    "comment" : "comment",
    "id" : 5,
    "user" : "user",
    "account" : "account"
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of associations v0.0.41_openapi_assocs_resp

default

List of associations v0.0.41_openapi_assocs_resp

Up
get /slurmdb/v0.0.41/cluster/{cluster_name}
Get cluster info (slurmdbV0041GetCluster)

Path parameters

cluster_name (required)
Path Parameter — Cluster name default: null

Query parameters

classification (optional)
Query Parameter — Type of machine default: null
cluster (optional)
Query Parameter — CSV cluster list default: null
federation (optional)
Query Parameter — CSV federation list default: null
flags (optional)
Query Parameter — Query flags default: null
format (optional)
Query Parameter — CSV format list default: null
rpc_version (optional)
Query Parameter — CSV RPC version list default: null
usage_end (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
usage_start (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
with_deleted (optional)
Query Parameter — Include deleted clusters default: null
with_usage (optional)
Query Parameter — Include usage default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "clusters" : [ {
    "associations" : {
      "root" : {
        "cluster" : "cluster",
        "partition" : "partition",
        "id" : 6,
        "user" : "user",
        "account" : "account"
      }
    },
    "controller" : {
      "port" : 0,
      "host" : "host"
    },
    "nodes" : "nodes",
    "flags" : [ "REGISTERING", "REGISTERING" ],
    "name" : "name",
    "rpc_version" : 1,
    "tres" : [ {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    }, {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    } ],
    "select_plugin" : "select_plugin"
  }, {
    "associations" : {
      "root" : {
        "cluster" : "cluster",
        "partition" : "partition",
        "id" : 6,
        "user" : "user",
        "account" : "account"
      }
    },
    "controller" : {
      "port" : 0,
      "host" : "host"
    },
    "nodes" : "nodes",
    "flags" : [ "REGISTERING", "REGISTERING" ],
    "name" : "name",
    "rpc_version" : 1,
    "tres" : [ {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    }, {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    } ],
    "select_plugin" : "select_plugin"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Cluster information v0.0.41_openapi_clusters_resp

default

Cluster information v0.0.41_openapi_clusters_resp

Up
get /slurmdb/v0.0.41/clusters/
Get cluster list (slurmdbV0041GetClusters)

Query parameters

update_time (optional)
Query Parameter — Filter reservations since update timestamp default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "clusters" : [ {
    "associations" : {
      "root" : {
        "cluster" : "cluster",
        "partition" : "partition",
        "id" : 6,
        "user" : "user",
        "account" : "account"
      }
    },
    "controller" : {
      "port" : 0,
      "host" : "host"
    },
    "nodes" : "nodes",
    "flags" : [ "REGISTERING", "REGISTERING" ],
    "name" : "name",
    "rpc_version" : 1,
    "tres" : [ {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    }, {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    } ],
    "select_plugin" : "select_plugin"
  }, {
    "associations" : {
      "root" : {
        "cluster" : "cluster",
        "partition" : "partition",
        "id" : 6,
        "user" : "user",
        "account" : "account"
      }
    },
    "controller" : {
      "port" : 0,
      "host" : "host"
    },
    "nodes" : "nodes",
    "flags" : [ "REGISTERING", "REGISTERING" ],
    "name" : "name",
    "rpc_version" : 1,
    "tres" : [ {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    }, {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    } ],
    "select_plugin" : "select_plugin"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of clusters v0.0.41_openapi_clusters_resp

default

List of clusters v0.0.41_openapi_clusters_resp

Up
get /slurmdb/v0.0.41/config
Dump all configuration information (slurmdbV0041GetConfig)

Return type

Example data

Content-Type: application/json
{
  "associations" : [ {
    "lineage" : "lineage",
    "cluster" : "cluster",
    "shares_raw" : 3,
    "max" : {
      "jobs" : {
        "total" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "active" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "accruing" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "per" : {
          "submitted" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "wall_clock" : {
            "number" : 6,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "tres" : {
        "total" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ],
        "minutes" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "per" : {
          "node" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "job" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "group" : {
          "minutes" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "active" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        }
      },
      "per" : {
        "account" : {
          "wall_clock" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      }
    },
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "is_default" : true,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "parent_account" : "parent_account",
    "default" : {
      "qos" : "qos"
    },
    "min" : {
      "priority_threshold" : {
        "number" : 8,
        "set" : true,
        "infinite" : true
      }
    },
    "partition" : "partition",
    "qos" : [ "qos", "qos" ],
    "comment" : "comment",
    "id" : 5,
    "user" : "user",
    "account" : "account"
  }, {
    "lineage" : "lineage",
    "cluster" : "cluster",
    "shares_raw" : 3,
    "max" : {
      "jobs" : {
        "total" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "active" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "accruing" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "per" : {
          "submitted" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "wall_clock" : {
            "number" : 6,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "tres" : {
        "total" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ],
        "minutes" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "per" : {
          "node" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "job" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "group" : {
          "minutes" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "active" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        }
      },
      "per" : {
        "account" : {
          "wall_clock" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      }
    },
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "is_default" : true,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "parent_account" : "parent_account",
    "default" : {
      "qos" : "qos"
    },
    "min" : {
      "priority_threshold" : {
        "number" : 8,
        "set" : true,
        "infinite" : true
      }
    },
    "partition" : "partition",
    "qos" : [ "qos", "qos" ],
    "comment" : "comment",
    "id" : 5,
    "user" : "user",
    "account" : "account"
  } ],
  "qos" : [ {
    "flags" : [ "NOT_SET", "NOT_SET" ],
    "name" : "name",
    "usage_threshold" : {
      "number" : 6.965117697638846,
      "set" : true,
      "infinite" : true
    },
    "description" : "description",
    "usage_factor" : {
      "number" : 3.5571952270680973,
      "set" : true,
      "infinite" : true
    },
    "id" : 4,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "limits" : {
      "min" : {
        "priority_threshold" : {
          "number" : 8,
          "set" : true,
          "infinite" : true
        },
        "tres" : {
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        }
      },
      "max" : {
        "jobs" : {
          "per" : {
            "user" : {
              "number" : 5,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 4,
              "set" : true,
              "infinite" : true
            }
          },
          "active_jobs" : {
            "per" : {
              "user" : {
                "number" : 1,
                "set" : true,
                "infinite" : true
              },
              "account" : {
                "number" : 7,
                "set" : true,
                "infinite" : true
              }
            }
          }
        },
        "accruing" : {
          "per" : {
            "user" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "tres" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "minutes" : {
            "per" : {
              "qos" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "job" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "user" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "account" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ]
            }
          },
          "per" : {
            "node" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "user" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "account" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "wall_clock" : {
          "per" : {
            "qos" : {
              "number" : 1,
              "set" : true,
              "infinite" : true
            },
            "job" : {
              "number" : 6,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "active_jobs" : {
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "factor" : {
        "number" : 6.683562403749608,
        "set" : true,
        "infinite" : true
      },
      "grace_time" : 7
    },
    "preempt" : {
      "mode" : [ "DISABLED", "DISABLED" ],
      "exempt_time" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "list" : [ "list", "list" ]
    }
  }, {
    "flags" : [ "NOT_SET", "NOT_SET" ],
    "name" : "name",
    "usage_threshold" : {
      "number" : 6.965117697638846,
      "set" : true,
      "infinite" : true
    },
    "description" : "description",
    "usage_factor" : {
      "number" : 3.5571952270680973,
      "set" : true,
      "infinite" : true
    },
    "id" : 4,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "limits" : {
      "min" : {
        "priority_threshold" : {
          "number" : 8,
          "set" : true,
          "infinite" : true
        },
        "tres" : {
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        }
      },
      "max" : {
        "jobs" : {
          "per" : {
            "user" : {
              "number" : 5,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 4,
              "set" : true,
              "infinite" : true
            }
          },
          "active_jobs" : {
            "per" : {
              "user" : {
                "number" : 1,
                "set" : true,
                "infinite" : true
              },
              "account" : {
                "number" : 7,
                "set" : true,
                "infinite" : true
              }
            }
          }
        },
        "accruing" : {
          "per" : {
            "user" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "tres" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "minutes" : {
            "per" : {
              "qos" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "job" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "user" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "account" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ]
            }
          },
          "per" : {
            "node" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "user" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "account" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "wall_clock" : {
          "per" : {
            "qos" : {
              "number" : 1,
              "set" : true,
              "infinite" : true
            },
            "job" : {
              "number" : 6,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "active_jobs" : {
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "factor" : {
        "number" : 6.683562403749608,
        "set" : true,
        "infinite" : true
      },
      "grace_time" : 7
    },
    "preempt" : {
      "mode" : [ "DISABLED", "DISABLED" ],
      "exempt_time" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "list" : [ "list", "list" ]
    }
  } ],
  "wckeys" : [ {
    "cluster" : "cluster",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "id" : 2,
    "user" : "user"
  }, {
    "cluster" : "cluster",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "id" : 2,
    "user" : "user"
  } ],
  "instances" : [ {
    "cluster" : "cluster",
    "instance_id" : "instance_id",
    "extra" : "extra",
    "node_name" : "node_name",
    "time" : {
      "time_start" : 7,
      "time_end" : 3
    },
    "instance_type" : "instance_type"
  }, {
    "cluster" : "cluster",
    "instance_id" : "instance_id",
    "extra" : "extra",
    "node_name" : "node_name",
    "time" : {
      "time_start" : 7,
      "time_end" : 3
    },
    "instance_type" : "instance_type"
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "tres" : [ {
    "name" : "name",
    "count" : 7,
    "id" : 3,
    "type" : "type"
  }, {
    "name" : "name",
    "count" : 7,
    "id" : 3,
    "type" : "type"
  } ],
  "accounts" : [ {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "organization" : "organization",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "description" : "description"
  }, {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "organization" : "organization",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "description" : "description"
  } ],
  "clusters" : [ {
    "associations" : {
      "root" : {
        "cluster" : "cluster",
        "partition" : "partition",
        "id" : 6,
        "user" : "user",
        "account" : "account"
      }
    },
    "controller" : {
      "port" : 0,
      "host" : "host"
    },
    "nodes" : "nodes",
    "flags" : [ "REGISTERING", "REGISTERING" ],
    "name" : "name",
    "rpc_version" : 1,
    "tres" : [ {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    }, {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    } ],
    "select_plugin" : "select_plugin"
  }, {
    "associations" : {
      "root" : {
        "cluster" : "cluster",
        "partition" : "partition",
        "id" : 6,
        "user" : "user",
        "account" : "account"
      }
    },
    "controller" : {
      "port" : 0,
      "host" : "host"
    },
    "nodes" : "nodes",
    "flags" : [ "REGISTERING", "REGISTERING" ],
    "name" : "name",
    "rpc_version" : 1,
    "tres" : [ {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    }, {
      "name" : "name",
      "count" : 7,
      "id" : 3,
      "type" : "type"
    } ],
    "select_plugin" : "select_plugin"
  } ],
  "users" : [ {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "default" : {
      "wckey" : "wckey",
      "account" : "account"
    },
    "administrator_level" : [ "Not Set", "Not Set" ],
    "old_name" : "old_name",
    "wckeys" : [ {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    }, {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "flags" : [ "NONE", "NONE" ],
    "name" : "name"
  }, {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "default" : {
      "wckey" : "wckey",
      "account" : "account"
    },
    "administrator_level" : [ "Not Set", "Not Set" ],
    "old_name" : "old_name",
    "wckeys" : [ {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    }, {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "flags" : [ "NONE", "NONE" ],
    "name" : "name"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

slurmdbd configuration v0.0.41_openapi_slurmdbd_config_resp

default

slurmdbd configuration v0.0.41_openapi_slurmdbd_config_resp

Up
get /slurmdb/v0.0.41/diag/
Get slurmdb diagnostics (slurmdbV0041GetDiag)

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ],
  "statistics" : {
    "time_start" : 0,
    "RPCs" : [ {
      "rpc" : "rpc",
      "count" : 7,
      "time" : {
        "average" : 1,
        "total" : 4
      }
    }, {
      "rpc" : "rpc",
      "count" : 7,
      "time" : {
        "average" : 1,
        "total" : 4
      }
    } ],
    "rollups" : {
      "daily" : {
        "duration" : {
          "last" : 3,
          "max" : 2,
          "time" : 4
        },
        "count" : 7,
        "last_run" : 9
      },
      "monthly" : {
        "duration" : {
          "last" : 1,
          "max" : 1,
          "time" : 6
        },
        "count" : 7,
        "last_run" : 1
      },
      "hourly" : {
        "duration" : {
          "last" : 5,
          "max" : 5,
          "time" : 2
        },
        "count" : 6,
        "last_run" : 1
      }
    },
    "users" : [ {
      "count" : 5,
      "time" : {
        "average" : 1,
        "total" : 4
      },
      "user" : "user"
    }, {
      "count" : 5,
      "time" : {
        "average" : 1,
        "total" : 4
      },
      "user" : "user"
    } ]
  }
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Dictionary of statistics v0.0.41_openapi_slurmdbd_stats_resp

default

Dictionary of statistics v0.0.41_openapi_slurmdbd_stats_resp

Up
get /slurmdb/v0.0.41/instance/
Get instance info (slurmdbV0041GetInstance)

Query parameters

cluster (optional)
Query Parameter — CSV clusters list default: null
extra (optional)
Query Parameter — CSV extra list default: null
format (optional)
Query Parameter — CSV format list default: null
instance_id (optional)
Query Parameter — CSV instance_id list default: null
instance_type (optional)
Query Parameter — CSV instance_type list default: null
node_list (optional)
Query Parameter — Ranged node string default: null
time_end (optional)
Query Parameter — Time end (UNIX timestamp) default: null
time_start (optional)
Query Parameter — Time start (UNIX timestamp) default: null

Return type

Example data

Content-Type: application/json
{
  "instances" : [ {
    "cluster" : "cluster",
    "instance_id" : "instance_id",
    "extra" : "extra",
    "node_name" : "node_name",
    "time" : {
      "time_start" : 7,
      "time_end" : 3
    },
    "instance_type" : "instance_type"
  }, {
    "cluster" : "cluster",
    "instance_id" : "instance_id",
    "extra" : "extra",
    "node_name" : "node_name",
    "time" : {
      "time_start" : 7,
      "time_end" : 3
    },
    "instance_type" : "instance_type"
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of instances v0.0.41_openapi_instances_resp

default

List of instances v0.0.41_openapi_instances_resp

Up
get /slurmdb/v0.0.41/instances/
Get instance list (slurmdbV0041GetInstances)

Query parameters

cluster (optional)
Query Parameter — CSV clusters list default: null
extra (optional)
Query Parameter — CSV extra list default: null
format (optional)
Query Parameter — CSV format list default: null
instance_id (optional)
Query Parameter — CSV instance_id list default: null
instance_type (optional)
Query Parameter — CSV instance_type list default: null
node_list (optional)
Query Parameter — Ranged node string default: null
time_end (optional)
Query Parameter — Time end (UNIX timestamp) default: null
time_start (optional)
Query Parameter — Time start (UNIX timestamp) default: null

Return type

Example data

Content-Type: application/json
{
  "instances" : [ {
    "cluster" : "cluster",
    "instance_id" : "instance_id",
    "extra" : "extra",
    "node_name" : "node_name",
    "time" : {
      "time_start" : 7,
      "time_end" : 3
    },
    "instance_type" : "instance_type"
  }, {
    "cluster" : "cluster",
    "instance_id" : "instance_id",
    "extra" : "extra",
    "node_name" : "node_name",
    "time" : {
      "time_start" : 7,
      "time_end" : 3
    },
    "instance_type" : "instance_type"
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of instances v0.0.41_openapi_instances_resp

default

List of instances v0.0.41_openapi_instances_resp

Up
get /slurmdb/v0.0.41/job/{job_id}
Get job info (slurmdbV0041GetJob)
This endpoint may return multiple job entries since job_id is not a unique key - only the tuple (cluster, job_id, start_time) is unique. If the requested job_id is a component of a heterogeneous job all components are returned.

Path parameters

job_id (required)
Path Parameter — Job id default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "jobs" : [ {
    "container" : "container",
    "cluster" : "cluster",
    "stdin_expanded" : "stdin_expanded",
    "stdin" : "stdin",
    "stdout" : "stdout",
    "stderr_expanded" : "stderr_expanded",
    "flags" : [ "NONE", "NONE" ],
    "used_gres" : "used_gres",
    "association" : {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    },
    "allocation_nodes" : 0,
    "working_directory" : "working_directory",
    "constraints" : "constraints",
    "required" : {
      "memory_per_node" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      },
      "CPUs" : 6,
      "memory_per_cpu" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      }
    },
    "stdout_expanded" : "stdout_expanded",
    "hold" : true,
    "partition" : "partition",
    "qos" : "qos",
    "array" : {
      "task" : "task",
      "job_id" : 6,
      "task_id" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      },
      "limits" : {
        "max" : {
          "running" : {
            "tasks" : 1
          }
        }
      }
    },
    "het" : {
      "job_id" : 9,
      "job_offset" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      }
    },
    "submit_line" : "submit_line",
    "extra" : "extra",
    "reservation" : {
      "name" : "name",
      "id" : 1
    },
    "block" : "block",
    "tres" : {
      "requested" : [ {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      }, {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      } ],
      "allocated" : [ {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      }, {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      } ]
    },
    "state" : {
      "reason" : "reason",
      "current" : [ "PENDING", "PENDING" ]
    },
    "mcs" : {
      "label" : "label"
    },
    "group" : "group",
    "wckey" : {
      "wckey" : "wckey",
      "flags" : [ "ASSIGNED_DEFAULT", "ASSIGNED_DEFAULT" ]
    },
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "stderr" : "stderr",
    "steps" : [ {
      "nodes" : {
        "count" : 6,
        "range" : "range",
        "list" : [ "list", "list" ]
      },
      "task" : {
        "distribution" : "distribution"
      },
      "exit_code" : {
        "return_code" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "signal" : {
          "name" : "name",
          "id" : {
            "number" : 7,
            "set" : true,
            "infinite" : true
          }
        },
        "status" : [ "INVALID", "INVALID" ]
      },
      "kill_request_user" : "kill_request_user",
      "CPU" : {
        "governor" : "governor",
        "requested_frequency" : {
          "min" : {
            "number" : 4,
            "set" : true,
            "infinite" : true
          },
          "max" : {
            "number" : 8,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "pid" : "pid",
      "step" : {
        "name" : "name",
        "id" : "id"
      },
      "tres" : {
        "consumed" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "requested" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "allocated" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ]
      },
      "time" : {
        "elapsed" : 2,
        "total" : {
          "seconds" : 3,
          "microseconds" : 7
        },
        "system" : {
          "seconds" : 6,
          "microseconds" : 3
        },
        "start" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "end" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "user" : {
          "seconds" : 0,
          "microseconds" : 7
        },
        "suspended" : 5
      },
      "state" : [ "PENDING", "PENDING" ],
      "tasks" : {
        "count" : 0
      },
      "statistics" : {
        "CPU" : {
          "actual_frequency" : 7
        },
        "energy" : {
          "consumed" : {
            "number" : 3,
            "set" : true,
            "infinite" : true
          }
        }
      }
    }, {
      "nodes" : {
        "count" : 6,
        "range" : "range",
        "list" : [ "list", "list" ]
      },
      "task" : {
        "distribution" : "distribution"
      },
      "exit_code" : {
        "return_code" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "signal" : {
          "name" : "name",
          "id" : {
            "number" : 7,
            "set" : true,
            "infinite" : true
          }
        },
        "status" : [ "INVALID", "INVALID" ]
      },
      "kill_request_user" : "kill_request_user",
      "CPU" : {
        "governor" : "governor",
        "requested_frequency" : {
          "min" : {
            "number" : 4,
            "set" : true,
            "infinite" : true
          },
          "max" : {
            "number" : 8,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "pid" : "pid",
      "step" : {
        "name" : "name",
        "id" : "id"
      },
      "tres" : {
        "consumed" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "requested" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "allocated" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ]
      },
      "time" : {
        "elapsed" : 2,
        "total" : {
          "seconds" : 3,
          "microseconds" : 7
        },
        "system" : {
          "seconds" : 6,
          "microseconds" : 3
        },
        "start" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "end" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "user" : {
          "seconds" : 0,
          "microseconds" : 7
        },
        "suspended" : 5
      },
      "state" : [ "PENDING", "PENDING" ],
      "tasks" : {
        "count" : 0
      },
      "statistics" : {
        "CPU" : {
          "actual_frequency" : 7
        },
        "energy" : {
          "consumed" : {
            "number" : 3,
            "set" : true,
            "infinite" : true
          }
        }
      }
    } ],
    "script" : "script",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "licenses" : "licenses",
    "nodes" : "nodes",
    "job_id" : 8,
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "name" : "name",
    "kill_request_user" : "kill_request_user",
    "comment" : {
      "administrator" : "administrator",
      "system" : "system",
      "job" : "job"
    },
    "time" : {
      "elapsed" : 9,
      "total" : {
        "seconds" : 1,
        "microseconds" : 4
      },
      "system" : {
        "seconds" : 1,
        "microseconds" : 6
      },
      "eligible" : 3,
      "start" : 7,
      "limit" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "end" : 2,
      "submission" : 1,
      "planned" : {
        "number" : 4,
        "set" : true,
        "infinite" : true
      },
      "user" : {
        "seconds" : 5,
        "microseconds" : 9
      },
      "suspended" : 1
    },
    "user" : "user",
    "account" : "account"
  }, {
    "container" : "container",
    "cluster" : "cluster",
    "stdin_expanded" : "stdin_expanded",
    "stdin" : "stdin",
    "stdout" : "stdout",
    "stderr_expanded" : "stderr_expanded",
    "flags" : [ "NONE", "NONE" ],
    "used_gres" : "used_gres",
    "association" : {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    },
    "allocation_nodes" : 0,
    "working_directory" : "working_directory",
    "constraints" : "constraints",
    "required" : {
      "memory_per_node" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      },
      "CPUs" : 6,
      "memory_per_cpu" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      }
    },
    "stdout_expanded" : "stdout_expanded",
    "hold" : true,
    "partition" : "partition",
    "qos" : "qos",
    "array" : {
      "task" : "task",
      "job_id" : 6,
      "task_id" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      },
      "limits" : {
        "max" : {
          "running" : {
            "tasks" : 1
          }
        }
      }
    },
    "het" : {
      "job_id" : 9,
      "job_offset" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      }
    },
    "submit_line" : "submit_line",
    "extra" : "extra",
    "reservation" : {
      "name" : "name",
      "id" : 1
    },
    "block" : "block",
    "tres" : {
      "requested" : [ {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      }, {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      } ],
      "allocated" : [ {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      }, {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      } ]
    },
    "state" : {
      "reason" : "reason",
      "current" : [ "PENDING", "PENDING" ]
    },
    "mcs" : {
      "label" : "label"
    },
    "group" : "group",
    "wckey" : {
      "wckey" : "wckey",
      "flags" : [ "ASSIGNED_DEFAULT", "ASSIGNED_DEFAULT" ]
    },
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "stderr" : "stderr",
    "steps" : [ {
      "nodes" : {
        "count" : 6,
        "range" : "range",
        "list" : [ "list", "list" ]
      },
      "task" : {
        "distribution" : "distribution"
      },
      "exit_code" : {
        "return_code" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "signal" : {
          "name" : "name",
          "id" : {
            "number" : 7,
            "set" : true,
            "infinite" : true
          }
        },
        "status" : [ "INVALID", "INVALID" ]
      },
      "kill_request_user" : "kill_request_user",
      "CPU" : {
        "governor" : "governor",
        "requested_frequency" : {
          "min" : {
            "number" : 4,
            "set" : true,
            "infinite" : true
          },
          "max" : {
            "number" : 8,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "pid" : "pid",
      "step" : {
        "name" : "name",
        "id" : "id"
      },
      "tres" : {
        "consumed" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "requested" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "allocated" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ]
      },
      "time" : {
        "elapsed" : 2,
        "total" : {
          "seconds" : 3,
          "microseconds" : 7
        },
        "system" : {
          "seconds" : 6,
          "microseconds" : 3
        },
        "start" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "end" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "user" : {
          "seconds" : 0,
          "microseconds" : 7
        },
        "suspended" : 5
      },
      "state" : [ "PENDING", "PENDING" ],
      "tasks" : {
        "count" : 0
      },
      "statistics" : {
        "CPU" : {
          "actual_frequency" : 7
        },
        "energy" : {
          "consumed" : {
            "number" : 3,
            "set" : true,
            "infinite" : true
          }
        }
      }
    }, {
      "nodes" : {
        "count" : 6,
        "range" : "range",
        "list" : [ "list", "list" ]
      },
      "task" : {
        "distribution" : "distribution"
      },
      "exit_code" : {
        "return_code" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "signal" : {
          "name" : "name",
          "id" : {
            "number" : 7,
            "set" : true,
            "infinite" : true
          }
        },
        "status" : [ "INVALID", "INVALID" ]
      },
      "kill_request_user" : "kill_request_user",
      "CPU" : {
        "governor" : "governor",
        "requested_frequency" : {
          "min" : {
            "number" : 4,
            "set" : true,
            "infinite" : true
          },
          "max" : {
            "number" : 8,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "pid" : "pid",
      "step" : {
        "name" : "name",
        "id" : "id"
      },
      "tres" : {
        "consumed" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "requested" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "allocated" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ]
      },
      "time" : {
        "elapsed" : 2,
        "total" : {
          "seconds" : 3,
          "microseconds" : 7
        },
        "system" : {
          "seconds" : 6,
          "microseconds" : 3
        },
        "start" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "end" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "user" : {
          "seconds" : 0,
          "microseconds" : 7
        },
        "suspended" : 5
      },
      "state" : [ "PENDING", "PENDING" ],
      "tasks" : {
        "count" : 0
      },
      "statistics" : {
        "CPU" : {
          "actual_frequency" : 7
        },
        "energy" : {
          "consumed" : {
            "number" : 3,
            "set" : true,
            "infinite" : true
          }
        }
      }
    } ],
    "script" : "script",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "licenses" : "licenses",
    "nodes" : "nodes",
    "job_id" : 8,
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "name" : "name",
    "kill_request_user" : "kill_request_user",
    "comment" : {
      "administrator" : "administrator",
      "system" : "system",
      "job" : "job"
    },
    "time" : {
      "elapsed" : 9,
      "total" : {
        "seconds" : 1,
        "microseconds" : 4
      },
      "system" : {
        "seconds" : 1,
        "microseconds" : 6
      },
      "eligible" : 3,
      "start" : 7,
      "limit" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "end" : 2,
      "submission" : 1,
      "planned" : {
        "number" : 4,
        "set" : true,
        "infinite" : true
      },
      "user" : {
        "seconds" : 5,
        "microseconds" : 9
      },
      "suspended" : 1
    },
    "user" : "user",
    "account" : "account"
  } ],
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Job description v0.0.41_openapi_slurmdbd_jobs_resp

default

Job description v0.0.41_openapi_slurmdbd_jobs_resp

Up
get /slurmdb/v0.0.41/jobs/
Get job list (slurmdbV0041GetJobs)

Query parameters

account (optional)
Query Parameter — CSV account list default: null
association (optional)
Query Parameter — CSV association list default: null
cluster (optional)
Query Parameter — CSV cluster list default: null
constraints (optional)
Query Parameter — CSV constraint list default: null
scheduler_unset (optional)
Query Parameter — Schedule bits not set default: null
scheduled_on_submit (optional)
Query Parameter — Job was started on submit default: null
scheduled_by_main (optional)
Query Parameter — Job was started from main scheduler default: null
scheduled_by_backfill (optional)
Query Parameter — Job was started from backfill default: null
job_started (optional)
Query Parameter — Job start RPC was received default: null
exit_code (optional)
Query Parameter — Job exit code (numeric) default: null
show_duplicates (optional)
Query Parameter — Include duplicate job entries default: null
skip_steps (optional)
Query Parameter — Exclude job step details default: null
disable_truncate_usage_time (optional)
Query Parameter — Do not truncate the time to usage_start and usage_end default: null
whole_hetjob (optional)
Query Parameter — Include details on all hetjob components default: null
disable_whole_hetjob (optional)
Query Parameter — Only show details on specified hetjob components default: null
disable_wait_for_result (optional)
Query Parameter — Tell dbd not to wait for the result default: null
usage_time_as_submit_time (optional)
Query Parameter — Use usage_time as the submit_time of the job default: null
show_batch_script (optional)
Query Parameter — Include job script default: null
show_job_environment (optional)
Query Parameter — Include job environment default: null
format (optional)
Query Parameter — CSV format list default: null
groups (optional)
Query Parameter — CSV group list default: null
job_name (optional)
Query Parameter — CSV job name list default: null
partition (optional)
Query Parameter — CSV partition name list default: null
qos (optional)
Query Parameter — CSV QOS name list default: null
reason (optional)
Query Parameter — CSV reason list default: null
reservation (optional)
Query Parameter — CSV reservation name list default: null
reservation_id (optional)
Query Parameter — CSV reservation ID list default: null
state (optional)
Query Parameter — CSV state list default: null
step (optional)
Query Parameter — CSV step id list default: null
end_time (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
start_time (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
node (optional)
Query Parameter — Ranged node string where jobs ran default: null
users (optional)
Query Parameter — CSV user name list default: null
wckey (optional)
Query Parameter — CSV wckey list default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "jobs" : [ {
    "container" : "container",
    "cluster" : "cluster",
    "stdin_expanded" : "stdin_expanded",
    "stdin" : "stdin",
    "stdout" : "stdout",
    "stderr_expanded" : "stderr_expanded",
    "flags" : [ "NONE", "NONE" ],
    "used_gres" : "used_gres",
    "association" : {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    },
    "allocation_nodes" : 0,
    "working_directory" : "working_directory",
    "constraints" : "constraints",
    "required" : {
      "memory_per_node" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      },
      "CPUs" : 6,
      "memory_per_cpu" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      }
    },
    "stdout_expanded" : "stdout_expanded",
    "hold" : true,
    "partition" : "partition",
    "qos" : "qos",
    "array" : {
      "task" : "task",
      "job_id" : 6,
      "task_id" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      },
      "limits" : {
        "max" : {
          "running" : {
            "tasks" : 1
          }
        }
      }
    },
    "het" : {
      "job_id" : 9,
      "job_offset" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      }
    },
    "submit_line" : "submit_line",
    "extra" : "extra",
    "reservation" : {
      "name" : "name",
      "id" : 1
    },
    "block" : "block",
    "tres" : {
      "requested" : [ {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      }, {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      } ],
      "allocated" : [ {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      }, {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      } ]
    },
    "state" : {
      "reason" : "reason",
      "current" : [ "PENDING", "PENDING" ]
    },
    "mcs" : {
      "label" : "label"
    },
    "group" : "group",
    "wckey" : {
      "wckey" : "wckey",
      "flags" : [ "ASSIGNED_DEFAULT", "ASSIGNED_DEFAULT" ]
    },
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "stderr" : "stderr",
    "steps" : [ {
      "nodes" : {
        "count" : 6,
        "range" : "range",
        "list" : [ "list", "list" ]
      },
      "task" : {
        "distribution" : "distribution"
      },
      "exit_code" : {
        "return_code" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "signal" : {
          "name" : "name",
          "id" : {
            "number" : 7,
            "set" : true,
            "infinite" : true
          }
        },
        "status" : [ "INVALID", "INVALID" ]
      },
      "kill_request_user" : "kill_request_user",
      "CPU" : {
        "governor" : "governor",
        "requested_frequency" : {
          "min" : {
            "number" : 4,
            "set" : true,
            "infinite" : true
          },
          "max" : {
            "number" : 8,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "pid" : "pid",
      "step" : {
        "name" : "name",
        "id" : "id"
      },
      "tres" : {
        "consumed" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "requested" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "allocated" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ]
      },
      "time" : {
        "elapsed" : 2,
        "total" : {
          "seconds" : 3,
          "microseconds" : 7
        },
        "system" : {
          "seconds" : 6,
          "microseconds" : 3
        },
        "start" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "end" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "user" : {
          "seconds" : 0,
          "microseconds" : 7
        },
        "suspended" : 5
      },
      "state" : [ "PENDING", "PENDING" ],
      "tasks" : {
        "count" : 0
      },
      "statistics" : {
        "CPU" : {
          "actual_frequency" : 7
        },
        "energy" : {
          "consumed" : {
            "number" : 3,
            "set" : true,
            "infinite" : true
          }
        }
      }
    }, {
      "nodes" : {
        "count" : 6,
        "range" : "range",
        "list" : [ "list", "list" ]
      },
      "task" : {
        "distribution" : "distribution"
      },
      "exit_code" : {
        "return_code" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "signal" : {
          "name" : "name",
          "id" : {
            "number" : 7,
            "set" : true,
            "infinite" : true
          }
        },
        "status" : [ "INVALID", "INVALID" ]
      },
      "kill_request_user" : "kill_request_user",
      "CPU" : {
        "governor" : "governor",
        "requested_frequency" : {
          "min" : {
            "number" : 4,
            "set" : true,
            "infinite" : true
          },
          "max" : {
            "number" : 8,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "pid" : "pid",
      "step" : {
        "name" : "name",
        "id" : "id"
      },
      "tres" : {
        "consumed" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "requested" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "allocated" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ]
      },
      "time" : {
        "elapsed" : 2,
        "total" : {
          "seconds" : 3,
          "microseconds" : 7
        },
        "system" : {
          "seconds" : 6,
          "microseconds" : 3
        },
        "start" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "end" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "user" : {
          "seconds" : 0,
          "microseconds" : 7
        },
        "suspended" : 5
      },
      "state" : [ "PENDING", "PENDING" ],
      "tasks" : {
        "count" : 0
      },
      "statistics" : {
        "CPU" : {
          "actual_frequency" : 7
        },
        "energy" : {
          "consumed" : {
            "number" : 3,
            "set" : true,
            "infinite" : true
          }
        }
      }
    } ],
    "script" : "script",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "licenses" : "licenses",
    "nodes" : "nodes",
    "job_id" : 8,
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "name" : "name",
    "kill_request_user" : "kill_request_user",
    "comment" : {
      "administrator" : "administrator",
      "system" : "system",
      "job" : "job"
    },
    "time" : {
      "elapsed" : 9,
      "total" : {
        "seconds" : 1,
        "microseconds" : 4
      },
      "system" : {
        "seconds" : 1,
        "microseconds" : 6
      },
      "eligible" : 3,
      "start" : 7,
      "limit" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "end" : 2,
      "submission" : 1,
      "planned" : {
        "number" : 4,
        "set" : true,
        "infinite" : true
      },
      "user" : {
        "seconds" : 5,
        "microseconds" : 9
      },
      "suspended" : 1
    },
    "user" : "user",
    "account" : "account"
  }, {
    "container" : "container",
    "cluster" : "cluster",
    "stdin_expanded" : "stdin_expanded",
    "stdin" : "stdin",
    "stdout" : "stdout",
    "stderr_expanded" : "stderr_expanded",
    "flags" : [ "NONE", "NONE" ],
    "used_gres" : "used_gres",
    "association" : {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    },
    "allocation_nodes" : 0,
    "working_directory" : "working_directory",
    "constraints" : "constraints",
    "required" : {
      "memory_per_node" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      },
      "CPUs" : 6,
      "memory_per_cpu" : {
        "number" : 3,
        "set" : true,
        "infinite" : true
      }
    },
    "stdout_expanded" : "stdout_expanded",
    "hold" : true,
    "partition" : "partition",
    "qos" : "qos",
    "array" : {
      "task" : "task",
      "job_id" : 6,
      "task_id" : {
        "number" : 5,
        "set" : true,
        "infinite" : true
      },
      "limits" : {
        "max" : {
          "running" : {
            "tasks" : 1
          }
        }
      }
    },
    "het" : {
      "job_id" : 9,
      "job_offset" : {
        "number" : 6,
        "set" : true,
        "infinite" : true
      }
    },
    "submit_line" : "submit_line",
    "extra" : "extra",
    "reservation" : {
      "name" : "name",
      "id" : 1
    },
    "block" : "block",
    "tres" : {
      "requested" : [ {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      }, {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      } ],
      "allocated" : [ {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      }, {
        "name" : "name",
        "count" : 7,
        "id" : 3,
        "type" : "type"
      } ]
    },
    "state" : {
      "reason" : "reason",
      "current" : [ "PENDING", "PENDING" ]
    },
    "mcs" : {
      "label" : "label"
    },
    "group" : "group",
    "wckey" : {
      "wckey" : "wckey",
      "flags" : [ "ASSIGNED_DEFAULT", "ASSIGNED_DEFAULT" ]
    },
    "priority" : {
      "number" : 9,
      "set" : true,
      "infinite" : true
    },
    "stderr" : "stderr",
    "steps" : [ {
      "nodes" : {
        "count" : 6,
        "range" : "range",
        "list" : [ "list", "list" ]
      },
      "task" : {
        "distribution" : "distribution"
      },
      "exit_code" : {
        "return_code" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "signal" : {
          "name" : "name",
          "id" : {
            "number" : 7,
            "set" : true,
            "infinite" : true
          }
        },
        "status" : [ "INVALID", "INVALID" ]
      },
      "kill_request_user" : "kill_request_user",
      "CPU" : {
        "governor" : "governor",
        "requested_frequency" : {
          "min" : {
            "number" : 4,
            "set" : true,
            "infinite" : true
          },
          "max" : {
            "number" : 8,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "pid" : "pid",
      "step" : {
        "name" : "name",
        "id" : "id"
      },
      "tres" : {
        "consumed" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "requested" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "allocated" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ]
      },
      "time" : {
        "elapsed" : 2,
        "total" : {
          "seconds" : 3,
          "microseconds" : 7
        },
        "system" : {
          "seconds" : 6,
          "microseconds" : 3
        },
        "start" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "end" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "user" : {
          "seconds" : 0,
          "microseconds" : 7
        },
        "suspended" : 5
      },
      "state" : [ "PENDING", "PENDING" ],
      "tasks" : {
        "count" : 0
      },
      "statistics" : {
        "CPU" : {
          "actual_frequency" : 7
        },
        "energy" : {
          "consumed" : {
            "number" : 3,
            "set" : true,
            "infinite" : true
          }
        }
      }
    }, {
      "nodes" : {
        "count" : 6,
        "range" : "range",
        "list" : [ "list", "list" ]
      },
      "task" : {
        "distribution" : "distribution"
      },
      "exit_code" : {
        "return_code" : {
          "number" : 2,
          "set" : true,
          "infinite" : true
        },
        "signal" : {
          "name" : "name",
          "id" : {
            "number" : 7,
            "set" : true,
            "infinite" : true
          }
        },
        "status" : [ "INVALID", "INVALID" ]
      },
      "kill_request_user" : "kill_request_user",
      "CPU" : {
        "governor" : "governor",
        "requested_frequency" : {
          "min" : {
            "number" : 4,
            "set" : true,
            "infinite" : true
          },
          "max" : {
            "number" : 8,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "pid" : "pid",
      "step" : {
        "name" : "name",
        "id" : "id"
      },
      "tres" : {
        "consumed" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "requested" : {
          "average" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "min" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "max" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ]
        },
        "allocated" : [ {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        }, {
          "name" : "name",
          "count" : 7,
          "id" : 3,
          "type" : "type"
        } ]
      },
      "time" : {
        "elapsed" : 2,
        "total" : {
          "seconds" : 3,
          "microseconds" : 7
        },
        "system" : {
          "seconds" : 6,
          "microseconds" : 3
        },
        "start" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "end" : {
          "number" : 6,
          "set" : true,
          "infinite" : true
        },
        "user" : {
          "seconds" : 0,
          "microseconds" : 7
        },
        "suspended" : 5
      },
      "state" : [ "PENDING", "PENDING" ],
      "tasks" : {
        "count" : 0
      },
      "statistics" : {
        "CPU" : {
          "actual_frequency" : 7
        },
        "energy" : {
          "consumed" : {
            "number" : 3,
            "set" : true,
            "infinite" : true
          }
        }
      }
    } ],
    "script" : "script",
    "failed_node" : "failed_node",
    "derived_exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "licenses" : "licenses",
    "nodes" : "nodes",
    "job_id" : 8,
    "exit_code" : {
      "return_code" : {
        "number" : 2,
        "set" : true,
        "infinite" : true
      },
      "signal" : {
        "name" : "name",
        "id" : {
          "number" : 7,
          "set" : true,
          "infinite" : true
        }
      },
      "status" : [ "INVALID", "INVALID" ]
    },
    "name" : "name",
    "kill_request_user" : "kill_request_user",
    "comment" : {
      "administrator" : "administrator",
      "system" : "system",
      "job" : "job"
    },
    "time" : {
      "elapsed" : 9,
      "total" : {
        "seconds" : 1,
        "microseconds" : 4
      },
      "system" : {
        "seconds" : 1,
        "microseconds" : 6
      },
      "eligible" : 3,
      "start" : 7,
      "limit" : {
        "number" : 7,
        "set" : true,
        "infinite" : true
      },
      "end" : 2,
      "submission" : 1,
      "planned" : {
        "number" : 4,
        "set" : true,
        "infinite" : true
      },
      "user" : {
        "seconds" : 5,
        "microseconds" : 9
      },
      "suspended" : 1
    },
    "user" : "user",
    "account" : "account"
  } ],
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of jobs v0.0.41_openapi_slurmdbd_jobs_resp

default

List of jobs v0.0.41_openapi_slurmdbd_jobs_resp

Up
get /slurmdb/v0.0.41/qos/
Get QOS list (slurmdbV0041GetQos)

Query parameters

description (optional)
Query Parameter — CSV description list default: null
id (optional)
Query Parameter — CSV QOS id list default: null
format (optional)
Query Parameter — CSV format list default: null
name (optional)
Query Parameter — CSV QOS name list default: null
preempt_mode (optional)
Query Parameter — PreemptMode used when jobs in this QOS are preempted default: null
with_deleted (optional)
Query Parameter — Include deleted QOS default: null

Return type

Example data

Content-Type: application/json
{
  "qos" : [ {
    "flags" : [ "NOT_SET", "NOT_SET" ],
    "name" : "name",
    "usage_threshold" : {
      "number" : 6.965117697638846,
      "set" : true,
      "infinite" : true
    },
    "description" : "description",
    "usage_factor" : {
      "number" : 3.5571952270680973,
      "set" : true,
      "infinite" : true
    },
    "id" : 4,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "limits" : {
      "min" : {
        "priority_threshold" : {
          "number" : 8,
          "set" : true,
          "infinite" : true
        },
        "tres" : {
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        }
      },
      "max" : {
        "jobs" : {
          "per" : {
            "user" : {
              "number" : 5,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 4,
              "set" : true,
              "infinite" : true
            }
          },
          "active_jobs" : {
            "per" : {
              "user" : {
                "number" : 1,
                "set" : true,
                "infinite" : true
              },
              "account" : {
                "number" : 7,
                "set" : true,
                "infinite" : true
              }
            }
          }
        },
        "accruing" : {
          "per" : {
            "user" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "tres" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "minutes" : {
            "per" : {
              "qos" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "job" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "user" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "account" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ]
            }
          },
          "per" : {
            "node" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "user" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "account" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "wall_clock" : {
          "per" : {
            "qos" : {
              "number" : 1,
              "set" : true,
              "infinite" : true
            },
            "job" : {
              "number" : 6,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "active_jobs" : {
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "factor" : {
        "number" : 6.683562403749608,
        "set" : true,
        "infinite" : true
      },
      "grace_time" : 7
    },
    "preempt" : {
      "mode" : [ "DISABLED", "DISABLED" ],
      "exempt_time" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "list" : [ "list", "list" ]
    }
  }, {
    "flags" : [ "NOT_SET", "NOT_SET" ],
    "name" : "name",
    "usage_threshold" : {
      "number" : 6.965117697638846,
      "set" : true,
      "infinite" : true
    },
    "description" : "description",
    "usage_factor" : {
      "number" : 3.5571952270680973,
      "set" : true,
      "infinite" : true
    },
    "id" : 4,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "limits" : {
      "min" : {
        "priority_threshold" : {
          "number" : 8,
          "set" : true,
          "infinite" : true
        },
        "tres" : {
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        }
      },
      "max" : {
        "jobs" : {
          "per" : {
            "user" : {
              "number" : 5,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 4,
              "set" : true,
              "infinite" : true
            }
          },
          "active_jobs" : {
            "per" : {
              "user" : {
                "number" : 1,
                "set" : true,
                "infinite" : true
              },
              "account" : {
                "number" : 7,
                "set" : true,
                "infinite" : true
              }
            }
          }
        },
        "accruing" : {
          "per" : {
            "user" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "tres" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "minutes" : {
            "per" : {
              "qos" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "job" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "user" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "account" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ]
            }
          },
          "per" : {
            "node" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "user" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "account" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "wall_clock" : {
          "per" : {
            "qos" : {
              "number" : 1,
              "set" : true,
              "infinite" : true
            },
            "job" : {
              "number" : 6,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "active_jobs" : {
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "factor" : {
        "number" : 6.683562403749608,
        "set" : true,
        "infinite" : true
      },
      "grace_time" : 7
    },
    "preempt" : {
      "mode" : [ "DISABLED", "DISABLED" ],
      "exempt_time" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "list" : [ "list", "list" ]
    }
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of QOS v0.0.41_openapi_slurmdbd_qos_resp

default

List of QOS v0.0.41_openapi_slurmdbd_qos_resp

Up
get /slurmdb/v0.0.41/qos/{qos}
Get QOS info (slurmdbV0041GetSingleQos)

Path parameters

qos (required)
Path Parameter — QOS name default: null

Query parameters

with_deleted (optional)
Query Parameter — Query includes deleted QOS default: null

Return type

Example data

Content-Type: application/json
{
  "qos" : [ {
    "flags" : [ "NOT_SET", "NOT_SET" ],
    "name" : "name",
    "usage_threshold" : {
      "number" : 6.965117697638846,
      "set" : true,
      "infinite" : true
    },
    "description" : "description",
    "usage_factor" : {
      "number" : 3.5571952270680973,
      "set" : true,
      "infinite" : true
    },
    "id" : 4,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "limits" : {
      "min" : {
        "priority_threshold" : {
          "number" : 8,
          "set" : true,
          "infinite" : true
        },
        "tres" : {
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        }
      },
      "max" : {
        "jobs" : {
          "per" : {
            "user" : {
              "number" : 5,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 4,
              "set" : true,
              "infinite" : true
            }
          },
          "active_jobs" : {
            "per" : {
              "user" : {
                "number" : 1,
                "set" : true,
                "infinite" : true
              },
              "account" : {
                "number" : 7,
                "set" : true,
                "infinite" : true
              }
            }
          }
        },
        "accruing" : {
          "per" : {
            "user" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "tres" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "minutes" : {
            "per" : {
              "qos" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "job" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "user" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "account" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ]
            }
          },
          "per" : {
            "node" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "user" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "account" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "wall_clock" : {
          "per" : {
            "qos" : {
              "number" : 1,
              "set" : true,
              "infinite" : true
            },
            "job" : {
              "number" : 6,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "active_jobs" : {
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "factor" : {
        "number" : 6.683562403749608,
        "set" : true,
        "infinite" : true
      },
      "grace_time" : 7
    },
    "preempt" : {
      "mode" : [ "DISABLED", "DISABLED" ],
      "exempt_time" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "list" : [ "list", "list" ]
    }
  }, {
    "flags" : [ "NOT_SET", "NOT_SET" ],
    "name" : "name",
    "usage_threshold" : {
      "number" : 6.965117697638846,
      "set" : true,
      "infinite" : true
    },
    "description" : "description",
    "usage_factor" : {
      "number" : 3.5571952270680973,
      "set" : true,
      "infinite" : true
    },
    "id" : 4,
    "priority" : {
      "number" : 6,
      "set" : true,
      "infinite" : true
    },
    "limits" : {
      "min" : {
        "priority_threshold" : {
          "number" : 8,
          "set" : true,
          "infinite" : true
        },
        "tres" : {
          "per" : {
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        }
      },
      "max" : {
        "jobs" : {
          "per" : {
            "user" : {
              "number" : 5,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 4,
              "set" : true,
              "infinite" : true
            }
          },
          "active_jobs" : {
            "per" : {
              "user" : {
                "number" : 1,
                "set" : true,
                "infinite" : true
              },
              "account" : {
                "number" : 7,
                "set" : true,
                "infinite" : true
              }
            }
          }
        },
        "accruing" : {
          "per" : {
            "user" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            },
            "account" : {
              "number" : 9,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "tres" : {
          "total" : [ {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          }, {
            "name" : "name",
            "count" : 7,
            "id" : 3,
            "type" : "type"
          } ],
          "minutes" : {
            "per" : {
              "qos" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "job" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "user" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ],
              "account" : [ {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              }, {
                "name" : "name",
                "count" : 7,
                "id" : 3,
                "type" : "type"
              } ]
            }
          },
          "per" : {
            "node" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "job" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "user" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ],
            "account" : [ {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            }, {
              "name" : "name",
              "count" : 7,
              "id" : 3,
              "type" : "type"
            } ]
          }
        },
        "wall_clock" : {
          "per" : {
            "qos" : {
              "number" : 1,
              "set" : true,
              "infinite" : true
            },
            "job" : {
              "number" : 6,
              "set" : true,
              "infinite" : true
            }
          }
        },
        "active_jobs" : {
          "count" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          },
          "accruing" : {
            "number" : 1,
            "set" : true,
            "infinite" : true
          }
        }
      },
      "factor" : {
        "number" : 6.683562403749608,
        "set" : true,
        "infinite" : true
      },
      "grace_time" : 7
    },
    "preempt" : {
      "mode" : [ "DISABLED", "DISABLED" ],
      "exempt_time" : {
        "number" : 9,
        "set" : true,
        "infinite" : true
      },
      "list" : [ "list", "list" ]
    }
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

QOS information v0.0.41_openapi_slurmdbd_qos_resp

default

QOS information v0.0.41_openapi_slurmdbd_qos_resp

Up
get /slurmdb/v0.0.41/tres/
Get TRES info (slurmdbV0041GetTres)

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "TRES" : [ {
    "name" : "name",
    "count" : 7,
    "id" : 3,
    "type" : "type"
  }, {
    "name" : "name",
    "count" : 7,
    "id" : 3,
    "type" : "type"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of TRES v0.0.41_openapi_tres_resp

default

List of TRES v0.0.41_openapi_tres_resp

Up
get /slurmdb/v0.0.41/user/{name}
Get user info (slurmdbV0041GetUser)

Path parameters

name (required)
Path Parameter — User name default: null

Query parameters

with_deleted (optional)
Query Parameter — Include deleted users default: null
with_assocs (optional)
Query Parameter — Include associations default: null
with_coords (optional)
Query Parameter — Include coordinators default: null
with_wckeys (optional)
Query Parameter — Include wckeys default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "users" : [ {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "default" : {
      "wckey" : "wckey",
      "account" : "account"
    },
    "administrator_level" : [ "Not Set", "Not Set" ],
    "old_name" : "old_name",
    "wckeys" : [ {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    }, {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "flags" : [ "NONE", "NONE" ],
    "name" : "name"
  }, {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "default" : {
      "wckey" : "wckey",
      "account" : "account"
    },
    "administrator_level" : [ "Not Set", "Not Set" ],
    "old_name" : "old_name",
    "wckeys" : [ {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    }, {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "flags" : [ "NONE", "NONE" ],
    "name" : "name"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of users v0.0.41_openapi_users_resp

default

List of users v0.0.41_openapi_users_resp

Up
get /slurmdb/v0.0.41/users/
Get user list (slurmdbV0041GetUsers)

Query parameters

admin_level (optional)
Query Parameter — Administrator level default: null
default_account (optional)
Query Parameter — CSV default account list default: null
default_wckey (optional)
Query Parameter — CSV default wckey list default: null
with_assocs (optional)
Query Parameter — With associations default: null
with_coords (optional)
Query Parameter — With coordinators default: null
with_deleted (optional)
Query Parameter — With deleted default: null
with_wckeys (optional)
Query Parameter — With wckeys default: null
without_defaults (optional)
Query Parameter — Exclude defaults default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "users" : [ {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "default" : {
      "wckey" : "wckey",
      "account" : "account"
    },
    "administrator_level" : [ "Not Set", "Not Set" ],
    "old_name" : "old_name",
    "wckeys" : [ {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    }, {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "flags" : [ "NONE", "NONE" ],
    "name" : "name"
  }, {
    "associations" : [ {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    }, {
      "cluster" : "cluster",
      "partition" : "partition",
      "id" : 5,
      "user" : "user",
      "account" : "account"
    } ],
    "default" : {
      "wckey" : "wckey",
      "account" : "account"
    },
    "administrator_level" : [ "Not Set", "Not Set" ],
    "old_name" : "old_name",
    "wckeys" : [ {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    }, {
      "cluster" : "cluster",
      "name" : "name",
      "flags" : [ "DELETED", "DELETED" ],
      "accounting" : [ {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      }, {
        "start" : 7,
        "id" : 2,
        "TRES" : {
          "name" : "name",
          "count" : 3,
          "id" : 9,
          "type" : "type"
        },
        "allocated" : {
          "seconds" : 5
        }
      } ],
      "id" : 2,
      "user" : "user"
    } ],
    "coordinators" : [ {
      "name" : "name",
      "direct" : true
    }, {
      "name" : "name",
      "direct" : true
    } ],
    "flags" : [ "NONE", "NONE" ],
    "name" : "name"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of users v0.0.41_openapi_users_resp

default

List of users v0.0.41_openapi_users_resp

Up
get /slurmdb/v0.0.41/wckey/{id}
Get wckey info (slurmdbV0041GetWckey)

Path parameters

id (required)
Path Parameter — wckey id default: null

Return type

Example data

Content-Type: application/json
{
  "wckeys" : [ {
    "cluster" : "cluster",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "id" : 2,
    "user" : "user"
  }, {
    "cluster" : "cluster",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "id" : 2,
    "user" : "user"
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Description of wckey v0.0.41_openapi_wckey_resp

default

Description of wckey v0.0.41_openapi_wckey_resp

Up
get /slurmdb/v0.0.41/wckeys/
Get wckey list (slurmdbV0041GetWckeys)

Query parameters

cluster (optional)
Query Parameter — CSV cluster name list default: null
format (optional)
Query Parameter — CSV format name list default: null
id (optional)
Query Parameter — CSV id list default: null
name (optional)
Query Parameter — CSV name list default: null
only_defaults (optional)
Query Parameter — Only query defaults default: null
usage_end (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
usage_start (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
user (optional)
Query Parameter — CSV user list default: null
with_usage (optional)
Query Parameter — Include usage default: null
with_deleted (optional)
Query Parameter — Include deleted wckeys default: null

Return type

Example data

Content-Type: application/json
{
  "wckeys" : [ {
    "cluster" : "cluster",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "id" : 2,
    "user" : "user"
  }, {
    "cluster" : "cluster",
    "name" : "name",
    "flags" : [ "DELETED", "DELETED" ],
    "accounting" : [ {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    }, {
      "start" : 7,
      "id" : 2,
      "TRES" : {
        "name" : "name",
        "count" : 3,
        "id" : 9,
        "type" : "type"
      },
      "allocated" : {
        "seconds" : 5
      }
    } ],
    "id" : 2,
    "user" : "user"
  } ],
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

List of wckeys v0.0.41_openapi_wckey_resp

default

List of wckeys v0.0.41_openapi_wckey_resp

Up
post /slurmdb/v0.0.41/accounts/
Add/update list of accounts (slurmdbV0041PostAccounts)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_accounts_resp v0.0.41_openapi_accounts_resp (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Status of account update request v0.0.41_openapi_resp

default

Status of account update request v0.0.41_openapi_resp

Up
post /slurmdb/v0.0.41/accounts_association/
Add accounts with conditional association (slurmdbV0041PostAccountsAssociation)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_accounts_add_cond_resp v0.0.41_openapi_accounts_add_cond_resp (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ],
  "added_accounts" : "added_accounts"
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Status of account addition request v0.0.41_openapi_accounts_add_cond_resp_str

default

Status of account addition request v0.0.41_openapi_accounts_add_cond_resp_str

Up
post /slurmdb/v0.0.41/associations/
Set associations info (slurmdbV0041PostAssociations)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_assocs_resp v0.0.41_openapi_assocs_resp (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

status of associations update v0.0.41_openapi_resp

default

status of associations update v0.0.41_openapi_resp

Up
post /slurmdb/v0.0.41/clusters/
Get cluster list (slurmdbV0041PostClusters)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_clusters_resp v0.0.41_openapi_clusters_resp (optional)
Body Parameter

Query parameters

update_time (optional)
Query Parameter — Filter reservations since update timestamp default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Result of modify clusters request v0.0.41_openapi_resp

default

Result of modify clusters request v0.0.41_openapi_resp

Up
post /slurmdb/v0.0.41/config
Load all configuration information (slurmdbV0041PostConfig)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_slurmdbd_config_resp v0.0.41_openapi_slurmdbd_config_resp (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

slurmdbd configuration v0.0.41_openapi_resp

default

slurmdbd configuration v0.0.41_openapi_resp

Up
post /slurmdb/v0.0.41/qos/
Add or update QOSs (slurmdbV0041PostQos)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_slurmdbd_qos_resp v0.0.41_openapi_slurmdbd_qos_resp (optional)
Body Parameter

Query parameters

description (optional)
Query Parameter — CSV description list default: null
id (optional)
Query Parameter — CSV QOS id list default: null
format (optional)
Query Parameter — CSV format list default: null
name (optional)
Query Parameter — CSV QOS name list default: null
preempt_mode (optional)
Query Parameter — PreemptMode used when jobs in this QOS are preempted default: null
with_deleted (optional)
Query Parameter — Include deleted QOS default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

QOS update response v0.0.41_openapi_resp

default

QOS update response v0.0.41_openapi_resp

Up
post /slurmdb/v0.0.41/tres/
Add TRES (slurmdbV0041PostTres)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_tres_resp v0.0.41_openapi_tres_resp (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

TRES update result v0.0.41_openapi_resp

default

TRES update result v0.0.41_openapi_resp

Up
post /slurmdb/v0.0.41/users/
Update users (slurmdbV0041PostUsers)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_users_resp v0.0.41_openapi_users_resp (optional)
Body Parameter

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Status of user update request v0.0.41_openapi_resp

default

Status of user update request v0.0.41_openapi_resp

Up
post /slurmdb/v0.0.41/users_association/
Add users with conditional association (slurmdbV0041PostUsersAssociation)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_users_add_cond_resp v0.0.41_openapi_users_add_cond_resp (optional)
Body Parameter

Query parameters

update_time (optional)
Query Parameter — Filter partitions since update timestamp default: null
flags (optional)
Query Parameter — Query flags default: null

Return type

Example data

Content-Type: application/json
{
  "added_users" : "added_users",
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Add list of users with conditional association v0.0.41_openapi_users_add_cond_resp_str

default

Add list of users with conditional association v0.0.41_openapi_users_add_cond_resp_str

Up
post /slurmdb/v0.0.41/wckeys/
Add or update wckeys (slurmdbV0041PostWckeys)

Consumes

This API call consumes the following media types via the Content-Type request header:
  • application/json
  • application/x-yaml

Request body

v0.0.41_openapi_wckey_resp v0.0.41_openapi_wckey_resp (optional)
Body Parameter

Query parameters

cluster (optional)
Query Parameter — CSV cluster name list default: null
format (optional)
Query Parameter — CSV format name list default: null
id (optional)
Query Parameter — CSV id list default: null
name (optional)
Query Parameter — CSV name list default: null
only_defaults (optional)
Query Parameter — Only query defaults default: null
usage_end (optional)
Query Parameter — Usage end (UNIX timestamp) default: null
usage_start (optional)
Query Parameter — Usage start (UNIX timestamp) default: null
user (optional)
Query Parameter — CSV user list default: null
with_usage (optional)
Query Parameter — Include usage default: null
with_deleted (optional)
Query Parameter — Include deleted wckeys default: null

Return type

Example data

Content-Type: application/json
{
  "meta" : {
    "slurm" : {
      "cluster" : "cluster",
      "release" : "release",
      "version" : {
        "major" : "major",
        "minor" : "minor",
        "micro" : "micro"
      }
    },
    "plugin" : {
      "accounting_storage" : "accounting_storage",
      "name" : "name",
      "type" : "type",
      "data_parser" : "data_parser"
    },
    "client" : {
      "source" : "source",
      "user" : "user",
      "group" : "group"
    },
    "command" : [ "command", "command" ]
  },
  "warnings" : [ {
    "description" : "description",
    "source" : "source"
  }, {
    "description" : "description",
    "source" : "source"
  } ],
  "errors" : [ {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  }, {
    "description" : "description",
    "source" : "source",
    "error" : "error",
    "error_number" : 5
  } ]
}

Example data

Content-Type: application/x-yaml
Custom MIME type example not yet supported: application/x-yaml

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json
  • application/x-yaml

Responses

200

Result of wckey addition or update request v0.0.41_openapi_resp

default

Result of wckey addition or update request v0.0.41_openapi_resp

Models

[ Jump to Methods ]

Table of Contents

  1. v0.0.41_job_alloc_req -
  2. v0.0.41_job_desc_msg -
  3. v0.0.41_job_submit_req -
  4. v0.0.41_kill_jobs_msg -
  5. v0.0.41_openapi_accounts_add_cond_resp -
  6. v0.0.41_openapi_accounts_add_cond_resp_str -
  7. v0.0.41_openapi_accounts_removed_resp -
  8. v0.0.41_openapi_accounts_resp -
  9. v0.0.41_openapi_assocs_removed_resp -
  10. v0.0.41_openapi_assocs_resp -
  11. v0.0.41_openapi_clusters_removed_resp -
  12. v0.0.41_openapi_clusters_resp -
  13. v0.0.41_openapi_diag_resp -
  14. v0.0.41_openapi_instances_resp -
  15. v0.0.41_openapi_job_alloc_resp -
  16. v0.0.41_openapi_job_info_resp -
  17. v0.0.41_openapi_job_post_response -
  18. v0.0.41_openapi_job_submit_response -
  19. v0.0.41_openapi_kill_jobs_resp -
  20. v0.0.41_openapi_licenses_resp -
  21. v0.0.41_openapi_nodes_resp -
  22. v0.0.41_openapi_partition_resp -
  23. v0.0.41_openapi_ping_array_resp -
  24. v0.0.41_openapi_reservation_resp -
  25. v0.0.41_openapi_resp -
  26. v0.0.41_openapi_shares_resp -
  27. v0.0.41_openapi_slurmdbd_config_resp -
  28. v0.0.41_openapi_slurmdbd_jobs_resp -
  29. v0.0.41_openapi_slurmdbd_qos_removed_resp -
  30. v0.0.41_openapi_slurmdbd_qos_resp -
  31. v0.0.41_openapi_slurmdbd_stats_resp -
  32. v0.0.41_openapi_tres_resp -
  33. v0.0.41_openapi_users_add_cond_resp -
  34. v0.0.41_openapi_users_add_cond_resp_str -
  35. v0.0.41_openapi_users_resp -
  36. v0.0.41_openapi_wckey_removed_resp -
  37. v0.0.41_openapi_wckey_resp -
  38. v0.0.41_update_node_msg -
  39. v0_0_41_job_desc_msg_begin_time -
  40. v0_0_41_job_desc_msg_crontab -
  41. v0_0_41_job_desc_msg_crontab_line -
  42. v0_0_41_job_desc_msg_distribution_plane_size -
  43. v0_0_41_job_desc_msg_kill_warning_delay -
  44. v0_0_41_job_desc_msg_required_switches -
  45. v0_0_41_job_desc_msg_rlimits -
  46. v0_0_41_job_desc_msg_rlimits_as -
  47. v0_0_41_job_desc_msg_rlimits_core -
  48. v0_0_41_job_desc_msg_rlimits_cpu -
  49. v0_0_41_job_desc_msg_rlimits_data -
  50. v0_0_41_job_desc_msg_rlimits_fsize -
  51. v0_0_41_job_desc_msg_rlimits_memlock -
  52. v0_0_41_job_desc_msg_rlimits_nofile -
  53. v0_0_41_job_desc_msg_rlimits_nproc -
  54. v0_0_41_job_desc_msg_rlimits_rss -
  55. v0_0_41_job_desc_msg_rlimits_stack -
  56. v0_0_41_job_desc_msg_segment_size -
  57. v0_0_41_job_desc_msg_time_minimum -
  58. v0_0_41_openapi_accounts_add_cond_resp_account -
  59. v0_0_41_openapi_accounts_add_cond_resp_association_condition -
  60. v0_0_41_openapi_diag_resp_statistics -
  61. v0_0_41_openapi_diag_resp_statistics_bf_exit -
  62. v0_0_41_openapi_diag_resp_statistics_bf_when_last_cycle -
  63. v0_0_41_openapi_diag_resp_statistics_job_states_ts -
  64. v0_0_41_openapi_diag_resp_statistics_pending_rpcs_by_hostlist_inner -
  65. v0_0_41_openapi_diag_resp_statistics_pending_rpcs_inner -
  66. v0_0_41_openapi_diag_resp_statistics_req_time -
  67. v0_0_41_openapi_diag_resp_statistics_req_time_start -
  68. v0_0_41_openapi_diag_resp_statistics_rpcs_by_message_type_inner -
  69. v0_0_41_openapi_diag_resp_statistics_rpcs_by_message_type_inner_average_time -
  70. v0_0_41_openapi_diag_resp_statistics_rpcs_by_user_inner -
  71. v0_0_41_openapi_diag_resp_statistics_schedule_exit -
  72. v0_0_41_openapi_job_info_resp_jobs_inner -
  73. v0_0_41_openapi_job_info_resp_jobs_inner_accrue_time -
  74. v0_0_41_openapi_job_info_resp_jobs_inner_array_job_id -
  75. v0_0_41_openapi_job_info_resp_jobs_inner_array_max_tasks -
  76. v0_0_41_openapi_job_info_resp_jobs_inner_billable_tres -
  77. v0_0_41_openapi_job_info_resp_jobs_inner_cores_per_socket -
  78. v0_0_41_openapi_job_info_resp_jobs_inner_cpu_frequency_governor -
  79. v0_0_41_openapi_job_info_resp_jobs_inner_cpu_frequency_maximum -
  80. v0_0_41_openapi_job_info_resp_jobs_inner_cpu_frequency_minimum -
  81. v0_0_41_openapi_job_info_resp_jobs_inner_cpus -
  82. v0_0_41_openapi_job_info_resp_jobs_inner_cpus_per_task -
  83. v0_0_41_openapi_job_info_resp_jobs_inner_deadline -
  84. v0_0_41_openapi_job_info_resp_jobs_inner_delay_boot -
  85. v0_0_41_openapi_job_info_resp_jobs_inner_eligible_time -
  86. v0_0_41_openapi_job_info_resp_jobs_inner_end_time -
  87. v0_0_41_openapi_job_info_resp_jobs_inner_exit_code -
  88. v0_0_41_openapi_job_info_resp_jobs_inner_het_job_id -
  89. v0_0_41_openapi_job_info_resp_jobs_inner_job_resources -
  90. v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes -
  91. v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes_allocation_inner -
  92. v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes_allocation_inner_cpus -
  93. v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes_allocation_inner_memory -
  94. v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes_allocation_inner_sockets_inner -
  95. v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes_allocation_inner_sockets_inner_cores_inner -
  96. v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_threads_per_core -
  97. v0_0_41_openapi_job_info_resp_jobs_inner_last_sched_evaluation -
  98. v0_0_41_openapi_job_info_resp_jobs_inner_max_cpus -
  99. v0_0_41_openapi_job_info_resp_jobs_inner_max_nodes -
  100. v0_0_41_openapi_job_info_resp_jobs_inner_minimum_cpus_per_node -
  101. v0_0_41_openapi_job_info_resp_jobs_inner_minimum_tmp_disk_per_node -
  102. v0_0_41_openapi_job_info_resp_jobs_inner_node_count -
  103. v0_0_41_openapi_job_info_resp_jobs_inner_power -
  104. v0_0_41_openapi_job_info_resp_jobs_inner_pre_sus_time -
  105. v0_0_41_openapi_job_info_resp_jobs_inner_preempt_time -
  106. v0_0_41_openapi_job_info_resp_jobs_inner_preemptable_time -
  107. v0_0_41_openapi_job_info_resp_jobs_inner_resize_time -
  108. v0_0_41_openapi_job_info_resp_jobs_inner_sockets_per_node -
  109. v0_0_41_openapi_job_info_resp_jobs_inner_start_time -
  110. v0_0_41_openapi_job_info_resp_jobs_inner_submit_time -
  111. v0_0_41_openapi_job_info_resp_jobs_inner_suspend_time -
  112. v0_0_41_openapi_job_info_resp_jobs_inner_tasks -
  113. v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_board -
  114. v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_core -
  115. v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_node -
  116. v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_socket -
  117. v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_tres -
  118. v0_0_41_openapi_job_info_resp_jobs_inner_threads_per_core -
  119. v0_0_41_openapi_job_info_resp_last_backfill -
  120. v0_0_41_openapi_job_info_resp_last_update -
  121. v0_0_41_openapi_job_post_response_results_inner -
  122. v0_0_41_openapi_job_submit_response_result -
  123. v0_0_41_openapi_kill_jobs_resp_status_inner -
  124. v0_0_41_openapi_kill_jobs_resp_status_inner_error -
  125. v0_0_41_openapi_kill_jobs_resp_status_inner_federation -
  126. v0_0_41_openapi_kill_jobs_resp_status_inner_job_id -
  127. v0_0_41_openapi_licenses_resp_last_update -
  128. v0_0_41_openapi_licenses_resp_licenses_inner -
  129. v0_0_41_openapi_nodes_resp_last_update -
  130. v0_0_41_openapi_nodes_resp_nodes_inner -
  131. v0_0_41_openapi_nodes_resp_nodes_inner_boot_time -
  132. v0_0_41_openapi_nodes_resp_nodes_inner_energy -
  133. v0_0_41_openapi_nodes_resp_nodes_inner_energy_current_watts -
  134. v0_0_41_openapi_nodes_resp_nodes_inner_free_mem -
  135. v0_0_41_openapi_nodes_resp_nodes_inner_last_busy -
  136. v0_0_41_openapi_nodes_resp_nodes_inner_reason_changed_at -
  137. v0_0_41_openapi_nodes_resp_nodes_inner_resume_after -
  138. v0_0_41_openapi_nodes_resp_nodes_inner_slurmd_start_time -
  139. v0_0_41_openapi_partition_resp_last_update -
  140. v0_0_41_openapi_partition_resp_partitions_inner -
  141. v0_0_41_openapi_partition_resp_partitions_inner_accounts -
  142. v0_0_41_openapi_partition_resp_partitions_inner_cpus -
  143. v0_0_41_openapi_partition_resp_partitions_inner_defaults -
  144. v0_0_41_openapi_partition_resp_partitions_inner_defaults_partition_memory_per_cpu -
  145. v0_0_41_openapi_partition_resp_partitions_inner_defaults_partition_memory_per_node -
  146. v0_0_41_openapi_partition_resp_partitions_inner_defaults_time -
  147. v0_0_41_openapi_partition_resp_partitions_inner_groups -
  148. v0_0_41_openapi_partition_resp_partitions_inner_maximums -
  149. v0_0_41_openapi_partition_resp_partitions_inner_maximums_cpus_per_node -
  150. v0_0_41_openapi_partition_resp_partitions_inner_maximums_cpus_per_socket -
  151. v0_0_41_openapi_partition_resp_partitions_inner_maximums_nodes -
  152. v0_0_41_openapi_partition_resp_partitions_inner_maximums_over_time_limit -
  153. v0_0_41_openapi_partition_resp_partitions_inner_maximums_oversubscribe -
  154. v0_0_41_openapi_partition_resp_partitions_inner_maximums_partition_memory_per_cpu -
  155. v0_0_41_openapi_partition_resp_partitions_inner_maximums_partition_memory_per_node -
  156. v0_0_41_openapi_partition_resp_partitions_inner_maximums_time -
  157. v0_0_41_openapi_partition_resp_partitions_inner_minimums -
  158. v0_0_41_openapi_partition_resp_partitions_inner_nodes -
  159. v0_0_41_openapi_partition_resp_partitions_inner_partition -
  160. v0_0_41_openapi_partition_resp_partitions_inner_priority -
  161. v0_0_41_openapi_partition_resp_partitions_inner_qos -
  162. v0_0_41_openapi_partition_resp_partitions_inner_suspend_time -
  163. v0_0_41_openapi_partition_resp_partitions_inner_timeouts -
  164. v0_0_41_openapi_partition_resp_partitions_inner_timeouts_resume -
  165. v0_0_41_openapi_partition_resp_partitions_inner_timeouts_suspend -
  166. v0_0_41_openapi_partition_resp_partitions_inner_tres -
  167. v0_0_41_openapi_ping_array_resp_pings_inner -
  168. v0_0_41_openapi_reservation_resp_last_update -
  169. v0_0_41_openapi_reservation_resp_reservations_inner -
  170. v0_0_41_openapi_reservation_resp_reservations_inner_core_specializations_inner -
  171. v0_0_41_openapi_reservation_resp_reservations_inner_end_time -
  172. v0_0_41_openapi_reservation_resp_reservations_inner_purge_completed -
  173. v0_0_41_openapi_reservation_resp_reservations_inner_purge_completed_time -
  174. v0_0_41_openapi_reservation_resp_reservations_inner_start_time -
  175. v0_0_41_openapi_reservation_resp_reservations_inner_watts -
  176. v0_0_41_openapi_shares_resp_shares -
  177. v0_0_41_openapi_shares_resp_shares_shares_inner -
  178. v0_0_41_openapi_shares_resp_shares_shares_inner_fairshare -
  179. v0_0_41_openapi_shares_resp_shares_shares_inner_shares -
  180. v0_0_41_openapi_shares_resp_shares_shares_inner_shares_normalized -
  181. v0_0_41_openapi_shares_resp_shares_shares_inner_tres -
  182. v0_0_41_openapi_shares_resp_shares_shares_inner_tres_run_seconds_inner -
  183. v0_0_41_openapi_shares_resp_shares_shares_inner_tres_run_seconds_inner_value -
  184. v0_0_41_openapi_shares_resp_shares_shares_inner_tres_usage_inner -
  185. v0_0_41_openapi_shares_resp_shares_shares_inner_usage_normalized -
  186. v0_0_41_openapi_slurmdbd_config_resp_accounts_inner -
  187. v0_0_41_openapi_slurmdbd_config_resp_accounts_inner_associations_inner -
  188. v0_0_41_openapi_slurmdbd_config_resp_accounts_inner_coordinators_inner -
  189. v0_0_41_openapi_slurmdbd_config_resp_associations_inner -
  190. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_default -
  191. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max -
  192. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs -
  193. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_accruing -
  194. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_active -
  195. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_per -
  196. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_per_submitted -
  197. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_total -
  198. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_per -
  199. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_per_account -
  200. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_tres -
  201. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_tres_group -
  202. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_tres_minutes -
  203. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_tres_minutes_per -
  204. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_tres_per -
  205. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_min -
  206. v0_0_41_openapi_slurmdbd_config_resp_associations_inner_priority -
  207. v0_0_41_openapi_slurmdbd_config_resp_clusters_inner -
  208. v0_0_41_openapi_slurmdbd_config_resp_clusters_inner_associations -
  209. v0_0_41_openapi_slurmdbd_config_resp_clusters_inner_associations_root -
  210. v0_0_41_openapi_slurmdbd_config_resp_clusters_inner_controller -
  211. v0_0_41_openapi_slurmdbd_config_resp_instances_inner -
  212. v0_0_41_openapi_slurmdbd_config_resp_instances_inner_time -
  213. v0_0_41_openapi_slurmdbd_config_resp_qos_inner -
  214. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits -
  215. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_factor -
  216. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max -
  217. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_accruing -
  218. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_accruing_per -
  219. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_accruing_per_account -
  220. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_accruing_per_user -
  221. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_active_jobs -
  222. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_active_jobs_accruing -
  223. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_active_jobs_count -
  224. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs -
  225. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_active_jobs -
  226. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_active_jobs_per -
  227. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_active_jobs_per_account -
  228. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_active_jobs_per_user -
  229. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_per -
  230. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_per_account -
  231. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_per_user -
  232. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_tres -
  233. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_tres_minutes -
  234. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_tres_minutes_per -
  235. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_tres_per -
  236. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_wall_clock -
  237. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_wall_clock_per -
  238. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_wall_clock_per_job -
  239. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_wall_clock_per_qos -
  240. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_min -
  241. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_min_priority_threshold -
  242. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_min_tres -
  243. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_min_tres_per -
  244. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_preempt -
  245. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_preempt_exempt_time -
  246. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_priority -
  247. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_usage_factor -
  248. v0_0_41_openapi_slurmdbd_config_resp_qos_inner_usage_threshold -
  249. v0_0_41_openapi_slurmdbd_config_resp_users_inner -
  250. v0_0_41_openapi_slurmdbd_config_resp_users_inner_default -
  251. v0_0_41_openapi_slurmdbd_config_resp_users_inner_wckeys_inner -
  252. v0_0_41_openapi_slurmdbd_config_resp_users_inner_wckeys_inner_accounting_inner -
  253. v0_0_41_openapi_slurmdbd_config_resp_users_inner_wckeys_inner_accounting_inner_TRES -
  254. v0_0_41_openapi_slurmdbd_config_resp_users_inner_wckeys_inner_accounting_inner_allocated -
  255. v0_0_41_openapi_slurmdbd_jobs_resp_errors_inner -
  256. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner -
  257. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_array -
  258. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_array_limits -
  259. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_array_limits_max -
  260. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_array_limits_max_running -
  261. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_array_task_id -
  262. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_association -
  263. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_comment -
  264. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_derived_exit_code -
  265. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_derived_exit_code_return_code -
  266. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_derived_exit_code_signal -
  267. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_derived_exit_code_signal_id -
  268. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_exit_code -
  269. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_het -
  270. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_het_job_offset -
  271. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_mcs -
  272. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_priority -
  273. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_required -
  274. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_required_memory_per_cpu -
  275. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_required_memory_per_node -
  276. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_reservation -
  277. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_state -
  278. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner -
  279. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_CPU -
  280. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_CPU_requested_frequency -
  281. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_CPU_requested_frequency_max -
  282. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_CPU_requested_frequency_min -
  283. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_nodes -
  284. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_statistics -
  285. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_statistics_CPU -
  286. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_statistics_energy -
  287. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_statistics_energy_consumed -
  288. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_step -
  289. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_task -
  290. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tasks -
  291. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time -
  292. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_end -
  293. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_start -
  294. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_system -
  295. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_total -
  296. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_user -
  297. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres -
  298. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_consumed -
  299. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested -
  300. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested_max_inner -
  301. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time -
  302. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_limit -
  303. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_planned -
  304. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_system -
  305. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_total -
  306. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_user -
  307. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_tres -
  308. v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_wckey -
  309. v0_0_41_openapi_slurmdbd_jobs_resp_meta -
  310. v0_0_41_openapi_slurmdbd_jobs_resp_meta_client -
  311. v0_0_41_openapi_slurmdbd_jobs_resp_meta_plugin -
  312. v0_0_41_openapi_slurmdbd_jobs_resp_meta_slurm -
  313. v0_0_41_openapi_slurmdbd_jobs_resp_meta_slurm_version -
  314. v0_0_41_openapi_slurmdbd_jobs_resp_warnings_inner -
  315. v0_0_41_openapi_slurmdbd_stats_resp_statistics -
  316. v0_0_41_openapi_slurmdbd_stats_resp_statistics_RPCs_inner -
  317. v0_0_41_openapi_slurmdbd_stats_resp_statistics_RPCs_inner_time -
  318. v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups -
  319. v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_daily -
  320. v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_daily_duration -
  321. v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_hourly -
  322. v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_hourly_duration -
  323. v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_monthly -
  324. v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_monthly_duration -
  325. v0_0_41_openapi_slurmdbd_stats_resp_statistics_users_inner -
  326. v0_0_41_openapi_users_add_cond_resp_association_condition -
  327. v0_0_41_openapi_users_add_cond_resp_association_condition_association -
  328. v0_0_41_openapi_users_add_cond_resp_association_condition_association_grpjobs -
  329. v0_0_41_openapi_users_add_cond_resp_association_condition_association_grpjobsaccrue -
  330. v0_0_41_openapi_users_add_cond_resp_association_condition_association_grpsubmitjobs -
  331. v0_0_41_openapi_users_add_cond_resp_association_condition_association_grpwall -
  332. v0_0_41_openapi_users_add_cond_resp_association_condition_association_maxjobs -
  333. v0_0_41_openapi_users_add_cond_resp_association_condition_association_maxjobsaccrue -
  334. v0_0_41_openapi_users_add_cond_resp_association_condition_association_maxsubmitjobs -
  335. v0_0_41_openapi_users_add_cond_resp_association_condition_association_maxwalldurationperjob -
  336. v0_0_41_openapi_users_add_cond_resp_association_condition_association_minpriothresh -
  337. v0_0_41_openapi_users_add_cond_resp_user -
  338. v0_0_41_update_node_msg_resume_after -
  339. v0_0_41_update_node_msg_weight -

v0.0.41_job_alloc_req - Up

hetjob (optional)
array[v0.0.41_job_desc_msg] HetJob description
job (optional)

v0.0.41_job_desc_msg - Up

account (optional)
String Account associated with the job
account_gather_frequency (optional)
String Job accounting and profiling sampling intervals in seconds
admin_comment (optional)
String Arbitrary comment made by administrator
allocation_node_list (optional)
String Local node making the resource allocation
allocation_node_port (optional)
Integer Port to send allocation confirmation to format: int32
argv (optional)
array[String] Arguments to the script
array (optional)
String Job array index value specification
batch_features (optional)
String Features required for batch script's node
begin_time (optional)
flags (optional)
array[String] Job flags
Enum:
burst_buffer (optional)
String Burst buffer specifications
clusters (optional)
String Clusters that a federated job can run on
cluster_constraint (optional)
String Required features that a federated cluster must have to have a sibling job submitted to it
comment (optional)
String Arbitrary comment made by user
contiguous (optional)
Boolean True if job requires contiguous nodes
container (optional)
String Absolute path to OCI container bundle
container_id (optional)
String OCI container ID
core_specification (optional)
Integer Specialized core count format: int32
thread_specification (optional)
Integer Specialized thread count format: int32
cpu_binding (optional)
String Method for binding tasks to allocated CPUs
cpu_binding_flags (optional)
array[String] Flags for CPU binding
Enum:
cpu_frequency (optional)
String Requested CPU frequency range [-p2][:p3]
cpus_per_tres (optional)
String Semicolon delimited list of TRES=# values values indicating how many CPUs should be allocated for each specified TRES (currently only used for gres/gpu)
crontab (optional)
deadline (optional)
Long Latest time that the job may start (UNIX timestamp) format: int64
delay_boot (optional)
Integer Number of seconds after job eligible start that nodes will be rebooted to satisfy feature specification format: int32
dependency (optional)
String Other jobs that must meet certain criteria before this job can start
end_time (optional)
Long Expected end time (UNIX timestamp) format: int64
environment (optional)
array[String] Environment variables to be set for the job
rlimits (optional)
excluded_nodes (optional)
array[String] Comma separated list of nodes that may not be used
extra (optional)
String Arbitrary string used for node filtering if extra constraints are enabled
constraints (optional)
String Comma separated list of features that are required
group_id (optional)
String Group ID of the user that owns the job
hetjob_group (optional)
Integer Unique sequence number applied to this component of the heterogeneous job format: int32
immediate (optional)
Boolean If true, exit if resources are not available within the time period specified
job_id (optional)
Integer Job ID format: int32
kill_on_node_fail (optional)
Boolean If true, kill job on node failure
licenses (optional)
String License(s) required by the job
mail_type (optional)
array[String] Mail event type(s)
Enum:
mail_user (optional)
String User to receive email notifications
mcs_label (optional)
String Multi-Category Security label on the job
memory_binding (optional)
String Binding map for map/mask_cpu
memory_binding_type (optional)
array[String] Method for binding tasks to memory
Enum:
memory_per_tres (optional)
String Semicolon delimited list of TRES=# values indicating how much memory in megabytes should be allocated for each specified TRES (currently only used for gres/gpu)
name (optional)
String Job name
network (optional)
String Network specs for job step
nice (optional)
Integer Requested job priority change format: int32
tasks (optional)
Integer Number of tasks format: int32
open_mode (optional)
array[String] Open mode used for stdout and stderr files
Enum:
reserve_ports (optional)
Integer Port to send various notification msg to format: int32
overcommit (optional)
Boolean Overcommit resources
partition (optional)
String Partition assigned to the job
distribution_plane_size (optional)
power_flags (optional)
prefer (optional)
String Comma separated list of features that are preferred but not required
hold (optional)
Boolean Hold (true) or release (false) job
priority (optional)
profile (optional)
array[String] Profile used by the acct_gather_profile plugin
Enum:
qos (optional)
String Quality of Service assigned to the job
reboot (optional)
Boolean Node reboot requested before start
required_nodes (optional)
array[String] Comma separated list of required nodes
requeue (optional)
Boolean Determines whether the job may be requeued
reservation (optional)
String Name of reservation to use
resv_mpi_ports (optional)
Integer Number of reserved communication ports; can only be used if slurmstepd step manager is enabled format: int32
script (optional)
String Job batch script; only the first component in a HetJob is populated or honored
shared (optional)
array[String] How the job can share resources with other jobs, if at all
Enum:
exclusive (optional)
Enum:
oversubscribe (optional)
site_factor (optional)
Integer Site-specific priority factor format: int32
spank_environment (optional)
array[String] Environment variables for job prolog/epilog scripts as set by SPANK plugins
distribution (optional)
String Layout
time_limit (optional)
time_minimum (optional)
tres_bind (optional)
String Task to TRES binding directives
tres_freq (optional)
String TRES frequency directives
tres_per_job (optional)
String Comma separated list of TRES=# values to be allocated for every job
tres_per_node (optional)
String Comma separated list of TRES=# values to be allocated for every node
tres_per_socket (optional)
String Comma separated list of TRES=# values to be allocated for every socket
tres_per_task (optional)
String Comma separated list of TRES=# values to be allocated for every task
user_id (optional)
String User ID that owns the job
wait_all_nodes (optional)
Boolean If true, wait to start until after all nodes have booted
kill_warning_flags (optional)
array[String] Flags related to job signals
Enum:
kill_warning_signal (optional)
String Signal to send when approaching end time (e.g. "10" or "USR1")
kill_warning_delay (optional)
current_working_directory (optional)
String Working directory to use for the job
cpus_per_task (optional)
Integer Number of CPUs required by each task format: int32
minimum_cpus (optional)
Integer Minimum number of CPUs required format: int32
maximum_cpus (optional)
Integer Maximum number of CPUs required format: int32
nodes (optional)
String Node count range specification (e.g. 1-15:4)
minimum_nodes (optional)
Integer Minimum node count format: int32
maximum_nodes (optional)
Integer Maximum node count format: int32
minimum_boards_per_node (optional)
Integer Boards per node required format: int32
minimum_sockets_per_board (optional)
Integer Sockets per board required format: int32
sockets_per_node (optional)
Integer Sockets per node required format: int32
threads_per_core (optional)
Integer Threads per core required format: int32
tasks_per_node (optional)
Integer Number of tasks to invoke on each node format: int32
tasks_per_socket (optional)
Integer Number of tasks to invoke on each socket format: int32
tasks_per_core (optional)
Integer Number of tasks to invoke on each core format: int32
tasks_per_board (optional)
Integer Number of tasks to invoke on each board format: int32
ntasks_per_tres (optional)
Integer Number of tasks that can access each GPU format: int32
minimum_cpus_per_node (optional)
Integer Minimum number of CPUs per node format: int32
memory_per_cpu (optional)
memory_per_node (optional)
temporary_disk_per_node (optional)
Integer Minimum tmp disk space required per node format: int32
selinux_context (optional)
String SELinux context
required_switches (optional)
segment_size (optional)
standard_error (optional)
String Path to stderr file
standard_input (optional)
String Path to stdin file
standard_output (optional)
String Path to stdout file
wait_for_switch (optional)
Integer Maximum time to wait for switches in seconds format: int32
wckey (optional)
String Workload characterization key
x11 (optional)
array[String] X11 forwarding options
Enum:
x11_magic_cookie (optional)
String Magic cookie for X11 forwarding
x11_target_host (optional)
String Hostname or UNIX socket if x11_target_port=0
x11_target_port (optional)
Integer TCP port format: int32

v0.0.41_job_submit_req - Up

script (optional)
String Deprecated; Populate script field in jobs[0] or job
jobs (optional)
array[v0.0.41_job_desc_msg] HetJob description
job (optional)

v0.0.41_kill_jobs_msg - Up

account (optional)
String Filter jobs to a specific account
flags (optional)
array[String] Filter jobs according to flags
Enum:
job_name (optional)
String Filter jobs to a specific name
jobs (optional)
array[String] List of jobs to signal
partition (optional)
String Filter jobs to a specific partition
qos (optional)
String Filter jobs to a specific QOS
reservation (optional)
String Filter jobs to a specific reservation
signal (optional)
String Signal to send to jobs
job_state (optional)
array[String] Filter jobs to a specific state
Enum:
user_id (optional)
String Filter jobs to a specific numeric user id
user_name (optional)
String Filter jobs to a specific user name
wckey (optional)
String Filter jobs to a specific wckey
nodes (optional)
array[String] Filter jobs to a set of nodes

v0.0.41_openapi_job_alloc_resp - Up

job_id (optional)
Integer Submitted Job ID format: int32
job_submit_user_msg (optional)
String Job submission user message
meta (optional)
errors (optional)
warnings (optional)

v0.0.41_openapi_job_post_response - Up

results (optional)
job_id (optional)
String First updated Job ID - Use results instead
step_id (optional)
String First updated Step ID - Use results instead
job_submit_user_msg (optional)
String First updated Job submission user message - Use results instead
meta (optional)
errors (optional)
warnings (optional)

v0.0.41_openapi_job_submit_response - Up

result (optional)
job_id (optional)
Integer Submitted Job ID format: int32
step_id (optional)
String Submitted Step ID
job_submit_user_msg (optional)
String Job submission user message
meta (optional)
errors (optional)
warnings (optional)

v0.0.41_update_node_msg - Up

comment (optional)
String Arbitrary comment
cpu_bind (optional)
Integer Default method for binding tasks to allocated CPUs format: int32
extra (optional)
String Arbitrary string used for node filtering if extra constraints are enabled
features (optional)
array[String] Available features
features_act (optional)
array[String] Currently active features
gres (optional)
String Generic resources
address (optional)
array[String] NodeAddr, used to establish a communication path
hostname (optional)
array[String] NodeHostname
name (optional)
array[String] NodeName
state (optional)
array[String] New state to assign to the node
Enum:
reason (optional)
String Reason for node being DOWN or DRAINING
reason_uid (optional)
String User ID to associate with the reason (needed if user root is sending message)
resume_after (optional)
weight (optional)

v0_0_41_job_desc_msg_begin_time - Up

Defer the allocation of the job until the specified time (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_crontab - Up

Specification for scrontab job
flags (optional)
Enum:
minute (optional)
String Ranged string specifying eligible minute values (e.g. 0-10,50)
hour (optional)
String Ranged string specifying eligible hour values (e.g. 0-5,23)
day_of_month (optional)
String Ranged string specifying eligible day of month values (e.g. 0-10,29)
month (optional)
String Ranged string specifying eligible month values (e.g. 0-5,12)
day_of_week (optional)
String Ranged string specifying eligible day of week values (e.g.0-3,7)
specification (optional)
String Time specification (* means valid for all allowed values) - minute hour day_of_month month day_of_week
command (optional)
String Command to run
line (optional)

v0_0_41_job_desc_msg_crontab_line - Up

start (optional)
Integer Start of this entry in file format: int32
end (optional)
Integer End of this entry in file format: int32

v0_0_41_job_desc_msg_distribution_plane_size - Up

Plane size specification when distribution specifies plane
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_job_desc_msg_kill_warning_delay - Up

Number of seconds before end time to send the warning signal
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_job_desc_msg_required_switches - Up

Maximum number of switches
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_job_desc_msg_rlimits_as - Up

Address space limit.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_core - Up

Largest core file that can be created, in bytes.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_cpu - Up

Per-process CPU limit, in seconds.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_data - Up

Maximum size of data segment, in bytes.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_fsize - Up

Largest file that can be created, in bytes.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_memlock - Up

Locked-in-memory address space
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_nofile - Up

Number of open files.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_nproc - Up

Number of processes.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_rss - Up

Largest resident set size, in bytes. This affects swapping; processes that are exceeding their resident set size will be more likely to have physical memory taken from them.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_rlimits_stack - Up

Maximum size of stack segment, in bytes.
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_job_desc_msg_segment_size - Up

Segment size for topology/block
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_job_desc_msg_time_minimum - Up

Minimum run time in minutes
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_accounts_add_cond_resp_account - Up

Account organization and description
description (optional)
String Arbitrary string describing the account
organization (optional)
String Organization to which the account belongs

v0_0_41_openapi_accounts_add_cond_resp_association_condition - Up

CSV list of accounts, association limits and options, CSV list of clusters
accounts
array[String] CSV accounts list
association (optional)
clusters (optional)
array[String] CSV clusters list

v0_0_41_openapi_diag_resp_statistics - Up

statistics
parts_packed (optional)
Integer Zero if only RPC statistic included format: int32
req_time (optional)
req_time_start (optional)
server_thread_count (optional)
Integer Number of current active slurmctld threads format: int32
agent_queue_size (optional)
Integer Number of enqueued outgoing RPC requests in an internal retry list format: int32
agent_count (optional)
Integer Number of agent threads format: int32
agent_thread_count (optional)
Integer Total number of active threads created by all agent threads format: int32
dbd_agent_queue_size (optional)
Integer Number of messages for SlurmDBD that are queued format: int32
gettimeofday_latency (optional)
Integer Latency of 1000 calls to the gettimeofday() syscall in microseconds, as measured at controller startup format: int32
schedule_cycle_max (optional)
Integer Max time of any scheduling cycle in microseconds since last reset format: int32
schedule_cycle_last (optional)
Integer Time in microseconds for last scheduling cycle format: int32
schedule_cycle_sum (optional)
Integer Total run time in microseconds for all scheduling cycles since last reset format: int32
schedule_cycle_total (optional)
Integer Number of scheduling cycles since last reset format: int32
schedule_cycle_mean (optional)
Long Mean time in microseconds for all scheduling cycles since last reset format: int64
schedule_cycle_mean_depth (optional)
Long Mean of the number of jobs processed in a scheduling cycle format: int64
schedule_cycle_per_minute (optional)
Long Number of scheduling executions per minute format: int64
schedule_cycle_depth (optional)
Integer Total number of jobs processed in scheduling cycles format: int32
schedule_exit (optional)
schedule_queue_length (optional)
Integer Number of jobs pending in queue format: int32
jobs_submitted (optional)
Integer Number of jobs submitted since last reset format: int32
jobs_started (optional)
Integer Number of jobs started since last reset format: int32
jobs_completed (optional)
Integer Number of jobs completed since last reset format: int32
jobs_canceled (optional)
Integer Number of jobs canceled since the last reset format: int32
jobs_failed (optional)
Integer Number of jobs failed due to slurmd or other internal issues since last reset format: int32
jobs_pending (optional)
Integer Number of jobs pending at the time of listed in job_state_ts format: int32
jobs_running (optional)
Integer Number of jobs running at the time of listed in job_state_ts format: int32
job_states_ts (optional)
bf_backfilled_jobs (optional)
Integer Number of jobs started through backfilling since last slurm start format: int32
bf_last_backfilled_jobs (optional)
Integer Number of jobs started through backfilling since last reset format: int32
bf_backfilled_het_jobs (optional)
Integer Number of heterogeneous job components started through backfilling since last Slurm start format: int32
bf_cycle_counter (optional)
Integer Number of backfill scheduling cycles since last reset format: int32
bf_cycle_mean (optional)
Long Mean time in microseconds of backfilling scheduling cycles since last reset format: int64
bf_depth_mean (optional)
Long Mean number of eligible to run jobs processed during all backfilling scheduling cycles since last reset format: int64
bf_depth_mean_try (optional)
Long The subset of Depth Mean that the backfill scheduler attempted to schedule format: int64
bf_cycle_sum (optional)
Long Total time in microseconds of backfilling scheduling cycles since last reset format: int64
bf_cycle_last (optional)
Integer Execution time in microseconds of last backfill scheduling cycle format: int32
bf_cycle_max (optional)
Integer Execution time in microseconds of longest backfill scheduling cycle format: int32
bf_exit (optional)
bf_last_depth (optional)
Integer Number of processed jobs during last backfilling scheduling cycle format: int32
bf_last_depth_try (optional)
Integer Number of processed jobs during last backfilling scheduling cycle that had a chance to start using available resources format: int32
bf_depth_sum (optional)
Integer Total number of jobs processed during all backfilling scheduling cycles since last reset format: int32
bf_depth_try_sum (optional)
Integer Subset of bf_depth_sum that the backfill scheduler attempted to schedule format: int32
bf_queue_len (optional)
Integer Number of jobs pending to be processed by backfilling algorithm format: int32
bf_queue_len_mean (optional)
Long Mean number of jobs pending to be processed by backfilling algorithm format: int64
bf_queue_len_sum (optional)
Integer Total number of jobs pending to be processed by backfilling algorithm since last reset format: int32
bf_table_size (optional)
Integer Number of different time slots tested by the backfill scheduler in its last iteration format: int32
bf_table_size_sum (optional)
Integer Total number of different time slots tested by the backfill scheduler format: int32
bf_table_size_mean (optional)
Long Mean number of different time slots tested by the backfill scheduler format: int64
bf_when_last_cycle (optional)
bf_active (optional)
Boolean Backfill scheduler currently running
rpcs_by_message_type (optional)
array[v0_0_41_openapi_diag_resp_statistics_rpcs_by_message_type_inner] Most frequently issued remote procedure calls (RPCs)
rpcs_by_user (optional)
pending_rpcs (optional)
pending_rpcs_by_hostlist (optional)

v0_0_41_openapi_diag_resp_statistics_bf_exit - Up

Reasons for which the backfill scheduling cycle exited since last reset
end_job_queue (optional)
Integer Reached end of queue format: int32
bf_max_job_start (optional)
Integer Reached number of jobs allowed to start format: int32
bf_max_job_test (optional)
Integer Reached number of jobs allowed to be tested format: int32
bf_max_time (optional)
Integer Reached maximum allowed scheduler time format: int32
bf_node_space_size (optional)
Integer Reached table size limit format: int32
state_changed (optional)
Integer System state changed format: int32

v0_0_41_openapi_diag_resp_statistics_bf_when_last_cycle - Up

When the last backfill scheduling cycle happened (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_diag_resp_statistics_job_states_ts - Up

When the job state counts were gathered (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_diag_resp_statistics_pending_rpcs_by_hostlist_inner - Up

Pending RPCs by hostlist
type_id
Integer Message type as integer format: int32
message_type
String Message type as string
count
array[String] Number of RPCs received

v0_0_41_openapi_diag_resp_statistics_pending_rpcs_inner - Up

Pending RPCs
type_id
Integer Message type as integer format: int32
message_type
String Message type as string
count
Integer Number of pending RPCs queued format: int32

v0_0_41_openapi_diag_resp_statistics_req_time - Up

When the request was made (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_diag_resp_statistics_req_time_start - Up

When the data in the report started (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_diag_resp_statistics_rpcs_by_message_type_inner - Up

RPCs by type
type_id
Integer Message type as integer format: int32
message_type
String Message type as string
count
Integer Number of RPCs received format: int32
queued
Integer Number of RPCs queued format: int32
dropped
Long Number of RPCs dropped format: int64
cycle_last
Integer Number of RPCs processed within the last RPC queue cycle format: int32
cycle_max
Integer Maximum number of RPCs processed within a RPC queue cycle since start format: int32
total_time
Long Total time spent processing RPC in seconds format: int64
average_time

v0_0_41_openapi_diag_resp_statistics_rpcs_by_message_type_inner_average_time - Up

Average time spent processing RPC in seconds
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_diag_resp_statistics_rpcs_by_user_inner - Up

RPCs by user
user_id
Integer User ID (numeric) format: int32
user
String User name
count
Integer Number of RPCs received format: int32
total_time
Long Total time spent processing RPC in seconds format: int64
average_time

v0_0_41_openapi_diag_resp_statistics_schedule_exit - Up

Reasons for which the scheduling cycle exited since last reset
end_job_queue (optional)
Integer Reached end of queue format: int32
default_queue_depth (optional)
Integer Reached number of jobs allowed to be tested format: int32
max_job_start (optional)
Integer Reached number of jobs allowed to start format: int32
max_rpc_cnt (optional)
Integer Reached RPC limit format: int32
max_sched_time (optional)
Integer Reached maximum allowed scheduler time format: int32
licenses (optional)
Integer Blocked on licenses format: int32

v0_0_41_openapi_job_info_resp_jobs_inner - Up

account (optional)
String Account associated with the job
accrue_time (optional)
admin_comment (optional)
String Arbitrary comment made by administrator
allocating_node (optional)
String Local node making the resource allocation
array_job_id (optional)
array_task_id (optional)
array_max_tasks (optional)
array_task_string (optional)
String String expression of task IDs in this record
association_id (optional)
Integer Unique identifier for the association format: int32
batch_features (optional)
String Features required for batch script's node
batch_flag (optional)
Boolean True if batch job
batch_host (optional)
String Name of host running batch script
flags (optional)
array[String] Job flags
Enum:
burst_buffer (optional)
String Burst buffer specifications
burst_buffer_state (optional)
String Burst buffer state details
cluster (optional)
String Cluster name
cluster_features (optional)
String List of required cluster features
command (optional)
String Executed command
comment (optional)
String Arbitrary comment
container (optional)
String Absolute path to OCI container bundle
container_id (optional)
String OCI container ID
contiguous (optional)
Boolean True if job requires contiguous nodes
core_spec (optional)
Integer Specialized core count format: int32
thread_spec (optional)
Integer Specialized thread count format: int32
cores_per_socket (optional)
billable_tres (optional)
cpus_per_task (optional)
cpu_frequency_minimum (optional)
cpu_frequency_maximum (optional)
cpu_frequency_governor (optional)
cpus_per_tres (optional)
String Semicolon delimited list of TRES=# values indicating how many CPUs should be allocated for each specified TRES (currently only used for gres/gpu)
cron (optional)
String Time specification for scrontab job
deadline (optional)
delay_boot (optional)
dependency (optional)
String Other jobs that must meet certain criteria before this job can start
derived_exit_code (optional)
eligible_time (optional)
end_time (optional)
excluded_nodes (optional)
String Comma separated list of nodes that may not be used
exit_code (optional)
extra (optional)
String Arbitrary string used for node filtering if extra constraints are enabled
failed_node (optional)
String Name of node that caused job failure
features (optional)
String Comma separated list of features that are required
federation_origin (optional)
String Origin cluster's name (when using federation)
federation_siblings_active (optional)
String Active sibling job names
federation_siblings_viable (optional)
String Viable sibling job names
gres_detail (optional)
array[String] List of GRES index and counts allocated per node
group_id (optional)
Integer Group ID of the user that owns the job format: int32
group_name (optional)
String Group name of the user that owns the job
het_job_id (optional)
het_job_id_set (optional)
String Job ID range for all heterogeneous job components
het_job_offset (optional)
job_id (optional)
Integer Job ID format: int32
job_resources (optional)
job_size_str (optional)
array[String] Number of nodes (in a range) required for this job
job_state (optional)
array[String] Current state
Enum:
last_sched_evaluation (optional)
licenses (optional)
String License(s) required by the job
mail_type (optional)
array[String] Mail event type(s)
Enum:
mail_user (optional)
String User to receive email notifications
max_cpus (optional)
max_nodes (optional)
mcs_label (optional)
String Multi-Category Security label on the job
memory_per_tres (optional)
String Semicolon delimited list of TRES=# values indicating how much memory in megabytes should be allocated for each specified TRES (currently only used for gres/gpu)
name (optional)
String Job name
network (optional)
String Network specs for the job
nodes (optional)
String Node(s) allocated to the job
nice (optional)
Integer Requested job priority change format: int32
tasks_per_core (optional)
tasks_per_tres (optional)
tasks_per_node (optional)
tasks_per_socket (optional)
tasks_per_board (optional)
cpus (optional)
node_count (optional)
tasks (optional)
partition (optional)
String Partition assigned to the job
prefer (optional)
String Feature(s) the job requested but that are not required
memory_per_cpu (optional)
memory_per_node (optional)
minimum_cpus_per_node (optional)
minimum_tmp_disk_per_node (optional)
power (optional)
preempt_time (optional)
preemptable_time (optional)
pre_sus_time (optional)
hold (optional)
Boolean Hold (true) or release (false) job
priority (optional)
profile (optional)
array[String] Profile used by the acct_gather_profile plugin
Enum:
qos (optional)
String Quality of Service assigned to the job
reboot (optional)
Boolean Node reboot requested before start
required_nodes (optional)
String Comma separated list of required nodes
minimum_switches (optional)
Integer Maximum number of switches (the 'minimum' in the key is incorrect) format: int32
requeue (optional)
Boolean Determines whether the job may be requeued
resize_time (optional)
restart_cnt (optional)
Integer Number of job restarts format: int32
resv_name (optional)
String Name of reservation to use
scheduled_nodes (optional)
String List of nodes scheduled to be used for the job
selinux_context (optional)
String SELinux context
shared (optional)
array[String] How the job can share resources with other jobs, if at all
Enum:
exclusive (optional)
Enum:
oversubscribe (optional)
show_flags (optional)
array[String] Job details shown in this response
Enum:
sockets_per_board (optional)
Integer Number of sockets per board required format: int32
sockets_per_node (optional)
start_time (optional)
state_description (optional)
String Optional details for state_reason
state_reason (optional)
String Reason for current Pending or Failed state
standard_error (optional)
String Path to stderr file
standard_input (optional)
String Path to stdin file
standard_output (optional)
String Path to stdout file
submit_time (optional)
suspend_time (optional)
system_comment (optional)
String Arbitrary comment from slurmctld
time_limit (optional)
time_minimum (optional)
threads_per_core (optional)
tres_bind (optional)
String Task to TRES binding directives
tres_freq (optional)
String TRES frequency directives
tres_per_job (optional)
String Comma separated list of TRES=# values to be allocated per job
tres_per_node (optional)
String Comma separated list of TRES=# values to be allocated per node
tres_per_socket (optional)
String Comma separated list of TRES=# values to be allocated per socket
tres_per_task (optional)
String Comma separated list of TRES=# values to be allocated per task
tres_req_str (optional)
String TRES requested by the job
tres_alloc_str (optional)
String TRES used by the job
user_id (optional)
Integer User ID that owns the job format: int32
user_name (optional)
String User name that owns the job
maximum_switch_wait_time (optional)
Integer Maximum time to wait for switches in seconds format: int32
wckey (optional)
String Workload characterization key
current_working_directory (optional)
String Working directory to use for the job

v0_0_41_openapi_job_info_resp_jobs_inner_accrue_time - Up

When the job started accruing age priority (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_array_job_id - Up

Job ID of job array, or 0 if N/A
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_array_max_tasks - Up

Maximum number of simultaneously running array tasks, 0 if no limit
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_billable_tres - Up

Billable TRES
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Double If "set" is True the number will be set with value; otherwise ignore number contents format: double

v0_0_41_openapi_job_info_resp_jobs_inner_cores_per_socket - Up

Cores per socket required
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_cpu_frequency_governor - Up

CPU frequency governor
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_cpu_frequency_maximum - Up

Maximum CPU frequency
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_cpu_frequency_minimum - Up

Minimum CPU frequency
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_cpus - Up

Minimum number of CPUs required
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_cpus_per_task - Up

Number of CPUs required by each task
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_deadline - Up

Latest time that the job may start (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_delay_boot - Up

Number of seconds after job eligible start that nodes will be rebooted to satisfy feature specification
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_eligible_time - Up

Time when the job became eligible to run (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_end_time - Up

End time, real or expected (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_het_job_id - Up

Heterogeneous job ID, if applicable
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_job_resources - Up

Resources used by the job
select_type
array[String] Scheduler consumable resource selection type
Enum:
nodes (optional)
cpus
Integer Number of allocated CPUs format: int32
threads_per_core

v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes - Up

count (optional)
Integer Number of allocated nodes format: int32
select_type (optional)
array[String] Node scheduling selection method
Enum:
list (optional)
String Node(s) allocated to the job
whole (optional)
Boolean Whether whole nodes were allocated
allocation (optional)

v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes_allocation_inner_cpus - Up

count (optional)
Integer Total number of CPUs assigned to job format: int32
used (optional)
Integer Total number of CPUs used by job format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_nodes_allocation_inner_memory - Up

used (optional)
Long Total memory (MiB) used by job format: int64
allocated (optional)
Long Total memory (MiB) allocated to job format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_job_resources_threads_per_core - Up

Number of processor threads per CPU core
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_last_sched_evaluation - Up

Last time job was evaluated for scheduling (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_max_cpus - Up

Maximum number of CPUs usable by the job
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_max_nodes - Up

Maximum number of nodes usable by the job
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_minimum_cpus_per_node - Up

Minimum number of CPUs per node
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_minimum_tmp_disk_per_node - Up

Minimum tmp disk space required per node
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_node_count - Up

Minimum number of nodes required
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_pre_sus_time - Up

Total run time prior to last suspend in seconds
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_preempt_time - Up

Time job received preemption signal (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_preemptable_time - Up

Time job becomes eligible for preemption (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_resize_time - Up

Time of last size change (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_sockets_per_node - Up

Number of sockets per node required
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_start_time - Up

Time execution began, or is expected to begin (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_submit_time - Up

Time when the job was submitted (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_suspend_time - Up

Time the job was last suspended or resumed (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_jobs_inner_tasks - Up

Number of tasks
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_board - Up

Number of tasks invoked on each board
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_core - Up

Number of tasks invoked on each core
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_node - Up

Number of tasks invoked on each node
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_socket - Up

Number of tasks invoked on each socket
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_tasks_per_tres - Up

Number of tasks that can assess each GPU
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_jobs_inner_threads_per_core - Up

Number of processor threads per CPU core required
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_job_info_resp_last_backfill - Up

Time of last backfill scheduler run (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_info_resp_last_update - Up

Time of last job change (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_job_post_response_results_inner - Up

job_id (optional)
Integer Job ID for updated job format: int32
step_id (optional)
String Step ID for updated job
error (optional)
String Verbose update status or error
error_code (optional)
Integer Verbose update status or error format: int32
why (optional)
String Update response message

v0_0_41_openapi_job_submit_response_result - Up

Job submission
job_id (optional)
Integer New job ID format: int32
step_id (optional)
String New job step ID
error_code (optional)
Integer Error code format: int32
error (optional)
String Error message
job_submit_user_msg (optional)
String Message to user from job_submit plugin

v0_0_41_openapi_kill_jobs_resp_status_inner_error - Up

string (optional)
String String error encountered signaling job
code (optional)
Integer Numeric error encountered signaling job format: int32
message (optional)
String Error message why signaling job failed

v0_0_41_openapi_kill_jobs_resp_status_inner_federation - Up

sibling (optional)
String Name of federation sibling (may be empty for non-federation)

v0_0_41_openapi_kill_jobs_resp_status_inner_job_id - Up

Job ID that signaling failed
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_licenses_resp_last_update - Up

Time of last licenses change (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_licenses_resp_licenses_inner - Up

LicenseName (optional)
String Name of the license
Total (optional)
Integer Total number of licenses present format: int32
Used (optional)
Integer Number of licenses in use format: int32
Free (optional)
Integer Number of licenses currently available format: int32
Remote (optional)
Boolean Indicates whether licenses are served by the database
Reserved (optional)
Integer Number of licenses reserved format: int32
LastConsumed (optional)
Integer Last known number of licenses that were consumed in the license manager (Remote Only) format: int32
LastDeficit (optional)
Integer Number of "missing licenses" from the cluster's perspective format: int32
LastUpdate (optional)
Long When the license information was last updated (UNIX Timestamp) format: int64

v0_0_41_openapi_nodes_resp_last_update - Up

Time of last node change (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_nodes_resp_nodes_inner - Up

architecture (optional)
String Computer architecture
burstbuffer_network_address (optional)
String Alternate network path to be used for sbcast network traffic
boards (optional)
Integer Number of Baseboards in nodes with a baseboard controller format: int32
boot_time (optional)
cluster_name (optional)
String Cluster name (only set in federated environments)
cores (optional)
Integer Number of cores in a single physical processor socket format: int32
specialized_cores (optional)
Integer Number of cores reserved for system use format: int32
cpu_binding (optional)
Integer Default method for binding tasks to allocated CPUs format: int32
cpu_load (optional)
Integer CPU load as reported by the OS format: int32
free_mem (optional)
cpus (optional)
Integer Total CPUs, including cores and threads format: int32
effective_cpus (optional)
Integer Number of effective CPUs (excluding specialized CPUs) format: int32
specialized_cpus (optional)
String Abstract CPU IDs on this node reserved for exclusive use by slurmd and slurmstepd
energy (optional)
external_sensors (optional)
extra (optional)
String Arbitrary string used for node filtering if extra constraints are enabled
power (optional)
features (optional)
array[String] Available features
active_features (optional)
array[String] Currently active features
gpu_spec (optional)
String CPU cores reserved for jobs that also use a GPU
gres (optional)
String Generic resources
gres_drained (optional)
String Drained generic resources
gres_used (optional)
String Generic resources currently in use
instance_id (optional)
String Cloud instance ID
instance_type (optional)
String Cloud instance type
last_busy (optional)
mcs_label (optional)
String Multi-Category Security label
specialized_memory (optional)
Long Combined memory limit, in MB, for Slurm compute node daemons format: int64
name (optional)
String NodeName
next_state_after_reboot (optional)
array[String] The state the node will be assigned after rebooting
Enum:
address (optional)
String NodeAddr, used to establish a communication path
hostname (optional)
String NodeHostname
state (optional)
array[String] Node state(s) applicable to this node
Enum:
operating_system (optional)
String Operating system reported by the node
owner (optional)
String User allowed to run jobs on this node (unset if no restriction)
partitions (optional)
array[String] Partitions containing this node
port (optional)
Integer TCP port number of the slurmd format: int32
real_memory (optional)
Long Total memory in MB on the node format: int64
res_cores_per_gpu (optional)
Integer Number of CPU cores per GPU restricted to GPU jobs format: int32
comment (optional)
String Arbitrary comment
reason (optional)
String Describes why the node is in a "DOWN", "DRAINED", "DRAINING", "FAILING" or "FAIL" state
reason_changed_at (optional)
reason_set_by_user (optional)
String User who set the reason
resume_after (optional)
reservation (optional)
String Name of reservation containing this node
alloc_memory (optional)
Long Total memory in MB currently allocated for jobs format: int64
alloc_cpus (optional)
Integer Total number of CPUs currently allocated for jobs format: int32
alloc_idle_cpus (optional)
Integer Total number of idle CPUs format: int32
tres_used (optional)
String Trackable resources currently allocated for jobs
tres_weighted (optional)
Double Weighted number of billable trackable resources allocated format: double
slurmd_start_time (optional)
sockets (optional)
Integer Number of physical processor sockets/chips on the node format: int32
threads (optional)
Integer Number of logical threads in a single physical core format: int32
temporary_disk (optional)
Integer Total size in MB of temporary disk storage in TmpFS format: int32
weight (optional)
Integer Weight of the node for scheduling purposes format: int32
tres (optional)
String Configured trackable resources
version (optional)
String Slurmd version

v0_0_41_openapi_nodes_resp_nodes_inner_boot_time - Up

Time when the node booted (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_nodes_resp_nodes_inner_energy - Up

Energy usage data
average_watts (optional)
Integer Average power consumption, in watts format: int32
base_consumed_energy (optional)
Long The energy consumed between when the node was powered on and the last time it was registered by slurmd, in joules format: int64
consumed_energy (optional)
Long The energy consumed between the last time the node was registered by the slurmd daemon and the last node energy accounting sample, in joules format: int64
current_watts (optional)
previous_consumed_energy (optional)
Long Previous value of consumed_energy format: int64
last_collected (optional)
Long Time when energy data was last retrieved (UNIX timestamp) format: int64

v0_0_41_openapi_nodes_resp_nodes_inner_energy_current_watts - Up

The instantaneous power consumption at the time of the last node energy accounting sample, in watts
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_nodes_resp_nodes_inner_free_mem - Up

Total memory in MB currently free as reported by the OS
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_nodes_resp_nodes_inner_last_busy - Up

Time when the node was last busy (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_nodes_resp_nodes_inner_reason_changed_at - Up

When the reason changed (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_nodes_resp_nodes_inner_resume_after - Up

Number of seconds after the node's state is updated to "DOWN" or "DRAIN" before scheduling a node state resume
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_nodes_resp_nodes_inner_slurmd_start_time - Up

Time when the slurmd started (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_partition_resp_last_update - Up

Time of last partition change (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_partition_resp_partitions_inner_accounts - Up

allowed (optional)
String AllowAccounts
deny (optional)
String DenyAccounts

v0_0_41_openapi_partition_resp_partitions_inner_cpus - Up

task_binding (optional)
Integer CpuBind format: int32
total (optional)
Integer TotalCPUs format: int32

v0_0_41_openapi_partition_resp_partitions_inner_defaults_partition_memory_per_cpu - Up

DefMemPerCPU
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_partition_resp_partitions_inner_defaults_partition_memory_per_node - Up

DefMemPerNode
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_partition_resp_partitions_inner_defaults_time - Up

DefaultTime in minutes
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_maximums_cpus_per_node - Up

MaxCPUsPerNode
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_maximums_cpus_per_socket - Up

MaxCPUsPerSocket
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_maximums_nodes - Up

MaxNodes
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_maximums_over_time_limit - Up

OverTimeLimit
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_maximums_oversubscribe - Up

jobs (optional)
Integer Maximum number of jobs allowed to oversubscribe resources format: int32
flags (optional)
array[String] Flags applicable to the OverSubscribe setting
Enum:

v0_0_41_openapi_partition_resp_partitions_inner_maximums_partition_memory_per_cpu - Up

MaxMemPerCPU
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_partition_resp_partitions_inner_maximums_partition_memory_per_node - Up

MaxMemPerNode
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_partition_resp_partitions_inner_maximums_time - Up

MaxTime
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_nodes - Up

allowed_allocation (optional)
String AllocNodes
configured (optional)
String Nodes
total (optional)
Integer TotalNodes format: int32

v0_0_41_openapi_partition_resp_partitions_inner_priority - Up

job_factor (optional)
Integer PriorityJobFactor format: int32
tier (optional)
Integer PriorityTier format: int32

v0_0_41_openapi_partition_resp_partitions_inner_qos - Up

allowed (optional)
String AllowQOS
deny (optional)
String DenyQOS
assigned (optional)
String QOS

v0_0_41_openapi_partition_resp_partitions_inner_suspend_time - Up

SuspendTime (GLOBAL if both set and infinite are false)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_timeouts_resume - Up

ResumeTimeout (GLOBAL if both set and infinite are false)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_timeouts_suspend - Up

SuspendTimeout (GLOBAL if both set and infinite are false)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_partition_resp_partitions_inner_tres - Up

billing_weights (optional)
String TRESBillingWeights
configured (optional)
String TRES

v0_0_41_openapi_ping_array_resp_pings_inner - Up

hostname (optional)
String Target for ping
pinged (optional)
String Ping result
latency (optional)
Long Number of microseconds it took to successfully ping or timeout format: int64
mode (optional)
String The operating mode of the responding slurmctld

v0_0_41_openapi_reservation_resp_last_update - Up

Time of last reservation change (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_reservation_resp_reservations_inner - Up

accounts (optional)
String Comma separated list of permitted accounts
burst_buffer (optional)
String BurstBuffer
core_count (optional)
Integer CoreCnt format: int32
core_specializations (optional)
end_time (optional)
features (optional)
String Features
flags (optional)
array[String] Flags associated with the reservation
Enum:
groups (optional)
String Groups
licenses (optional)
String Licenses
max_start_delay (optional)
Integer MaxStartDelay in seconds format: int32
name (optional)
String ReservationName
node_count (optional)
Integer NodeCnt format: int32
node_list (optional)
String Nodes
partition (optional)
String PartitionName
purge_completed (optional)
start_time (optional)
watts (optional)
tres (optional)
String Comma separated list of required TRES
users (optional)
String Comma separated list of permitted users

v0_0_41_openapi_reservation_resp_reservations_inner_core_specializations_inner - Up

node (optional)
String Name of reserved node
core (optional)
String IDs of reserved cores

v0_0_41_openapi_reservation_resp_reservations_inner_end_time - Up

EndTime (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_reservation_resp_reservations_inner_purge_completed_time - Up

If PURGE_COMP flag is set, the number of seconds this reservation will sit idle until it is revoked
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_reservation_resp_reservations_inner_start_time - Up

StartTime (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_reservation_resp_reservations_inner_watts - Up

32 bit integer number with flags
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_shares_resp_shares - Up

fairshare info
shares (optional)
total_shares (optional)
Long Total number of shares format: int64

v0_0_41_openapi_shares_resp_shares_shares_inner - Up

id (optional)
Integer Association ID format: int32
cluster (optional)
String Cluster name
name (optional)
String Share name
parent (optional)
String Parent name
partition (optional)
String Partition name
shares_normalized (optional)
shares (optional)
tres (optional)
effective_usage (optional)
Double Effective, normalized usage format: double
usage_normalized (optional)
usage (optional)
Long Measure of tresbillableunits usage format: int64
fairshare (optional)
type (optional)
array[String] User or account association
Enum:

v0_0_41_openapi_shares_resp_shares_shares_inner_fairshare - Up

factor (optional)
Double Fairshare factor format: double
level (optional)
Double Fairshare factor at this level; stored on an assoc as a long double, but that is not needed for display in sshare format: double

v0_0_41_openapi_shares_resp_shares_shares_inner_shares - Up

Number of shares allocated
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_shares_resp_shares_shares_inner_shares_normalized - Up

Normalized shares
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Double If "set" is True the number will be set with value; otherwise ignore number contents format: double

v0_0_41_openapi_shares_resp_shares_shares_inner_tres_run_seconds_inner_value - Up

TRES value
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_shares_resp_shares_shares_inner_usage_normalized - Up

Normalized usage
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Double If "set" is True the number will be set with value; otherwise ignore number contents format: double

v0_0_41_openapi_slurmdbd_config_resp_accounts_inner - Up

associations (optional)
array[v0_0_41_openapi_slurmdbd_config_resp_accounts_inner_associations_inner] Associations involving this account (only populated if requested)
coordinators (optional)
array[v0_0_41_openapi_slurmdbd_config_resp_accounts_inner_coordinators_inner] List of users that are a coordinator of this account (only populated if requested)
description
String Arbitrary string describing the account
name
String Account name
organization
String Organization to which the account belongs
flags (optional)
array[String] Flags associated with the account
Enum:

v0_0_41_openapi_slurmdbd_config_resp_accounts_inner_associations_inner - Up

account (optional)
String Account
cluster (optional)
String Cluster
partition (optional)
String Partition
user
String User name
id (optional)
Integer Numeric association ID format: int32

v0_0_41_openapi_slurmdbd_config_resp_accounts_inner_coordinators_inner - Up

name
String User name
direct (optional)
Boolean Indicates whether the coordinator was directly assigned to this account

v0_0_41_openapi_slurmdbd_config_resp_associations_inner - Up

accounting (optional)
account (optional)
String Account
cluster (optional)
String Cluster name
comment (optional)
String Arbitrary comment
default (optional)
flags (optional)
array[String] Flags on the association
Enum:
max (optional)
id (optional)
Integer Unique ID format: int32
is_default (optional)
Boolean Is default association for user
lineage (optional)
String Complete path up the hierarchy to the root association
min (optional)
parent_account (optional)
String Name of parent account
partition (optional)
String Partition name
priority (optional)
qos (optional)
array[String] List of available QOS names
shares_raw (optional)
Integer Allocated shares used for fairshare calculation format: int32
user
String User name

v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_accruing - Up

MaxJobsAccrue
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_active - Up

MaxJobs
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_per_submitted - Up

GrpSubmitJobs
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_associations_inner_max_jobs_total - Up

MaxSubmitJobs
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_associations_inner_priority - Up

Association priority factor
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_clusters_inner - Up

controller (optional)
flags (optional)
Enum:
name (optional)
String ClusterName
nodes (optional)
String Node names
select_plugin (optional)
associations (optional)
rpc_version (optional)
Integer RPC version used in the cluster format: int32
tres (optional)

v0_0_41_openapi_slurmdbd_config_resp_clusters_inner_associations_root - Up

Root association information
account (optional)
String Account
cluster (optional)
String Cluster
partition (optional)
String Partition
user
String User name
id (optional)
Integer Numeric association ID format: int32

v0_0_41_openapi_slurmdbd_config_resp_clusters_inner_controller - Up

host (optional)
String ControlHost
port (optional)
Integer ControlPort format: int32

v0_0_41_openapi_slurmdbd_config_resp_instances_inner - Up

cluster (optional)
String Cluster name
extra (optional)
String Arbitrary string used for node filtering if extra constraints are enabled
instance_id (optional)
String Cloud instance ID
instance_type (optional)
String Cloud instance type
node_name (optional)
String NodeName
time (optional)

v0_0_41_openapi_slurmdbd_config_resp_instances_inner_time - Up

time_end (optional)
Long When the instance will end (UNIX timestamp) format: int64
time_start (optional)
Long When the instance will start (UNIX timestamp) format: int64

v0_0_41_openapi_slurmdbd_config_resp_qos_inner - Up

description (optional)
String Arbitrary description
flags (optional)
array[String] Flags, to avoid modifying current values specify NOT_SET
Enum:
id (optional)
Integer Unique ID format: int32
limits (optional)
name (optional)
String Name
preempt (optional)
priority (optional)
usage_factor (optional)
usage_threshold (optional)

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_factor - Up

LimitFactor
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Double If "set" is True the number will be set with value; otherwise ignore number contents format: double

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_accruing_per_account - Up

MaxJobsAccruePerAccount
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_accruing_per_user - Up

MaxJobsAccruePerUser
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_active_jobs_accruing - Up

GrpJobsAccrue
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_active_jobs_count - Up

GrpJobs
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_active_jobs_per_account - Up

MaxJobsPerAccount
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_active_jobs_per_user - Up

MaxJobsPerUser
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_per_account - Up

MaxSubmitJobsPerAccount
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_jobs_per_user - Up

MaxSubmitJobsPerUser
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_wall_clock_per_job - Up

MaxWallDurationPerJob
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_max_wall_clock_per_qos - Up

GrpWall
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_limits_min_priority_threshold - Up

MinPrioThreshold
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_preempt - Up

list (optional)
array[String] Other QOS's this QOS can preempt
mode (optional)
array[String] PreemptMode
Enum:
exempt_time (optional)

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_preempt_exempt_time - Up

PreemptExemptTime
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_priority - Up

Priority
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_usage_factor - Up

UsageFactor
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Double If "set" is True the number will be set with value; otherwise ignore number contents format: double

v0_0_41_openapi_slurmdbd_config_resp_qos_inner_usage_threshold - Up

UsageThreshold
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Double If "set" is True the number will be set with value; otherwise ignore number contents format: double

v0_0_41_openapi_slurmdbd_config_resp_users_inner - Up

administrator_level (optional)
array[String] AdminLevel granted to the user
Enum:
associations (optional)
coordinators (optional)
default (optional)
flags (optional)
array[String] Flags associated with user
Enum:
name
String User name
old_name (optional)
String Previous user name
wckeys (optional)

v0_0_41_openapi_slurmdbd_config_resp_users_inner_default - Up

account (optional)
String Default Account
wckey (optional)
String Default WCKey

v0_0_41_openapi_slurmdbd_config_resp_users_inner_wckeys_inner - Up

accounting (optional)
cluster
String Cluster name
id (optional)
Integer Unique ID for this user-cluster-wckey combination format: int32
name
String WCKey name
user
String User name
flags (optional)
array[String] Flags associated with the WCKey
Enum:

v0_0_41_openapi_slurmdbd_config_resp_users_inner_wckeys_inner_accounting_inner - Up

allocated (optional)
id (optional)
Integer Association ID or Workload characterization key ID format: int32
start (optional)
Long When the record was started format: int64
TRES (optional)

v0_0_41_openapi_slurmdbd_config_resp_users_inner_wckeys_inner_accounting_inner_TRES - Up

Trackable resources
type
String TRES type (CPU, MEM, etc)
name (optional)
String TRES name (if applicable)
id (optional)
Integer ID used in database format: int32
count (optional)
Long TRES count (0 if listed generically) format: int64

v0_0_41_openapi_slurmdbd_config_resp_users_inner_wckeys_inner_accounting_inner_allocated - Up

seconds (optional)
Long Number of cpu seconds allocated format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_errors_inner - Up

description (optional)
String Long form error description
error_number (optional)
Integer Slurm numeric error identifier format: int32
error (optional)
String Short form error description
source (optional)
String Source of error or where error was first detected

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner - Up

account (optional)
String Account the job ran under
comment (optional)
allocation_nodes (optional)
Integer List of nodes allocated to the job format: int32
array (optional)
association (optional)
block (optional)
String The name of the block to be used (used with Blue Gene systems)
cluster (optional)
String Cluster name
constraints (optional)
String Feature(s) the job requested as a constraint
container (optional)
String Absolute path to OCI container bundle
derived_exit_code (optional)
time (optional)
exit_code (optional)
extra (optional)
String Arbitrary string used for node filtering if extra constraints are enabled
failed_node (optional)
String Name of node that caused job failure
flags (optional)
array[String] Flags associated with the job
Enum:
group (optional)
String Group ID of the user that owns the job
het (optional)
job_id (optional)
Integer Job ID format: int32
name (optional)
String Job name
licenses (optional)
String License(s) required by the job
mcs (optional)
nodes (optional)
String Node(s) allocated to the job
partition (optional)
String Partition assigned to the job
hold (optional)
Boolean Hold (true) or release (false) job
priority (optional)
qos (optional)
String Quality of Service assigned to the job
required (optional)
kill_request_user (optional)
String User ID that requested termination of the job
reservation (optional)
script (optional)
String Job batch script; only the first component in a HetJob is populated or honored
stdin_expanded (optional)
String Job stdin with expanded fields
stdout_expanded (optional)
String Job stdout with expanded fields
stderr_expanded (optional)
String Job stderr with expanded fields
stdout (optional)
String Path to stdout file
stderr (optional)
String Path to stderr file
stdin (optional)
String Path to stdin file
state (optional)
steps (optional)
submit_line (optional)
String Command used to submit the job
tres (optional)
used_gres (optional)
String Generic resources used by job
user (optional)
String User that owns the job
wckey (optional)
working_directory (optional)
String Path to current working directory

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_array - Up

job_id (optional)
Integer Job ID of job array, or 0 if N/A format: int32
limits (optional)
task_id (optional)
task (optional)
String String expression of task IDs in this record

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_array_limits_max_running - Up

tasks (optional)
Integer Maximum number of simultaneously running tasks, 0 if no limit format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_array_task_id - Up

Task ID of this task in job array
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_association - Up

Unique identifier for the association
account (optional)
String Account
cluster (optional)
String Cluster
partition (optional)
String Partition
user
String User name
id (optional)
Integer Numeric association ID format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_comment - Up

administrator (optional)
String Arbitrary comment made by administrator
job (optional)
String Arbitrary comment made by user
system (optional)
String Arbitrary comment from slurmctld

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_derived_exit_code_return_code - Up

Process return code (numeric)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_derived_exit_code_signal_id - Up

Signal sent to process (numeric)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_het - Up

job_id (optional)
Integer Heterogeneous job ID, if applicable format: int32
job_offset (optional)

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_het_job_offset - Up

Unique sequence number applied to this component of the heterogeneous job
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_mcs - Up

label (optional)
String Multi-Category Security label on the job

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_priority - Up

Request specific job priority
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_required_memory_per_cpu - Up

Minimum memory in megabytes per allocated CPU
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_required_memory_per_node - Up

Minimum memory in megabytes per allocated node
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_reservation - Up

id (optional)
Integer Unique identifier of requested reservation format: int32
name (optional)
String Name of reservation to use

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_state - Up

current (optional)
array[String] Current state
Enum:
reason (optional)
String Reason for previous Pending or Failed state

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_CPU_requested_frequency_max - Up

Maximum requested CPU frequency in kHz
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_CPU_requested_frequency_min - Up

Minimum requested CPU frequency in kHz
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_nodes - Up

count (optional)
Integer Number of nodes in the job step format: int32
range (optional)
String Node(s) allocated to the job step
list (optional)
array[String] List of nodes used by the step

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_statistics_CPU - Up

actual_frequency (optional)
Long Average weighted CPU frequency of all tasks in kHz format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_statistics_energy_consumed - Up

Total energy consumed by all tasks in a job in joules
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_task - Up

distribution (optional)
String The layout of the step was when it was running

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tasks - Up

count (optional)
Integer Total number of tasks format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_end - Up

End time (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_start - Up

Time execution began (UNIX timestamp)
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_system - Up

seconds (optional)
Long System CPU time used by the step in seconds format: int64
microseconds (optional)
Integer System CPU time used by the step in microseconds format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_total - Up

seconds (optional)
Long Total CPU time used by the step in seconds format: int64
microseconds (optional)
Integer Total CPU time used by the step in microseconds format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_time_user - Up

seconds (optional)
Long User CPU time used by the step in seconds format: int64
microseconds (optional)
Integer User CPU time used by the step in microseconds format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested_max_inner - Up

type
String TRES type (CPU, MEM, etc)
name (optional)
String TRES name (if applicable)
id (optional)
Integer ID used in database format: int32
count (optional)
Long TRES count (0 if listed generically) format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time - Up

elapsed (optional)
Integer Elapsed time in seconds format: int32
eligible (optional)
Long Time when the job became eligible to run (UNIX timestamp) format: int64
end (optional)
Long End time (UNIX timestamp) format: int64
planned (optional)
start (optional)
Long Time execution began (UNIX timestamp) format: int64
submission (optional)
Long Time when the job was submitted (UNIX timestamp) format: int64
suspended (optional)
Integer Total time in suspended state in seconds format: int32
system (optional)
limit (optional)
total (optional)
user (optional)

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_limit - Up

Maximum run time in minutes
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_planned - Up

Time required to start job after becoming eligible to run in seconds
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Long If "set" is True the number will be set with value; otherwise ignore number contents format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_system - Up

seconds (optional)
Long System CPU time used by the job in seconds format: int64
microseconds (optional)
Long System CPU time used by the job in microseconds format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_total - Up

seconds (optional)
Long Sum of System and User CPU time used by the job in seconds format: int64
microseconds (optional)
Long Sum of System and User CPU time used by the job in microseconds format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_time_user - Up

seconds (optional)
Long User CPU time used by the job in seconds format: int64
microseconds (optional)
Long User CPU time used by the job in microseconds format: int64

v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_wckey - Up

Workload characterization key
wckey
String WCKey name
flags
array[String] Active flags
Enum:

v0_0_41_openapi_slurmdbd_jobs_resp_meta_client - Up

source (optional)
String Client source description
user (optional)
String Client user (if known)
group (optional)
String Client group (if known)

v0_0_41_openapi_slurmdbd_jobs_resp_meta_plugin - Up

type (optional)
String Slurm plugin type (if applicable)
name (optional)
String Slurm plugin name (if applicable)
data_parser (optional)
String Slurm data_parser plugin
accounting_storage (optional)
String Slurm accounting plugin

v0_0_41_openapi_slurmdbd_jobs_resp_meta_slurm - Up

version (optional)
release (optional)
String Slurm release string
cluster (optional)
String Slurm cluster name

v0_0_41_openapi_slurmdbd_jobs_resp_meta_slurm_version - Up

major (optional)
String Slurm release major version
micro (optional)
String Slurm release micro version
minor (optional)
String Slurm release minor version

v0_0_41_openapi_slurmdbd_jobs_resp_warnings_inner - Up

description (optional)
String Long form warning description
source (optional)
String Source of warning or where warning was first detected

v0_0_41_openapi_slurmdbd_stats_resp_statistics - Up

statistics
time_start (optional)
Long When data collection started (UNIX timestamp) format: int64
rollups (optional)
RPCs (optional)
users (optional)

v0_0_41_openapi_slurmdbd_stats_resp_statistics_RPCs_inner - Up

rpc (optional)
String RPC type
count (optional)
Integer Number of RPCs processed format: int32
time (optional)

v0_0_41_openapi_slurmdbd_stats_resp_statistics_RPCs_inner_time - Up

average (optional)
Long Average RPC processing time in microseconds format: int64
total (optional)
Long Total RPC processing time in microseconds format: int64

v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_daily - Up

count (optional)
Integer Number of daily rollups since last_run format: int32
last_run (optional)
Long Last time daily rollup ran (UNIX timestamp) format: int64
duration (optional)

v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_daily_duration - Up

last (optional)
Long Total time spent doing daily daily rollup (seconds) format: int64
max (optional)
Long Longest daily rollup time (seconds) format: int64
time (optional)
Long Total time spent doing daily rollups (seconds) format: int64

v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_hourly - Up

count (optional)
Integer Number of hourly rollups since last_run format: int32
last_run (optional)
Long Last time hourly rollup ran (UNIX timestamp) format: int64
duration (optional)

v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_hourly_duration - Up

last (optional)
Long Total time spent doing last daily rollup (seconds) format: int64
max (optional)
Long Longest hourly rollup time (seconds) format: int64
time (optional)
Long Total time spent doing hourly rollups (seconds) format: int64

v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_monthly - Up

count (optional)
Integer Number of monthly rollups since last_run format: int32
last_run (optional)
Long Last time monthly rollup ran (UNIX timestamp) format: int64
duration (optional)

v0_0_41_openapi_slurmdbd_stats_resp_statistics_rollups_monthly_duration - Up

last (optional)
Long Total time spent doing monthly daily rollup (seconds) format: int64
max (optional)
Long Longest monthly rollup time (seconds) format: int64
time (optional)
Long Total time spent doing monthly rollups (seconds) format: int64

v0_0_41_openapi_slurmdbd_stats_resp_statistics_users_inner - Up

user (optional)
String User ID
count (optional)
Integer Number of RPCs processed format: int32
time (optional)

v0_0_41_openapi_users_add_cond_resp_association_condition - Up

Filters to select associations for users
accounts (optional)
array[String] CSV accounts list
association (optional)
clusters (optional)
array[String] CSV clusters list
partitions (optional)
array[String] CSV partitions list
users
array[String] CSV users list
wckeys (optional)
array[String] CSV WCKeys list

v0_0_41_openapi_users_add_cond_resp_association_condition_association - Up

Association limits and options
comment (optional)
String Arbitrary comment
defaultqos (optional)
String Default QOS
grpjobs (optional)
grpjobsaccrue (optional)
grpsubmitjobs (optional)
grptres (optional)
array[v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested_max_inner] Maximum number of TRES able to be allocated by running jobs in this association and its children
grptresmins (optional)
array[v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested_max_inner] Total number of TRES minutes that can possibly be used by past, present and future jobs in this association and its children
grptresrunmins (optional)
array[v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested_max_inner] Maximum number of TRES minutes able to be allocated by running jobs in this association and its children
grpwall (optional)
maxjobs (optional)
maxjobsaccrue (optional)
maxsubmitjobs (optional)
maxtresminsperjob (optional)
array[v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested_max_inner] Maximum number of TRES minutes each job is able to use in this association
maxtresrunmins (optional)
array[v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested_max_inner] Maximum number of TRES minutes able to be allocated by running jobs in this association
maxtresperjob (optional)
array[v0_0_41_openapi_slurmdbd_jobs_resp_jobs_inner_steps_inner_tres_requested_max_inner] Maximum number of TRES each job is able to use in this association
maxtrespernode (optional)
maxwalldurationperjob (optional)
minpriothresh (optional)
parent (optional)
String Name of parent account
priority (optional)
qoslevel (optional)
array[String] List of available QOS names
fairshare (optional)
Integer Allocated shares used for fairshare calculation format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_grpjobs - Up

Maximum number of running jobs in this association and its children
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_grpjobsaccrue - Up

Maximum number of pending jobs able to accrue age priority in this association and its children
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_grpsubmitjobs - Up

Maximum number of jobs which can be in a pending or running state at any time in this association and its children
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_grpwall - Up

Maximum wall clock time in minutes able to be allocated by running jobs in this association and its children
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_maxjobs - Up

Maximum number of running jobs per user in this association
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_maxjobsaccrue - Up

Maximum number of pending jobs able to accrue age priority at any given time in this association
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_maxsubmitjobs - Up

Maximum number of jobs which can be in a pending or running state at any time in this association
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_maxwalldurationperjob - Up

Maximum wall clock time each job is able to use in this association
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_association_condition_association_minpriothresh - Up

Minimum priority required to reserve resources when scheduling
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_openapi_users_add_cond_resp_user - Up

Admin level of user, DefaultAccount, DefaultWCKey
adminlevel (optional)
array[String] AdminLevel granted to the user
Enum:
defaultaccount (optional)
String Default account
defaultwckey (optional)
String Default WCKey

v0_0_41_update_node_msg_resume_after - Up

Number of seconds after which to automatically resume DOWN or DRAINED node
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32

v0_0_41_update_node_msg_weight - Up

Weight of the node for scheduling purposes
set (optional)
Boolean True if number has been set; False if number is unset
infinite (optional)
Boolean True if number has been set to infinite; "set" and "number" will be ignored
number (optional)
Integer If "set" is True the number will be set with value; otherwise ignore number contents format: int32