aboutsummaryrefslogtreecommitdiffstats
path: root/a1-policy-management/open-api-fragments/v2-fragments/configuration-api.yaml
blob: 6ac239feeba684bbbc5f75a86925017469abd3c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
configuration:
  get:
    description: Returns the entire contents of the Application Configuration.
    tags:
      - Configuration
    operationId: getConfiguration
    summary: Get the Application Configuration (getConfiguration)
    responses:
      "200":
        content:
          application/json:
            schema:
              type: string
        description: OK - Configuration
      "404":
        $ref: 'responses.yaml#/responses/NotFound'
        description: Not Found - Configuration is not found or is not readable
  put:
    description: >
      Replace the current Application Configuration with a new configuration.
      The new configuration, if accepted, will take effect after a short delay. 
      The new configuration must comply with the Application Configuration schema, 
      which can be found from the the Application Documentation (Developer Guide)
    tags:
      - Configuration
    operationId: putConfiguration
    summary: Set/Replace the Application Configuration (putConfiguration)
    requestBody:
      content:
        application/json:
          schema:
            type: object
      required: true
    responses:
      "200":
        content:
          '*/*':
            schema:
              $ref: 'schemas.yaml#/schemas/void'
        description: OK - Configuration updated
      "400":
        $ref: 'responses.yaml#/responses/BadRequest'