forked from akamai/akamai-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
images.yaml
61 lines (61 loc) · 1.6 KB
/
images.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
openapi: 3.0.0
info:
title: Images
version: '2'
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://{hostname}/imaging/v2
x-akamai:
auth-type: EDGE_GRID
file-path: images.yaml
paths:
/network/{network}/images:
parameters:
- $ref: parameters/network-path.yaml
- $ref: parameters/contractId-header.yaml
- $ref: parameters/policySetId-header.yaml
- $ref: parameters/limit-query.yaml
- $ref: parameters/url-query.yaml
- $ref: parameters/policyId-query.yaml
get:
operationId: get-images
summary: List images
tags:
- Images
description: |
List a policy's images.
responses:
200:
description: |
The request was successful.
content:
application/json:
example:
$ref: examples/images-array.json
schema:
$ref: schemas/images-array.yaml
/network/{network}/images/{imageId}:
parameters:
- $ref: parameters/network-path.yaml
- $ref: parameters/contractId-header.yaml
- $ref: parameters/policySetId-header.yaml
- $ref: parameters/imageId-path.yaml
get:
operationId: get-image
summary: Get an image
tags:
- Images
description: |
Returns a specific image.
responses:
200:
description: |
Successful response.
content:
application/json:
example:
$ref: examples/images-image.json
schema:
$ref: schemas/images-image.yaml