Armory Artifact Controller API

The artifact-controller API from Armory — 1 operation(s) for artifact-controller.

OpenAPI Specification

armory-artifact-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Armory Scale Agent Credentials Artifact Controller API
  description: Account credential lifecycle operations - list, create, update, delete and history - plus artifact credentials.
  version: 0.13.x
  contact:
    name: Armory Docs
    url: https://docs.armory.io/plugins/scale-agent/
  x-origin:
  - format: swagger
    version: '2.0'
    url: https://docs.armory.io/reference/scale-agent/swagger.json
servers:
- url: /
tags:
- name: artifact-controller
paths:
  /artifacts/credentials:
    get:
      tags:
      - artifact-controller
      summary: list
      operationId: listUsingGET_1
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ArtifactCredentials'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      deprecated: false
components:
  schemas:
    ArtifactCredentials:
      type: object
      properties:
        name:
          type: string
        type:
          type: string
        types:
          type: array
          items:
            type: string
      title: ArtifactCredentials