Skip to content
Open
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
47 changes: 35 additions & 12 deletions docs/v3-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4827,16 +4827,31 @@ components:
type: string
CreateBulkActionRequestBody:
oneOf:
- type: object
- title: Cancel by filter
type: object
required:
- action
- filter
properties:
action:
type: string
enum:
- cancel
filter:
$ref: "#/components/schemas/BulkActionFilter"
name:
type: string
maxLength: 255
- title: Cancel by run IDs
type: object
required:
- action
- runIds
properties:
action:
type: string
enum:
- cancel
runIds:
type: array
minItems: 1
Expand All @@ -4846,21 +4861,34 @@ components:
name:
type: string
maxLength: 255
oneOf:
- required:
- filter
- required:
- runIds
- type: object
- title: Replay by filter
type: object
required:
- action
- filter
properties:
action:
type: string
enum:
- replay
filter:
$ref: "#/components/schemas/BulkActionFilter"
name:
type: string
maxLength: 255
targetRegion:
type: string
description: Region identifier to replay runs in. When omitted, each replay keeps the original run's region.
- title: Replay by run IDs
type: object
required:
- action
- runIds
properties:
action:
type: string
enum:
- replay
runIds:
type: array
minItems: 1
Expand All @@ -4873,11 +4901,6 @@ components:
targetRegion:
type: string
description: Region identifier to replay runs in. When omitted, each replay keeps the original run's region.
oneOf:
- required:
- filter
- required:
- runIds
BulkActionObject:
type: object
required:
Expand Down