Seqera Labs actions API

Pipeline actions

Operations 10

GET /actions List actions #
POST /actions Create action #
POST /actions/cron/resolve Resolve a schedule description to a cron expression #
GET /actions/types List action event types #
GET /actions/validate Validate action name #
DELETE /actions/{actionId} Delete action #
GET /actions/{actionId} Describe action #
PUT /actions/{actionId} Update action #
POST /actions/{actionId}/launch Trigger Tower Launch action #
POST /actions/{actionId}/pause Pause or resume action #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/seqera-labs-actions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

seqera-labs-actions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: info@seqera.io
    url: https://seqera.io
  description: Seqera Platform services API
  title: Seqera Actions API
  version: 1.181.0
servers:
- url: https://api.cloud.seqera.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- description: Pipeline actions
  name: actions
paths:
  /actions:
    get:
      description: Lists all available actions in a user context, enriched by `attributes`. Append `?workspaceId` to list actions in a workspace context.
      operationId: ListActions
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      - description: 'Additional attribute values to include in the response (`labels`). Returns an empty value (`labels: null`) if omitted.'
        in: query
        name: attributes
        schema:
          items:
            $ref: '#/components/schemas/ActionQueryAttribute'
          type: array
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListActionsResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: List actions
      tags:
      - actions
    post:
      description: Creates a new pipeline action. Append `?workspaceId` to associate the action with the given workspace.
      operationId: CreateAction
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateActionRequest'
        description: Action create request
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateActionResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Create action
      tags:
      - actions
  /actions/cron/resolve:
    post:
      operationId: ResolveCronExpression
      parameters:
      - explode: false
        in: query
        name: workspaceId
        schema:
          format: int64
          type:
          - integer
          - 'null'
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties:
                type: string
              type: object
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
          description: ResolveCronExpression 200 response
      security:
      - BearerAuth: []
      summary: Resolve a schedule description to a cron expression
      tags:
      - actions
  /actions/types:
    get:
      description: Lists the supported event types that trigger a pipeline action. Append `?workspaceId` to list event types in a workspace context.
      operationId: ListActionTypes
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListEventTypesResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: List action event types
      tags:
      - actions
  /actions/validate:
    get:
      description: Confirms the validity of the given action name. Append `?name=<your_action_name>`.
      operationId: ValidateActionName
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      - description: Action name to validate
        in: query
        name: name
        schema:
          type: string
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Duplicate element
      security:
      - BearerAuth: []
      summary: Validate action name
      tags:
      - actions
  /actions/{actionId}:
    delete:
      description: Deletes the pipeline action identified by the given `actionId`.
      operationId: DeleteAction
      parameters:
      - description: Action string identifier
        in: path
        name: actionId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Delete action
      tags:
      - actions
    get:
      description: Retrieves the details of the action identified by the given `actionId`.
      operationId: DescribeAction
      parameters:
      - description: Action string identifier
        in: path
        name: actionId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      - description: 'Additional attribute values to include in the response (`labels`). Returns an empty value (`labels: null`) if omitted.'
        in: query
        name: attributes
        schema:
          items:
            $ref: '#/components/schemas/ActionQueryAttribute'
          type: array
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DescribeActionResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Describe action
      tags:
      - actions
    put:
      description: Updates the details of the action identified by the given `actionId`. The `source` of an existing action cannot be changed.
      operationId: UpdateAction
      parameters:
      - description: Action string identifier
        in: path
        name: actionId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateActionRequest'
        description: Action update request
        required: true
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Update action
      tags:
      - actions
  /actions/{actionId}/launch:
    post:
      description: Triggers the execution of the Tower Launch action identified by the given `actionId`.
      operationId: LaunchAction
      parameters:
      - description: Action string identifier
        in: path
        name: actionId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LaunchActionRequest'
        description: Action launch request
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LaunchActionResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Trigger Tower Launch action
      tags:
      - actions
  /actions/{actionId}/pause:
    post:
      description: Pauses or resumes the pipeline action identified by the given `actionId`.
      operationId: PauseAction
      parameters:
      - description: Action string identifier
        in: path
        name: actionId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmptyBodyRequest'
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Pause or resume action
      tags:
      - actions
components:
  schemas:
    ActionResponseDto:
      properties:
        config:
          $ref: '#/components/schemas/Action.ConfigType'
        dateCreated:
          format: date-time
          type: string
        error:
          type: string
        event:
          $ref: '#/components/schemas/Action.EventType'
        hookId:
          type: string
        hookUrl:
          type: string
        id:
          type: string
        labels:
          items:
            $ref: '#/components/schemas/LabelDbDto'
          type: array
        lastSeen:
          format: date-time
          type: string
        lastUpdated:
          format: date-time
          type: string
        launch:
          $ref: '#/components/schemas/LaunchDbDto'
        name:
          type: string
        nextExecution:
          format: date-time
          type: string
        source:
          $ref: '#/components/schemas/Action.Source'
        status:
          $ref: '#/components/schemas/Action.Status'
      type: object
    AzBatchConfig:
      allOf:
      - $ref: '#/components/schemas/ComputeConfig'
      - properties:
          autoPoolMode:
            deprecated: true
            type: boolean
          deleteJobsOnCompletion:
            allOf:
            - $ref: '#/components/schemas/JobCleanupPolicy'
            readOnly: true
          deleteJobsOnCompletionEnabled:
            type:
            - boolean
            - 'null'
          deletePoolsOnCompletion:
            type: boolean
          deleteTasksOnCompletion:
            type:
            - boolean
            - 'null'
          forge:
            $ref: '#/components/schemas/AzBatchForgeConfig'
          fusion2Enabled:
            type: boolean
          headJobCpus:
            description: Number of CPU slots reserved on the head pool VM for the Nextflow head job. Defaults to 1 so multiple head jobs can share a head pool VM; increase to dedicate more CPU and memory to each head job.
            example: 1
            format: int32
            type:
            - integer
            - 'null'
          headJobMemoryMb:
            description: Memory in MiB reserved for the Nextflow head job container. When omitted, the value is derived from the head pool VM size as the per-slot share (vmMemory / vmCpus) multiplied by the requested slot count.
            example: 4096
            format: int32
            type:
            - integer
            - 'null'
          headPool:
            type: string
          jobMaxWallClockTime:
            description: 'Maximum wall clock time for Azure Batch jobs before automatic termination. Accepts human-readable duration syntax (e.g., ''7d'', ''1d1h1m''). Defaults to 7d when not specified. Maximum: 180 days.'
            example: 7d
            type:
            - string
            - 'null'
          managedIdentityClientId:
            type:
            - string
            - 'null'
          managedIdentityHeadResourceId:
            type:
            - string
            - 'null'
          managedIdentityPoolClientId:
            type:
            - string
            - 'null'
          managedIdentityPoolResourceId:
            type:
            - string
            - 'null'
          region:
            type: string
          subnetId:
            description: Azure VNet subnet resource ID for private network isolation. Requires Entra (service principal) credentials.
            example: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet
            type:
            - string
            - 'null'
          terminateJobsOnCompletion:
            type:
            - boolean
            - 'null'
          tokenDuration:
            type: string
          waveEnabled:
            type: boolean
          workerPool:
            type: string
        type: object
      title: Azure Batch configuration
      type: object
    CronActionConfig:
      allOf:
      - $ref: '#/components/schemas/Action.ConfigType'
      - properties:
          expression:
            type: string
          preset:
            type: string
          timezone:
            type: string
        type: object
      title: Cron action config
      type: object
    GoogleLifeSciencesConfig:
      allOf:
      - $ref: '#/components/schemas/ComputeConfig'
      - properties:
          bootDiskSizeGb:
            format: int32
            type: integer
          copyImage:
            type: string
          debugMode:
            format: int32
            type: integer
          headJobCpus:
            format: int32
            type: integer
          headJobMemoryMb:
            format: int32
            type: integer
          labels:
            additionalProperties:
              type: string
            type: object
          location:
            type: string
          nfsMount:
            type: string
          nfsTarget:
            type: string
          preemptible:
            type: boolean
          projectId:
            type: string
          region:
            type: string
          sshDaemon:
            type: boolean
          sshImage:
            type: string
          usePrivateAddress:
            type: boolean
          zones:
            items:
              type: string
            type: array
        type: object
      title: Google Life Sciences configuration (retired)
      type: object
    CronActionRequest:
      properties:
        expression:
          type: string
        preset:
          type: string
        timezone:
          type: string
      type: object
    Action.EventType:
      discriminator:
        mapping:
          bucket: '#/components/schemas/BucketActionEvent'
          cron: '#/components/schemas/CronActionEvent'
          github: '#/components/schemas/GithubActionEvent'
          tower: '#/components/schemas/Action.TowerActionEvent'
        propertyName: discriminator
      oneOf:
      - $ref: '#/components/schemas/GithubActionEvent'
      - $ref: '#/components/schemas/Action.TowerActionEvent'
      - $ref: '#/components/schemas/BucketActionEvent'
      - $ref: '#/components/schemas/CronActionEvent'
      properties:
        discriminator:
          type: string
        timestamp:
          format: date-time
          type: string
      type: object
    SchedConfig.Pool:
      properties:
        desiredWarm:
          description: Target number of idle VMs to keep warm. Bounds total warm-VM cost across all of this CE's pool clusters.
          format: int32
          type: integer
        enabled:
          description: Whether the warm pool is active for this CE. When false, the scheduler will not maintain idle VMs.
          type: boolean
        scaleToZeroSecs:
          description: Seconds of inactivity after which the warm pool scales to zero. Set to 0 to never scale to zero.
          format: int32
          type: integer
      type: object
    AltairPbsComputeConfig:
      allOf:
      - $ref: '#/components/schemas/AbstractGridConfig'
      title: Altair PBS configuration
      type: object
    ForgeConfig:
      properties:
        allocStrategy:
          enum:
          - BEST_FIT
          - BEST_FIT_PROGRESSIVE
          - SPOT_CAPACITY_OPTIMIZED
          - SPOT_PRICE_CAPACITY_OPTIMIZED
          type: string
        allowBuckets:
          items:
            type: string
          type: array
        arm64Enabled:
          type: boolean
        bidPercentage:
          format: int32
          type: integer
        disposeOnDeletion:
          type: boolean
        dragenAmiId:
          type: string
        dragenEnabled:
          type: boolean
        dragenInstanceType:
          type: string
        ebsAutoScale:
          type: boolean
        ebsBlockSize:
          format: int32
          type: integer
        ebsBootSize:
          format: int32
          type: integer
        ec2KeyPair:
          type: string
        ecsConfig:
          type: string
        efsCreate:
          type: boolean
        efsId:
          type: string
        efsMount:
          type: string
        fargateHeadEnabled:
          type: boolean
        fsxMount:
          type: string
        fsxName:
          type: string
        fsxSize:
          format: int32
          type: integer
        fusionEnabled:
          type: boolean
        gpuEnabled:
          type: boolean
        imageId:
          type: string
        instanceTypes:
          items:
            type: string
          type: array
        maxCpus:
          format: int32
          type: integer
        minCpus:
          format: int32
          type: integer
        securityGroups:
          items:
            type: string
          type: array
        subnets:
          items:
            type: string
          type: array
        type:
          enum:
          - SPOT
          - EC2
          type: string
        vpcId:
          type: string
      type: object
    ComputeEnv.Status:
      enum:
      - CREATING
      - AVAILABLE
      - DISABLED
      - DELETING
      - ERRORED
      - INVALID
      - DELETED
      type: string
    AbstractGridConfig:
      allOf:
      - $ref: '#/components/schemas/ComputeConfig'
      - properties:
          computeQueue:
            type: string
          headJobOptions:
            type: string
          headQueue:
            type: string
          hostName:
            type: string
          launchDir:
            type: string
          maxQueueSize:
            format: int32
            type: integer
          port:
            format: int32
            type: integer
          propagateHeadJobOptions:
            type: boolean
          userName:
            type: string
        type: object
      type: object
    Action.Source:
      enum:
      - github
      - tower
      - bucket
      - cron
      type: string
      x-enum-varnames:
      - github
      - tower
      - bucket
      - cron
    LaunchDbDto:
      properties:
        commitId:
          type: string
        computeEnv:
          $ref: '#/components/schemas/ComputeEnv_ComputeConfig_'
        configProfiles:
          items:
            type: string
          type: array
        configText:
          type: string
        dateCreated:
          format: date-time
          type: string
        entryName:
          type: string
        headJobCpus:
          format: int32
          type: integer
        headJobMemoryMb:
          format: int32
          type: integer
        id:
          type: string
        lastUpdated:
          format: date-time
          type: string
        launchContainer:
          type: string
        mainScript:
          type: string
        optimizationId:
          type: string
        optimizationTargets:
          type: string
        outputDir:
          description: Per-run output directory passed as Nextflow -output-dir (requires Nextflow 24.10.0 or later and workflow outputs syntax).
          type:
          - string
          - 'null'
        paramsText:
          type: string
        pipeline:
          type: string
        pipelineSchemaId:
          format: int64
          type: integer
        postRunScript:
          type: string
        preRunScript:
          type: string
        pullLatest:
          type: boolean
        resume:
          type: boolean
        resumeLaunchId:
          type: string
        revision:
          type: string
        runName:
          type: string
        schemaName:
          type: string
        sessionId:
          type: string
        stubRun:
          type: boolean
        syntaxParser:
          enum:
          - v1
          - v2
          type:
          - string
          - 'null'
        towerConfig:
          type: string
        userSecrets:
          items:
            type: string
          type: array
        workDir:
          type: string
        workspaceId:
          format: int64
          type: integer
        workspaceSecrets:
          items:
            type: string
          type: array
      type: object
    LabelDbDto:
      properties:
        dateCreated:
          format: date-time
          type: string
        id:
          format: int64
          type: integer
        isDefault:
          type: boolean
        isDynamic:
          type: boolean
        isInterpolated:
          type: boolean
        name:
          type: string
        resource:
          type: boolean
        value:
          type: string
      type: object
    Action.TowerActionEvent:
      allOf:
      - $ref: '#/components/schemas/Action.EventType'
      - properties:
          workflowId:
            type: string
        type: object
      title: Tower action event
      type: object
    MoabComputeConfig:
      allOf:
      - $ref: '#/components/schemas/AbstractGridConfig'
      title: Moab configuration
      type: object
    LaunchActionRequest:
      properties:
        params:
          additionalProperties:
            type: object
          type: object
      type: object
    UpdateActionRequest:
      properties:
        bucket:
          $ref: '#/components/schemas/BucketActionRequest'
        cron:
          $ref: '#/components/schemas/CronActionRequest'
        launch:
          $ref: '#/components/schemas/WorkflowLaunchRequest'
        name:
          type: string
      type: object
    SeqeraComputeConfig:
      allOf:
      - $ref: '#/components/schemas/ComputeConfig'
      - properties:
          defaultDataRetentionPolicy:
            type: boolean
          instanceTypeSize:
            allOf:
            - $ref: '#/components/schemas/SeqeraComputeCloudInstanceTypeSize'
            description: Size of the Data Studios instance (SMALL, MEDIUM, LARGE)
          region:
            type: string
        type: object
      title: Seqera Compute configuration
      type: object
    ListEventTypesResponse:
      properties:
        eventTypes:
          items:
            $ref: '#/components/schemas/EventType'
          type: array
      type: object
    CreateActionRequest:
      properties:
        bucket:
          $ref: '#/components/schemas/BucketActionRequest'
        cron:
          $ref: '#/components/schemas/CronActionRequest'
        launch:
          $ref: '#/components/schemas/WorkflowLaunchRequest'
        name:
          type: string
        source:
          $ref: '#/components/schemas/Action.Source'
      type: object
    EventType:
      properties:
        description:
          type: string
        display:
          type: string
        enabled:
          type: boolean
        source:
          type: string
      type: object
    WorkflowLaunchRequest:
      properties:
        commitId:
          type: string
        computeEnvId:
          type: string
        configProfiles:
          items:
            type: string
          type: array
        configText:
          type: string
        dateCreated:
          format: date-time
          type: string
        entryName:
          type: string
        headJobCpus:
          format: int32
          type: integer
        headJobMemoryMb:
          format: int32
          type: integer
        id:
          type: string
        labelIds:
          items:
            format: int64
            type: integer
          type: array
        launchContainer:
          type: string
        mainScript:
          type: string
        optimizationId:
          type: string
        optimizationTargets:
          type: string
        outputDir:
          description: Per-run output directory passed as Nextflow -output-dir (requires Nextflow 24.10.0 or later and workflow outputs syntax).
          type:
          - string
          - 'null'
        paramsText:
          type: string
        pipeline:
          type: string
        pipelineSchemaId:
          format: int64
          type: integer
        postRunScript:
          type: string
        preRunScript:
          type: string
        pullLatest:
          type: boolean
        resume:
          type: boolean
        revision:
          type: string
        runName:
          type: string
        schemaName:
          type: string
        sessionId:
          type: string
        stubRun:
          type: boolean
        syntaxParser:
          enum:
          - v1
          - v2
          type:
          - string
          - 'null'
        towerConfig:
          type: string
        userSecrets:
          items:
            type: string
          type: array
        workDir:
          type: string
        workspaceSecrets:
          items:
            type: string
          type: array
      type: object
    BucketActionRequest:
      properties:
        dataLinkId:
          type: string
        datasetId:
          type: string
        events:
          items:
            type: string
          type: array
        filter:
          type: string
        markerFile:
          type: string
      type: object
    SeqeraComputeCloudInstanceTypeSize:
      enum:
      - SMALL
      - MEDIUM
      - LARGE
      type: string
    SlurmComputeConfig:
      allOf:
      - $ref: '#/components/schemas/AbstractGridConfig'
      title: Slurm configuration
      type: object
    ListActionsResponse.ActionInfo:
      properties:
        config:
          $ref: '#/components/schemas/Action.ConfigType'
        dateCreated:
          format: date-time
          type: string
        endpoint:
          type: string
        error:
          type: string
        event:
          $ref: '#/components/schemas/Action.EventType'
        hint:
          type: string
        id:
          type: string
        labels:
          items:
            $ref: '#/components/schemas/LabelDbDto'
          type: array
        lastSeen:
          format: date-time
          type: string
        name:
          type: string
        nextExecution:
          format: date-time
          type: string
        pipeline:
          type: string
        source:
          $ref: '#/components/schemas/Action.Source'
        status:
          $ref: '#/components/schemas/Action.Status'
        usageCmd:
          type: string
      type: object
    AwsBatchConfig:
      allOf:
      - $ref: '#/components/schemas/ComputeConfig'
      - properties:
          cliPath:
            type: string
          computeJobRole:
            type: string
          computeQueue:
            type: string
          deletedResources:
            items:
              additionalProperties:
                type: object
              type: object
            readOnly: true
            type: array
          dragenInstanceType:
            type: string
          dragenQueue:
            type: string
          executionRole:
            type: string
          forge:
            $ref: '#/components/schemas/ForgeConfig'
          forgedResources:
            items:
              additionalProperties:
                type: object
              type: object
            type: array
          fusion2Enabled:
            type: boolean
          fusionSnapshots:
            type: boolean
          headJobCpus:
            format: int32
            type: integer
          headJobMemoryMb:
            format: int32
            type: integer
          headJobRole:
            type: string
          headQueue:
            type: string
          logGroup:
            type: string
          lustreId:
            deprecated: true
            type: string
          nvnmeStorageEnabled:
            type: boolean
          region:
            type: string
          storageType:
            deprecated: true
            type: string
          volumes:
            items:
              type: string
            type: array
          waveEnabled:
            type: boolean
        type: object
      title: AWS Batch configuration
      type: object
    AzBatchPoolConfig:
      description: Azure Batch pool configuration for head or worker pool
      properties:
        autoScale:
          type: boolean
        bootDiskSizeGB:
          description: Boot disk size in GB for this pool's nodes. Overrides the forge-level bootDiskSizeGB. When omitted, falls back to the forge-level value or Azure's default.
          example: 100
          format: int32
          maximum: 4095
          minimum: 50
          type:
          - integer
          - 'null'
        vmCount:
          format: int32
          type: integer
        vmType:
          type: string
      type: object
    GkeComputeConfig:
      allOf:
      - $ref: '#/components/schemas/K8sComputeConfig'
      - properties:
          clusterName:
            description: The GKE cluster name
            type: string
          fusion2Enabled:
            type: boolean
          region:
            description: The GKE cluster region - or - zone
            type: string
          waveEnabled:
            type: boolean
        type: object
      title: Google GKE cluster configuration
      type: object
    GithubActionEvent:
      allOf:
      - $ref: '#/components/schemas/Action.EventType'
      - properties:
          commitId:
            type: string
          commitMessage:
            type: string
          pusherEmail:
            type: string
          pusherName:
            type: string
          ref:
            type: string
        type: object
      title: GitHub action event
      type: object
    GoogleBatchConfig:
      allOf:
      - $ref: '#/components/schemas/ComputeConfig'
      - properties:
          bootDiskImage:
            type: string
          bootDiskSizeGb:
            format: int32
            type: integer
          computeJobsInstanceTemplate:
   

# --- truncated at 32 KB (52 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/seqera-labs/refs/heads/main/openapi/seqera-labs-actions-api-openapi.yml