File tree 1 file changed +27
-5
lines changed
1 file changed +27
-5
lines changed Original file line number Diff line number Diff line change @@ -60,11 +60,6 @@ paths:
60
60
produces :
61
61
- application/json
62
62
parameters :
63
- - in : query
64
- name : id
65
- description : UUID of snapshot
66
- required : false
67
- type : string
68
63
- in : query
69
64
name : count
70
65
description : Number of snapshots to return
@@ -103,6 +98,33 @@ paths:
103
98
items :
104
99
$ref : " #/definitions/Snapshot"
105
100
101
+ /snapshots/{snapshotId} :
102
+ get :
103
+ tags :
104
+ - snapshot
105
+ summary : Return a single snapshot from CTM
106
+ description : Returns a specific snapshot object identified by snapshotId
107
+ operationId : getSnapshot
108
+ produces :
109
+ - application/json
110
+ parameters :
111
+ - in : query
112
+ name : snapshotId
113
+ description : ID of snapshot to return
114
+ required : true
115
+ type : string
116
+ responses :
117
+ " 404 " :
118
+ description : NotFoundError
119
+ schema :
120
+ $ref : " #/definitions/ErrorMessage"
121
+ " 200 " :
122
+ description : successful operation
123
+ schema :
124
+ type : object
125
+ items :
126
+ $ref : " #/definitions/Snapshot"
127
+
106
128
definitions :
107
129
ErrorMessage :
108
130
type : object
You can’t perform that action at this time.
0 commit comments