-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.yaml
76 lines (76 loc) · 2.03 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
swagger: '2.0'
basePath: /api/v3/oneprovider
info:
$ref: ./info/index.yaml
paths:
$ref: ./paths/index.yaml
definitions:
$ref: ./definitions/index.yaml
tags:
- name: Oneprovider
description: Information about the Oneprovider service
- name: Space
description: Spaces related operations
- name: View
description: Views related operations
- name: File Path Resolution
description: Files and Directories path resolution operations
- name: Basic File Operations
description: Files and Directories basic operations
- name: File Distribution
description: Operations concerning file distribution
- name: Custom File Metadata
description: Files and Directories metadata related operations
- name: Deprecated File Api
description: Files and Directories related operations (deprecated)
- name: QoS
description: QoS related operations
- name: Share
description: Shares related operations
- name: Replica
description: Replication and file distribution control operations
- name: Transfer
description: Transfers related operations
- name: Monitoring
description: Metrics and change events monitoring related operations
x-tagGroups:
- name: Service information
tags:
- Oneprovider
- name: Space management
tags:
- Space
- View
- name: File access & management
tags:
- File Path Resolution
- Basic File Operations
- File Distribution
- Custom File Metadata
- Deprecated File Api
- name: Replica & QoS management
tags:
- Replica
- Transfer
- QoS
- name: Share management
tags:
- Share
- name: Monitoring & metrics
tags:
- Monitoring
securityDefinitions:
# api_key1 is used by Bash generated clients as default
# header for sending api key
api_key1:
type: apiKey
name: X-Auth-Token
in: header
api_key2:
type: apiKey
# When using this method, the token must be prefixed with 'Bearer '
name: Authorization
in: header
security:
- api_key1: []
- api_key2: []