Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9115,6 +9115,10 @@
"JobBatchRequest": {
"type": "object",
"properties": {
"_group": {
"type": "string",
"description": "Stats group this batch accumulates under."
},
"concurrency": {
"type": "integer",
"description": "Do this many commands concurrently. Defaults to --transfers if not set."
Expand All @@ -9131,6 +9135,10 @@
"_path": {
"type": "string",
"description": "rc/path"
},
"_group": {
"type": "string",
"description": "Stats group this input accumulates under."
}
},
"additionalProperties": true
Expand Down
6 changes: 6 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5698,6 +5698,9 @@ components:
JobBatchRequest:
type: object
properties:
_group:
type: string
description: Stats group this batch accumulates under.
concurrency:
type: integer
description: Do this many commands concurrently. Defaults to --transfers if not set.
Expand All @@ -5712,6 +5715,9 @@ components:
_path:
type: string
description: rc/path
_group:
type: string
description: Stats group this input accumulates under.
additionalProperties: true
_async:
type: boolean
Expand Down
4 changes: 4 additions & 0 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1945,12 +1945,16 @@ export type webhooks = Record<string, never>;
export interface components {
schemas: {
JobBatchRequest: {
/** @description Stats group this batch accumulates under. */
_group?: string;
/** @description Do this many commands concurrently. Defaults to --transfers if not set. */
concurrency?: number;
/** @description List of inputs to the commands with an extra _path parameter. */
inputs?: ({
/** @description rc/path */
_path: string;
/** @description Stats group this input accumulates under. */
_group?: string;
} & {
[key: string]: unknown;
})[];
Expand Down