Calyptia cluster_object_regex API

The cluster_object_regex API from Calyptia — 2 operation(s) for cluster_object_regex.

Operations 5

POST /v1/pipelines/{pipelineID}/cluster_object_regexes Create cluster object regex #
GET /v1/pipelines/{pipelineID}/cluster_object_regexes Cluster object regexes #
GET /v1/cluster_object_regexes/{regexID} Cluster object regex #
PATCH /v1/cluster_object_regexes/{regexID} Update cluster object regex #
DELETE /v1/cluster_object_regexes/{regexID} Delete cluster object regex #

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/calyptia-cluster-object-regex-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

calyptia-cluster-object-regex-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Calyptia Cloud agent Cluster Object Regex API
  version: '1.0'
  description: HTTP API service of Calyptia Cloud
  contact:
    name: Calyptia
    email: hello@calyptia.com
    url: https://cloud.calyptia.com
  termsOfService: https://calyptia.com/terms/
servers:
- url: https://cloud-api.calyptia.com
  description: prod
- url: https://cloud-api-dev.calyptia.com
  description: dev
- url: https://cloud-api-staging.calyptia.com
  description: staging
- url: http://localhost:{port}
  description: local
  variables:
    port:
      default: '5000'
tags:
- name: cluster_object_regex
paths:
  /v1/pipelines/{pipelineID}/cluster_object_regexes:
    parameters:
    - name: pipelineID
      in: path
      required: true
      schema:
        type: string
        format: uuid
    post:
      operationId: createClusterObjectRegex
      summary: Create cluster object regex
      description: Create a new cluster object regex.
      security:
      - user: []
      - project: []
      tags:
      - cluster_object_regex
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateClusterObjectRegex'
      responses:
        201:
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatedClusterObjectRegex'
    get:
      operationId: clusterObjectRegexes
      summary: Cluster object regexes
      description: List all cluster object regexes in descending order with backward pagination.
      security:
      - user: []
      - project: []
      tags:
      - cluster_object_regex
      parameters:
      - name: last
        in: query
        required: false
        schema:
          type: integer
          minimum: 0
        description: Last cluster object regexes.
      - name: before
        in: query
        required: false
        schema:
          type: string
        description: Cluster object regexes before the given cursor.
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClusterObjectRegexes'
  /v1/cluster_object_regexes/{regexID}:
    parameters:
    - name: regexID
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: clusterObjectRegex
      summary: Cluster object regex
      description: 'Retrieve a single cluster object regex by ID.

        On this endpoint, all the matching cluser objects are also returned.'
      security:
      - user: []
      - project: []
      tags:
      - cluster_object_regex
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClusterObjectRegex'
    patch:
      operationId: updateClusterObjectRegex
      summary: Update cluster object regex
      description: Update a cluster object regex details.
      security:
      - user: []
      - project: []
      tags:
      - cluster_object_regex
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateClusterObjectRegex'
      responses:
        '200':
          description: Updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdatedClusterObjectRegex'
    delete:
      operationId: deleteClusterObjectRegex
      summary: Delete cluster object regex
      description: Delete a single cluster object regex by its ID.
      security:
      - user: []
      - project: []
      tags:
      - cluster_object_regex
      responses:
        '204':
          description: No Content
components:
  schemas:
    ClusterObjectKind:
      type: string
      description: Kind of the kubernetes object
      default: namespace
      enum:
      - namespace
    UpdateClusterObjectRegex:
      type: object
      properties:
        regex:
          type:
          - string
          - 'null'
          minLength: 0
          default: null
        description:
          type:
          - string
          - 'null'
          maxLength: 100
          default: null
    CreateClusterObjectRegex:
      type: object
      properties:
        regex:
          type: string
          minLength: 0
        description:
          type: string
          maxLength: 100
      required:
      - regex
      - description
    ClusterObjectRegex:
      type: object
      properties:
        id:
          type: string
          format: uuid
        pipelineID:
          type: string
          format: uuid
        regex:
          type: string
        description:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        clusterObjects:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ClusterObject'
          default: null
          description: Will only be present on the `clusterObjectRegex` operation.
      required:
      - id
      - pipelineID
      - regex
      - description
      - createdAt
      - updatedAt
    ClusterObject:
      type: object
      description: A kubernetes cluster object that belongs to a given core instance.
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          format: kubernetes label
        kind:
          $ref: '#/components/schemas/ClusterObjectKind'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
      - id
      - name
      - kind
      - createdAt
      - updatedAt
    CreatedClusterObjectRegex:
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdAt:
          type: string
          format: date-time
      required:
      - id
      - createdAt
    UpdatedClusterObjectRegex:
      type: object
      properties:
        updatedAt:
          type: string
          format: date-time
      required:
      - updatedAt
    ClusterObjectRegexes:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/ClusterObjectRegex'
        endCursor:
          type:
          - string
          - 'null'
          default: null
      required:
      - items
      - endCursor
  securitySchemes:
    user:
      type: http
      scheme: bearer
    project:
      name: X-Project-Token
      type: apiKey
      in: header
    auth0:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://sso.calyptia.com/oauth/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://sso.calyptia.com/authorize
          tokenUrl: https://sso.calyptia.com/oauth/token
          scopes: {}