Armory Raw Resource Controller API

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

OpenAPI Specification

armory-raw-resource-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Armory Scale Agent Applications & Clusters Raw Resource Controller API
  description: Read operations across applications, clusters, server groups, server group managers, instances, load balancers, functions, raw resources and jobs.
  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: raw-resource-controller
paths:
  /applications/{application}/rawResources:
    get:
      tags:
      - raw-resource-controller
      summary: list
      operationId: listUsingGET_7
      parameters:
      - name: application
        in: path
        description: application
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KubernetesRawResource'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      deprecated: false
components:
  schemas:
    KubernetesKind:
      type: object
      properties:
        apiGroup:
          $ref: '#/components/schemas/KubernetesApiGroup'
      title: KubernetesKind
    Moniker:
      type: object
      properties:
        app:
          type: string
        cluster:
          type: string
        detail:
          type: string
        sequence:
          type: integer
          format: int32
        stack:
          type: string
      title: Moniker
    KubernetesApiGroup:
      type: object
      properties:
        nativeGroup:
          type: boolean
      title: KubernetesApiGroup
    KubernetesRawResource:
      type: object
      properties:
        account:
          type: string
        apiVersion:
          $ref: '#/components/schemas/KubernetesApiVersion'
        createdTime:
          type: integer
          format: int64
        displayName:
          type: string
        kind:
          $ref: '#/components/schemas/KubernetesKind'
        labels:
          type: object
          additionalProperties:
            type: string
        moniker:
          $ref: '#/components/schemas/Moniker'
        name:
          type: string
        namespace:
          type: string
        region:
          type: string
      title: KubernetesRawResource
    KubernetesApiVersion:
      type: object
      properties:
        apiGroup:
          $ref: '#/components/schemas/KubernetesApiGroup'
      title: KubernetesApiVersion