This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
video-analytics-serving.yaml
398 lines (398 loc) · 9.2 KB
/
video-analytics-serving.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
openapi: 3.0.0
info:
description: Video Analytics Serving API
title: Video Analytics Serving API
version: 0.0.2
servers:
- url: /
paths:
/models:
get:
description: Return supported models
operationId: models_get
responses:
200:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/Model'
type: array
description: Success
x-openapi-router-controller: vaserving.rest_api.endpoints
/pipelines:
get:
description: Return supported pipelines
operationId: pipelines_get
responses:
200:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/Pipeline'
type: array
description: Success
x-openapi-router-controller: vaserving.rest_api.endpoints
/pipelines/{name}/{version}:
get:
description: Return pipeline description.
operationId: pipelines_name_version_get
parameters:
- explode: false
in: path
name: name
required: true
schema:
type: string
style: simple
- explode: false
in: path
name: version
required: true
schema:
type: string
style: simple
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/Pipeline'
description: Success
x-openapi-router-controller: vaserving.rest_api.endpoints
post:
description: Start new pipeline instance.
operationId: pipelines_name_version_post
parameters:
- explode: false
in: path
name: name
required: true
schema:
type: string
style: simple
- explode: false
in: path
name: version
required: true
schema:
format: int32
type: integer
style: simple
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PipelineRequest'
required: true
responses:
200:
description: Success
x-openapi-router-controller: vaserving.rest_api.endpoints
/pipelines/{name}/{version}/{instance_id}:
delete:
description: Stop pipeline instance.
operationId: pipelines_name_version_instance_id_delete
parameters:
- explode: false
in: path
name: name
required: true
schema:
type: string
style: simple
- explode: false
in: path
name: version
required: true
schema:
format: int32
type: integer
style: simple
- explode: false
in: path
name: instance_id
required: true
schema:
format: int32
type: integer
style: simple
responses:
200:
description: Success
x-openapi-router-controller: vaserving.rest_api.endpoints
get:
description: Return pipeline instance summary.
operationId: pipelines_name_version_instance_id_get
parameters:
- explode: false
in: path
name: name
required: true
schema:
type: string
style: simple
- explode: false
in: path
name: version
required: true
schema:
format: int32
type: integer
style: simple
- explode: false
in: path
name: instance_id
required: true
schema:
format: int32
type: integer
style: simple
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/PipelineInstanceSummary'
description: Success
x-openapi-router-controller: vaserving.rest_api.endpoints
/pipelines/{name}/{version}/{instance_id}/status:
get:
description: Return pipeline instance status.
operationId: pipelines_name_version_instance_id_status_get
parameters:
- explode: false
in: path
name: name
required: true
schema:
type: string
style: simple
- explode: false
in: path
name: version
required: true
schema:
format: int32
type: integer
style: simple
- explode: false
in: path
name: instance_id
required: true
schema:
format: int32
type: integer
style: simple
responses:
200:
content:
application/json:
schema:
$ref: '#/components/schemas/PipelineInstanceStatus'
description: Success
x-openapi-router-controller: vaserving.rest_api.endpoints
components:
schemas:
AnyValue: {}
Pipeline:
example:
description: description
type: GStreamer
parameters:
key:
default: ""
properties:
type:
enum:
- GStreamer
- FFmpeg
type: string
description:
type: string
parameters:
additionalProperties:
$ref: '#/components/schemas/Pipeline_parameters'
type: object
required:
- description
- type
type: object
PipelineInstanceStatus:
example:
start_time: 1
elapsed_time: 5
id: 0
state: RUNNING
avg_fps: 6.027456183070403
properties:
id:
format: int32
type: integer
state:
enum:
- RUNNING
- COMPLETED
- ERROR
- ABORTED
type: string
avg_fps:
type: number
start_time:
description: Time in seconds since the epoch.
format: int32
type: integer
elapsed_time:
description: Elapsed time in seconds.
format: int32
type: integer
required:
- elapsed_time
- id
- start_time
- state
type: object
PipelineInstanceSummary:
example:
request:
destination: {}
source: {}
parameters: {}
tags: {}
id: 0
type: type
properties:
id:
format: int32
type: integer
request:
$ref: '#/components/schemas/PipelineRequest'
type:
type: string
required:
- id
- request
- type
type: object
URISource:
properties:
type:
enum:
- uri
type: string
uri:
format: uri
type: string
required:
- type
- uri
type: object
DeviceSource:
properties:
type:
enum:
- device
type: string
path:
type: string
format: path
required:
- type
- path
type: object
FileDestination:
properties:
type:
enum:
- file
type: string
path:
format: path
type: string
required:
- type
- path
type: object
KafkaDestination:
properties:
host:
description: Comma seperated list of host:port to use as boostrap servers.
type: string
topic:
type: string
type:
enum:
- kafka
type: string
type: object
MQTTDestination:
properties:
host:
description: host:port to use as mqtt server.
type: string
topic:
type: string
type:
enum:
- mqtt
type: string
type: object
PipelineRequest:
example:
source:
type: uri
uri: file:///root/video-examples/example.mp4
parameters: {}
tags: {}
properties:
source:
discriminator:
propertyName: type
oneOf:
- $ref: '#/components/schemas/URISource'
- $ref: '#/components/schemas/DeviceSource'
type: object
destination:
discriminator:
propertyName: type
oneOf:
- $ref: '#/components/schemas/KafkaDestination'
- $ref: '#/components/schemas/MQTTDestination'
- $ref: '#/components/schemas/FileDestination'
type: object
tags:
description: Client specified values. Returned with results.
type: object
parameters:
description: Pipeline specific parameters.
type: object
type: object
Model:
example:
name: name
description: description
type: IntelDLDT
version: 0
properties:
name:
type: string
version:
format: int32
type: integer
type:
enum:
- IntelDLDT
type: string
description:
type: string
required:
- name
- type
- version
type: object
Pipeline_parameters:
example:
default: {}
properties:
default: {}