github.com/sap/cf-mta-plugin@v2.6.3+incompatible/clients/swagger/rest.yaml (about)

     1  swagger: "2.0"
     2  info:
     3    version: 1.2.1
     4    title: MTA Deployer REST Protocol
     5  host: example.com
     6  basePath: /rest/
     7  securityDefinitions:
     8    basic:
     9      type: basic
    10    oauth2:
    11      type: oauth2
    12      tokenUrl: https://uaa.bosh-lite.com/oauth/token
    13      flow: password
    14      scopes: {}
    15  security:
    16    - oauth2: []
    17  schemes:
    18    - https
    19  consumes:
    20    - application/xml
    21  produces:
    22    - application/xml
    23  paths:
    24    /configuration-entries/purge:
    25      post:
    26        operationId: PurgeConfiguration
    27        responses:
    28          204:
    29            description: No Content
    30      parameters:
    31        - $ref: "#/parameters/org"
    32        - $ref: "#/parameters/space"
    33  parameters:
    34    org:
    35      name: org
    36      in: query
    37      required: true
    38      type: string
    39    space:
    40      name: space
    41      in: query
    42      required: true
    43      type: string