Spectro Cloud registries API

The registries API from Spectro Cloud — 28 operation(s) for registries.

Operations 38

GET /v1/registries/helm Retrieves a list of Helm registries #
POST /v1/registries/helm Creates a helm registry #
GET /v1/registries/helm/summary Retrieves a list of helm registries as summary #
POST /v1/registries/helm/validate Check if helm registry is valid #
DELETE /v1/registries/helm/{uid} Deletes the specified helm registry #
GET /v1/registries/helm/{uid} Returns the specified Helm registry #
PUT /v1/registries/helm/{uid} Updates the specified helm registry #
POST /v1/registries/helm/{uid}/sync Sync Helm registry #
GET /v1/registries/helm/{uid}/sync/status Get helm registry sync status #
GET /v1/registries/metadata Retrieves a list of registries metadata #
POST /v1/registries/oci/basic Creates a basic oci registry #
POST /v1/registries/oci/basic/validate Check if oci registry is valid #
POST /v1/registries/oci/ecr Creates a ecr registry #
POST /v1/registries/oci/ecr/validate Check if ecr registry is valid #
GET /v1/registries/oci/image Creates a image registry #
GET /v1/registries/oci/summary Retrieves a oci registries summary #
GET /v1/registries/oci/{uid} Returns the information of specified oci registry #
DELETE /v1/registries/oci/{uid}/basic Deletes the specified basic oci registry #
GET /v1/registries/oci/{uid}/basic Returns the basic oci registry #
PUT /v1/registries/oci/{uid}/basic Updates the specified basic oci registry #
POST /v1/registries/oci/{uid}/basic/sync Sync oci registry #
GET /v1/registries/oci/{uid}/basic/sync/status Get oci registry sync status #
DELETE /v1/registries/oci/{uid}/ecr Deletes the specified ecr registry #
GET /v1/registries/oci/{uid}/ecr Returns the specified ecr registry #
PUT /v1/registries/oci/{uid}/ecr Updates the specified ecr registry #
POST /v1/registries/oci/{uid}/ecr/sync Sync ecr registry #
GET /v1/registries/oci/{uid}/ecr/sync/status Get ecr registry sync status #
GET /v1/registries/pack Retrieves a list of Pack registries #
POST /v1/registries/pack Creates a pack registry #
GET /v1/registries/pack/summary Retrieves a list of pack registries as summary #
POST /v1/registries/pack/validate Check if pack registry is valid #
DELETE /v1/registries/pack/{uid} Deletes the specified pack registry #
GET /v1/registries/pack/{uid} Returns the specified Pack registry #
PUT /v1/registries/pack/{uid} Updates the specified pack registry #
POST /v1/registries/pack/{uid}/sync Sync Pack registry #
GET /v1/registries/pack/{uid}/sync/status Get pack registry sync status #
GET /v1/registries/{registryName}/config Returns the specified system scope registry configuration #
DELETE /v1/registries/{uid} Deletes the specified registry #

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/spectro-cloud-registries-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

spectro-cloud-registries-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Local Management APIs activations Registries API
  version: v1
servers:
- url: https://edge-host-ip:5080
tags:
- name: registries
  x-displayName: Registries
paths:
  /v1/registries/helm:
    parameters:
    - in: query
      name: scope
      schema:
        type: string
        enum:
        - system
        - tenant
        - all
        default: all
    get:
      operationId: v1RegistriesHelmList
      parameters:
      - description: 'Set of fields to be presented in the response with values. The fields are comma separated. Eg: metadata.uid,metadata.name'
        in: query
        name: fields
        schema:
          type: string
      - description: 'Filters can be combined with AND, OR operators with field path name. Eg: metadata.name=TestServiceANDspec.cloudType=aws


          Server will be restricted to certain fields based on the indexed data for each resource.'
        in: query
        name: filters
        schema:
          type: string
      - description: 'Specify the fields with sort order. 1 indicates ascending and -1 for descending. Eg: orderBy=metadata.name=1,metadata.uid=-1'
        in: query
        name: orderBy
        schema:
          type: string
      - description: 'limit is a maximum number of responses to return for a list call. Default and maximum value of the limit is 50.

          If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results.'
        in: query
        name: limit
        schema:
          type: integer
          format: int64
          default: 50
      - description: offset is the next index number from which the response will start. The response offset value can be used along with continue token for the pagination.
        in: query
        name: offset
        schema:
          type: integer
          format: int64
      - description: continue token to paginate the subsequent data items
        in: query
        name: continue
        schema:
          type: string
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: An array of registry items
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1HelmRegistries'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Retrieves a list of Helm registries
      tags:
      - registries
    post:
      operationId: v1RegistriesHelmCreate
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '201':
          description: Created successfully
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1Uid'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Creates a helm registry
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1HelmRegistryEntity'
  /v1/registries/helm/summary:
    parameters:
    - in: query
      name: scope
      schema:
        type: string
        enum:
        - system
        - tenant
        - all
        default: all
    get:
      operationId: v1RegistriesHelmSummaryList
      parameters:
      - description: 'Set of fields to be presented in the response with values. The fields are comma separated. Eg: metadata.uid,metadata.name'
        in: query
        name: fields
        schema:
          type: string
      - description: 'Filters can be combined with AND, OR operators with field path name. Eg: metadata.name=TestServiceANDspec.cloudType=aws


          Server will be restricted to certain fields based on the indexed data for each resource.'
        in: query
        name: filters
        schema:
          type: string
      - description: 'Specify the fields with sort order. 1 indicates ascending and -1 for descending. Eg: orderBy=metadata.name=1,metadata.uid=-1'
        in: query
        name: orderBy
        schema:
          type: string
      - description: 'limit is a maximum number of responses to return for a list call. Default and maximum value of the limit is 50.

          If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results.'
        in: query
        name: limit
        schema:
          type: integer
          format: int64
          default: 50
      - description: offset is the next index number from which the response will start. The response offset value can be used along with continue token for the pagination.
        in: query
        name: offset
        schema:
          type: integer
          format: int64
      - description: continue token to paginate the subsequent data items
        in: query
        name: continue
        schema:
          type: string
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: An array of registry items
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1HelmRegistriesSummary'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Retrieves a list of helm registries as summary
      tags:
      - registries
  /v1/registries/helm/validate:
    post:
      description: Returns no contents if helm registry is valid else error.
      operationId: V1RegistriesHelmValidate
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: Ok response without content
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
      security:
      - ApiKey: []
      - Authorization: []
      summary: Check if helm registry is valid
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1HelmRegistrySpec'
        required: true
  /v1/registries/helm/{uid}:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    delete:
      operationId: v1RegistriesHelmUidDelete
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: The resource was deleted successfully
      security:
      - ApiKey: []
      - Authorization: []
      summary: Deletes the specified helm registry
      tags:
      - registries
    get:
      operationId: v1RegistriesHelmUidGet
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1HelmRegistry'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Returns the specified Helm registry
      tags:
      - registries
    put:
      operationId: v1RegistriesHelmUidUpdate
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: The resource was updated successfully
      security:
      - ApiKey: []
      - Authorization: []
      summary: Updates the specified helm registry
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1HelmRegistry'
  /v1/registries/helm/{uid}/sync:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    - in: query
      name: forceSync
      schema:
        type: boolean
        default: false
    post:
      description: Sync all the helm charts from the registry
      operationId: v1RegistriesHelmUidSync
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '202':
          description: Ok response without content
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
      security:
      - ApiKey: []
      - Authorization: []
      summary: Sync Helm registry
      tags:
      - registries
  /v1/registries/helm/{uid}/sync/status:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    get:
      description: Get the sync status for the specified helm registry
      operationId: v1RegistriesHelmUidSyncStatus
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: Helm registry sync status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1RegistrySyncStatus'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Get helm registry sync status
      tags:
      - registries
  /v1/registries/metadata:
    parameters:
    - in: query
      name: scope
      schema:
        type: string
        enum:
        - system
        - tenant
        - all
        default: all
    get:
      operationId: v1RegistriesMetadata
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: An array of registry metadata items
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1RegistriesMetadata'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Retrieves a list of registries metadata
      tags:
      - registries
  /v1/registries/oci/basic:
    post:
      operationId: v1BasicOciRegistriesCreate
      parameters:
      - in: query
        name: skipPackSync
        schema:
          type: boolean
          default: false
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '201':
          description: Created successfully
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1Uid'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Creates a basic oci registry
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1BasicOciRegistry'
  /v1/registries/oci/basic/validate:
    post:
      description: Returns no contents if oci registry is valid else error.
      operationId: v1BasicOciRegistriesValidate
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: Ok response without content
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
      security:
      - ApiKey: []
      - Authorization: []
      summary: Check if oci registry is valid
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1BasicOciRegistrySpec'
        required: true
  /v1/registries/oci/ecr:
    post:
      operationId: v1EcrRegistriesCreate
      parameters:
      - in: query
        name: skipPackSync
        schema:
          type: boolean
          default: false
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '201':
          description: Created successfully
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1Uid'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Creates a ecr registry
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1EcrRegistry'
  /v1/registries/oci/ecr/validate:
    post:
      description: Returns no contents if ecr registry is valid else error.
      operationId: v1EcrRegistriesValidate
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: Ok response without content
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
      security:
      - ApiKey: []
      - Authorization: []
      summary: Check if ecr registry is valid
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1EcrRegistrySpec'
        required: true
  /v1/registries/oci/image:
    get:
      operationId: v1OciImageRegistryGet
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1OciImageRegistry'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Creates a image registry
      tags:
      - registries
  /v1/registries/oci/summary:
    get:
      operationId: v1OciRegistriesSummary
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: An array of oci registry items
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1OciRegistries'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Retrieves a oci registries summary
      tags:
      - registries
  /v1/registries/oci/{uid}:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    - in: query
      name: clusterUid
      schema:
        type: string
    get:
      operationId: v1OciRegistriesGet
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1OciRegistryEntity'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Returns the information of specified oci registry
      tags:
      - registries
  /v1/registries/oci/{uid}/basic:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    delete:
      operationId: v1BasicOciRegistriesUidDelete
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: The resource was deleted successfully
      security:
      - ApiKey: []
      - Authorization: []
      summary: Deletes the specified basic oci registry
      tags:
      - registries
    get:
      operationId: v1BasicOciRegistriesUidGet
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1BasicOciRegistry'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Returns the basic oci registry
      tags:
      - registries
    put:
      operationId: v1BasicOciRegistriesUidUpdate
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: The resource was updated successfully
      security:
      - ApiKey: []
      - Authorization: []
      summary: Updates the specified basic oci registry
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1BasicOciRegistry'
  /v1/registries/oci/{uid}/basic/sync:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    - in: query
      name: forceSync
      schema:
        type: boolean
        default: false
    post:
      description: Sync all the content from the oci registry
      operationId: v1BasicOciRegistriesUidSync
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '202':
          description: Ok response without content
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
      security:
      - ApiKey: []
      - Authorization: []
      summary: Sync oci registry
      tags:
      - registries
  /v1/registries/oci/{uid}/basic/sync/status:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    get:
      description: Get sync status for the oci specified registry
      operationId: v1BasicOciRegistriesUidSyncStatus
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: Oci registry sync status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1RegistrySyncStatus'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Get oci registry sync status
      tags:
      - registries
  /v1/registries/oci/{uid}/ecr:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    delete:
      operationId: v1EcrRegistriesUidDelete
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: The resource was deleted successfully
      security:
      - ApiKey: []
      - Authorization: []
      summary: Deletes the specified ecr registry
      tags:
      - registries
    get:
      operationId: v1EcrRegistriesUidGet
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1EcrRegistry'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Returns the specified ecr registry
      tags:
      - registries
    put:
      operationId: v1EcrRegistriesUidUpdate
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: The resource was updated successfully
      security:
      - ApiKey: []
      - Authorization: []
      summary: Updates the specified ecr registry
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1EcrRegistry'
  /v1/registries/oci/{uid}/ecr/sync:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    - in: query
      name: forceSync
      schema:
        type: boolean
        default: false
    post:
      description: Sync all the content from the ecr registry
      operationId: v1EcrRegistriesUidSync
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '202':
          description: Ok response without content
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
      security:
      - ApiKey: []
      - Authorization: []
      summary: Sync ecr registry
      tags:
      - registries
  /v1/registries/oci/{uid}/ecr/sync/status:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    get:
      description: Get sync status for the ecr specified registry
      operationId: v1EcrRegistriesUidSyncStatus
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: Ecr registry sync status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1RegistrySyncStatus'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Get ecr registry sync status
      tags:
      - registries
  /v1/registries/pack:
    parameters:
    - in: query
      name: scope
      schema:
        type: string
        enum:
        - system
        - tenant
        - all
        default: all
    get:
      operationId: v1RegistriesPackList
      parameters:
      - description: 'Set of fields to be presented in the response with values. The fields are comma separated. Eg: metadata.uid,metadata.name'
        in: query
        name: fields
        schema:
          type: string
      - description: 'Filters can be combined with AND, OR operators with field path name. Eg: metadata.name=TestServiceANDspec.cloudType=aws


          Server will be restricted to certain fields based on the indexed data for each resource.'
        in: query
        name: filters
        schema:
          type: string
      - description: 'Specify the fields with sort order. 1 indicates ascending and -1 for descending. Eg: orderBy=metadata.name=1,metadata.uid=-1'
        in: query
        name: orderBy
        schema:
          type: string
      - description: 'limit is a maximum number of responses to return for a list call. Default and maximum value of the limit is 50.

          If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results.'
        in: query
        name: limit
        schema:
          type: integer
          format: int64
          default: 50
      - description: offset is the next index number from which the response will start. The response offset value can be used along with continue token for the pagination.
        in: query
        name: offset
        schema:
          type: integer
          format: int64
      - description: continue token to paginate the subsequent data items
        in: query
        name: continue
        schema:
          type: string
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: An array of registry items
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1PackRegistries'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Retrieves a list of Pack registries
      tags:
      - registries
    post:
      operationId: v1RegistriesPackCreate
      parameters:
      - in: query
        name: skipPackSync
        schema:
          type: boolean
          default: false
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '201':
          description: Created successfully
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1Uid'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Creates a pack registry
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1PackRegistry'
  /v1/registries/pack/summary:
    parameters:
    - in: query
      name: scope
      schema:
        type: string
        enum:
        - system
        - tenant
        - all
        default: all
    get:
      operationId: v1RegistriesPackSummaryList
      parameters:
      - description: 'Set of fields to be presented in the response with values. The fields are comma separated. Eg: metadata.uid,metadata.name'
        in: query
        name: fields
        schema:
          type: string
      - description: 'Filters can be combined with AND, OR operators with field path name. Eg: metadata.name=TestServiceANDspec.cloudType=aws


          Server will be restricted to certain fields based on the indexed data for each resource.'
        in: query
        name: filters
        schema:
          type: string
      - description: 'Specify the fields with sort order. 1 indicates ascending and -1 for descending. Eg: orderBy=metadata.name=1,metadata.uid=-1'
        in: query
        name: orderBy
        schema:
          type: string
      - description: 'limit is a maximum number of responses to return for a list call. Default and maximum value of the limit is 50.

          If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results.'
        in: query
        name: limit
        schema:
          type: integer
          format: int64
          default: 50
      - description: offset is the next index number from which the response will start. The response offset value can be used along with continue token for the pagination.
        in: query
        name: offset
        schema:
          type: integer
          format: int64
      - description: continue token to paginate the subsequent data items
        in: query
        name: continue
        schema:
          type: string
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '200':
          description: An array of registry items
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1PackRegistriesSummary'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Retrieves a list of pack registries as summary
      tags:
      - registries
  /v1/registries/pack/validate:
    post:
      description: Returns no contents if pack registry is valid else error.
      operationId: V1RegistriesPackValidate
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
        '204':
          description: Ok response without content
          headers:
            AuditUid:
              description: Audit uid for the request
              schema:
                type: string
      security:
      - ApiKey: []
      - Authorization: []
      summary: Check if pack registry is valid
      tags:
      - registries
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1PackRegistrySpec'
        required: true
  /v1/registries/pack/{uid}:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    delete:
      operationId: v1RegistriesPackUidDelete
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        schema:
          type: string
      responses:
    

# --- truncated at 32 KB (60 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/spectro-cloud/refs/heads/main/openapi/spectro-cloud-registries-api-openapi.yml