@sigmaott/base-next 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (733) hide show
  1. package/README.md +1 -0
  2. package/hyrd-ui.preset.ts +463 -0
  3. package/i18n.config.ts +3 -0
  4. package/locales/en.yaml +719 -0
  5. package/locales/vi.yaml +726 -0
  6. package/nuxt-config.ts +23 -0
  7. package/nuxt.config.ts +267 -0
  8. package/package.json +119 -0
  9. package/public/routes.json +34 -0
  10. package/src/MediaInfoModule.wasm +0 -0
  11. package/src/api/api.ts +15 -0
  12. package/src/api/axios.ts +125 -0
  13. package/src/api/service-loading.ts +50 -0
  14. package/src/api-client-auth/.openapi-generator/FILES +83 -0
  15. package/src/api-client-auth/.openapi-generator/VERSION +1 -0
  16. package/src/api-client-auth/.openapi-generator-ignore +23 -0
  17. package/src/api-client-auth/api/admin-groups-api.ts +612 -0
  18. package/src/api-client-auth/api/admin-members-api.ts +708 -0
  19. package/src/api-client-auth/api/administration-api-groups-api.ts +547 -0
  20. package/src/api-client-auth/api/administration-apps-api.ts +709 -0
  21. package/src/api-client-auth/api/administration-packages-api.ts +547 -0
  22. package/src/api-client-auth/api/api-groups-api.ts +296 -0
  23. package/src/api-client-auth/api/apps-api.ts +1613 -0
  24. package/src/api-client-auth/api/basic-credential-api.ts +950 -0
  25. package/src/api-client-auth/api/groups-api.ts +702 -0
  26. package/src/api-client-auth/api/members-api.ts +708 -0
  27. package/src/api-client-auth/api/members-on-premise-api.ts +351 -0
  28. package/src/api-client-auth/api/packages-api.ts +296 -0
  29. package/src/api-client-auth/api/users-api.ts +1387 -0
  30. package/src/api-client-auth/api.ts +30 -0
  31. package/src/api-client-auth/base.ts +72 -0
  32. package/src/api-client-auth/common.ts +150 -0
  33. package/src/api-client-auth/configuration.ts +101 -0
  34. package/src/api-client-auth/git_push.sh +57 -0
  35. package/src/api-client-auth/index.ts +18 -0
  36. package/src/api-client-auth/models/add-member-dto.ts +42 -0
  37. package/src/api-client-auth/models/admin-permission.ts +44 -0
  38. package/src/api-client-auth/models/api-group-collection.ts +57 -0
  39. package/src/api-client-auth/models/api-group.ts +80 -0
  40. package/src/api-client-auth/models/api.ts +44 -0
  41. package/src/api-client-auth/models/app-collection.ts +57 -0
  42. package/src/api-client-auth/models/app.ts +147 -0
  43. package/src/api-client-auth/models/backdoor-cred.ts +39 -0
  44. package/src/api-client-auth/models/basic-cred-collection.ts +57 -0
  45. package/src/api-client-auth/models/basic-cred.ts +83 -0
  46. package/src/api-client-auth/models/change-password-dto.ts +42 -0
  47. package/src/api-client-auth/models/create-admin-group-dto.ts +39 -0
  48. package/src/api-client-auth/models/create-api-group-dto.ts +42 -0
  49. package/src/api-client-auth/models/create-app-by-user-dto.ts +36 -0
  50. package/src/api-client-auth/models/create-app-dto.ts +65 -0
  51. package/src/api-client-auth/models/create-basic-cred-dto.ts +39 -0
  52. package/src/api-client-auth/models/create-group-dto.ts +39 -0
  53. package/src/api-client-auth/models/create-package-dto.ts +48 -0
  54. package/src/api-client-auth/models/create-user-dto.ts +60 -0
  55. package/src/api-client-auth/models/free-trial.ts +54 -0
  56. package/src/api-client-auth/models/general-app.ts +48 -0
  57. package/src/api-client-auth/models/generate-app-id.ts +30 -0
  58. package/src/api-client-auth/models/group-collection.ts +57 -0
  59. package/src/api-client-auth/models/group.ts +75 -0
  60. package/src/api-client-auth/models/index.ts +60 -0
  61. package/src/api-client-auth/models/invite-email-dto.ts +30 -0
  62. package/src/api-client-auth/models/invite-member-dto.ts +36 -0
  63. package/src/api-client-auth/models/live-stream-quota.ts +42 -0
  64. package/src/api-client-auth/models/login-dto.ts +36 -0
  65. package/src/api-client-auth/models/login-result.ts +39 -0
  66. package/src/api-client-auth/models/member-collection.ts +57 -0
  67. package/src/api-client-auth/models/member.ts +92 -0
  68. package/src/api-client-auth/models/package-collection.ts +57 -0
  69. package/src/api-client-auth/models/package-permission.ts +44 -0
  70. package/src/api-client-auth/models/package.ts +66 -0
  71. package/src/api-client-auth/models/permission.ts +44 -0
  72. package/src/api-client-auth/models/quota.ts +45 -0
  73. package/src/api-client-auth/models/re-get-password-dto.ts +30 -0
  74. package/src/api-client-auth/models/register-dto.ts +54 -0
  75. package/src/api-client-auth/models/register-through-email-dto.ts +36 -0
  76. package/src/api-client-auth/models/rename-app-dto.ts +30 -0
  77. package/src/api-client-auth/models/resend-confirmation-dto.ts +30 -0
  78. package/src/api-client-auth/models/resend-invitation-dto.ts +30 -0
  79. package/src/api-client-auth/models/resend-result.ts +36 -0
  80. package/src/api-client-auth/models/reset-password-dto.ts +36 -0
  81. package/src/api-client-auth/models/revoke-basic-dto.ts +38 -0
  82. package/src/api-client-auth/models/signup-result.ts +45 -0
  83. package/src/api-client-auth/models/token-check-result.ts +36 -0
  84. package/src/api-client-auth/models/trial-remaining-days.ts +42 -0
  85. package/src/api-client-auth/models/update-admin-group-dto.ts +39 -0
  86. package/src/api-client-auth/models/update-api-group-dto.ts +30 -0
  87. package/src/api-client-auth/models/update-app-by-admin-dto.ts +48 -0
  88. package/src/api-client-auth/models/update-app-by-user-dto.ts +36 -0
  89. package/src/api-client-auth/models/update-basic-cred-dto.ts +30 -0
  90. package/src/api-client-auth/models/update-group-dto.ts +39 -0
  91. package/src/api-client-auth/models/update-member-dto.ts +30 -0
  92. package/src/api-client-auth/models/update-package-dto.ts +42 -0
  93. package/src/api-client-auth/models/update-password-member-dto.ts +30 -0
  94. package/src/api-client-auth/models/update-user-by-user-dto.ts +48 -0
  95. package/src/api-client-auth/models/user.ts +120 -0
  96. package/src/api-client-auth/models/validate-app-id.ts +36 -0
  97. package/src/api-client-billing/.openapi-generator/FILES +38 -0
  98. package/src/api-client-billing/.openapi-generator/VERSION +1 -0
  99. package/src/api-client-billing/.openapi-generator-ignore +23 -0
  100. package/src/api-client-billing/api/invoice-api.ts +363 -0
  101. package/src/api-client-billing/api/payment-methods-api.ts +414 -0
  102. package/src/api-client-billing/api/payment-plan-api.ts +121 -0
  103. package/src/api-client-billing/api/subscriptions-api.ts +121 -0
  104. package/src/api-client-billing/api/usages-api.ts +121 -0
  105. package/src/api-client-billing/api/vnpay-provider-api.ts +327 -0
  106. package/src/api-client-billing/api.ts +23 -0
  107. package/src/api-client-billing/base.ts +72 -0
  108. package/src/api-client-billing/common.ts +150 -0
  109. package/src/api-client-billing/configuration.ts +101 -0
  110. package/src/api-client-billing/git_push.sh +57 -0
  111. package/src/api-client-billing/index.ts +18 -0
  112. package/src/api-client-billing/models/common-paginate-response.ts +48 -0
  113. package/src/api-client-billing/models/dto-billing-item-info.ts +60 -0
  114. package/src/api-client-billing/models/dto-billing-item.ts +36 -0
  115. package/src/api-client-billing/models/dto-create-draft-invoice-request.ts +33 -0
  116. package/src/api-client-billing/models/dto-create-draft-invoice-response.ts +57 -0
  117. package/src/api-client-billing/models/dto-create-vnpay-card-form.ts +48 -0
  118. package/src/api-client-billing/models/dto-return-uri-response.ts +30 -0
  119. package/src/api-client-billing/models/index.ts +22 -0
  120. package/src/api-client-billing/models/invoices-get200-response.ts +42 -0
  121. package/src/api-client-billing/models/model-charge.ts +47 -0
  122. package/src/api-client-billing/models/model-charges-usage.ts +57 -0
  123. package/src/api-client-billing/models/model-graduated-range.ts +48 -0
  124. package/src/api-client-billing/models/model-info.ts +42 -0
  125. package/src/api-client-billing/models/model-invoice.ts +105 -0
  126. package/src/api-client-billing/models/model-item-usage.ts +54 -0
  127. package/src/api-client-billing/models/model-payment-method.ts +135 -0
  128. package/src/api-client-billing/models/model-product.ts +51 -0
  129. package/src/api-client-billing/models/model-properties.ts +39 -0
  130. package/src/api-client-billing/models/model-quota.ts +48 -0
  131. package/src/api-client-billing/models/model-subscription.ts +51 -0
  132. package/src/api-client-billing/models/model-usage-payment.ts +87 -0
  133. package/src/api-client-billing/models/payment-methods-get200-response.ts +42 -0
  134. package/src/api-client-billing/models/subscriptions-get200-response.ts +42 -0
  135. package/src/api-client-machine/.openapi-generator/FILES +90 -0
  136. package/src/api-client-machine/.openapi-generator/VERSION +1 -0
  137. package/src/api-client-machine/.openapi-generator-ignore +23 -0
  138. package/src/api-client-machine/api/apps-config-api.ts +523 -0
  139. package/src/api-client-machine/api/component-clusters-api.ts +741 -0
  140. package/src/api-client-machine/api/expose-api.ts +141 -0
  141. package/src/api-client-machine/api/machine-actions-api.ts +850 -0
  142. package/src/api-client-machine/api/machines-api.ts +524 -0
  143. package/src/api-client-machine/api/networks-api.ts +375 -0
  144. package/src/api-client-machine/api/sigma-clusters-api.ts +741 -0
  145. package/src/api-client-machine/api/sigma-machine-actions-api.ts +292 -0
  146. package/src/api-client-machine/api/sigma-machine-apps-configuration-api.ts +523 -0
  147. package/src/api-client-machine/api/sigma-machines-api.ts +557 -0
  148. package/src/api-client-machine/api/sigma-vod-server-api.ts +478 -0
  149. package/src/api-client-machine/api/sigma-vod-server-app-config-api.ts +980 -0
  150. package/src/api-client-machine/api/transcoder-configuration-api.ts +359 -0
  151. package/src/api-client-machine/api.ts +30 -0
  152. package/src/api-client-machine/base.ts +72 -0
  153. package/src/api-client-machine/common.ts +150 -0
  154. package/src/api-client-machine/configuration.ts +101 -0
  155. package/src/api-client-machine/git_push.sh +57 -0
  156. package/src/api-client-machine/index.ts +18 -0
  157. package/src/api-client-machine/models/actions-to-app-dto.ts +38 -0
  158. package/src/api-client-machine/models/add-license-machine-dto.ts +30 -0
  159. package/src/api-client-machine/models/app-status.ts +47 -0
  160. package/src/api-client-machine/models/check-quota-limit-result.ts +36 -0
  161. package/src/api-client-machine/models/cluster-log.ts +54 -0
  162. package/src/api-client-machine/models/component-cluster-collection.ts +57 -0
  163. package/src/api-client-machine/models/component-cluster.ts +116 -0
  164. package/src/api-client-machine/models/create-component-machine-cluster-dto.ts +86 -0
  165. package/src/api-client-machine/models/create-sigma-machine-cluster-dto.ts +77 -0
  166. package/src/api-client-machine/models/create-vodroute-dto.ts +42 -0
  167. package/src/api-client-machine/models/decklink-collection.ts +57 -0
  168. package/src/api-client-machine/models/decklink.ts +42 -0
  169. package/src/api-client-machine/models/http-app.ts +45 -0
  170. package/src/api-client-machine/models/https-config.ts +42 -0
  171. package/src/api-client-machine/models/index.ts +67 -0
  172. package/src/api-client-machine/models/info-channel.ts +42 -0
  173. package/src/api-client-machine/models/ingest-app.ts +60 -0
  174. package/src/api-client-machine/models/ingest-config.ts +74 -0
  175. package/src/api-client-machine/models/ingest-update-config-dto.ts +68 -0
  176. package/src/api-client-machine/models/machine-cluster-collection.ts +57 -0
  177. package/src/api-client-machine/models/machine-cluster.ts +120 -0
  178. package/src/api-client-machine/models/machine-details-license.ts +42 -0
  179. package/src/api-client-machine/models/machine-details.ts +127 -0
  180. package/src/api-client-machine/models/machine-dto.ts +42 -0
  181. package/src/api-client-machine/models/machine-dump.ts +108 -0
  182. package/src/api-client-machine/models/machine.ts +42 -0
  183. package/src/api-client-machine/models/network-collection.ts +57 -0
  184. package/src/api-client-machine/models/network-interface.ts +36 -0
  185. package/src/api-client-machine/models/network.ts +66 -0
  186. package/src/api-client-machine/models/origin-config.ts +50 -0
  187. package/src/api-client-machine/models/origin-update-config-dto.ts +59 -0
  188. package/src/api-client-machine/models/packager-component-cluster.ts +42 -0
  189. package/src/api-client-machine/models/packager-live-cluster.ts +42 -0
  190. package/src/api-client-machine/models/packager-to-component-cluster.ts +51 -0
  191. package/src/api-client-machine/models/quotas-result.ts +30 -0
  192. package/src/api-client-machine/models/registration-config.ts +48 -0
  193. package/src/api-client-machine/models/sigma-cluster-ingest-config.ts +42 -0
  194. package/src/api-client-machine/models/sigma-cluster-origin-config.ts +30 -0
  195. package/src/api-client-machine/models/sigma-ingest-config-entity.ts +42 -0
  196. package/src/api-client-machine/models/sigma-ingest-config.ts +42 -0
  197. package/src/api-client-machine/models/sigma-origin-config-entity.ts +30 -0
  198. package/src/api-client-machine/models/sigma-origin-config.ts +30 -0
  199. package/src/api-client-machine/models/stats.ts +57 -0
  200. package/src/api-client-machine/models/status.ts +36 -0
  201. package/src/api-client-machine/models/stop-channel.ts +48 -0
  202. package/src/api-client-machine/models/transcoder-apps.ts +42 -0
  203. package/src/api-client-machine/models/transcoder-collection.ts +57 -0
  204. package/src/api-client-machine/models/transcoder-component-cluster.ts +42 -0
  205. package/src/api-client-machine/models/transcoder-license.ts +42 -0
  206. package/src/api-client-machine/models/transcoder-live-cluster.ts +42 -0
  207. package/src/api-client-machine/models/transcoder-live-to-component-cluster.ts +45 -0
  208. package/src/api-client-machine/models/transcoder-network.ts +42 -0
  209. package/src/api-client-machine/models/transcoder.ts +276 -0
  210. package/src/api-client-machine/models/update-app-config-dto-config-data.ts +33 -0
  211. package/src/api-client-machine/models/update-app-config-dto.ts +33 -0
  212. package/src/api-client-machine/models/update-app-config-of-sigma-vod-server-dto-config-data.ts +30 -0
  213. package/src/api-client-machine/models/update-app-config-of-sigma-vod-server-dto.ts +33 -0
  214. package/src/api-client-machine/models/update-component-cluster-dto.ts +72 -0
  215. package/src/api-client-machine/models/update-machine-cluster-dto.ts +63 -0
  216. package/src/api-client-machine/models/update-machine-dto.ts +42 -0
  217. package/src/api-client-machine/models/update-packager-live-cluster.ts +42 -0
  218. package/src/api-client-machine/models/update-packager-to-component-cluster.ts +51 -0
  219. package/src/api-client-machine/models/update-route-config-of-sigma-vod-server.ts +33 -0
  220. package/src/api-client-machine/models/update-route-config-sigma-machine.ts +42 -0
  221. package/src/api-client-machine/models/update-transcoder-live-cluster.ts +42 -0
  222. package/src/api-client-machine/models/update-transcoder-to-component-cluster.ts +45 -0
  223. package/src/api-client-machine/models/video-encoder.ts +56 -0
  224. package/src/api-client-machine/models/vodroute.ts +60 -0
  225. package/src/api-client-noti/.openapi-generator/FILES +13 -0
  226. package/src/api-client-noti/.openapi-generator/VERSION +1 -0
  227. package/src/api-client-noti/.openapi-generator-ignore +23 -0
  228. package/src/api-client-noti/api/notification-api.ts +386 -0
  229. package/src/api-client-noti/api.ts +18 -0
  230. package/src/api-client-noti/base.ts +72 -0
  231. package/src/api-client-noti/common.ts +150 -0
  232. package/src/api-client-noti/configuration.ts +101 -0
  233. package/src/api-client-noti/git_push.sh +57 -0
  234. package/src/api-client-noti/index.ts +18 -0
  235. package/src/api-client-noti/models/index.ts +2 -0
  236. package/src/api-client-noti/models/notification-collection.ts +57 -0
  237. package/src/api-client-noti/models/notification.ts +101 -0
  238. package/src/api-client-transcode/.openapi-generator/FILES +129 -0
  239. package/src/api-client-transcode/.openapi-generator/VERSION +1 -0
  240. package/src/api-client-transcode/.openapi-generator-ignore +23 -0
  241. package/src/api-client-transcode/api/alert-logs-apiapi.ts +281 -0
  242. package/src/api-client-transcode/api/channel-package-inputs-apiapi.ts +650 -0
  243. package/src/api-client-transcode/api/channel-transcode-inputs-apiapi.ts +650 -0
  244. package/src/api-client-transcode/api/channels-crudapiapi.ts +869 -0
  245. package/src/api-client-transcode/api/channels-job-action-apiapi.ts +434 -0
  246. package/src/api-client-transcode/api/drm-credentials-api.ts +525 -0
  247. package/src/api-client-transcode/api/event-channel-action-apiapi.ts +363 -0
  248. package/src/api-client-transcode/api/event-channel-crudapiapi.ts +545 -0
  249. package/src/api-client-transcode/api/fast-channel-action-apiapi.ts +301 -0
  250. package/src/api-client-transcode/api/fast-channel-apiapi.ts +525 -0
  251. package/src/api-client-transcode/api/fast-channel-programs-api-api.ts +525 -0
  252. package/src/api-client-transcode/api/multi-channel-action-apiapi.ts +387 -0
  253. package/src/api-client-transcode/api/sigma-transcode-live-interactive-action-api.ts +152 -0
  254. package/src/api-client-transcode/api/single-channel-action-apiapi.ts +1155 -0
  255. package/src/api-client-transcode/api/transcode-templates-apiapi.ts +541 -0
  256. package/src/api-client-transcode/api.ts +32 -0
  257. package/src/api-client-transcode/base.ts +71 -0
  258. package/src/api-client-transcode/common.ts +138 -0
  259. package/src/api-client-transcode/configuration.ts +101 -0
  260. package/src/api-client-transcode/git_push.sh +57 -0
  261. package/src/api-client-transcode/index.ts +18 -0
  262. package/src/api-client-transcode/models/ads-dto.ts +137 -0
  263. package/src/api-client-transcode/models/alert-log-collection.ts +55 -0
  264. package/src/api-client-transcode/models/audio-watermark-dto.ts +59 -0
  265. package/src/api-client-transcode/models/blackout-slate-dto.ts +36 -0
  266. package/src/api-client-transcode/models/catchup-dto.ts +43 -0
  267. package/src/api-client-transcode/models/channel-collection.ts +55 -0
  268. package/src/api-client-transcode/models/channel-config-advance-dto-info.ts +25 -0
  269. package/src/api-client-transcode/models/channel-config-advance-dto.ts +121 -0
  270. package/src/api-client-transcode/models/channel-config-advance-info-dto.ts +78 -0
  271. package/src/api-client-transcode/models/channel-config-base.ts +69 -0
  272. package/src/api-client-transcode/models/channel-config-blackout-entity.ts +36 -0
  273. package/src/api-client-transcode/models/channel-config-dto.ts +72 -0
  274. package/src/api-client-transcode/models/channel-config-interactive-entity.ts +30 -0
  275. package/src/api-client-transcode/models/channel-config-template-dto.ts +66 -0
  276. package/src/api-client-transcode/models/channel-detail-catchup-dto.ts +37 -0
  277. package/src/api-client-transcode/models/channel-detail-dto.ts +69 -0
  278. package/src/api-client-transcode/models/channel-detail-input.ts +43 -0
  279. package/src/api-client-transcode/models/channel-detail-package.ts +50 -0
  280. package/src/api-client-transcode/models/channel-detail-transcode.ts +37 -0
  281. package/src/api-client-transcode/models/channel-job-detail.ts +84 -0
  282. package/src/api-client-transcode/models/channel-stats.ts +36 -0
  283. package/src/api-client-transcode/models/channel-template-data-dto.ts +59 -0
  284. package/src/api-client-transcode/models/channel-template-dto-data.ts +28 -0
  285. package/src/api-client-transcode/models/channel-template-dto.ts +63 -0
  286. package/src/api-client-transcode/models/channel.ts +168 -0
  287. package/src/api-client-transcode/models/create-alert-log-dto.ts +138 -0
  288. package/src/api-client-transcode/models/create-channel-dto.ts +84 -0
  289. package/src/api-client-transcode/models/create-drm-credential-dto.ts +63 -0
  290. package/src/api-client-transcode/models/create-event-channel-dto-targets.ts +26 -0
  291. package/src/api-client-transcode/models/create-event-channel-dto.ts +76 -0
  292. package/src/api-client-transcode/models/create-fast-channel-dto.ts +42 -0
  293. package/src/api-client-transcode/models/create-fast-program-dto.ts +72 -0
  294. package/src/api-client-transcode/models/drm-credential-collection.ts +55 -0
  295. package/src/api-client-transcode/models/drm-credential-entity.ts +87 -0
  296. package/src/api-client-transcode/models/drm-data-dto.ts +54 -0
  297. package/src/api-client-transcode/models/drm-data-entity.ts +54 -0
  298. package/src/api-client-transcode/models/drm-dto.ts +103 -0
  299. package/src/api-client-transcode/models/event-channel-collection.ts +55 -0
  300. package/src/api-client-transcode/models/event-channel-config-dto.ts +78 -0
  301. package/src/api-client-transcode/models/event-channel-config-entity.ts +75 -0
  302. package/src/api-client-transcode/models/event-channel-input-dto.ts +45 -0
  303. package/src/api-client-transcode/models/event-channel-input-entity.ts +45 -0
  304. package/src/api-client-transcode/models/event-channel-transcoder-dto.ts +56 -0
  305. package/src/api-client-transcode/models/event-channel.ts +147 -0
  306. package/src/api-client-transcode/models/event-profile-dto.ts +62 -0
  307. package/src/api-client-transcode/models/event-target-data-dto.ts +95 -0
  308. package/src/api-client-transcode/models/event-target-dto.ts +49 -0
  309. package/src/api-client-transcode/models/fast-channel-collection.ts +55 -0
  310. package/src/api-client-transcode/models/fast-channel.ts +75 -0
  311. package/src/api-client-transcode/models/fast-program-collection.ts +55 -0
  312. package/src/api-client-transcode/models/fast-program.ts +84 -0
  313. package/src/api-client-transcode/models/fingerprint-dto.ts +42 -0
  314. package/src/api-client-transcode/models/index.ts +104 -0
  315. package/src/api-client-transcode/models/input-collection.ts +55 -0
  316. package/src/api-client-transcode/models/input-data-dto.ts +104 -0
  317. package/src/api-client-transcode/models/input-data-item-dto.ts +42 -0
  318. package/src/api-client-transcode/models/input-dto.ts +30 -0
  319. package/src/api-client-transcode/models/input-entity.ts +30 -0
  320. package/src/api-client-transcode/models/input-info-response.ts +31 -0
  321. package/src/api-client-transcode/models/input-info.ts +123 -0
  322. package/src/api-client-transcode/models/input-machine-config.ts +45 -0
  323. package/src/api-client-transcode/models/input-program.ts +66 -0
  324. package/src/api-client-transcode/models/interactive-dto.ts +30 -0
  325. package/src/api-client-transcode/models/interactive-publish-dto.ts +30 -0
  326. package/src/api-client-transcode/models/job-entity.ts +102 -0
  327. package/src/api-client-transcode/models/low-latency-dto.ts +68 -0
  328. package/src/api-client-transcode/models/machine-config-dto.ts +75 -0
  329. package/src/api-client-transcode/models/main-input-dto.ts +62 -0
  330. package/src/api-client-transcode/models/main-input-entity.ts +54 -0
  331. package/src/api-client-transcode/models/maintenance-dto.ts +30 -0
  332. package/src/api-client-transcode/models/manifest-dto.ts +62 -0
  333. package/src/api-client-transcode/models/package-input-collection.ts +55 -0
  334. package/src/api-client-transcode/models/package-input-data-dto.ts +99 -0
  335. package/src/api-client-transcode/models/package-input-list.ts +36 -0
  336. package/src/api-client-transcode/models/package-input.ts +115 -0
  337. package/src/api-client-transcode/models/post-input-dto.ts +48 -0
  338. package/src/api-client-transcode/models/post-input-entity.ts +48 -0
  339. package/src/api-client-transcode/models/pre-input-dto.ts +54 -0
  340. package/src/api-client-transcode/models/pre-input-entity.ts +54 -0
  341. package/src/api-client-transcode/models/preset-dto.ts +247 -0
  342. package/src/api-client-transcode/models/profile-default-response-dto.ts +30 -0
  343. package/src/api-client-transcode/models/profile-dto.ts +62 -0
  344. package/src/api-client-transcode/models/profile-entity.ts +60 -0
  345. package/src/api-client-transcode/models/scte35-dto.ts +36 -0
  346. package/src/api-client-transcode/models/start-over-dto.ts +30 -0
  347. package/src/api-client-transcode/models/switch-input-dto.ts +56 -0
  348. package/src/api-client-transcode/models/switch-input-entity.ts +44 -0
  349. package/src/api-client-transcode/models/target-data-dto.ts +101 -0
  350. package/src/api-client-transcode/models/target-dto.ts +44 -0
  351. package/src/api-client-transcode/models/target-entity.ts +55 -0
  352. package/src/api-client-transcode/models/target-profile-dto.ts +71 -0
  353. package/src/api-client-transcode/models/target-profile.ts +71 -0
  354. package/src/api-client-transcode/models/target-template-dto.ts +44 -0
  355. package/src/api-client-transcode/models/target-update-dto.ts +50 -0
  356. package/src/api-client-transcode/models/transcode-input.ts +144 -0
  357. package/src/api-client-transcode/models/transcoder.ts +36 -0
  358. package/src/api-client-transcode/models/trick-play-dto.ts +54 -0
  359. package/src/api-client-transcode/models/update-channel-dto-targets.ts +27 -0
  360. package/src/api-client-transcode/models/update-channel-dto.ts +84 -0
  361. package/src/api-client-transcode/models/update-drm-management-dto.ts +63 -0
  362. package/src/api-client-transcode/models/update-event-channel-dto.ts +76 -0
  363. package/src/api-client-transcode/models/update-fast-channel-dto.ts +42 -0
  364. package/src/api-client-transcode/models/update-fast-program-dto.ts +30 -0
  365. package/src/api-client-transcode/models/watermark-dto.ts +66 -0
  366. package/src/api-client-transcode/models/watermark-entity.ts +102 -0
  367. package/src/app/spa-loading-template.html +127 -0
  368. package/src/app.config.ts +2 -0
  369. package/src/assets/global.css.ts +3 -0
  370. package/src/assets/scss/element/dark.scss +13 -0
  371. package/src/assets/scss/element/index.scss +26 -0
  372. package/src/assets/scss/index.scss +181 -0
  373. package/src/components/AdvancedFilter/SSAdvancedFilterItem.vue +180 -0
  374. package/src/components/AdvancedFilter/SSAdvancedFilterItemCustom.vue +165 -0
  375. package/src/components/AdvancedFilter/SSAdvancedFilterItemDefined.vue +298 -0
  376. package/src/components/AdvancedFilter/SSAdvancedFilterItemSchedule.vue +293 -0
  377. package/src/components/AdvancedFilter/SSAdvancedFilterMain.vue +196 -0
  378. package/src/components/AdvancedFilter/types.ts +37 -0
  379. package/src/components/AdvancedFilterReport/SSAdvancedFilterReportItem.vue +110 -0
  380. package/src/components/AdvancedFilterReport/SSAdvancedFilterReportItemDefined.vue +159 -0
  381. package/src/components/AdvancedFilterReport/SSAdvancedFilterReportMain.vue +197 -0
  382. package/src/components/AdvancedFilterReport/types.ts +19 -0
  383. package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiItem.vue +102 -0
  384. package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiItemDefined.vue +119 -0
  385. package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiMain.vue +194 -0
  386. package/src/components/AdvancedFilterSsai/types.ts +19 -0
  387. package/src/components/Asset/AssetAddPlaylist.vue +169 -0
  388. package/src/components/Asset/AssetExtra.vue +46 -0
  389. package/src/components/Asset/AssetImportLinks.vue +281 -0
  390. package/src/components/Asset/AssetInfiniteSelect.vue +62 -0
  391. package/src/components/Asset/AssetItem.vue +194 -0
  392. package/src/components/Asset/AssetItemPreview.vue +117 -0
  393. package/src/components/Asset/AssetList.vue +869 -0
  394. package/src/components/Asset/AssetMeta.vue +97 -0
  395. package/src/components/Asset/AssetPicker.vue +204 -0
  396. package/src/components/Asset/AssetPlaylist.vue +414 -0
  397. package/src/components/Asset/AssetPlaylistInfiniteSelect.vue +136 -0
  398. package/src/components/Asset/AssetPlaylistModalAdd.vue +138 -0
  399. package/src/components/Asset/AssetPreview.vue +89 -0
  400. package/src/components/Asset/AssetShareModal.vue +131 -0
  401. package/src/components/Asset/AssetTable.vue +365 -0
  402. package/src/components/Asset/FormUploadAsset.vue +647 -0
  403. package/src/components/Asset/FormUploadAssetItem.vue +115 -0
  404. package/src/components/Asset/FormUploadAssetProgress.vue +161 -0
  405. package/src/components/Asset/Scrubber.vue +57 -0
  406. package/src/components/Asset/VideoPlayer.vue +226 -0
  407. package/src/components/Asset/VideoPreview.vue +102 -0
  408. package/src/components/Asset/VideoPreviewConfig.vue +329 -0
  409. package/src/components/Asset/VideoPreviewConfigMessage.vue +120 -0
  410. package/src/components/Asset/VideoPreviewConfigVod.vue +287 -0
  411. package/src/components/Asset/VideoPreviewNew.vue +66 -0
  412. package/src/components/Asset/VideoPreviewNewLoader.vue +144 -0
  413. package/src/components/Asset/VideoPreviewWrapper.vue +208 -0
  414. package/src/components/Asset/asset-context.ts +24 -0
  415. package/src/components/Asset/usePickerStore.ts +55 -0
  416. package/src/components/AuthLayout/AuthLayoutSimple.vue +150 -0
  417. package/src/components/AuthLayout/index.vue +151 -0
  418. package/src/components/AutoRefresh/AutoRefresh.vue +91 -0
  419. package/src/components/AutoRefresh/AutoRefreshOld.vue +87 -0
  420. package/src/components/AutoRefresh/useRefresh.ts +93 -0
  421. package/src/components/BackButton.vue +13 -0
  422. package/src/components/Card/CardInfo.vue +21 -0
  423. package/src/components/Channel/AIConfig.vue +101 -0
  424. package/src/components/Channel/AdvancedForm.vue +542 -0
  425. package/src/components/Channel/ChannelListGrid.vue +154 -0
  426. package/src/components/Channel/ConfigBlackout.vue +98 -0
  427. package/src/components/Channel/ConfigCensorship.vue +387 -0
  428. package/src/components/Channel/ConfigForensicWatermark.vue +152 -0
  429. package/src/components/Channel/ConfigForm.vue +102 -0
  430. package/src/components/Channel/ConfigInformation.vue +191 -0
  431. package/src/components/Channel/ConfigInteraction.vue +11 -0
  432. package/src/components/Channel/ConfigNameModifier.vue +15 -0
  433. package/src/components/Channel/ConfigOptionItem.vue +114 -0
  434. package/src/components/Channel/ConfigOptions.vue +181 -0
  435. package/src/components/Channel/ConfigPte.vue +368 -0
  436. package/src/components/Channel/ConfigScte.vue +442 -0
  437. package/src/components/Channel/ConfigTranscoder.vue +353 -0
  438. package/src/components/Channel/ConfigWaterMarkAudio.vue +52 -0
  439. package/src/components/Channel/ConfigWatermark.vue +76 -0
  440. package/src/components/Channel/ConfigWatermarkEventChannel.vue +86 -0
  441. package/src/components/Channel/ConfigWatermarkItem.vue +239 -0
  442. package/src/components/Channel/HeaderItem.vue +75 -0
  443. package/src/components/Channel/InputDetail.vue +68 -0
  444. package/src/components/Channel/InputForm.vue +175 -0
  445. package/src/components/Channel/InputList.vue +38 -0
  446. package/src/components/Channel/InputPackageDetail.vue +125 -0
  447. package/src/components/Channel/MediaProfileFormModal.vue +79 -0
  448. package/src/components/Channel/MediaProfileModify.vue +229 -0
  449. package/src/components/Channel/MessageButtonGetHelp.vue +30 -0
  450. package/src/components/Channel/MessageTooltipAi.vue +29 -0
  451. package/src/components/Channel/MultipleSelectProfile.vue +312 -0
  452. package/src/components/Channel/PackageInputItem.vue +13 -0
  453. package/src/components/Channel/PresetConfigItem.vue +1957 -0
  454. package/src/components/Channel/PresetConfigItemExtra.vue +59 -0
  455. package/src/components/Channel/PresetConfigItemPId.vue +145 -0
  456. package/src/components/Channel/ProfileConfigItem.vue +829 -0
  457. package/src/components/Channel/ProfileDetailsList.vue +160 -0
  458. package/src/components/Channel/ProfileForm.vue +134 -0
  459. package/src/components/Channel/ProfileList.vue +228 -0
  460. package/src/components/Channel/SelectServer.vue +134 -0
  461. package/src/components/Channel/SignalLoss.vue +92 -0
  462. package/src/components/Channel/SwitchInputButton.vue +38 -0
  463. package/src/components/Channel/TargetCatchup.vue +75 -0
  464. package/src/components/Channel/TargetDataInfo.vue +100 -0
  465. package/src/components/Channel/TargetDestination.vue +375 -0
  466. package/src/components/Channel/TargetDrm.vue +518 -0
  467. package/src/components/Channel/TargetForm.vue +136 -0
  468. package/src/components/Channel/TargetList.vue +159 -0
  469. package/src/components/Channel/TargetLowLatency.vue +107 -0
  470. package/src/components/Channel/TargetMabrOutput.vue +58 -0
  471. package/src/components/Channel/TargetMabrOutputItem.vue +91 -0
  472. package/src/components/Channel/TargetManifest.vue +94 -0
  473. package/src/components/Channel/TargetNetworkInterface.vue +95 -0
  474. package/src/components/Channel/TargetOutputMultiplex.vue +237 -0
  475. package/src/components/Channel/TargetOutputType.vue +201 -0
  476. package/src/components/Channel/TargetOutputUdp.vue +200 -0
  477. package/src/components/Channel/TargetPreset.vue +541 -0
  478. package/src/components/Channel/TargetProfileAudioGroup.vue +27 -0
  479. package/src/components/Channel/TargetProfileProgram.vue +43 -0
  480. package/src/components/Channel/TargetProfileURI.vue +68 -0
  481. package/src/components/Channel/TargetSrtOutput.vue +35 -0
  482. package/src/components/Channel/TargetSrtOutputItem.vue +83 -0
  483. package/src/components/Channel/TargetStartover.vue +40 -0
  484. package/src/components/Channel/WarningName.vue +39 -0
  485. package/src/components/Channel/WarningOutput.vue +40 -0
  486. package/src/components/CollapseTagsTooltip/CollapseTagsTooltip.vue +87 -0
  487. package/src/components/CollapseTagsTooltip/index.ts +1 -0
  488. package/src/components/CopyButton.vue +46 -0
  489. package/src/components/CopyText.vue +40 -0
  490. package/src/components/CopyTextButton.vue +40 -0
  491. package/src/components/DefaultLayout/DefaultLayout.vue +134 -0
  492. package/src/components/DefaultLayout/GlobalASide.vue +75 -0
  493. package/src/components/DefaultLayout/GlobalFooter.vue +15 -0
  494. package/src/components/DefaultLayout/GlobalHeader.vue +43 -0
  495. package/src/components/DefaultLayout/Logo.vue +35 -0
  496. package/src/components/DefaultLayout/Menu.vue +464 -0
  497. package/src/components/DefaultLayout/RightMenu.vue +93 -0
  498. package/src/components/DialogWarningAddLicense.vue +37 -0
  499. package/src/components/Epg/Epg.vue +24 -0
  500. package/src/components/Epg/components/Channel.vue +28 -0
  501. package/src/components/Epg/components/Channels.vue +33 -0
  502. package/src/components/Epg/components/Layout.vue +121 -0
  503. package/src/components/Epg/components/Line.vue +41 -0
  504. package/src/components/Epg/components/Loader.vue +23 -0
  505. package/src/components/Epg/components/Program.vue +101 -0
  506. package/src/components/Epg/components/SideBar.vue +18 -0
  507. package/src/components/Epg/components/Timeline.vue +72 -0
  508. package/src/components/Epg/helpers/common.ts +68 -0
  509. package/src/components/Epg/helpers/epg.ts +192 -0
  510. package/src/components/Epg/helpers/index.ts +5 -0
  511. package/src/components/Epg/helpers/interfaces.ts +54 -0
  512. package/src/components/Epg/helpers/time.ts +51 -0
  513. package/src/components/Epg/helpers/types.ts +26 -0
  514. package/src/components/Epg/helpers/variables.ts +33 -0
  515. package/src/components/Epg/hooks/index.ts +2 -0
  516. package/src/components/Epg/hooks/useEpg.ts +160 -0
  517. package/src/components/Epg/hooks/useLayout.ts +187 -0
  518. package/src/components/Epg/hooks/useProgram.ts +63 -0
  519. package/src/components/Epg/hooks/useTimeline.ts +35 -0
  520. package/src/components/Epg/index.ts +4 -0
  521. package/src/components/Epg/store.ts +85 -0
  522. package/src/components/Epg/theme.ts +44 -0
  523. package/src/components/Exception/403.png +0 -0
  524. package/src/components/Exception/403.vue +58 -0
  525. package/src/components/Exception/404.png +0 -0
  526. package/src/components/Exception/404.vue +59 -0
  527. package/src/components/Exception/500.png +0 -0
  528. package/src/components/Exception/500.vue +39 -0
  529. package/src/components/Exception/index.scss +30 -0
  530. package/src/components/Field.vue +193 -0
  531. package/src/components/FilterQuerySchema/FilterQuerySchemaForm.vue +200 -0
  532. package/src/components/FilterQuerySchema/QueryTag.vue +109 -0
  533. package/src/components/FilterQuerySchema/Tag.vue +68 -0
  534. package/src/components/FilterTimeDimensions.vue +265 -0
  535. package/src/components/FilterTimeDimensionsSingle.vue +214 -0
  536. package/src/components/HelpPanel.vue +87 -0
  537. package/src/components/HexagonPro.vue +7 -0
  538. package/src/components/IconCopyButton.vue +43 -0
  539. package/src/components/InformationLabel.vue +67 -0
  540. package/src/components/Input/InputTags.vue +136 -0
  541. package/src/components/Input/index.ts +1 -0
  542. package/src/components/MainDefaultLayout/index.vue +120 -0
  543. package/src/components/NoticeAddLicense.vue +20 -0
  544. package/src/components/NoticeRunningOutResources.vue +20 -0
  545. package/src/components/Pagination.vue +61 -0
  546. package/src/components/QueryBuilder/QueryBuilder.vue +141 -0
  547. package/src/components/QueryBuilder/components/inputs/DateInputField.vue +105 -0
  548. package/src/components/QueryBuilder/components/inputs/FieldSelect.vue +44 -0
  549. package/src/components/QueryBuilder/components/inputs/InputMultiSelect.vue +60 -0
  550. package/src/components/QueryBuilder/components/inputs/InputSelect.vue +39 -0
  551. package/src/components/QueryBuilder/components/inputs/NumberInputField.vue +91 -0
  552. package/src/components/QueryBuilder/components/inputs/OperatorSelect.vue +59 -0
  553. package/src/components/QueryBuilder/components/inputs/TextInput.vue +40 -0
  554. package/src/components/QueryBuilder/components/inputs/TimeInputField.vue +114 -0
  555. package/src/components/QueryBuilder/components/inputs/logics.ts +27 -0
  556. package/src/components/QueryBuilder/components/item/InputMultiOptions.vue +56 -0
  557. package/src/components/QueryBuilder/components/item/QueryGroup.vue +71 -0
  558. package/src/components/QueryBuilder/components/item/QueryGroupActions.vue +76 -0
  559. package/src/components/QueryBuilder/components/item/QueryRule.vue +233 -0
  560. package/src/components/QueryBuilder/useConfigStore.ts +27 -0
  561. package/src/components/QueryBuilder/utils/config.ts +194 -0
  562. package/src/components/QueryBuilder/utils/index.ts +3 -0
  563. package/src/components/QueryBuilder/utils/mongodb.ts +175 -0
  564. package/src/components/QueryBuilder/utils/rules.ts +213 -0
  565. package/src/components/RecommendedConfigurationPTE.vue +238 -0
  566. package/src/components/Server/MachineConfig.vue +333 -0
  567. package/src/components/Server/ServerConfig.vue +599 -0
  568. package/src/components/Server/useQueryMachine.ts +380 -0
  569. package/src/components/Server/validator.ts +13 -0
  570. package/src/components/SwitchDark.vue +19 -0
  571. package/src/components/SwitchLang.vue +31 -0
  572. package/src/components/TableEmpty.vue +50 -0
  573. package/src/components/Toast/ToastNoti.vue +52 -0
  574. package/src/components/Tool/ForensicWatermarkingDialog.vue +39 -0
  575. package/src/components/Tool/FormRecord.vue +162 -0
  576. package/src/components/Tool/FormUpload.vue +118 -0
  577. package/src/components/Tool/ResultChecking.vue +103 -0
  578. package/src/components/Tool/Watermarking.vue +159 -0
  579. package/src/components/Tool/record.js +92 -0
  580. package/src/components/Tooltip/Ellipsis.vue +52 -0
  581. package/src/components/Tooltip/index.vue +47 -0
  582. package/src/components/app/AppList.vue +50 -0
  583. package/src/components/button/Button.vue +27 -0
  584. package/src/components/button/index.ts +37 -0
  585. package/src/components/context-menu/ContextMenu.vue +15 -0
  586. package/src/components/context-menu/ContextMenuCheckboxItem.vue +39 -0
  587. package/src/components/context-menu/ContextMenuContent.vue +35 -0
  588. package/src/components/context-menu/ContextMenuGroup.vue +11 -0
  589. package/src/components/context-menu/ContextMenuItem.vue +33 -0
  590. package/src/components/context-menu/ContextMenuLabel.vue +24 -0
  591. package/src/components/context-menu/ContextMenuPortal.vue +11 -0
  592. package/src/components/context-menu/ContextMenuRadioGroup.vue +19 -0
  593. package/src/components/context-menu/ContextMenuRadioItem.vue +39 -0
  594. package/src/components/context-menu/ContextMenuSeparator.vue +19 -0
  595. package/src/components/context-menu/ContextMenuShortcut.vue +13 -0
  596. package/src/components/context-menu/ContextMenuSub.vue +19 -0
  597. package/src/components/context-menu/ContextMenuSubContent.vue +34 -0
  598. package/src/components/context-menu/ContextMenuSubTrigger.vue +33 -0
  599. package/src/components/context-menu/ContextMenuTrigger.vue +13 -0
  600. package/src/components/context-menu/index.ts +14 -0
  601. package/src/components/dashboard/SSDashboardChartRoot.vue +18 -0
  602. package/src/components/dashboard/SSDashboardDocument.vue +45 -0
  603. package/src/components/dashboard/SSDashboardEmpty.vue +16 -0
  604. package/src/components/dashboard/SSDashboardGuideline.vue +45 -0
  605. package/src/components/dashboard/SSDashboardInfo.vue +36 -0
  606. package/src/components/dashboard/SSDashboardInfoRoot.vue +9 -0
  607. package/src/components/dashboard/SSDashboardInfoTime.vue +38 -0
  608. package/src/components/markdown/Markdown.vue +295 -0
  609. package/src/components/tabs/Tabs.vue +15 -0
  610. package/src/components/tabs/TabsContent.vue +22 -0
  611. package/src/components/tabs/TabsList.vue +22 -0
  612. package/src/components/tabs/TabsTrigger.vue +26 -0
  613. package/src/composables/asset.ts +13 -0
  614. package/src/composables/channel.ts +333 -0
  615. package/src/composables/country.ts +788 -0
  616. package/src/composables/error.ts +24 -0
  617. package/src/composables/form.ts +351 -0
  618. package/src/composables/getBuildTime.ts +7 -0
  619. package/src/composables/micro.ts +113 -0
  620. package/src/composables/microState.ts +22 -0
  621. package/src/composables/notiGlobal.ts +19 -0
  622. package/src/composables/plan.ts +162 -0
  623. package/src/composables/refReset.ts +12 -0
  624. package/src/composables/resetInfiniteQueryPagination.ts +18 -0
  625. package/src/composables/route.ts +19 -0
  626. package/src/composables/toast.ts +21 -0
  627. package/src/composables/useApp.ts +6 -0
  628. package/src/composables/useAsyncSchema.ts +58 -0
  629. package/src/composables/useChannelActions.ts +151 -0
  630. package/src/composables/useComplexSearchParam.ts +293 -0
  631. package/src/composables/useFilterSchema.ts +106 -0
  632. package/src/composables/useGetInputDetail.ts +36 -0
  633. package/src/composables/useGetServerAddLicense.ts +21 -0
  634. package/src/composables/useJobPreview.ts +438 -0
  635. package/src/composables/useLayoutStore.ts +106 -0
  636. package/src/composables/usePermission.ts +5 -0
  637. package/src/composables/usePickerStore.ts +53 -0
  638. package/src/composables/useQueryAssets.ts +56 -0
  639. package/src/composables/useQueryParams.ts +20 -0
  640. package/src/composables/useRouteParams.ts +36 -0
  641. package/src/composables/useRouteQueries.ts +54 -0
  642. package/src/composables/useRouterHistory.ts +76 -0
  643. package/src/composables/useSearchQuery.ts +27 -0
  644. package/src/composables/useTooltipEllipsis.ts +12 -0
  645. package/src/constants/env.ts +11 -0
  646. package/src/constants/filterable.ts +32 -0
  647. package/src/constants/languageCode.ts +185 -0
  648. package/src/constants/micro.ts +1 -0
  649. package/src/constants/queryKeys.ts +11 -0
  650. package/src/constants/regex.ts +8 -0
  651. package/src/constants/storage.ts +41 -0
  652. package/src/enums/index.ts +24 -0
  653. package/src/layouts/empty.vue +7 -0
  654. package/src/modules/api-party/kit.ts +30 -0
  655. package/src/modules/api-party/module.ts +259 -0
  656. package/src/modules/api-party/openapi.ts +74 -0
  657. package/src/modules/api-party/runtime/composables/$api.ts +157 -0
  658. package/src/modules/api-party/runtime/composables/useApiData.ts +229 -0
  659. package/src/modules/api-party/runtime/constants.ts +1 -0
  660. package/src/modules/api-party/runtime/formData.ts +85 -0
  661. package/src/modules/api-party/runtime/server/$api.ts +29 -0
  662. package/src/modules/api-party/runtime/server/handler.ts +92 -0
  663. package/src/modules/api-party/runtime/types.ts +97 -0
  664. package/src/modules/api-party/runtime/utils.ts +43 -0
  665. package/src/pages/403.vue +11 -0
  666. package/src/pages/500.vue +11 -0
  667. package/src/pages/[...all].vue +11 -0
  668. package/src/pages/login.vue +67 -0
  669. package/src/plugins/auth.ts +10 -0
  670. package/src/plugins/build-time.ts +5 -0
  671. package/src/plugins/dayjs.ts +14 -0
  672. package/src/plugins/i18n.ts +6 -0
  673. package/src/plugins/router.ts +6 -0
  674. package/src/plugins/vue-json-pretty.ts +5 -0
  675. package/src/plugins/vue-query.ts +41 -0
  676. package/src/plugins/wujie.ts +19 -0
  677. package/src/public/apple-touch-icon.png +0 -0
  678. package/src/public/audio-recorder.js +31 -0
  679. package/src/public/build-time.json +1 -0
  680. package/src/public/favicon.ico +0 -0
  681. package/src/public/icon-block-free-app.png +0 -0
  682. package/src/public/maskable-icon.png +0 -0
  683. package/src/public/nuxt.svg +3 -0
  684. package/src/public/preview/step-1.png +0 -0
  685. package/src/public/preview/step-2.png +0 -0
  686. package/src/public/preview/step-3.png +0 -0
  687. package/src/public/pwa-192x192.png +0 -0
  688. package/src/public/pwa-512x512.png +0 -0
  689. package/src/public/robots.txt +2 -0
  690. package/src/public/vite.png +0 -0
  691. package/src/pwa/config.ts +61 -0
  692. package/src/pwa/index.ts +194 -0
  693. package/src/pwa/runtime/VitePwaManifest.ts +33 -0
  694. package/src/pwa/types.ts +56 -0
  695. package/src/pwa/utils.ts +16 -0
  696. package/src/schemas/authServiceApi.json +6709 -0
  697. package/src/schemas/billingApi.json +1083 -0
  698. package/src/schemas/chatApi.json +497 -0
  699. package/src/schemas/libraryApi.json +2009 -0
  700. package/src/schemas/licenseApi.json +772 -0
  701. package/src/schemas/livestreamApi.json +3354 -0
  702. package/src/schemas/lrmApi.json +2848 -0
  703. package/src/schemas/machineApi.json +4604 -0
  704. package/src/schemas/metricApi.json +141 -0
  705. package/src/schemas/notificationApi.json +1 -0
  706. package/src/schemas/playoutApi.json +8315 -0
  707. package/src/schemas/ssaiApi.json +1108 -0
  708. package/src/schemas/transcodeApi.json +9670 -0
  709. package/src/schemas/vastControlApi.json +961 -0
  710. package/src/schemas/vodApi.json +3974 -0
  711. package/src/server/plugins/loading.css +111 -0
  712. package/src/server/plugins/loading.html +12 -0
  713. package/src/server/plugins/loading.ts +134 -0
  714. package/src/templates/pwa.client.ts +136 -0
  715. package/src/utils/$apiOptions.ts +79 -0
  716. package/src/utils/app.ts +23 -0
  717. package/src/utils/cn.ts +3 -0
  718. package/src/utils/format.ts +88 -0
  719. package/src/utils/gen-routes.ts +100 -0
  720. package/src/utils/helper.ts +56 -0
  721. package/src/utils/micro.ts +207 -0
  722. package/src/utils/popoverSelectAttrs.ts +24 -0
  723. package/src/utils/popup.ts +96 -0
  724. package/src/utils/pwa.ts +86 -0
  725. package/src/utils/query-filter.ts +111 -0
  726. package/src/utils/table.ts +35 -0
  727. package/src/utils/tryCatch.ts +25 -0
  728. package/src/utils/utils.ts +58 -0
  729. package/src/utils/validator.ts +185 -0
  730. package/src/utils/videojs.ts +490 -0
  731. package/src/utils/wujie.ts +1 -0
  732. package/tsconfig.json +3 -0
  733. package/uno.config.ts +375 -0
@@ -0,0 +1,4604 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "paths": {
4
+ "/api/machine/machines": {
5
+ "get": {
6
+ "operationId": "MachineController_findAll",
7
+ "summary": "Get list Sigma Transcode Machine",
8
+ "description": "Get list Sigma Transcode Machine",
9
+ "parameters": [
10
+ {
11
+ "name": "sort",
12
+ "required": false,
13
+ "in": "query",
14
+ "example": "created_at|desc;filename|asc",
15
+ "description": "Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order",
16
+ "schema": {
17
+ "type": "string"
18
+ }
19
+ },
20
+ {
21
+ "name": "page",
22
+ "required": false,
23
+ "in": "query",
24
+ "example": "1",
25
+ "description": "pagination number",
26
+ "schema": {
27
+ "type": "number"
28
+ }
29
+ },
30
+ {
31
+ "name": "perPage",
32
+ "required": false,
33
+ "in": "query",
34
+ "example": "10",
35
+ "description": "",
36
+ "schema": {
37
+ "type": "number"
38
+ }
39
+ },
40
+ {
41
+ "name": "limit",
42
+ "required": false,
43
+ "in": "query",
44
+ "example": "10",
45
+ "description": "",
46
+ "schema": {
47
+ "type": "number"
48
+ }
49
+ },
50
+ {
51
+ "name": "offset",
52
+ "required": false,
53
+ "in": "query",
54
+ "example": "0",
55
+ "description": "",
56
+ "schema": {
57
+ "type": "number"
58
+ }
59
+ },
60
+ {
61
+ "name": "fields",
62
+ "required": false,
63
+ "in": "query",
64
+ "example": "id,name,url",
65
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
66
+ "schema": {
67
+ "type": "string"
68
+ }
69
+ },
70
+ {
71
+ "name": "populates",
72
+ "required": false,
73
+ "in": "query",
74
+ "example": "author,book",
75
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
76
+ "schema": {
77
+ "type": "string"
78
+ }
79
+ }
80
+ ],
81
+ "responses": {
82
+ "200": {
83
+ "description": "",
84
+ "content": {
85
+ "application/json": {
86
+ "schema": {
87
+ "$ref": "#/components/schemas/TranscoderCollection"
88
+ }
89
+ }
90
+ }
91
+ }
92
+ },
93
+ "tags": [
94
+ "component-machine"
95
+ ]
96
+ }
97
+ },
98
+ "/api/machine/machines/{machineId}": {
99
+ "get": {
100
+ "operationId": "MachineController_findOne",
101
+ "summary": "Get Sigma Transcode Machine by Id",
102
+ "description": "Get Sigma Transcode Machine by Id",
103
+ "parameters": [
104
+ {
105
+ "name": "machineId",
106
+ "required": true,
107
+ "in": "path",
108
+ "schema": {
109
+ "type": "string"
110
+ }
111
+ }
112
+ ],
113
+ "responses": {
114
+ "200": {
115
+ "description": "",
116
+ "content": {
117
+ "application/json": {
118
+ "schema": {
119
+ "$ref": "#/components/schemas/Transcoder"
120
+ }
121
+ }
122
+ }
123
+ }
124
+ },
125
+ "tags": [
126
+ "component-machine"
127
+ ]
128
+ },
129
+ "delete": {
130
+ "operationId": "MachineController_deleteTranscoder",
131
+ "summary": "Delete Sigma Transcode Machine by Id",
132
+ "description": "Delete Sigma Transcode Machine by Id",
133
+ "parameters": [
134
+ {
135
+ "name": "machineId",
136
+ "required": true,
137
+ "in": "path",
138
+ "schema": {
139
+ "type": "string"
140
+ }
141
+ }
142
+ ],
143
+ "responses": {
144
+ "200": {
145
+ "description": "",
146
+ "content": {
147
+ "application/json": {
148
+ "schema": {
149
+ "$ref": "#/components/schemas/Transcoder"
150
+ }
151
+ }
152
+ }
153
+ }
154
+ },
155
+ "tags": [
156
+ "component-machine"
157
+ ]
158
+ }
159
+ },
160
+ "/api/machine/machines/actions/get-stats": {
161
+ "get": {
162
+ "operationId": "MachineController_getStatsNew",
163
+ "summary": "Get Stats of Sigma Machine",
164
+ "description": "Get Stats of Transcode Machine",
165
+ "parameters": [],
166
+ "responses": {
167
+ "200": {
168
+ "description": "",
169
+ "content": {
170
+ "application/json": {
171
+ "schema": {
172
+ "$ref": "#/components/schemas/Stats"
173
+ }
174
+ }
175
+ }
176
+ }
177
+ },
178
+ "tags": [
179
+ "component-machine"
180
+ ]
181
+ }
182
+ },
183
+ "/api/machine/machines/{machineId}/action": {
184
+ "post": {
185
+ "operationId": "MachineController_action",
186
+ "parameters": [
187
+ {
188
+ "name": "machineId",
189
+ "required": true,
190
+ "in": "path",
191
+ "schema": {
192
+ "type": "string"
193
+ }
194
+ }
195
+ ],
196
+ "responses": {
197
+ "201": {
198
+ "description": "",
199
+ "content": {
200
+ "application/json": {
201
+ "schema": {
202
+ "type": "object"
203
+ }
204
+ }
205
+ }
206
+ }
207
+ },
208
+ "tags": [
209
+ "component-machine"
210
+ ]
211
+ }
212
+ },
213
+ "/api/machine/machines/actions/{machineId}/get-details": {
214
+ "get": {
215
+ "operationId": "MachineActionController_getMachineDetails",
216
+ "parameters": [
217
+ {
218
+ "name": "machineId",
219
+ "required": true,
220
+ "in": "path",
221
+ "schema": {
222
+ "type": "string"
223
+ }
224
+ }
225
+ ],
226
+ "responses": {
227
+ "200": {
228
+ "description": "",
229
+ "content": {
230
+ "application/json": {
231
+ "schema": {
232
+ "$ref": "#/components/schemas/MachineDetails"
233
+ }
234
+ }
235
+ }
236
+ }
237
+ },
238
+ "tags": [
239
+ "machine actions"
240
+ ]
241
+ }
242
+ },
243
+ "/api/machine/machines/actions/{machineId}/pause": {
244
+ "post": {
245
+ "operationId": "MachineActionController_pauseMachine",
246
+ "parameters": [
247
+ {
248
+ "name": "machineId",
249
+ "required": true,
250
+ "in": "path",
251
+ "schema": {
252
+ "type": "string"
253
+ }
254
+ }
255
+ ],
256
+ "responses": {
257
+ "201": {
258
+ "description": "",
259
+ "content": {
260
+ "application/json": {
261
+ "schema": {
262
+ "$ref": "#/components/schemas/Transcoder"
263
+ }
264
+ }
265
+ }
266
+ }
267
+ },
268
+ "tags": [
269
+ "machine actions"
270
+ ]
271
+ }
272
+ },
273
+ "/api/machine/machines/actions/{machineId}/resume": {
274
+ "post": {
275
+ "operationId": "MachineActionController_resumeMachine",
276
+ "parameters": [
277
+ {
278
+ "name": "machineId",
279
+ "required": true,
280
+ "in": "path",
281
+ "schema": {
282
+ "type": "string"
283
+ }
284
+ }
285
+ ],
286
+ "responses": {
287
+ "201": {
288
+ "description": "",
289
+ "content": {
290
+ "application/json": {
291
+ "schema": {
292
+ "$ref": "#/components/schemas/Transcoder"
293
+ }
294
+ }
295
+ }
296
+ }
297
+ },
298
+ "tags": [
299
+ "machine actions"
300
+ ]
301
+ }
302
+ },
303
+ "/api/machine/machines/actions/{machineId}/drain-job": {
304
+ "post": {
305
+ "operationId": "MachineActionController_drainJobMachine",
306
+ "parameters": [
307
+ {
308
+ "name": "machineId",
309
+ "required": true,
310
+ "in": "path",
311
+ "schema": {
312
+ "type": "string"
313
+ }
314
+ }
315
+ ],
316
+ "responses": {
317
+ "201": {
318
+ "description": "",
319
+ "content": {
320
+ "application/json": {
321
+ "schema": {
322
+ "$ref": "#/components/schemas/Transcoder"
323
+ }
324
+ }
325
+ }
326
+ }
327
+ },
328
+ "tags": [
329
+ "machine actions"
330
+ ]
331
+ }
332
+ },
333
+ "/api/machine/machines/actions/{machineId}/add-license": {
334
+ "patch": {
335
+ "operationId": "MachineActionController_addLicense",
336
+ "parameters": [
337
+ {
338
+ "name": "machineId",
339
+ "required": true,
340
+ "in": "path",
341
+ "schema": {
342
+ "type": "string"
343
+ }
344
+ }
345
+ ],
346
+ "requestBody": {
347
+ "required": true,
348
+ "content": {
349
+ "application/json": {
350
+ "schema": {
351
+ "$ref": "#/components/schemas/AddLicenseMachineDto"
352
+ }
353
+ }
354
+ }
355
+ },
356
+ "responses": {
357
+ "200": {
358
+ "description": "",
359
+ "content": {
360
+ "application/json": {
361
+ "schema": {
362
+ "$ref": "#/components/schemas/Transcoder"
363
+ }
364
+ }
365
+ }
366
+ }
367
+ },
368
+ "tags": [
369
+ "machine actions"
370
+ ]
371
+ }
372
+ },
373
+ "/api/machine/machines/actions/{machineId}/update-metadata": {
374
+ "patch": {
375
+ "operationId": "MachineActionController_updateMetadata",
376
+ "parameters": [
377
+ {
378
+ "name": "machineId",
379
+ "required": true,
380
+ "in": "path",
381
+ "schema": {
382
+ "type": "string"
383
+ }
384
+ }
385
+ ],
386
+ "requestBody": {
387
+ "required": true,
388
+ "content": {
389
+ "application/json": {
390
+ "schema": {
391
+ "$ref": "#/components/schemas/UpdateMetadataDto"
392
+ }
393
+ }
394
+ }
395
+ },
396
+ "responses": {
397
+ "200": {
398
+ "description": "",
399
+ "content": {
400
+ "application/json": {
401
+ "schema": {
402
+ "$ref": "#/components/schemas/Transcoder"
403
+ }
404
+ }
405
+ }
406
+ }
407
+ },
408
+ "tags": [
409
+ "machine actions"
410
+ ]
411
+ }
412
+ },
413
+ "/api/machine/machines/actions/{machineId}/get-info": {
414
+ "get": {
415
+ "operationId": "MachineActionController_getInfo",
416
+ "parameters": [
417
+ {
418
+ "name": "machineId",
419
+ "required": true,
420
+ "in": "path",
421
+ "schema": {
422
+ "type": "string"
423
+ }
424
+ },
425
+ {
426
+ "name": "timeout",
427
+ "required": true,
428
+ "in": "query",
429
+ "schema": {
430
+ "type": "number"
431
+ }
432
+ },
433
+ {
434
+ "name": "detectKeyframe",
435
+ "required": true,
436
+ "in": "query",
437
+ "schema": {
438
+ "type": "number"
439
+ }
440
+ },
441
+ {
442
+ "name": "input",
443
+ "required": true,
444
+ "in": "query",
445
+ "schema": {
446
+ "type": "string"
447
+ }
448
+ }
449
+ ],
450
+ "responses": {
451
+ "200": {
452
+ "description": "",
453
+ "content": {
454
+ "application/json": {
455
+ "schema": {
456
+ "$ref": "#/components/schemas/InfoChannel"
457
+ }
458
+ }
459
+ }
460
+ }
461
+ },
462
+ "tags": [
463
+ "machine actions"
464
+ ]
465
+ }
466
+ },
467
+ "/api/machine/machines/actions/{machineId}/dump": {
468
+ "get": {
469
+ "operationId": "MachineActionController_getInfoMachine",
470
+ "parameters": [
471
+ {
472
+ "name": "machineId",
473
+ "required": true,
474
+ "in": "path",
475
+ "schema": {
476
+ "type": "string"
477
+ }
478
+ }
479
+ ],
480
+ "responses": {
481
+ "200": {
482
+ "description": "",
483
+ "content": {
484
+ "application/json": {
485
+ "schema": {
486
+ "$ref": "#/components/schemas/MachineDump"
487
+ }
488
+ }
489
+ }
490
+ }
491
+ },
492
+ "tags": [
493
+ "machine actions"
494
+ ]
495
+ }
496
+ },
497
+ "/api/machine/machines/actions/{machineId}/load-config-app": {
498
+ "get": {
499
+ "operationId": "MachineActionController_loadConfig",
500
+ "parameters": [
501
+ {
502
+ "name": "machineId",
503
+ "required": true,
504
+ "in": "path",
505
+ "schema": {
506
+ "type": "string"
507
+ }
508
+ },
509
+ {
510
+ "name": "app",
511
+ "required": true,
512
+ "in": "query",
513
+ "schema": {
514
+ "type": "string"
515
+ }
516
+ }
517
+ ],
518
+ "responses": {
519
+ "200": {
520
+ "description": "",
521
+ "content": {
522
+ "application/json": {
523
+ "schema": {
524
+ "type": "string"
525
+ }
526
+ }
527
+ }
528
+ }
529
+ },
530
+ "tags": [
531
+ "machine actions"
532
+ ]
533
+ }
534
+ },
535
+ "/api/machine/machines/actions/{machineId}/get-status": {
536
+ "get": {
537
+ "operationId": "MachineActionController_getStatusApp",
538
+ "parameters": [
539
+ {
540
+ "name": "machineId",
541
+ "required": true,
542
+ "in": "path",
543
+ "schema": {
544
+ "type": "string"
545
+ }
546
+ },
547
+ {
548
+ "name": "type",
549
+ "required": true,
550
+ "in": "query",
551
+ "schema": {
552
+ "enum": [
553
+ "srs",
554
+ "nginx",
555
+ "origin"
556
+ ],
557
+ "type": "string"
558
+ }
559
+ }
560
+ ],
561
+ "responses": {
562
+ "200": {
563
+ "description": "",
564
+ "content": {
565
+ "application/json": {
566
+ "schema": {
567
+ "$ref": "#/components/schemas/AppStatus"
568
+ }
569
+ }
570
+ }
571
+ }
572
+ },
573
+ "tags": [
574
+ "machine actions"
575
+ ]
576
+ }
577
+ },
578
+ "/api/machine/machines/actions/{machineId}/channels/{channelName}": {
579
+ "delete": {
580
+ "operationId": "MachineActionController_stopChannel",
581
+ "parameters": [
582
+ {
583
+ "name": "machineId",
584
+ "required": true,
585
+ "in": "path",
586
+ "schema": {
587
+ "type": "string"
588
+ }
589
+ },
590
+ {
591
+ "name": "channelName",
592
+ "required": true,
593
+ "in": "path",
594
+ "schema": {
595
+ "type": "string"
596
+ }
597
+ }
598
+ ],
599
+ "responses": {
600
+ "200": {
601
+ "description": "",
602
+ "content": {
603
+ "application/json": {
604
+ "schema": {
605
+ "$ref": "#/components/schemas/StopChannel"
606
+ }
607
+ }
608
+ }
609
+ }
610
+ },
611
+ "tags": [
612
+ "machine actions"
613
+ ]
614
+ }
615
+ },
616
+ "/api/machine/config-apps/{machineId}/get-status": {
617
+ "get": {
618
+ "operationId": "MachineAppsConfigController_getStatusApp",
619
+ "parameters": [
620
+ {
621
+ "name": "machineId",
622
+ "required": true,
623
+ "in": "path",
624
+ "schema": {
625
+ "type": "string"
626
+ }
627
+ },
628
+ {
629
+ "name": "appType",
630
+ "required": true,
631
+ "in": "query",
632
+ "schema": {
633
+ "enum": [
634
+ "origin",
635
+ "ingest"
636
+ ],
637
+ "type": "string"
638
+ }
639
+ }
640
+ ],
641
+ "responses": {
642
+ "200": {
643
+ "description": "",
644
+ "content": {
645
+ "application/json": {
646
+ "schema": {
647
+ "$ref": "#/components/schemas/AppStatus"
648
+ }
649
+ }
650
+ }
651
+ }
652
+ },
653
+ "tags": [
654
+ "Apps-Config"
655
+ ]
656
+ }
657
+ },
658
+ "/api/machine/config-apps/{machineId}/start": {
659
+ "patch": {
660
+ "operationId": "MachineAppsConfigController_startApp",
661
+ "parameters": [
662
+ {
663
+ "name": "machineId",
664
+ "required": true,
665
+ "in": "path",
666
+ "schema": {
667
+ "type": "string"
668
+ }
669
+ }
670
+ ],
671
+ "requestBody": {
672
+ "required": true,
673
+ "content": {
674
+ "application/json": {
675
+ "schema": {
676
+ "$ref": "#/components/schemas/ActionsToAppDto"
677
+ }
678
+ }
679
+ }
680
+ },
681
+ "responses": {
682
+ "200": {
683
+ "description": "",
684
+ "content": {
685
+ "application/json": {
686
+ "schema": {
687
+ "$ref": "#/components/schemas/AppStatus"
688
+ }
689
+ }
690
+ }
691
+ }
692
+ },
693
+ "tags": [
694
+ "Apps-Config"
695
+ ]
696
+ }
697
+ },
698
+ "/api/machine/config-apps/{machineId}/stop": {
699
+ "patch": {
700
+ "operationId": "MachineAppsConfigController_stopApp",
701
+ "parameters": [
702
+ {
703
+ "name": "machineId",
704
+ "required": true,
705
+ "in": "path",
706
+ "schema": {
707
+ "type": "string"
708
+ }
709
+ }
710
+ ],
711
+ "requestBody": {
712
+ "required": true,
713
+ "content": {
714
+ "application/json": {
715
+ "schema": {
716
+ "$ref": "#/components/schemas/ActionsToAppDto"
717
+ }
718
+ }
719
+ }
720
+ },
721
+ "responses": {
722
+ "200": {
723
+ "description": "",
724
+ "content": {
725
+ "application/json": {
726
+ "schema": {
727
+ "$ref": "#/components/schemas/AppStatus"
728
+ }
729
+ }
730
+ }
731
+ }
732
+ },
733
+ "tags": [
734
+ "Apps-Config"
735
+ ]
736
+ }
737
+ },
738
+ "/api/machine/config-apps/{machineId}/reset": {
739
+ "patch": {
740
+ "operationId": "MachineAppsConfigController_resetApp",
741
+ "parameters": [
742
+ {
743
+ "name": "machineId",
744
+ "required": true,
745
+ "in": "path",
746
+ "schema": {
747
+ "type": "string"
748
+ }
749
+ }
750
+ ],
751
+ "requestBody": {
752
+ "required": true,
753
+ "content": {
754
+ "application/json": {
755
+ "schema": {
756
+ "$ref": "#/components/schemas/ActionsToAppDto"
757
+ }
758
+ }
759
+ }
760
+ },
761
+ "responses": {
762
+ "200": {
763
+ "description": "",
764
+ "content": {
765
+ "application/json": {
766
+ "schema": {
767
+ "$ref": "#/components/schemas/AppStatus"
768
+ }
769
+ }
770
+ }
771
+ }
772
+ },
773
+ "tags": [
774
+ "Apps-Config"
775
+ ]
776
+ }
777
+ },
778
+ "/api/machine/config-apps/{machineId}/update-config": {
779
+ "patch": {
780
+ "operationId": "MachineAppsConfigController_updateConfig",
781
+ "parameters": [
782
+ {
783
+ "name": "machineId",
784
+ "required": true,
785
+ "in": "path",
786
+ "schema": {
787
+ "type": "string"
788
+ }
789
+ }
790
+ ],
791
+ "requestBody": {
792
+ "required": true,
793
+ "content": {
794
+ "application/json": {
795
+ "schema": {
796
+ "$ref": "#/components/schemas/UpdateAppConfigDto"
797
+ }
798
+ }
799
+ }
800
+ },
801
+ "responses": {
802
+ "200": {
803
+ "description": "",
804
+ "content": {
805
+ "application/json": {
806
+ "schema": {
807
+ "$ref": "#/components/schemas/Transcoder"
808
+ }
809
+ }
810
+ }
811
+ }
812
+ },
813
+ "tags": [
814
+ "Apps-Config"
815
+ ]
816
+ }
817
+ },
818
+ "/api/machine/sigma-machines/actions/{id}/pause": {
819
+ "post": {
820
+ "operationId": "SigmaMachineActionController_pauseMachine",
821
+ "parameters": [
822
+ {
823
+ "name": "id",
824
+ "required": true,
825
+ "in": "path",
826
+ "schema": {
827
+ "type": "string"
828
+ }
829
+ }
830
+ ],
831
+ "responses": {
832
+ "200": {
833
+ "description": "",
834
+ "content": {
835
+ "application/json": {
836
+ "schema": {
837
+ "$ref": "#/components/schemas/Transcoder"
838
+ }
839
+ }
840
+ }
841
+ },
842
+ "201": {
843
+ "description": "",
844
+ "content": {
845
+ "application/json": {
846
+ "schema": {
847
+ "$ref": "#/components/schemas/Transcoder"
848
+ }
849
+ }
850
+ }
851
+ }
852
+ },
853
+ "tags": [
854
+ "sigma-machine/actions"
855
+ ]
856
+ }
857
+ },
858
+ "/api/machine/sigma-machines/actions/{id}/resume": {
859
+ "post": {
860
+ "operationId": "SigmaMachineActionController_resumeMachine",
861
+ "parameters": [
862
+ {
863
+ "name": "id",
864
+ "required": true,
865
+ "in": "path",
866
+ "schema": {
867
+ "type": "string"
868
+ }
869
+ }
870
+ ],
871
+ "responses": {
872
+ "200": {
873
+ "description": "",
874
+ "content": {
875
+ "application/json": {
876
+ "schema": {
877
+ "$ref": "#/components/schemas/Transcoder"
878
+ }
879
+ }
880
+ }
881
+ },
882
+ "201": {
883
+ "description": "",
884
+ "content": {
885
+ "application/json": {
886
+ "schema": {
887
+ "$ref": "#/components/schemas/Transcoder"
888
+ }
889
+ }
890
+ }
891
+ }
892
+ },
893
+ "tags": [
894
+ "sigma-machine/actions"
895
+ ]
896
+ }
897
+ },
898
+ "/api/machine/sigma-machines/actions/{id}/drain-job": {
899
+ "post": {
900
+ "operationId": "SigmaMachineActionController_drainJobMachine",
901
+ "parameters": [
902
+ {
903
+ "name": "id",
904
+ "required": true,
905
+ "in": "path",
906
+ "schema": {
907
+ "type": "string"
908
+ }
909
+ }
910
+ ],
911
+ "responses": {
912
+ "200": {
913
+ "description": "",
914
+ "content": {
915
+ "application/json": {
916
+ "schema": {
917
+ "$ref": "#/components/schemas/Transcoder"
918
+ }
919
+ }
920
+ }
921
+ },
922
+ "201": {
923
+ "description": "",
924
+ "content": {
925
+ "application/json": {
926
+ "schema": {
927
+ "$ref": "#/components/schemas/Transcoder"
928
+ }
929
+ }
930
+ }
931
+ }
932
+ },
933
+ "tags": [
934
+ "sigma-machine/actions"
935
+ ]
936
+ }
937
+ },
938
+ "/api/machine/sigma-machines/config-apps/{id}/get-status": {
939
+ "get": {
940
+ "operationId": "SigmaMachineAppsConfigController_getStatusApp",
941
+ "parameters": [
942
+ {
943
+ "name": "id",
944
+ "required": true,
945
+ "in": "path",
946
+ "schema": {
947
+ "type": "string"
948
+ }
949
+ },
950
+ {
951
+ "name": "appType",
952
+ "required": true,
953
+ "in": "query",
954
+ "schema": {
955
+ "enum": [
956
+ "origin",
957
+ "ingest"
958
+ ],
959
+ "type": "string"
960
+ }
961
+ }
962
+ ],
963
+ "responses": {
964
+ "200": {
965
+ "description": "",
966
+ "content": {
967
+ "application/json": {
968
+ "schema": {
969
+ "$ref": "#/components/schemas/AppStatus"
970
+ }
971
+ }
972
+ }
973
+ }
974
+ },
975
+ "tags": [
976
+ "sigma-machine/apps-config"
977
+ ]
978
+ }
979
+ },
980
+ "/api/machine/sigma-machines/config-apps/{id}/start": {
981
+ "patch": {
982
+ "operationId": "SigmaMachineAppsConfigController_startApp",
983
+ "parameters": [
984
+ {
985
+ "name": "id",
986
+ "required": true,
987
+ "in": "path",
988
+ "schema": {
989
+ "type": "string"
990
+ }
991
+ }
992
+ ],
993
+ "requestBody": {
994
+ "required": true,
995
+ "content": {
996
+ "application/json": {
997
+ "schema": {
998
+ "$ref": "#/components/schemas/ActionsToAppDto"
999
+ }
1000
+ }
1001
+ }
1002
+ },
1003
+ "responses": {
1004
+ "200": {
1005
+ "description": "",
1006
+ "content": {
1007
+ "application/json": {
1008
+ "schema": {
1009
+ "$ref": "#/components/schemas/AppStatus"
1010
+ }
1011
+ }
1012
+ }
1013
+ }
1014
+ },
1015
+ "tags": [
1016
+ "sigma-machine/apps-config"
1017
+ ]
1018
+ }
1019
+ },
1020
+ "/api/machine/sigma-machines/config-apps/{id}/stop": {
1021
+ "patch": {
1022
+ "operationId": "SigmaMachineAppsConfigController_stopApp",
1023
+ "parameters": [
1024
+ {
1025
+ "name": "id",
1026
+ "required": true,
1027
+ "in": "path",
1028
+ "schema": {
1029
+ "type": "string"
1030
+ }
1031
+ }
1032
+ ],
1033
+ "requestBody": {
1034
+ "required": true,
1035
+ "content": {
1036
+ "application/json": {
1037
+ "schema": {
1038
+ "$ref": "#/components/schemas/ActionsToAppDto"
1039
+ }
1040
+ }
1041
+ }
1042
+ },
1043
+ "responses": {
1044
+ "200": {
1045
+ "description": "",
1046
+ "content": {
1047
+ "application/json": {
1048
+ "schema": {
1049
+ "$ref": "#/components/schemas/AppStatus"
1050
+ }
1051
+ }
1052
+ }
1053
+ }
1054
+ },
1055
+ "tags": [
1056
+ "sigma-machine/apps-config"
1057
+ ]
1058
+ }
1059
+ },
1060
+ "/api/machine/sigma-machines/config-apps/{id}/reset": {
1061
+ "patch": {
1062
+ "operationId": "SigmaMachineAppsConfigController_resetApp",
1063
+ "parameters": [
1064
+ {
1065
+ "name": "id",
1066
+ "required": true,
1067
+ "in": "path",
1068
+ "schema": {
1069
+ "type": "string"
1070
+ }
1071
+ }
1072
+ ],
1073
+ "requestBody": {
1074
+ "required": true,
1075
+ "content": {
1076
+ "application/json": {
1077
+ "schema": {
1078
+ "$ref": "#/components/schemas/ActionsToAppDto"
1079
+ }
1080
+ }
1081
+ }
1082
+ },
1083
+ "responses": {
1084
+ "200": {
1085
+ "description": "",
1086
+ "content": {
1087
+ "application/json": {
1088
+ "schema": {
1089
+ "$ref": "#/components/schemas/AppStatus"
1090
+ }
1091
+ }
1092
+ }
1093
+ }
1094
+ },
1095
+ "tags": [
1096
+ "sigma-machine/apps-config"
1097
+ ]
1098
+ }
1099
+ },
1100
+ "/api/machine/sigma-machines/config-apps/{id}/update-config": {
1101
+ "patch": {
1102
+ "operationId": "SigmaMachineAppsConfigController_updateConfig",
1103
+ "parameters": [
1104
+ {
1105
+ "name": "id",
1106
+ "required": true,
1107
+ "in": "path",
1108
+ "schema": {
1109
+ "type": "string"
1110
+ }
1111
+ }
1112
+ ],
1113
+ "requestBody": {
1114
+ "required": true,
1115
+ "content": {
1116
+ "application/json": {
1117
+ "schema": {
1118
+ "$ref": "#/components/schemas/UpdateAppConfigDto"
1119
+ }
1120
+ }
1121
+ }
1122
+ },
1123
+ "responses": {
1124
+ "200": {
1125
+ "description": "",
1126
+ "content": {
1127
+ "application/json": {
1128
+ "schema": {
1129
+ "$ref": "#/components/schemas/Transcoder"
1130
+ }
1131
+ }
1132
+ }
1133
+ }
1134
+ },
1135
+ "tags": [
1136
+ "sigma-machine/apps-config"
1137
+ ]
1138
+ }
1139
+ },
1140
+ "/api/machine/sigma-machines": {
1141
+ "get": {
1142
+ "operationId": "SigmaMachineController_findAll",
1143
+ "summary": "Get list Sigma Machine",
1144
+ "description": "Get list Sigma Machine",
1145
+ "parameters": [
1146
+ {
1147
+ "name": "sort",
1148
+ "required": false,
1149
+ "in": "query",
1150
+ "example": "created_at|desc;filename|asc",
1151
+ "description": "Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order",
1152
+ "schema": {
1153
+ "type": "string"
1154
+ }
1155
+ },
1156
+ {
1157
+ "name": "page",
1158
+ "required": false,
1159
+ "in": "query",
1160
+ "example": "1",
1161
+ "description": "pagination number",
1162
+ "schema": {
1163
+ "type": "number"
1164
+ }
1165
+ },
1166
+ {
1167
+ "name": "perPage",
1168
+ "required": false,
1169
+ "in": "query",
1170
+ "example": "10",
1171
+ "description": "",
1172
+ "schema": {
1173
+ "type": "number"
1174
+ }
1175
+ },
1176
+ {
1177
+ "name": "limit",
1178
+ "required": false,
1179
+ "in": "query",
1180
+ "example": "10",
1181
+ "description": "",
1182
+ "schema": {
1183
+ "type": "number"
1184
+ }
1185
+ },
1186
+ {
1187
+ "name": "offset",
1188
+ "required": false,
1189
+ "in": "query",
1190
+ "example": "0",
1191
+ "description": "",
1192
+ "schema": {
1193
+ "type": "number"
1194
+ }
1195
+ },
1196
+ {
1197
+ "name": "fields",
1198
+ "required": false,
1199
+ "in": "query",
1200
+ "example": "id,name,url",
1201
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
1202
+ "schema": {
1203
+ "type": "string"
1204
+ }
1205
+ },
1206
+ {
1207
+ "name": "populates",
1208
+ "required": false,
1209
+ "in": "query",
1210
+ "example": "author,book",
1211
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
1212
+ "schema": {
1213
+ "type": "string"
1214
+ }
1215
+ }
1216
+ ],
1217
+ "responses": {
1218
+ "200": {
1219
+ "description": "",
1220
+ "content": {
1221
+ "application/json": {
1222
+ "schema": {
1223
+ "$ref": "#/components/schemas/TranscoderCollection"
1224
+ }
1225
+ }
1226
+ }
1227
+ }
1228
+ },
1229
+ "tags": [
1230
+ "sigma-machines"
1231
+ ]
1232
+ }
1233
+ },
1234
+ "/api/machine/sigma-machines/{id}": {
1235
+ "get": {
1236
+ "operationId": "SigmaMachineController_findOne",
1237
+ "summary": "Get Sigma Transcode Machine by Id",
1238
+ "description": "Get Sigma Transcode Machine by Id",
1239
+ "parameters": [
1240
+ {
1241
+ "name": "id",
1242
+ "required": true,
1243
+ "in": "path",
1244
+ "schema": {
1245
+ "type": "string"
1246
+ }
1247
+ }
1248
+ ],
1249
+ "responses": {
1250
+ "200": {
1251
+ "description": "",
1252
+ "content": {
1253
+ "application/json": {
1254
+ "schema": {
1255
+ "$ref": "#/components/schemas/Transcoder"
1256
+ }
1257
+ }
1258
+ }
1259
+ }
1260
+ },
1261
+ "tags": [
1262
+ "sigma-machines"
1263
+ ]
1264
+ },
1265
+ "delete": {
1266
+ "operationId": "SigmaMachineController_deleteTranscoder",
1267
+ "summary": "Delete Sigma Machine by Id",
1268
+ "description": "Delete Sigma Machine by Id",
1269
+ "parameters": [
1270
+ {
1271
+ "name": "id",
1272
+ "required": true,
1273
+ "in": "path",
1274
+ "schema": {
1275
+ "type": "string"
1276
+ }
1277
+ }
1278
+ ],
1279
+ "responses": {
1280
+ "200": {
1281
+ "description": "",
1282
+ "content": {
1283
+ "application/json": {
1284
+ "schema": {
1285
+ "$ref": "#/components/schemas/Transcoder"
1286
+ }
1287
+ }
1288
+ }
1289
+ }
1290
+ },
1291
+ "tags": [
1292
+ "sigma-machines"
1293
+ ]
1294
+ }
1295
+ },
1296
+ "/api/machine/sigma-machines/license-recommended/get-one": {
1297
+ "get": {
1298
+ "operationId": "SigmaMachineController_licenseRecommended",
1299
+ "summary": "Get Sigma Transcode Machine to add license",
1300
+ "description": "Get Sigma Transcode Machine to add license",
1301
+ "parameters": [],
1302
+ "responses": {
1303
+ "200": {
1304
+ "description": "",
1305
+ "content": {
1306
+ "application/json": {
1307
+ "schema": {
1308
+ "$ref": "#/components/schemas/Transcoder"
1309
+ }
1310
+ }
1311
+ }
1312
+ }
1313
+ },
1314
+ "tags": [
1315
+ "sigma-machines"
1316
+ ]
1317
+ }
1318
+ },
1319
+ "/api/machine/sigma-machines/{id}/update-route-config": {
1320
+ "patch": {
1321
+ "operationId": "SigmaMachineController_update",
1322
+ "parameters": [
1323
+ {
1324
+ "name": "id",
1325
+ "required": true,
1326
+ "in": "path",
1327
+ "schema": {
1328
+ "type": "string"
1329
+ }
1330
+ }
1331
+ ],
1332
+ "requestBody": {
1333
+ "required": true,
1334
+ "content": {
1335
+ "application/json": {
1336
+ "schema": {
1337
+ "$ref": "#/components/schemas/UpdateRouteConfigSigmaMachine"
1338
+ }
1339
+ }
1340
+ }
1341
+ },
1342
+ "responses": {
1343
+ "200": {
1344
+ "description": "",
1345
+ "content": {
1346
+ "application/json": {
1347
+ "schema": {
1348
+ "$ref": "#/components/schemas/Transcoder"
1349
+ }
1350
+ }
1351
+ }
1352
+ }
1353
+ },
1354
+ "tags": [
1355
+ "sigma-machines"
1356
+ ]
1357
+ }
1358
+ },
1359
+ "/api/machine/sigma-machines/{id}/details": {
1360
+ "get": {
1361
+ "operationId": "SigmaMachineController_getMachineDetails",
1362
+ "parameters": [
1363
+ {
1364
+ "name": "id",
1365
+ "required": true,
1366
+ "in": "path",
1367
+ "schema": {
1368
+ "type": "string"
1369
+ }
1370
+ }
1371
+ ],
1372
+ "responses": {
1373
+ "200": {
1374
+ "description": "",
1375
+ "content": {
1376
+ "application/json": {
1377
+ "schema": {
1378
+ "$ref": "#/components/schemas/MachineDetails"
1379
+ }
1380
+ }
1381
+ }
1382
+ }
1383
+ },
1384
+ "tags": [
1385
+ "sigma-machines"
1386
+ ]
1387
+ }
1388
+ },
1389
+ "/api/machine/sigma-machines/{id}/vod-route": {
1390
+ "get": {
1391
+ "operationId": "SigmaVodRouteController_getVODRouters",
1392
+ "parameters": [
1393
+ {
1394
+ "name": "id",
1395
+ "required": true,
1396
+ "in": "path",
1397
+ "schema": {
1398
+ "type": "string"
1399
+ }
1400
+ }
1401
+ ],
1402
+ "responses": {
1403
+ "200": {
1404
+ "description": "",
1405
+ "content": {
1406
+ "application/json": {
1407
+ "schema": {
1408
+ "type": "array",
1409
+ "items": {
1410
+ "$ref": "#/components/schemas/VODRoute"
1411
+ }
1412
+ }
1413
+ }
1414
+ }
1415
+ }
1416
+ },
1417
+ "tags": [
1418
+ "sigma-machines/vod-route"
1419
+ ]
1420
+ },
1421
+ "post": {
1422
+ "operationId": "SigmaVodRouteController_createVODRouter",
1423
+ "parameters": [
1424
+ {
1425
+ "name": "id",
1426
+ "required": true,
1427
+ "in": "path",
1428
+ "schema": {
1429
+ "type": "string"
1430
+ }
1431
+ }
1432
+ ],
1433
+ "requestBody": {
1434
+ "required": true,
1435
+ "content": {
1436
+ "application/json": {
1437
+ "schema": {
1438
+ "$ref": "#/components/schemas/CreateVODRouteDto"
1439
+ }
1440
+ }
1441
+ }
1442
+ },
1443
+ "responses": {
1444
+ "201": {
1445
+ "description": "",
1446
+ "content": {
1447
+ "application/json": {
1448
+ "schema": {
1449
+ "$ref": "#/components/schemas/VODRoute"
1450
+ }
1451
+ }
1452
+ }
1453
+ }
1454
+ },
1455
+ "tags": [
1456
+ "sigma-machines/vod-route"
1457
+ ]
1458
+ }
1459
+ },
1460
+ "/api/machine/sigma-machines/{id}/vod-route/{routeId}": {
1461
+ "get": {
1462
+ "operationId": "SigmaVodRouteController_getVODRouter",
1463
+ "parameters": [
1464
+ {
1465
+ "name": "id",
1466
+ "required": true,
1467
+ "in": "path",
1468
+ "schema": {
1469
+ "type": "string"
1470
+ }
1471
+ },
1472
+ {
1473
+ "name": "routeId",
1474
+ "required": true,
1475
+ "in": "path",
1476
+ "schema": {
1477
+ "type": "string"
1478
+ }
1479
+ }
1480
+ ],
1481
+ "responses": {
1482
+ "200": {
1483
+ "description": "",
1484
+ "content": {
1485
+ "application/json": {
1486
+ "schema": {
1487
+ "$ref": "#/components/schemas/VODRoute"
1488
+ }
1489
+ }
1490
+ }
1491
+ }
1492
+ },
1493
+ "tags": [
1494
+ "sigma-machines/vod-route"
1495
+ ]
1496
+ },
1497
+ "patch": {
1498
+ "operationId": "SigmaVodRouteController_updateVODRouter",
1499
+ "parameters": [
1500
+ {
1501
+ "name": "id",
1502
+ "required": true,
1503
+ "in": "path",
1504
+ "schema": {
1505
+ "type": "string"
1506
+ }
1507
+ },
1508
+ {
1509
+ "name": "routeId",
1510
+ "required": true,
1511
+ "in": "path",
1512
+ "schema": {
1513
+ "type": "string"
1514
+ }
1515
+ }
1516
+ ],
1517
+ "requestBody": {
1518
+ "required": true,
1519
+ "content": {
1520
+ "application/json": {
1521
+ "schema": {
1522
+ "$ref": "#/components/schemas/CreateVODRouteDto"
1523
+ }
1524
+ }
1525
+ }
1526
+ },
1527
+ "responses": {
1528
+ "200": {
1529
+ "description": "",
1530
+ "content": {
1531
+ "application/json": {
1532
+ "schema": {
1533
+ "$ref": "#/components/schemas/VODRoute"
1534
+ }
1535
+ }
1536
+ }
1537
+ }
1538
+ },
1539
+ "tags": [
1540
+ "sigma-machines/vod-route"
1541
+ ]
1542
+ },
1543
+ "delete": {
1544
+ "operationId": "SigmaVodRouteController_remove",
1545
+ "summary": "Delete VOD route by routeId",
1546
+ "description": "Delete VOD route by routeId",
1547
+ "parameters": [
1548
+ {
1549
+ "name": "id",
1550
+ "required": true,
1551
+ "in": "path",
1552
+ "schema": {
1553
+ "type": "string"
1554
+ }
1555
+ },
1556
+ {
1557
+ "name": "routeId",
1558
+ "required": true,
1559
+ "in": "path",
1560
+ "schema": {
1561
+ "type": "string"
1562
+ }
1563
+ }
1564
+ ],
1565
+ "responses": {
1566
+ "200": {
1567
+ "description": "",
1568
+ "content": {
1569
+ "application/json": {
1570
+ "schema": {
1571
+ "$ref": "#/components/schemas/VODRoute"
1572
+ }
1573
+ }
1574
+ }
1575
+ }
1576
+ },
1577
+ "tags": [
1578
+ "sigma-machines/vod-route"
1579
+ ]
1580
+ }
1581
+ },
1582
+ "/api/machine/networks": {
1583
+ "get": {
1584
+ "operationId": "NetworkController_findAll",
1585
+ "parameters": [
1586
+ {
1587
+ "name": "page",
1588
+ "required": true,
1589
+ "in": "query",
1590
+ "schema": {
1591
+ "type": "number"
1592
+ }
1593
+ },
1594
+ {
1595
+ "name": "perPage",
1596
+ "required": true,
1597
+ "in": "query",
1598
+ "schema": {
1599
+ "type": "number"
1600
+ }
1601
+ }
1602
+ ],
1603
+ "responses": {
1604
+ "200": {
1605
+ "description": "",
1606
+ "content": {
1607
+ "application/json": {
1608
+ "schema": {
1609
+ "$ref": "#/components/schemas/NetworkCollection"
1610
+ }
1611
+ }
1612
+ }
1613
+ }
1614
+ },
1615
+ "tags": [
1616
+ "Networks"
1617
+ ]
1618
+ }
1619
+ },
1620
+ "/api/machine/networks/by-machines": {
1621
+ "get": {
1622
+ "operationId": "NetworkController_findByMachine",
1623
+ "parameters": [
1624
+ {
1625
+ "name": "page",
1626
+ "required": true,
1627
+ "in": "query",
1628
+ "schema": {
1629
+ "type": "number"
1630
+ }
1631
+ },
1632
+ {
1633
+ "name": "perPage",
1634
+ "required": true,
1635
+ "in": "query",
1636
+ "schema": {
1637
+ "type": "number"
1638
+ }
1639
+ },
1640
+ {
1641
+ "name": "machineIds",
1642
+ "required": true,
1643
+ "in": "query",
1644
+ "schema": {
1645
+ "type": "array",
1646
+ "items": {
1647
+ "type": "string"
1648
+ }
1649
+ }
1650
+ }
1651
+ ],
1652
+ "responses": {
1653
+ "200": {
1654
+ "description": "",
1655
+ "content": {
1656
+ "application/json": {
1657
+ "schema": {
1658
+ "$ref": "#/components/schemas/NetworkCollection"
1659
+ }
1660
+ }
1661
+ }
1662
+ }
1663
+ },
1664
+ "tags": [
1665
+ "Networks"
1666
+ ]
1667
+ }
1668
+ },
1669
+ "/api/machine/networks/decklink/{machineId}": {
1670
+ "get": {
1671
+ "operationId": "NetworkController_findDecklink",
1672
+ "parameters": [
1673
+ {
1674
+ "name": "machineId",
1675
+ "required": true,
1676
+ "in": "path",
1677
+ "schema": {
1678
+ "type": "string"
1679
+ }
1680
+ },
1681
+ {
1682
+ "name": "page",
1683
+ "required": true,
1684
+ "in": "query",
1685
+ "schema": {
1686
+ "type": "number"
1687
+ }
1688
+ },
1689
+ {
1690
+ "name": "perPage",
1691
+ "required": true,
1692
+ "in": "query",
1693
+ "schema": {
1694
+ "type": "number"
1695
+ }
1696
+ }
1697
+ ],
1698
+ "responses": {
1699
+ "200": {
1700
+ "description": "",
1701
+ "content": {
1702
+ "application/json": {
1703
+ "schema": {
1704
+ "$ref": "#/components/schemas/DecklinkCollection"
1705
+ }
1706
+ }
1707
+ }
1708
+ }
1709
+ },
1710
+ "tags": [
1711
+ "Networks"
1712
+ ]
1713
+ }
1714
+ },
1715
+ "/api/machine/sigma-clusters": {
1716
+ "post": {
1717
+ "operationId": "SigmaMachineClusterController_create",
1718
+ "summary": "Create sigma machine cluster",
1719
+ "description": "Create sigma machine cluster",
1720
+ "parameters": [],
1721
+ "requestBody": {
1722
+ "required": true,
1723
+ "content": {
1724
+ "application/json": {
1725
+ "schema": {
1726
+ "$ref": "#/components/schemas/CreateSigmaMachineClusterDto"
1727
+ }
1728
+ }
1729
+ }
1730
+ },
1731
+ "responses": {
1732
+ "200": {
1733
+ "description": "",
1734
+ "content": {
1735
+ "application/json": {
1736
+ "schema": {
1737
+ "$ref": "#/components/schemas/MachineCluster"
1738
+ }
1739
+ }
1740
+ }
1741
+ },
1742
+ "201": {
1743
+ "description": "",
1744
+ "content": {
1745
+ "application/json": {
1746
+ "schema": {
1747
+ "$ref": "#/components/schemas/MachineCluster"
1748
+ }
1749
+ }
1750
+ }
1751
+ }
1752
+ },
1753
+ "tags": [
1754
+ "sigma-machine-clusters"
1755
+ ]
1756
+ },
1757
+ "get": {
1758
+ "operationId": "SigmaMachineClusterController_findAll",
1759
+ "summary": "Get list machine cluster",
1760
+ "description": "Get list machine cluster",
1761
+ "parameters": [
1762
+ {
1763
+ "name": "sort",
1764
+ "required": false,
1765
+ "in": "query",
1766
+ "example": "created_at|desc;filename|asc",
1767
+ "description": "Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order",
1768
+ "schema": {
1769
+ "type": "string"
1770
+ }
1771
+ },
1772
+ {
1773
+ "name": "page",
1774
+ "required": false,
1775
+ "in": "query",
1776
+ "example": "1",
1777
+ "description": "pagination number",
1778
+ "schema": {
1779
+ "type": "number"
1780
+ }
1781
+ },
1782
+ {
1783
+ "name": "perPage",
1784
+ "required": false,
1785
+ "in": "query",
1786
+ "example": "10",
1787
+ "description": "",
1788
+ "schema": {
1789
+ "type": "number"
1790
+ }
1791
+ },
1792
+ {
1793
+ "name": "limit",
1794
+ "required": false,
1795
+ "in": "query",
1796
+ "example": "10",
1797
+ "description": "",
1798
+ "schema": {
1799
+ "type": "number"
1800
+ }
1801
+ },
1802
+ {
1803
+ "name": "offset",
1804
+ "required": false,
1805
+ "in": "query",
1806
+ "example": "0",
1807
+ "description": "",
1808
+ "schema": {
1809
+ "type": "number"
1810
+ }
1811
+ },
1812
+ {
1813
+ "name": "fields",
1814
+ "required": false,
1815
+ "in": "query",
1816
+ "example": "id,name,url",
1817
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
1818
+ "schema": {
1819
+ "type": "string"
1820
+ }
1821
+ },
1822
+ {
1823
+ "name": "populates",
1824
+ "required": false,
1825
+ "in": "query",
1826
+ "example": "author,book",
1827
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
1828
+ "schema": {
1829
+ "type": "string"
1830
+ }
1831
+ }
1832
+ ],
1833
+ "responses": {
1834
+ "200": {
1835
+ "description": "",
1836
+ "content": {
1837
+ "application/json": {
1838
+ "schema": {
1839
+ "$ref": "#/components/schemas/MachineClusterCollection"
1840
+ }
1841
+ }
1842
+ }
1843
+ }
1844
+ },
1845
+ "tags": [
1846
+ "sigma-machine-clusters"
1847
+ ]
1848
+ }
1849
+ },
1850
+ "/api/machine/sigma-clusters/{id}": {
1851
+ "get": {
1852
+ "operationId": "SigmaMachineClusterController_findOne",
1853
+ "summary": "Get machine cluster by Id",
1854
+ "description": "Get machine cluster by Id",
1855
+ "parameters": [
1856
+ {
1857
+ "name": "id",
1858
+ "required": true,
1859
+ "in": "path",
1860
+ "schema": {
1861
+ "type": "string"
1862
+ }
1863
+ }
1864
+ ],
1865
+ "responses": {
1866
+ "200": {
1867
+ "description": "",
1868
+ "content": {
1869
+ "application/json": {
1870
+ "schema": {
1871
+ "$ref": "#/components/schemas/MachineCluster"
1872
+ }
1873
+ }
1874
+ }
1875
+ }
1876
+ },
1877
+ "tags": [
1878
+ "sigma-machine-clusters"
1879
+ ]
1880
+ },
1881
+ "patch": {
1882
+ "operationId": "SigmaMachineClusterController_update",
1883
+ "summary": "Update machine cluster by Id",
1884
+ "description": "Update machine cluster by Id",
1885
+ "parameters": [
1886
+ {
1887
+ "name": "id",
1888
+ "required": true,
1889
+ "in": "path",
1890
+ "schema": {
1891
+ "type": "string"
1892
+ }
1893
+ }
1894
+ ],
1895
+ "requestBody": {
1896
+ "required": true,
1897
+ "content": {
1898
+ "application/json": {
1899
+ "schema": {
1900
+ "$ref": "#/components/schemas/UpdateMachineClusterDto"
1901
+ }
1902
+ }
1903
+ }
1904
+ },
1905
+ "responses": {
1906
+ "200": {
1907
+ "description": "",
1908
+ "content": {
1909
+ "application/json": {
1910
+ "schema": {
1911
+ "$ref": "#/components/schemas/MachineCluster"
1912
+ }
1913
+ }
1914
+ }
1915
+ }
1916
+ },
1917
+ "tags": [
1918
+ "sigma-machine-clusters"
1919
+ ]
1920
+ },
1921
+ "delete": {
1922
+ "operationId": "SigmaMachineClusterController_remove",
1923
+ "summary": "Delete machine cluster by Id",
1924
+ "description": "Delete machine cluster by Id",
1925
+ "parameters": [
1926
+ {
1927
+ "name": "id",
1928
+ "required": true,
1929
+ "in": "path",
1930
+ "schema": {
1931
+ "type": "string"
1932
+ }
1933
+ }
1934
+ ],
1935
+ "responses": {
1936
+ "200": {
1937
+ "description": "",
1938
+ "content": {
1939
+ "application/json": {
1940
+ "schema": {
1941
+ "$ref": "#/components/schemas/MachineCluster"
1942
+ }
1943
+ }
1944
+ }
1945
+ }
1946
+ },
1947
+ "tags": [
1948
+ "sigma-machine-clusters"
1949
+ ]
1950
+ }
1951
+ },
1952
+ "/api/machine/sigma-clusters/{id}/logs": {
1953
+ "get": {
1954
+ "operationId": "SigmaMachineClusterController_getLogs",
1955
+ "summary": "Get logs machine cluster",
1956
+ "description": "Get logs machine cluster",
1957
+ "parameters": [
1958
+ {
1959
+ "name": "sort",
1960
+ "required": false,
1961
+ "in": "query",
1962
+ "example": "created_at|desc;filename|asc",
1963
+ "description": "Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order",
1964
+ "schema": {
1965
+ "type": "string"
1966
+ }
1967
+ },
1968
+ {
1969
+ "name": "page",
1970
+ "required": false,
1971
+ "in": "query",
1972
+ "example": "1",
1973
+ "description": "pagination number",
1974
+ "schema": {
1975
+ "type": "number"
1976
+ }
1977
+ },
1978
+ {
1979
+ "name": "perPage",
1980
+ "required": false,
1981
+ "in": "query",
1982
+ "example": "10",
1983
+ "description": "",
1984
+ "schema": {
1985
+ "type": "number"
1986
+ }
1987
+ },
1988
+ {
1989
+ "name": "limit",
1990
+ "required": false,
1991
+ "in": "query",
1992
+ "example": "10",
1993
+ "description": "",
1994
+ "schema": {
1995
+ "type": "number"
1996
+ }
1997
+ },
1998
+ {
1999
+ "name": "offset",
2000
+ "required": false,
2001
+ "in": "query",
2002
+ "example": "0",
2003
+ "description": "",
2004
+ "schema": {
2005
+ "type": "number"
2006
+ }
2007
+ },
2008
+ {
2009
+ "name": "fields",
2010
+ "required": false,
2011
+ "in": "query",
2012
+ "example": "id,name,url",
2013
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
2014
+ "schema": {
2015
+ "type": "string"
2016
+ }
2017
+ },
2018
+ {
2019
+ "name": "populates",
2020
+ "required": false,
2021
+ "in": "query",
2022
+ "example": "author,book",
2023
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
2024
+ "schema": {
2025
+ "type": "string"
2026
+ }
2027
+ },
2028
+ {
2029
+ "name": "id",
2030
+ "required": true,
2031
+ "in": "path",
2032
+ "schema": {
2033
+ "type": "string"
2034
+ }
2035
+ }
2036
+ ],
2037
+ "responses": {
2038
+ "200": {
2039
+ "description": "",
2040
+ "content": {
2041
+ "application/json": {
2042
+ "schema": {
2043
+ "type": "array",
2044
+ "items": {
2045
+ "$ref": "#/components/schemas/ClusterLog"
2046
+ }
2047
+ }
2048
+ }
2049
+ }
2050
+ }
2051
+ },
2052
+ "tags": [
2053
+ "sigma-machine-clusters"
2054
+ ]
2055
+ }
2056
+ },
2057
+ "/api/machine/component-clusters": {
2058
+ "post": {
2059
+ "operationId": "ComponentClusterController_create",
2060
+ "summary": "Create component cluster",
2061
+ "description": "Create component cluster",
2062
+ "parameters": [],
2063
+ "requestBody": {
2064
+ "required": true,
2065
+ "content": {
2066
+ "application/json": {
2067
+ "schema": {
2068
+ "$ref": "#/components/schemas/CreateComponentMachineClusterDto"
2069
+ }
2070
+ }
2071
+ }
2072
+ },
2073
+ "responses": {
2074
+ "200": {
2075
+ "description": "",
2076
+ "content": {
2077
+ "application/json": {
2078
+ "schema": {
2079
+ "$ref": "#/components/schemas/ComponentCluster"
2080
+ }
2081
+ }
2082
+ }
2083
+ },
2084
+ "201": {
2085
+ "description": "",
2086
+ "content": {
2087
+ "application/json": {
2088
+ "schema": {
2089
+ "$ref": "#/components/schemas/ComponentCluster"
2090
+ }
2091
+ }
2092
+ }
2093
+ }
2094
+ },
2095
+ "tags": [
2096
+ "sigma-component-cluster"
2097
+ ]
2098
+ },
2099
+ "get": {
2100
+ "operationId": "ComponentClusterController_findAll",
2101
+ "summary": "Get list component cluster",
2102
+ "description": "Get list component cluster",
2103
+ "parameters": [
2104
+ {
2105
+ "name": "sort",
2106
+ "required": false,
2107
+ "in": "query",
2108
+ "example": "created_at|desc;filename|asc",
2109
+ "description": "Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order",
2110
+ "schema": {
2111
+ "type": "string"
2112
+ }
2113
+ },
2114
+ {
2115
+ "name": "page",
2116
+ "required": false,
2117
+ "in": "query",
2118
+ "example": "1",
2119
+ "description": "pagination number",
2120
+ "schema": {
2121
+ "type": "number"
2122
+ }
2123
+ },
2124
+ {
2125
+ "name": "perPage",
2126
+ "required": false,
2127
+ "in": "query",
2128
+ "example": "10",
2129
+ "description": "",
2130
+ "schema": {
2131
+ "type": "number"
2132
+ }
2133
+ },
2134
+ {
2135
+ "name": "limit",
2136
+ "required": false,
2137
+ "in": "query",
2138
+ "example": "10",
2139
+ "description": "",
2140
+ "schema": {
2141
+ "type": "number"
2142
+ }
2143
+ },
2144
+ {
2145
+ "name": "offset",
2146
+ "required": false,
2147
+ "in": "query",
2148
+ "example": "0",
2149
+ "description": "",
2150
+ "schema": {
2151
+ "type": "number"
2152
+ }
2153
+ },
2154
+ {
2155
+ "name": "fields",
2156
+ "required": false,
2157
+ "in": "query",
2158
+ "example": "id,name,url",
2159
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
2160
+ "schema": {
2161
+ "type": "string"
2162
+ }
2163
+ },
2164
+ {
2165
+ "name": "populates",
2166
+ "required": false,
2167
+ "in": "query",
2168
+ "example": "author,book",
2169
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
2170
+ "schema": {
2171
+ "type": "string"
2172
+ }
2173
+ }
2174
+ ],
2175
+ "responses": {
2176
+ "200": {
2177
+ "description": "",
2178
+ "content": {
2179
+ "application/json": {
2180
+ "schema": {
2181
+ "$ref": "#/components/schemas/ComponentClusterCollection"
2182
+ }
2183
+ }
2184
+ }
2185
+ }
2186
+ },
2187
+ "tags": [
2188
+ "sigma-component-cluster"
2189
+ ]
2190
+ }
2191
+ },
2192
+ "/api/machine/component-clusters/{id}": {
2193
+ "get": {
2194
+ "operationId": "ComponentClusterController_findOne",
2195
+ "summary": "Get component cluster by Id",
2196
+ "description": "Get component cluster by Id",
2197
+ "parameters": [
2198
+ {
2199
+ "name": "id",
2200
+ "required": true,
2201
+ "in": "path",
2202
+ "schema": {
2203
+ "type": "string"
2204
+ }
2205
+ }
2206
+ ],
2207
+ "responses": {
2208
+ "200": {
2209
+ "description": "",
2210
+ "content": {
2211
+ "application/json": {
2212
+ "schema": {
2213
+ "$ref": "#/components/schemas/ComponentCluster"
2214
+ }
2215
+ }
2216
+ }
2217
+ }
2218
+ },
2219
+ "tags": [
2220
+ "sigma-component-cluster"
2221
+ ]
2222
+ },
2223
+ "patch": {
2224
+ "operationId": "ComponentClusterController_update",
2225
+ "summary": "Update component cluster by Id",
2226
+ "description": "Update component cluster by Id",
2227
+ "parameters": [
2228
+ {
2229
+ "name": "id",
2230
+ "required": true,
2231
+ "in": "path",
2232
+ "schema": {
2233
+ "type": "string"
2234
+ }
2235
+ }
2236
+ ],
2237
+ "requestBody": {
2238
+ "required": true,
2239
+ "content": {
2240
+ "application/json": {
2241
+ "schema": {
2242
+ "$ref": "#/components/schemas/UpdateComponentClusterDto"
2243
+ }
2244
+ }
2245
+ }
2246
+ },
2247
+ "responses": {
2248
+ "200": {
2249
+ "description": "",
2250
+ "content": {
2251
+ "application/json": {
2252
+ "schema": {
2253
+ "$ref": "#/components/schemas/ComponentCluster"
2254
+ }
2255
+ }
2256
+ }
2257
+ }
2258
+ },
2259
+ "tags": [
2260
+ "sigma-component-cluster"
2261
+ ]
2262
+ },
2263
+ "delete": {
2264
+ "operationId": "ComponentClusterController_remove",
2265
+ "summary": "Delete component cluster by Id",
2266
+ "description": "Delete component cluster by Id",
2267
+ "parameters": [
2268
+ {
2269
+ "name": "id",
2270
+ "required": true,
2271
+ "in": "path",
2272
+ "schema": {
2273
+ "type": "string"
2274
+ }
2275
+ }
2276
+ ],
2277
+ "responses": {
2278
+ "200": {
2279
+ "description": "",
2280
+ "content": {
2281
+ "application/json": {
2282
+ "schema": {
2283
+ "$ref": "#/components/schemas/ComponentCluster"
2284
+ }
2285
+ }
2286
+ }
2287
+ }
2288
+ },
2289
+ "tags": [
2290
+ "sigma-component-cluster"
2291
+ ]
2292
+ }
2293
+ },
2294
+ "/api/machine/component-clusters/{id}/logs": {
2295
+ "get": {
2296
+ "operationId": "ComponentClusterController_getLogs",
2297
+ "summary": "Get logs component cluster",
2298
+ "description": "Get logs component cluster",
2299
+ "parameters": [
2300
+ {
2301
+ "name": "sort",
2302
+ "required": false,
2303
+ "in": "query",
2304
+ "example": "created_at|desc;filename|asc",
2305
+ "description": "Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order",
2306
+ "schema": {
2307
+ "type": "string"
2308
+ }
2309
+ },
2310
+ {
2311
+ "name": "page",
2312
+ "required": false,
2313
+ "in": "query",
2314
+ "example": "1",
2315
+ "description": "pagination number",
2316
+ "schema": {
2317
+ "type": "number"
2318
+ }
2319
+ },
2320
+ {
2321
+ "name": "perPage",
2322
+ "required": false,
2323
+ "in": "query",
2324
+ "example": "10",
2325
+ "description": "",
2326
+ "schema": {
2327
+ "type": "number"
2328
+ }
2329
+ },
2330
+ {
2331
+ "name": "limit",
2332
+ "required": false,
2333
+ "in": "query",
2334
+ "example": "10",
2335
+ "description": "",
2336
+ "schema": {
2337
+ "type": "number"
2338
+ }
2339
+ },
2340
+ {
2341
+ "name": "offset",
2342
+ "required": false,
2343
+ "in": "query",
2344
+ "example": "0",
2345
+ "description": "",
2346
+ "schema": {
2347
+ "type": "number"
2348
+ }
2349
+ },
2350
+ {
2351
+ "name": "fields",
2352
+ "required": false,
2353
+ "in": "query",
2354
+ "example": "id,name,url",
2355
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
2356
+ "schema": {
2357
+ "type": "string"
2358
+ }
2359
+ },
2360
+ {
2361
+ "name": "populates",
2362
+ "required": false,
2363
+ "in": "query",
2364
+ "example": "author,book",
2365
+ "description": "Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.",
2366
+ "schema": {
2367
+ "type": "string"
2368
+ }
2369
+ },
2370
+ {
2371
+ "name": "id",
2372
+ "required": true,
2373
+ "in": "path",
2374
+ "schema": {
2375
+ "type": "string"
2376
+ }
2377
+ }
2378
+ ],
2379
+ "responses": {
2380
+ "200": {
2381
+ "description": "",
2382
+ "content": {
2383
+ "application/json": {
2384
+ "schema": {
2385
+ "type": "array",
2386
+ "items": {
2387
+ "$ref": "#/components/schemas/ClusterLog"
2388
+ }
2389
+ }
2390
+ }
2391
+ }
2392
+ }
2393
+ },
2394
+ "tags": [
2395
+ "sigma-component-cluster"
2396
+ ]
2397
+ }
2398
+ },
2399
+ "/api/machine/configuration/reset-registration-token": {
2400
+ "post": {
2401
+ "operationId": "ConfigurationController_resetRegistrationToken",
2402
+ "parameters": [
2403
+ {
2404
+ "name": "type",
2405
+ "required": true,
2406
+ "in": "query",
2407
+ "schema": {
2408
+ "enum": [
2409
+ "transcoder-vod",
2410
+ "transcoder",
2411
+ "packager-live",
2412
+ "packager-catchup",
2413
+ "packager-startover",
2414
+ "sigma-machine",
2415
+ "sigma-machine-live-community"
2416
+ ],
2417
+ "type": "string"
2418
+ }
2419
+ }
2420
+ ],
2421
+ "responses": {
2422
+ "200": {
2423
+ "description": "",
2424
+ "content": {
2425
+ "application/json": {
2426
+ "schema": {
2427
+ "type": "string"
2428
+ }
2429
+ }
2430
+ }
2431
+ },
2432
+ "201": {
2433
+ "description": "",
2434
+ "content": {
2435
+ "application/json": {
2436
+ "schema": {
2437
+ "type": "string"
2438
+ }
2439
+ }
2440
+ }
2441
+ }
2442
+ },
2443
+ "tags": [
2444
+ "Transcoder configuration"
2445
+ ]
2446
+ }
2447
+ },
2448
+ "/api/machine/configuration/get-registration-token": {
2449
+ "get": {
2450
+ "operationId": "ConfigurationController_getRegistrationToken",
2451
+ "parameters": [
2452
+ {
2453
+ "name": "type",
2454
+ "required": true,
2455
+ "in": "query",
2456
+ "schema": {
2457
+ "enum": [
2458
+ "transcoder-vod",
2459
+ "transcoder",
2460
+ "packager-live",
2461
+ "packager-catchup",
2462
+ "packager-startover",
2463
+ "sigma-machine",
2464
+ "sigma-machine-live-community"
2465
+ ],
2466
+ "type": "string"
2467
+ }
2468
+ }
2469
+ ],
2470
+ "responses": {
2471
+ "200": {
2472
+ "description": "",
2473
+ "content": {
2474
+ "application/json": {
2475
+ "schema": {
2476
+ "type": "string"
2477
+ }
2478
+ }
2479
+ }
2480
+ }
2481
+ },
2482
+ "tags": [
2483
+ "Transcoder configuration"
2484
+ ]
2485
+ }
2486
+ },
2487
+ "/api/machine/configuration/check-quota": {
2488
+ "get": {
2489
+ "operationId": "ConfigurationController_checkQuota",
2490
+ "parameters": [
2491
+ {
2492
+ "name": "type",
2493
+ "required": true,
2494
+ "in": "query",
2495
+ "schema": {
2496
+ "enum": [
2497
+ "transcoder-vod",
2498
+ "transcoder",
2499
+ "packager-live",
2500
+ "packager-catchup",
2501
+ "packager-startover",
2502
+ "sigma-machine",
2503
+ "sigma-machine-live-community"
2504
+ ],
2505
+ "type": "string"
2506
+ }
2507
+ }
2508
+ ],
2509
+ "responses": {
2510
+ "200": {
2511
+ "description": "",
2512
+ "content": {
2513
+ "application/json": {
2514
+ "schema": {
2515
+ "$ref": "#/components/schemas/CheckQuotaLimitResult"
2516
+ }
2517
+ }
2518
+ }
2519
+ }
2520
+ },
2521
+ "tags": [
2522
+ "Transcoder configuration"
2523
+ ]
2524
+ }
2525
+ },
2526
+ "/api/machine/configuration/get-quotas": {
2527
+ "get": {
2528
+ "operationId": "ConfigurationController_checkQuotas",
2529
+ "parameters": [],
2530
+ "responses": {
2531
+ "200": {
2532
+ "description": "",
2533
+ "content": {
2534
+ "application/json": {
2535
+ "schema": {
2536
+ "$ref": "#/components/schemas/QuotasResult"
2537
+ }
2538
+ }
2539
+ }
2540
+ }
2541
+ },
2542
+ "tags": [
2543
+ "Transcoder configuration"
2544
+ ]
2545
+ }
2546
+ },
2547
+ "/api/machine/expose/get-registration-config": {
2548
+ "get": {
2549
+ "operationId": "ConfigurationExposeController_getRegistrationConfig",
2550
+ "parameters": [
2551
+ {
2552
+ "name": "token",
2553
+ "required": true,
2554
+ "in": "query",
2555
+ "schema": {
2556
+ "type": "string"
2557
+ }
2558
+ }
2559
+ ],
2560
+ "responses": {
2561
+ "200": {
2562
+ "description": "",
2563
+ "content": {
2564
+ "application/json": {
2565
+ "schema": {
2566
+ "$ref": "#/components/schemas/RegistrationConfig"
2567
+ }
2568
+ }
2569
+ }
2570
+ }
2571
+ },
2572
+ "tags": [
2573
+ "Expose"
2574
+ ]
2575
+ }
2576
+ }
2577
+ },
2578
+ "info": {
2579
+ "title": "Sigma Transcoder Machine Management",
2580
+ "description": "",
2581
+ "version": "1.0",
2582
+ "contact": {}
2583
+ },
2584
+ "tags": [],
2585
+ "servers": [],
2586
+ "components": {
2587
+ "schemas": {
2588
+ "HttpsConfig": {
2589
+ "type": "object",
2590
+ "properties": {
2591
+ "port": {
2592
+ "type": "number"
2593
+ },
2594
+ "key": {
2595
+ "type": "string"
2596
+ },
2597
+ "certificate": {
2598
+ "type": "string"
2599
+ }
2600
+ },
2601
+ "required": [
2602
+ "port",
2603
+ "key",
2604
+ "certificate"
2605
+ ]
2606
+ },
2607
+ "HttpApp": {
2608
+ "type": "object",
2609
+ "properties": {
2610
+ "port": {
2611
+ "type": "number"
2612
+ },
2613
+ "isEnableHttps": {
2614
+ "type": "boolean"
2615
+ },
2616
+ "httpsConfig": {
2617
+ "$ref": "#/components/schemas/HttpsConfig"
2618
+ }
2619
+ },
2620
+ "required": [
2621
+ "port",
2622
+ "isEnableHttps"
2623
+ ]
2624
+ },
2625
+ "IngestApp": {
2626
+ "type": "object",
2627
+ "properties": {
2628
+ "rtmpPort": {
2629
+ "type": "number"
2630
+ },
2631
+ "enabledSrt": {
2632
+ "type": "boolean"
2633
+ },
2634
+ "srtPort": {
2635
+ "type": "number"
2636
+ },
2637
+ "enabledRtc": {
2638
+ "type": "boolean"
2639
+ },
2640
+ "rtcPort": {
2641
+ "type": "number"
2642
+ },
2643
+ "enabledWebhooks": {
2644
+ "type": "boolean"
2645
+ }
2646
+ },
2647
+ "required": [
2648
+ "rtmpPort",
2649
+ "enabledSrt",
2650
+ "enabledRtc"
2651
+ ]
2652
+ },
2653
+ "TranscoderApps": {
2654
+ "type": "object",
2655
+ "properties": {
2656
+ "origin": {
2657
+ "$ref": "#/components/schemas/HttpApp"
2658
+ },
2659
+ "ingest": {
2660
+ "$ref": "#/components/schemas/IngestApp"
2661
+ }
2662
+ },
2663
+ "required": [
2664
+ "origin"
2665
+ ]
2666
+ },
2667
+ "VideoEncoder": {
2668
+ "type": "object",
2669
+ "properties": {
2670
+ "cardName": {
2671
+ "type": "string"
2672
+ },
2673
+ "type": {
2674
+ "type": "string",
2675
+ "enum": [
2676
+ "SOFTWARE",
2677
+ "NVENCE"
2678
+ ]
2679
+ },
2680
+ "usage": {
2681
+ "type": "number"
2682
+ },
2683
+ "totalTask": {
2684
+ "type": "number"
2685
+ }
2686
+ },
2687
+ "required": [
2688
+ "cardName",
2689
+ "type",
2690
+ "usage",
2691
+ "totalTask"
2692
+ ]
2693
+ },
2694
+ "TranscoderNetwork": {
2695
+ "type": "object",
2696
+ "properties": {
2697
+ "name": {
2698
+ "type": "string"
2699
+ },
2700
+ "ip": {
2701
+ "type": "string"
2702
+ },
2703
+ "netmask": {
2704
+ "type": "string"
2705
+ }
2706
+ },
2707
+ "required": [
2708
+ "name",
2709
+ "ip",
2710
+ "netmask"
2711
+ ]
2712
+ },
2713
+ "TranscoderLicense": {
2714
+ "type": "object",
2715
+ "properties": {
2716
+ "status": {
2717
+ "type": "boolean"
2718
+ },
2719
+ "hash": {
2720
+ "type": "string"
2721
+ },
2722
+ "expire": {
2723
+ "format": "date-time",
2724
+ "type": "string"
2725
+ }
2726
+ }
2727
+ },
2728
+ "SigmaIngestConfigEntity": {
2729
+ "type": "object",
2730
+ "properties": {
2731
+ "publicRtmpURI": {
2732
+ "type": "string"
2733
+ },
2734
+ "publicSrtURI": {
2735
+ "type": "string"
2736
+ },
2737
+ "publicRtcURI": {
2738
+ "type": "string"
2739
+ }
2740
+ }
2741
+ },
2742
+ "SigmaOriginConfigEntity": {
2743
+ "type": "object",
2744
+ "properties": {
2745
+ "publicHttpURI": {
2746
+ "type": "string"
2747
+ }
2748
+ }
2749
+ },
2750
+ "Transcoder": {
2751
+ "type": "object",
2752
+ "properties": {
2753
+ "id": {
2754
+ "type": "string",
2755
+ "filterable": true
2756
+ },
2757
+ "name": {
2758
+ "type": "string",
2759
+ "filterable": true
2760
+ },
2761
+ "type": {
2762
+ "enum": [
2763
+ "transcoder-vod",
2764
+ "transcoder",
2765
+ "packager-live",
2766
+ "packager-catchup",
2767
+ "packager-startover",
2768
+ "sigma-machine",
2769
+ "sigma-machine-live-community"
2770
+ ],
2771
+ "type": "string",
2772
+ "filterable": true
2773
+ },
2774
+ "clusterId": {
2775
+ "type": "string",
2776
+ "filterable": true
2777
+ },
2778
+ "percent": {
2779
+ "type": "number",
2780
+ "sortable": true
2781
+ },
2782
+ "status": {
2783
+ "enum": [
2784
+ "running",
2785
+ "dead",
2786
+ "paused",
2787
+ "freezed"
2788
+ ],
2789
+ "type": "string",
2790
+ "filterable": true
2791
+ },
2792
+ "licenseCode": {
2793
+ "type": "string",
2794
+ "filterable": true
2795
+ },
2796
+ "version": {
2797
+ "type": "string",
2798
+ "filterable": true
2799
+ },
2800
+ "isDeleted": {
2801
+ "type": "boolean",
2802
+ "filterable": true
2803
+ },
2804
+ "createdAt": {
2805
+ "format": "date-time",
2806
+ "type": "string",
2807
+ "sortable": true
2808
+ },
2809
+ "apps": {
2810
+ "$ref": "#/components/schemas/TranscoderApps"
2811
+ },
2812
+ "address": {
2813
+ "type": "string"
2814
+ },
2815
+ "port": {
2816
+ "type": "number"
2817
+ },
2818
+ "cloudProvider": {
2819
+ "type": "string"
2820
+ },
2821
+ "videoEncoders": {
2822
+ "type": "array",
2823
+ "items": {
2824
+ "$ref": "#/components/schemas/VideoEncoder"
2825
+ }
2826
+ },
2827
+ "machine": {
2828
+ "type": "string"
2829
+ },
2830
+ "numTask": {
2831
+ "type": "number"
2832
+ },
2833
+ "appId": {
2834
+ "type": "string"
2835
+ },
2836
+ "ramTotal": {
2837
+ "type": "number"
2838
+ },
2839
+ "ramUsed": {
2840
+ "type": "number"
2841
+ },
2842
+ "ramUsage": {
2843
+ "type": "number"
2844
+ },
2845
+ "previousStatus": {
2846
+ "enum": [
2847
+ "running",
2848
+ "dead",
2849
+ "paused",
2850
+ "freezed"
2851
+ ],
2852
+ "type": "string"
2853
+ },
2854
+ "taskUnit": {
2855
+ "type": "number"
2856
+ },
2857
+ "network": {
2858
+ "type": "array",
2859
+ "items": {
2860
+ "$ref": "#/components/schemas/TranscoderNetwork"
2861
+ }
2862
+ },
2863
+ "license": {
2864
+ "$ref": "#/components/schemas/TranscoderLicense"
2865
+ },
2866
+ "maintenance": {
2867
+ "type": "boolean",
2868
+ "default": false
2869
+ },
2870
+ "speed": {
2871
+ "type": "number"
2872
+ },
2873
+ "tasks": {
2874
+ "type": "array",
2875
+ "items": {
2876
+ "type": "object"
2877
+ }
2878
+ },
2879
+ "tags": {
2880
+ "type": "array",
2881
+ "items": {
2882
+ "type": "string"
2883
+ }
2884
+ },
2885
+ "metadata": {
2886
+ "type": "object"
2887
+ },
2888
+ "checkAvailability": {
2889
+ "type": "number"
2890
+ },
2891
+ "ingestConfig": {
2892
+ "$ref": "#/components/schemas/SigmaIngestConfigEntity"
2893
+ },
2894
+ "originConfig": {
2895
+ "$ref": "#/components/schemas/SigmaOriginConfigEntity"
2896
+ },
2897
+ "VODRoutes": {
2898
+ "type": "array",
2899
+ "items": {
2900
+ "type": "string"
2901
+ }
2902
+ },
2903
+ "updatedAt": {
2904
+ "format": "date-time",
2905
+ "type": "string"
2906
+ },
2907
+ "lastSync": {
2908
+ "format": "date-time",
2909
+ "type": "string"
2910
+ }
2911
+ },
2912
+ "required": [
2913
+ "id",
2914
+ "apps",
2915
+ "address",
2916
+ "machine",
2917
+ "numTask",
2918
+ "appId",
2919
+ "ramTotal",
2920
+ "ramUsed",
2921
+ "ramUsage",
2922
+ "previousStatus",
2923
+ "taskUnit",
2924
+ "network",
2925
+ "license",
2926
+ "speed",
2927
+ "tasks",
2928
+ "tags",
2929
+ "metadata",
2930
+ "checkAvailability"
2931
+ ]
2932
+ },
2933
+ "TranscoderCollection": {
2934
+ "type": "object",
2935
+ "properties": {
2936
+ "data": {
2937
+ "readOnly": true,
2938
+ "type": "array",
2939
+ "items": {
2940
+ "$ref": "#/components/schemas/Transcoder"
2941
+ }
2942
+ },
2943
+ "count": {
2944
+ "type": "number",
2945
+ "readOnly": true
2946
+ },
2947
+ "total": {
2948
+ "type": "number",
2949
+ "readOnly": true
2950
+ },
2951
+ "page": {
2952
+ "type": "number",
2953
+ "readOnly": true
2954
+ },
2955
+ "perPage": {
2956
+ "type": "number",
2957
+ "readOnly": true
2958
+ }
2959
+ },
2960
+ "required": [
2961
+ "count",
2962
+ "total",
2963
+ "page",
2964
+ "perPage"
2965
+ ]
2966
+ },
2967
+ "Status": {
2968
+ "type": "object",
2969
+ "properties": {
2970
+ "live": {
2971
+ "type": "number"
2972
+ },
2973
+ "dead": {
2974
+ "type": "number"
2975
+ }
2976
+ },
2977
+ "required": [
2978
+ "live",
2979
+ "dead"
2980
+ ]
2981
+ },
2982
+ "Stats": {
2983
+ "type": "object",
2984
+ "properties": {
2985
+ "transcoder": {
2986
+ "$ref": "#/components/schemas/Status"
2987
+ },
2988
+ "packager": {
2989
+ "$ref": "#/components/schemas/Status"
2990
+ },
2991
+ "numTask": {
2992
+ "type": "number"
2993
+ },
2994
+ "capacity": {
2995
+ "type": "number"
2996
+ },
2997
+ "taskUnit": {
2998
+ "type": "number"
2999
+ }
3000
+ },
3001
+ "required": [
3002
+ "transcoder",
3003
+ "packager",
3004
+ "numTask",
3005
+ "capacity",
3006
+ "taskUnit"
3007
+ ]
3008
+ },
3009
+ "UsageInfo": {
3010
+ "type": "object",
3011
+ "properties": {
3012
+ "month": {
3013
+ "type": "string",
3014
+ "filterable": true,
3015
+ "description": "format: yyyy-mm"
3016
+ },
3017
+ "useableDaysInMonth": {
3018
+ "type": "number"
3019
+ },
3020
+ "minutesOfUse": {
3021
+ "type": "number"
3022
+ }
3023
+ },
3024
+ "required": [
3025
+ "month"
3026
+ ]
3027
+ },
3028
+ "License": {
3029
+ "type": "object",
3030
+ "properties": {
3031
+ "appId": {
3032
+ "type": "string",
3033
+ "sortable": true,
3034
+ "filterable": true
3035
+ },
3036
+ "type": {
3037
+ "enum": [
3038
+ "sigma_live_server",
3039
+ "sigma_live_community_server",
3040
+ "marketplace_server"
3041
+ ],
3042
+ "type": "string",
3043
+ "sortable": true,
3044
+ "filterable": true
3045
+ },
3046
+ "status": {
3047
+ "enum": [
3048
+ "available",
3049
+ "unpaid",
3050
+ "used",
3051
+ "expired",
3052
+ "payment_pending"
3053
+ ],
3054
+ "type": "string",
3055
+ "sortable": true,
3056
+ "filterable": true
3057
+ },
3058
+ "machineId": {
3059
+ "type": "string",
3060
+ "filterable": true
3061
+ },
3062
+ "createdAt": {
3063
+ "format": "date-time",
3064
+ "type": "string",
3065
+ "sortable": true
3066
+ },
3067
+ "id": {
3068
+ "type": "string"
3069
+ },
3070
+ "licenseCode": {
3071
+ "type": "string"
3072
+ },
3073
+ "invoiceId": {
3074
+ "type": "string"
3075
+ },
3076
+ "transactionId": {
3077
+ "type": "string"
3078
+ },
3079
+ "usageInfo": {
3080
+ "type": "array",
3081
+ "items": {
3082
+ "$ref": "#/components/schemas/UsageInfo"
3083
+ }
3084
+ },
3085
+ "lastSnapshot": {
3086
+ "format": "date-time",
3087
+ "type": "string"
3088
+ },
3089
+ "expirationTime": {
3090
+ "format": "date-time",
3091
+ "type": "string"
3092
+ },
3093
+ "autoRenewal": {
3094
+ "type": "boolean"
3095
+ },
3096
+ "createdByAdmin": {
3097
+ "type": "boolean"
3098
+ },
3099
+ "updatedAt": {
3100
+ "format": "date-time",
3101
+ "type": "string"
3102
+ }
3103
+ },
3104
+ "required": [
3105
+ "appId",
3106
+ "type",
3107
+ "createdAt",
3108
+ "id",
3109
+ "licenseCode",
3110
+ "autoRenewal",
3111
+ "updatedAt"
3112
+ ]
3113
+ },
3114
+ "MachineDetails": {
3115
+ "type": "object",
3116
+ "properties": {
3117
+ "type": {
3118
+ "type": "string"
3119
+ },
3120
+ "status": {
3121
+ "enum": [
3122
+ "running",
3123
+ "dead",
3124
+ "paused",
3125
+ "freezed"
3126
+ ],
3127
+ "type": "string"
3128
+ },
3129
+ "tags": {
3130
+ "type": "array",
3131
+ "items": {
3132
+ "type": "string"
3133
+ }
3134
+ },
3135
+ "ipAddresses": {
3136
+ "type": "array",
3137
+ "items": {
3138
+ "type": "string"
3139
+ }
3140
+ },
3141
+ "operatingSystem": {
3142
+ "type": "string"
3143
+ },
3144
+ "port": {
3145
+ "type": "number"
3146
+ },
3147
+ "metadata": {
3148
+ "type": "object"
3149
+ },
3150
+ "license": {
3151
+ "$ref": "#/components/schemas/License"
3152
+ },
3153
+ "licenseCode": {
3154
+ "type": "string"
3155
+ },
3156
+ "totalCard": {
3157
+ "type": "number"
3158
+ },
3159
+ "name": {
3160
+ "type": "string"
3161
+ },
3162
+ "hostname": {
3163
+ "type": "string"
3164
+ },
3165
+ "version": {
3166
+ "type": "string"
3167
+ },
3168
+ "localTime": {
3169
+ "type": "string"
3170
+ },
3171
+ "timezone": {
3172
+ "type": "string"
3173
+ }
3174
+ },
3175
+ "required": [
3176
+ "type",
3177
+ "status",
3178
+ "tags",
3179
+ "ipAddresses",
3180
+ "operatingSystem",
3181
+ "port",
3182
+ "metadata",
3183
+ "name",
3184
+ "hostname",
3185
+ "version",
3186
+ "localTime",
3187
+ "timezone"
3188
+ ]
3189
+ },
3190
+ "AddLicenseMachineDto": {
3191
+ "type": "object",
3192
+ "properties": {
3193
+ "licenseId": {
3194
+ "type": "string"
3195
+ }
3196
+ },
3197
+ "required": [
3198
+ "licenseId"
3199
+ ]
3200
+ },
3201
+ "UpdateMetadataDto": {
3202
+ "type": "object",
3203
+ "properties": {
3204
+ "metadata": {
3205
+ "type": "object"
3206
+ }
3207
+ },
3208
+ "required": [
3209
+ "metadata"
3210
+ ]
3211
+ },
3212
+ "InfoChannel": {
3213
+ "type": "object",
3214
+ "properties": {
3215
+ "ec": {
3216
+ "type": "number"
3217
+ },
3218
+ "result": {
3219
+ "type": "object"
3220
+ },
3221
+ "dt": {
3222
+ "type": "number"
3223
+ }
3224
+ },
3225
+ "required": [
3226
+ "ec",
3227
+ "result",
3228
+ "dt"
3229
+ ]
3230
+ },
3231
+ "MachineDump": {
3232
+ "type": "object",
3233
+ "properties": {
3234
+ "ec": {
3235
+ "type": "number"
3236
+ },
3237
+ "result": {
3238
+ "type": "object"
3239
+ },
3240
+ "dt": {
3241
+ "type": "number"
3242
+ },
3243
+ "name": {
3244
+ "type": "string"
3245
+ },
3246
+ "hostname": {
3247
+ "type": "string"
3248
+ },
3249
+ "version": {
3250
+ "type": "string"
3251
+ },
3252
+ "localTime": {
3253
+ "type": "string"
3254
+ },
3255
+ "timezone": {
3256
+ "type": "string"
3257
+ },
3258
+ "total": {
3259
+ "type": "number"
3260
+ },
3261
+ "speed": {
3262
+ "type": "string"
3263
+ },
3264
+ "build": {
3265
+ "type": "string"
3266
+ },
3267
+ "start": {
3268
+ "type": "string"
3269
+ },
3270
+ "queue": {
3271
+ "type": "number"
3272
+ },
3273
+ "system": {
3274
+ "type": "object"
3275
+ }
3276
+ },
3277
+ "required": [
3278
+ "ec",
3279
+ "result",
3280
+ "dt",
3281
+ "name",
3282
+ "hostname",
3283
+ "version",
3284
+ "localTime",
3285
+ "timezone",
3286
+ "total",
3287
+ "speed",
3288
+ "build",
3289
+ "start",
3290
+ "queue",
3291
+ "system"
3292
+ ]
3293
+ },
3294
+ "AppStatus": {
3295
+ "type": "object",
3296
+ "properties": {
3297
+ "status": {
3298
+ "enum": [
3299
+ "running",
3300
+ "stopped",
3301
+ "error",
3302
+ "disable",
3303
+ "no-response"
3304
+ ],
3305
+ "type": "string"
3306
+ },
3307
+ "lifeTime": {
3308
+ "type": "string"
3309
+ }
3310
+ },
3311
+ "required": [
3312
+ "status"
3313
+ ]
3314
+ },
3315
+ "StopChannel": {
3316
+ "type": "object",
3317
+ "properties": {
3318
+ "ec": {
3319
+ "type": "number"
3320
+ },
3321
+ "result": {
3322
+ "type": "object"
3323
+ },
3324
+ "dt": {
3325
+ "type": "number"
3326
+ },
3327
+ "msg": {
3328
+ "type": "string"
3329
+ }
3330
+ },
3331
+ "required": [
3332
+ "ec",
3333
+ "result",
3334
+ "dt",
3335
+ "msg"
3336
+ ]
3337
+ },
3338
+ "ActionsToAppDto": {
3339
+ "type": "object",
3340
+ "properties": {
3341
+ "appType": {
3342
+ "enum": [
3343
+ "origin",
3344
+ "ingest"
3345
+ ],
3346
+ "type": "string"
3347
+ }
3348
+ },
3349
+ "required": [
3350
+ "appType"
3351
+ ]
3352
+ },
3353
+ "IngestUpdateConfigDto": {
3354
+ "type": "object",
3355
+ "properties": {
3356
+ "appType": {
3357
+ "enum": [
3358
+ "origin",
3359
+ "ingest"
3360
+ ],
3361
+ "type": "string"
3362
+ },
3363
+ "rtmpPort": {
3364
+ "type": "number",
3365
+ "maximum": 99999
3366
+ },
3367
+ "enabledSrt": {
3368
+ "type": "boolean"
3369
+ },
3370
+ "srtPort": {
3371
+ "type": "number",
3372
+ "maximum": 99999
3373
+ },
3374
+ "enabledRtc": {
3375
+ "type": "boolean"
3376
+ },
3377
+ "rtcPort": {
3378
+ "type": "number",
3379
+ "maximum": 99999
3380
+ }
3381
+ },
3382
+ "required": [
3383
+ "appType",
3384
+ "rtmpPort",
3385
+ "enabledSrt",
3386
+ "enabledRtc"
3387
+ ]
3388
+ },
3389
+ "OriginUpdateConfigDto": {
3390
+ "type": "object",
3391
+ "properties": {
3392
+ "port": {
3393
+ "type": "number",
3394
+ "maximum": 99999
3395
+ },
3396
+ "appType": {
3397
+ "enum": [
3398
+ "origin",
3399
+ "ingest"
3400
+ ],
3401
+ "type": "string"
3402
+ },
3403
+ "isEnableHttps": {
3404
+ "type": "boolean"
3405
+ },
3406
+ "httpsConfig": {
3407
+ "$ref": "#/components/schemas/HttpsConfig"
3408
+ }
3409
+ },
3410
+ "required": [
3411
+ "port",
3412
+ "appType",
3413
+ "isEnableHttps",
3414
+ "httpsConfig"
3415
+ ]
3416
+ },
3417
+ "UpdateAppConfigDto": {
3418
+ "type": "object",
3419
+ "properties": {
3420
+ "configData": {
3421
+ "description": "plan info contains details about the event schedule",
3422
+ "oneOf": [
3423
+ {
3424
+ "$ref": "#/components/schemas/OriginUpdateConfigDto"
3425
+ },
3426
+ {
3427
+ "$ref": "#/components/schemas/IngestUpdateConfigDto"
3428
+ }
3429
+ ]
3430
+ }
3431
+ },
3432
+ "required": [
3433
+ "configData"
3434
+ ]
3435
+ },
3436
+ "SigmaIngestConfig": {
3437
+ "type": "object",
3438
+ "properties": {
3439
+ "publicRtmpURI": {
3440
+ "type": "string"
3441
+ },
3442
+ "publicSrtURI": {
3443
+ "type": "string"
3444
+ },
3445
+ "publicRtcURI": {
3446
+ "type": "string"
3447
+ }
3448
+ }
3449
+ },
3450
+ "SigmaOriginConfig": {
3451
+ "type": "object",
3452
+ "properties": {
3453
+ "publicHttpURI": {
3454
+ "type": "string"
3455
+ }
3456
+ }
3457
+ },
3458
+ "UpdateRouteConfigSigmaMachine": {
3459
+ "type": "object",
3460
+ "properties": {
3461
+ "ingestConfig": {
3462
+ "$ref": "#/components/schemas/SigmaIngestConfig"
3463
+ },
3464
+ "originConfig": {
3465
+ "$ref": "#/components/schemas/SigmaOriginConfig"
3466
+ }
3467
+ }
3468
+ },
3469
+ "VODRoute": {
3470
+ "type": "object",
3471
+ "properties": {
3472
+ "appId": {
3473
+ "type": "string",
3474
+ "sortable": true,
3475
+ "filterable": true
3476
+ },
3477
+ "machineId": {
3478
+ "type": "string",
3479
+ "filterable": true
3480
+ },
3481
+ "createdAt": {
3482
+ "format": "date-time",
3483
+ "type": "string",
3484
+ "sortable": true
3485
+ },
3486
+ "id": {
3487
+ "type": "string"
3488
+ },
3489
+ "domain": {
3490
+ "type": "string"
3491
+ },
3492
+ "prefixPath": {
3493
+ "type": "string",
3494
+ "pattern": "/^(\\/?[a-zA-Z0-9_-]+)+\\/?$/"
3495
+ },
3496
+ "folder": {
3497
+ "type": "string",
3498
+ "pattern": "/^(\\/?[^\\/]*)+\\/?$/"
3499
+ },
3500
+ "updatedAt": {
3501
+ "format": "date-time",
3502
+ "type": "string"
3503
+ }
3504
+ },
3505
+ "required": [
3506
+ "appId",
3507
+ "machineId",
3508
+ "id",
3509
+ "domain",
3510
+ "prefixPath",
3511
+ "folder"
3512
+ ]
3513
+ },
3514
+ "CreateVODRouteDto": {
3515
+ "type": "object",
3516
+ "properties": {
3517
+ "domain": {
3518
+ "type": "string"
3519
+ },
3520
+ "prefixPath": {
3521
+ "type": "string"
3522
+ },
3523
+ "folder": {
3524
+ "type": "string"
3525
+ }
3526
+ },
3527
+ "required": [
3528
+ "domain",
3529
+ "prefixPath",
3530
+ "folder"
3531
+ ]
3532
+ },
3533
+ "Network": {
3534
+ "type": "object",
3535
+ "properties": {
3536
+ "id": {
3537
+ "type": "string"
3538
+ },
3539
+ "name": {
3540
+ "type": "string"
3541
+ },
3542
+ "netmask": {
3543
+ "type": "string"
3544
+ },
3545
+ "count": {
3546
+ "type": "number"
3547
+ },
3548
+ "tags": {
3549
+ "type": "array",
3550
+ "items": {
3551
+ "type": "string"
3552
+ }
3553
+ },
3554
+ "createdAt": {
3555
+ "format": "date-time",
3556
+ "type": "string"
3557
+ },
3558
+ "updatedAt": {
3559
+ "format": "date-time",
3560
+ "type": "string"
3561
+ }
3562
+ },
3563
+ "required": [
3564
+ "id",
3565
+ "name",
3566
+ "netmask",
3567
+ "count",
3568
+ "tags",
3569
+ "createdAt",
3570
+ "updatedAt"
3571
+ ]
3572
+ },
3573
+ "NetworkCollection": {
3574
+ "type": "object",
3575
+ "properties": {
3576
+ "data": {
3577
+ "readOnly": true,
3578
+ "type": "array",
3579
+ "items": {
3580
+ "$ref": "#/components/schemas/Network"
3581
+ }
3582
+ },
3583
+ "count": {
3584
+ "type": "number",
3585
+ "readOnly": true
3586
+ },
3587
+ "total": {
3588
+ "type": "number",
3589
+ "readOnly": true
3590
+ },
3591
+ "page": {
3592
+ "type": "number",
3593
+ "readOnly": true
3594
+ },
3595
+ "perPage": {
3596
+ "type": "number",
3597
+ "readOnly": true
3598
+ }
3599
+ },
3600
+ "required": [
3601
+ "count",
3602
+ "total",
3603
+ "page",
3604
+ "perPage"
3605
+ ]
3606
+ },
3607
+ "Decklink": {
3608
+ "type": "object",
3609
+ "properties": {
3610
+ "name": {
3611
+ "type": "string"
3612
+ },
3613
+ "id": {
3614
+ "type": "string"
3615
+ },
3616
+ "type": {
3617
+ "type": "string"
3618
+ }
3619
+ },
3620
+ "required": [
3621
+ "name",
3622
+ "id",
3623
+ "type"
3624
+ ]
3625
+ },
3626
+ "DecklinkCollection": {
3627
+ "type": "object",
3628
+ "properties": {
3629
+ "data": {
3630
+ "readOnly": true,
3631
+ "type": "array",
3632
+ "items": {
3633
+ "$ref": "#/components/schemas/Decklink"
3634
+ }
3635
+ },
3636
+ "count": {
3637
+ "type": "number",
3638
+ "readOnly": true
3639
+ },
3640
+ "total": {
3641
+ "type": "number",
3642
+ "readOnly": true
3643
+ },
3644
+ "page": {
3645
+ "type": "number",
3646
+ "readOnly": true
3647
+ },
3648
+ "perPage": {
3649
+ "type": "number",
3650
+ "readOnly": true
3651
+ }
3652
+ },
3653
+ "required": [
3654
+ "count",
3655
+ "total",
3656
+ "page",
3657
+ "perPage"
3658
+ ]
3659
+ },
3660
+ "MachineDto": {
3661
+ "type": "object",
3662
+ "properties": {
3663
+ "id": {
3664
+ "type": "string"
3665
+ },
3666
+ "ipAddress": {
3667
+ "type": "string"
3668
+ },
3669
+ "dataRouting": {
3670
+ "type": "string",
3671
+ "pattern": "/^\\/([A-z0-9-_]+\\/)*([A-z0-9-_]+)$/"
3672
+ }
3673
+ },
3674
+ "required": [
3675
+ "id",
3676
+ "ipAddress",
3677
+ "dataRouting"
3678
+ ]
3679
+ },
3680
+ "NPlusMMachineDto": {
3681
+ "type": "object",
3682
+ "properties": {
3683
+ "id": {
3684
+ "type": "string"
3685
+ },
3686
+ "ipAddress": {
3687
+ "type": "string"
3688
+ },
3689
+ "dataRouting": {
3690
+ "type": "string",
3691
+ "pattern": "/^\\/([A-z0-9-_]+\\/)*([A-z0-9-_]+)$/"
3692
+ },
3693
+ "role": {
3694
+ "type": "string",
3695
+ "enum": [
3696
+ "backup",
3697
+ "primary"
3698
+ ]
3699
+ }
3700
+ },
3701
+ "required": [
3702
+ "id",
3703
+ "ipAddress",
3704
+ "dataRouting",
3705
+ "role"
3706
+ ]
3707
+ },
3708
+ "OnePlusOneMachineDto": {
3709
+ "type": "object",
3710
+ "properties": {
3711
+ "primary": {
3712
+ "$ref": "#/components/schemas/MachineDto"
3713
+ },
3714
+ "backup": {
3715
+ "$ref": "#/components/schemas/MachineDto"
3716
+ }
3717
+ },
3718
+ "required": [
3719
+ "primary",
3720
+ "backup"
3721
+ ]
3722
+ },
3723
+ "CreateSigmaMachineClusterDto": {
3724
+ "type": "object",
3725
+ "properties": {
3726
+ "mode": {
3727
+ "type": "string",
3728
+ "enum": [
3729
+ "no_backup",
3730
+ "N+M",
3731
+ "1+1"
3732
+ ]
3733
+ },
3734
+ "machines": {
3735
+ "type": "array",
3736
+ "items": {
3737
+ "$ref": "#/components/schemas/MachineDto"
3738
+ }
3739
+ },
3740
+ "nPlusMMachines": {
3741
+ "type": "array",
3742
+ "items": {
3743
+ "$ref": "#/components/schemas/NPlusMMachineDto"
3744
+ }
3745
+ },
3746
+ "onePlusOneMachines": {
3747
+ "type": "array",
3748
+ "items": {
3749
+ "$ref": "#/components/schemas/OnePlusOneMachineDto"
3750
+ }
3751
+ },
3752
+ "ingestConfig": {
3753
+ "$ref": "#/components/schemas/SigmaIngestConfig"
3754
+ },
3755
+ "originConfig": {
3756
+ "$ref": "#/components/schemas/SigmaOriginConfig"
3757
+ },
3758
+ "name": {
3759
+ "type": "string",
3760
+ "pattern": "/^[a-zA-Z0-9_-]*$/"
3761
+ },
3762
+ "description": {
3763
+ "type": "string"
3764
+ },
3765
+ "type": {
3766
+ "type": "string",
3767
+ "enum": [
3768
+ "sigma-cluster",
3769
+ "component-cluster"
3770
+ ]
3771
+ }
3772
+ },
3773
+ "required": [
3774
+ "mode",
3775
+ "name",
3776
+ "type"
3777
+ ]
3778
+ },
3779
+ "Machine": {
3780
+ "type": "object",
3781
+ "properties": {
3782
+ "id": {
3783
+ "type": "string"
3784
+ },
3785
+ "ipAddress": {
3786
+ "type": "string"
3787
+ },
3788
+ "dataRouting": {
3789
+ "type": "string"
3790
+ }
3791
+ },
3792
+ "required": [
3793
+ "id",
3794
+ "ipAddress",
3795
+ "dataRouting"
3796
+ ]
3797
+ },
3798
+ "NPlusMMachine": {
3799
+ "type": "object",
3800
+ "properties": {
3801
+ "id": {
3802
+ "type": "string"
3803
+ },
3804
+ "ipAddress": {
3805
+ "type": "string"
3806
+ },
3807
+ "dataRouting": {
3808
+ "type": "string"
3809
+ },
3810
+ "role": {
3811
+ "type": "string",
3812
+ "enum": [
3813
+ "backup",
3814
+ "primary"
3815
+ ]
3816
+ }
3817
+ },
3818
+ "required": [
3819
+ "id",
3820
+ "ipAddress",
3821
+ "dataRouting",
3822
+ "role"
3823
+ ]
3824
+ },
3825
+ "OnePlusOneMachine": {
3826
+ "type": "object",
3827
+ "properties": {
3828
+ "primary": {
3829
+ "$ref": "#/components/schemas/Machine"
3830
+ },
3831
+ "backup": {
3832
+ "$ref": "#/components/schemas/Machine"
3833
+ }
3834
+ },
3835
+ "required": [
3836
+ "primary",
3837
+ "backup"
3838
+ ]
3839
+ },
3840
+ "SigmaClusterIngestConfig": {
3841
+ "type": "object",
3842
+ "properties": {
3843
+ "publicRtmpURI": {
3844
+ "type": "string"
3845
+ },
3846
+ "publicSrtURI": {
3847
+ "type": "string"
3848
+ },
3849
+ "publicRtcURI": {
3850
+ "type": "string"
3851
+ }
3852
+ }
3853
+ },
3854
+ "SigmaClusterOriginConfig": {
3855
+ "type": "object",
3856
+ "properties": {
3857
+ "publicHttpURI": {
3858
+ "type": "string"
3859
+ }
3860
+ }
3861
+ },
3862
+ "MachineCluster": {
3863
+ "type": "object",
3864
+ "properties": {
3865
+ "id": {
3866
+ "type": "string",
3867
+ "filterable": true
3868
+ },
3869
+ "name": {
3870
+ "type": "string",
3871
+ "filterable": true,
3872
+ "sortable": true
3873
+ },
3874
+ "type": {
3875
+ "enum": [
3876
+ "sigma-cluster",
3877
+ "component-cluster"
3878
+ ],
3879
+ "type": "string",
3880
+ "filterable": true,
3881
+ "sortable": true
3882
+ },
3883
+ "isDeleted": {
3884
+ "type": "boolean",
3885
+ "filterable": true
3886
+ },
3887
+ "createdAt": {
3888
+ "format": "date-time",
3889
+ "type": "string",
3890
+ "filterable": true,
3891
+ "sortable": true
3892
+ },
3893
+ "updatedAt": {
3894
+ "format": "date-time",
3895
+ "type": "string",
3896
+ "filterable": true,
3897
+ "sortable": true
3898
+ },
3899
+ "status": {
3900
+ "enum": [
3901
+ "green",
3902
+ "yellow",
3903
+ "red"
3904
+ ],
3905
+ "type": "string",
3906
+ "filterable": true,
3907
+ "sortable": true
3908
+ },
3909
+ "machines": {
3910
+ "filterable": true,
3911
+ "type": "array",
3912
+ "items": {
3913
+ "$ref": "#/components/schemas/Machine"
3914
+ }
3915
+ },
3916
+ "nPlusMMachines": {
3917
+ "filterable": true,
3918
+ "type": "array",
3919
+ "items": {
3920
+ "$ref": "#/components/schemas/NPlusMMachine"
3921
+ }
3922
+ },
3923
+ "onePlusOneMachines": {
3924
+ "filterable": true,
3925
+ "type": "array",
3926
+ "items": {
3927
+ "$ref": "#/components/schemas/OnePlusOneMachine"
3928
+ }
3929
+ },
3930
+ "mode": {
3931
+ "enum": [
3932
+ "no_backup",
3933
+ "N+M",
3934
+ "1+1"
3935
+ ],
3936
+ "type": "string"
3937
+ },
3938
+ "ingestConfig": {
3939
+ "$ref": "#/components/schemas/SigmaClusterIngestConfig"
3940
+ },
3941
+ "originConfig": {
3942
+ "$ref": "#/components/schemas/SigmaClusterOriginConfig"
3943
+ },
3944
+ "appId": {
3945
+ "type": "string"
3946
+ },
3947
+ "description": {
3948
+ "type": "string"
3949
+ }
3950
+ },
3951
+ "required": [
3952
+ "mode",
3953
+ "ingestConfig",
3954
+ "originConfig",
3955
+ "appId",
3956
+ "description"
3957
+ ]
3958
+ },
3959
+ "MachineClusterCollection": {
3960
+ "type": "object",
3961
+ "properties": {
3962
+ "data": {
3963
+ "readOnly": true,
3964
+ "type": "array",
3965
+ "items": {
3966
+ "$ref": "#/components/schemas/MachineCluster"
3967
+ }
3968
+ },
3969
+ "count": {
3970
+ "type": "number",
3971
+ "readOnly": true
3972
+ },
3973
+ "total": {
3974
+ "type": "number",
3975
+ "readOnly": true
3976
+ },
3977
+ "page": {
3978
+ "type": "number",
3979
+ "readOnly": true
3980
+ },
3981
+ "perPage": {
3982
+ "type": "number",
3983
+ "readOnly": true
3984
+ }
3985
+ },
3986
+ "required": [
3987
+ "count",
3988
+ "total",
3989
+ "page",
3990
+ "perPage"
3991
+ ]
3992
+ },
3993
+ "UpdateMachineDto": {
3994
+ "type": "object",
3995
+ "properties": {
3996
+ "id": {
3997
+ "type": "string"
3998
+ },
3999
+ "ipAddress": {
4000
+ "type": "string"
4001
+ },
4002
+ "dataRouting": {
4003
+ "type": "string",
4004
+ "pattern": "/^\\/([A-z0-9-_]+\\/)*([A-z0-9-_]+)$/"
4005
+ }
4006
+ },
4007
+ "required": [
4008
+ "id",
4009
+ "ipAddress",
4010
+ "dataRouting"
4011
+ ]
4012
+ },
4013
+ "UpdateNPlusMMachineDto": {
4014
+ "type": "object",
4015
+ "properties": {
4016
+ "id": {
4017
+ "type": "string"
4018
+ },
4019
+ "ipAddress": {
4020
+ "type": "string"
4021
+ },
4022
+ "dataRouting": {
4023
+ "type": "string",
4024
+ "pattern": "/^\\/([A-z0-9-_]+\\/)*([A-z0-9-_]+)$/"
4025
+ },
4026
+ "role": {
4027
+ "type": "string",
4028
+ "enum": [
4029
+ "backup",
4030
+ "primary"
4031
+ ]
4032
+ }
4033
+ },
4034
+ "required": [
4035
+ "id",
4036
+ "ipAddress",
4037
+ "dataRouting",
4038
+ "role"
4039
+ ]
4040
+ },
4041
+ "UpdateOnePlusOneMachineDto": {
4042
+ "type": "object",
4043
+ "properties": {
4044
+ "primary": {
4045
+ "$ref": "#/components/schemas/UpdateMachineDto"
4046
+ },
4047
+ "backup": {
4048
+ "$ref": "#/components/schemas/UpdateMachineDto"
4049
+ }
4050
+ },
4051
+ "required": [
4052
+ "primary",
4053
+ "backup"
4054
+ ]
4055
+ },
4056
+ "UpdateMachineClusterDto": {
4057
+ "type": "object",
4058
+ "properties": {
4059
+ "name": {
4060
+ "type": "string",
4061
+ "pattern": "/^[a-zA-Z0-9_-]*$/"
4062
+ },
4063
+ "machines": {
4064
+ "type": "array",
4065
+ "items": {
4066
+ "$ref": "#/components/schemas/UpdateMachineDto"
4067
+ }
4068
+ },
4069
+ "nPlusMMachines": {
4070
+ "type": "array",
4071
+ "items": {
4072
+ "$ref": "#/components/schemas/UpdateNPlusMMachineDto"
4073
+ }
4074
+ },
4075
+ "onePlusOneMachines": {
4076
+ "type": "array",
4077
+ "items": {
4078
+ "$ref": "#/components/schemas/UpdateOnePlusOneMachineDto"
4079
+ }
4080
+ },
4081
+ "description": {
4082
+ "type": "string"
4083
+ },
4084
+ "mode": {
4085
+ "type": "string",
4086
+ "enum": [
4087
+ "no_backup",
4088
+ "N+M",
4089
+ "1+1"
4090
+ ]
4091
+ },
4092
+ "ingestConfig": {
4093
+ "$ref": "#/components/schemas/SigmaIngestConfig"
4094
+ },
4095
+ "originConfig": {
4096
+ "$ref": "#/components/schemas/SigmaOriginConfig"
4097
+ }
4098
+ }
4099
+ },
4100
+ "ClusterLog": {
4101
+ "type": "object",
4102
+ "properties": {
4103
+ "id": {
4104
+ "type": "string",
4105
+ "filterable": true
4106
+ },
4107
+ "clusterId": {
4108
+ "type": "string",
4109
+ "filterable": true
4110
+ },
4111
+ "content": {
4112
+ "type": "string",
4113
+ "filterable": true
4114
+ },
4115
+ "createdAt": {
4116
+ "format": "date-time",
4117
+ "type": "string",
4118
+ "filterable": true,
4119
+ "sortable": true
4120
+ },
4121
+ "updatedAt": {
4122
+ "format": "date-time",
4123
+ "type": "string",
4124
+ "filterable": true,
4125
+ "sortable": true
4126
+ }
4127
+ }
4128
+ },
4129
+ "IngestConfig": {
4130
+ "type": "object",
4131
+ "properties": {
4132
+ "publicRtmpURI": {
4133
+ "type": "string"
4134
+ },
4135
+ "publicSrtURI": {
4136
+ "type": "string"
4137
+ },
4138
+ "publicRtcURI": {
4139
+ "type": "string"
4140
+ },
4141
+ "systemType": {
4142
+ "type": "string",
4143
+ "enum": [
4144
+ "external",
4145
+ "internal"
4146
+ ]
4147
+ },
4148
+ "privateRtmpURI": {
4149
+ "type": "string"
4150
+ },
4151
+ "privateSrtURI": {
4152
+ "type": "string"
4153
+ },
4154
+ "privateRtcURI": {
4155
+ "type": "string"
4156
+ }
4157
+ },
4158
+ "required": [
4159
+ "systemType"
4160
+ ]
4161
+ },
4162
+ "OriginConfig": {
4163
+ "type": "object",
4164
+ "properties": {
4165
+ "publicHttpURI": {
4166
+ "type": "string"
4167
+ },
4168
+ "systemType": {
4169
+ "type": "string",
4170
+ "enum": [
4171
+ "external",
4172
+ "internal"
4173
+ ]
4174
+ },
4175
+ "privateHttpURI": {
4176
+ "type": "string"
4177
+ }
4178
+ },
4179
+ "required": [
4180
+ "systemType"
4181
+ ]
4182
+ },
4183
+ "NetworkInterface": {
4184
+ "type": "object",
4185
+ "properties": {
4186
+ "name": {
4187
+ "type": "string"
4188
+ },
4189
+ "netmask": {
4190
+ "type": "string",
4191
+ "pattern": "/^([01]?\\d{1,2}|2[0-4]\\d|25[0-5])\\.([01]?\\d{1,2}|2[0-4]\\d|25[0-5])\\.([01]?\\d{1,2}|2[0-4]\\d|25[0-5])\\.([01]?\\d{1,2}|2[0-4]\\d|25[0-5])\\/(3[0-2]|[12]?\\d|\\d)$/"
4192
+ }
4193
+ },
4194
+ "required": [
4195
+ "name",
4196
+ "netmask"
4197
+ ]
4198
+ },
4199
+ "TranscoderLiveToComponentCluster": {
4200
+ "type": "object",
4201
+ "properties": {
4202
+ "id": {
4203
+ "type": "string"
4204
+ },
4205
+ "machineType": {
4206
+ "type": "string"
4207
+ },
4208
+ "networkInterface": {
4209
+ "$ref": "#/components/schemas/NetworkInterface"
4210
+ }
4211
+ },
4212
+ "required": [
4213
+ "id",
4214
+ "machineType"
4215
+ ]
4216
+ },
4217
+ "TranscoderLiveCluster": {
4218
+ "type": "object",
4219
+ "properties": {
4220
+ "outputNetworkInterface": {
4221
+ "$ref": "#/components/schemas/NetworkInterface"
4222
+ },
4223
+ "machines": {
4224
+ "type": "array",
4225
+ "items": {
4226
+ "$ref": "#/components/schemas/TranscoderLiveToComponentCluster"
4227
+ }
4228
+ }
4229
+ },
4230
+ "required": [
4231
+ "machines"
4232
+ ]
4233
+ },
4234
+ "PackagerToComponentCluster": {
4235
+ "type": "object",
4236
+ "properties": {
4237
+ "id": {
4238
+ "type": "string"
4239
+ },
4240
+ "machineType": {
4241
+ "type": "string"
4242
+ },
4243
+ "networkInterface": {
4244
+ "$ref": "#/components/schemas/NetworkInterface"
4245
+ },
4246
+ "dataRouting": {
4247
+ "type": "string",
4248
+ "pattern": "/^\\/([A-z0-9-_]+\\/)*([A-z0-9-_]+)$/"
4249
+ }
4250
+ },
4251
+ "required": [
4252
+ "id",
4253
+ "machineType",
4254
+ "dataRouting"
4255
+ ]
4256
+ },
4257
+ "PackagerLiveCluster": {
4258
+ "type": "object",
4259
+ "properties": {
4260
+ "inputNetworkInterface": {
4261
+ "$ref": "#/components/schemas/NetworkInterface"
4262
+ },
4263
+ "machines": {
4264
+ "type": "array",
4265
+ "items": {
4266
+ "$ref": "#/components/schemas/PackagerToComponentCluster"
4267
+ }
4268
+ }
4269
+ },
4270
+ "required": [
4271
+ "machines"
4272
+ ]
4273
+ },
4274
+ "CreateComponentMachineClusterDto": {
4275
+ "type": "object",
4276
+ "properties": {
4277
+ "name": {
4278
+ "type": "string",
4279
+ "pattern": "/^[a-zA-Z0-9_-]*$/"
4280
+ },
4281
+ "type": {
4282
+ "type": "string",
4283
+ "enum": [
4284
+ "sigma-cluster",
4285
+ "component-cluster"
4286
+ ]
4287
+ },
4288
+ "ingestConfig": {
4289
+ "$ref": "#/components/schemas/IngestConfig"
4290
+ },
4291
+ "originConfig": {
4292
+ "$ref": "#/components/schemas/OriginConfig"
4293
+ },
4294
+ "transcoder": {
4295
+ "$ref": "#/components/schemas/TranscoderLiveCluster"
4296
+ },
4297
+ "packager": {
4298
+ "$ref": "#/components/schemas/PackagerLiveCluster"
4299
+ },
4300
+ "description": {
4301
+ "type": "string"
4302
+ }
4303
+ },
4304
+ "required": [
4305
+ "name",
4306
+ "type",
4307
+ "ingestConfig",
4308
+ "originConfig",
4309
+ "transcoder",
4310
+ "packager"
4311
+ ]
4312
+ },
4313
+ "TranscoderComponentCluster": {
4314
+ "type": "object",
4315
+ "properties": {
4316
+ "machines": {
4317
+ "filterable": true,
4318
+ "type": "array",
4319
+ "items": {
4320
+ "$ref": "#/components/schemas/TranscoderLiveToComponentCluster"
4321
+ }
4322
+ },
4323
+ "outputNetworkInterface": {
4324
+ "$ref": "#/components/schemas/NetworkInterface"
4325
+ }
4326
+ }
4327
+ },
4328
+ "PackagerComponentCluster": {
4329
+ "type": "object",
4330
+ "properties": {
4331
+ "machines": {
4332
+ "filterable": true,
4333
+ "type": "array",
4334
+ "items": {
4335
+ "$ref": "#/components/schemas/PackagerToComponentCluster"
4336
+ }
4337
+ },
4338
+ "inputNetworkInterface": {
4339
+ "$ref": "#/components/schemas/NetworkInterface"
4340
+ }
4341
+ }
4342
+ },
4343
+ "ComponentCluster": {
4344
+ "type": "object",
4345
+ "properties": {
4346
+ "id": {
4347
+ "type": "string",
4348
+ "filterable": true
4349
+ },
4350
+ "name": {
4351
+ "type": "string",
4352
+ "filterable": true,
4353
+ "sortable": true
4354
+ },
4355
+ "type": {
4356
+ "enum": [
4357
+ "sigma-cluster",
4358
+ "component-cluster"
4359
+ ],
4360
+ "type": "string",
4361
+ "filterable": true,
4362
+ "sortable": true
4363
+ },
4364
+ "isDeleted": {
4365
+ "type": "boolean",
4366
+ "filterable": true
4367
+ },
4368
+ "createdAt": {
4369
+ "format": "date-time",
4370
+ "type": "string",
4371
+ "filterable": true,
4372
+ "sortable": true
4373
+ },
4374
+ "updatedAt": {
4375
+ "format": "date-time",
4376
+ "type": "string",
4377
+ "filterable": true,
4378
+ "sortable": true
4379
+ },
4380
+ "transcoder": {
4381
+ "$ref": "#/components/schemas/TranscoderComponentCluster"
4382
+ },
4383
+ "packager": {
4384
+ "$ref": "#/components/schemas/PackagerComponentCluster"
4385
+ },
4386
+ "ingestConfig": {
4387
+ "$ref": "#/components/schemas/IngestConfig"
4388
+ },
4389
+ "originConfig": {
4390
+ "$ref": "#/components/schemas/OriginConfig"
4391
+ },
4392
+ "appId": {
4393
+ "type": "string"
4394
+ },
4395
+ "description": {
4396
+ "type": "string"
4397
+ }
4398
+ },
4399
+ "required": [
4400
+ "transcoder",
4401
+ "packager",
4402
+ "ingestConfig",
4403
+ "originConfig",
4404
+ "appId",
4405
+ "description"
4406
+ ]
4407
+ },
4408
+ "ComponentClusterCollection": {
4409
+ "type": "object",
4410
+ "properties": {
4411
+ "data": {
4412
+ "readOnly": true,
4413
+ "type": "array",
4414
+ "items": {
4415
+ "$ref": "#/components/schemas/ComponentCluster"
4416
+ }
4417
+ },
4418
+ "count": {
4419
+ "type": "number",
4420
+ "readOnly": true
4421
+ },
4422
+ "total": {
4423
+ "type": "number",
4424
+ "readOnly": true
4425
+ },
4426
+ "page": {
4427
+ "type": "number",
4428
+ "readOnly": true
4429
+ },
4430
+ "perPage": {
4431
+ "type": "number",
4432
+ "readOnly": true
4433
+ }
4434
+ },
4435
+ "required": [
4436
+ "count",
4437
+ "total",
4438
+ "page",
4439
+ "perPage"
4440
+ ]
4441
+ },
4442
+ "UpdateTranscoderToComponentCluster": {
4443
+ "type": "object",
4444
+ "properties": {
4445
+ "id": {
4446
+ "type": "string"
4447
+ },
4448
+ "machineType": {
4449
+ "type": "string"
4450
+ },
4451
+ "networkInterface": {
4452
+ "$ref": "#/components/schemas/NetworkInterface"
4453
+ }
4454
+ },
4455
+ "required": [
4456
+ "id",
4457
+ "machineType"
4458
+ ]
4459
+ },
4460
+ "UpdateTranscoderLiveCluster": {
4461
+ "type": "object",
4462
+ "properties": {
4463
+ "machines": {
4464
+ "type": "array",
4465
+ "items": {
4466
+ "$ref": "#/components/schemas/UpdateTranscoderToComponentCluster"
4467
+ }
4468
+ },
4469
+ "outputNetworkInterface": {
4470
+ "$ref": "#/components/schemas/NetworkInterface"
4471
+ }
4472
+ },
4473
+ "required": [
4474
+ "machines"
4475
+ ]
4476
+ },
4477
+ "UpdatePackagerToComponentCluster": {
4478
+ "type": "object",
4479
+ "properties": {
4480
+ "id": {
4481
+ "type": "string"
4482
+ },
4483
+ "dataRouting": {
4484
+ "type": "string",
4485
+ "pattern": "/^\\/([A-z0-9-_]+\\/)*([A-z0-9-_]+)$/"
4486
+ },
4487
+ "machineType": {
4488
+ "type": "string"
4489
+ },
4490
+ "networkInterface": {
4491
+ "$ref": "#/components/schemas/NetworkInterface"
4492
+ }
4493
+ },
4494
+ "required": [
4495
+ "id",
4496
+ "dataRouting",
4497
+ "machineType"
4498
+ ]
4499
+ },
4500
+ "UpdatePackagerLiveCluster": {
4501
+ "type": "object",
4502
+ "properties": {
4503
+ "machines": {
4504
+ "type": "array",
4505
+ "items": {
4506
+ "$ref": "#/components/schemas/UpdatePackagerToComponentCluster"
4507
+ }
4508
+ },
4509
+ "inputNetworkInterface": {
4510
+ "$ref": "#/components/schemas/NetworkInterface"
4511
+ }
4512
+ },
4513
+ "required": [
4514
+ "machines"
4515
+ ]
4516
+ },
4517
+ "UpdateComponentClusterDto": {
4518
+ "type": "object",
4519
+ "properties": {
4520
+ "name": {
4521
+ "type": "string",
4522
+ "pattern": "/^[a-zA-Z0-9_-]*$/"
4523
+ },
4524
+ "transcoder": {
4525
+ "$ref": "#/components/schemas/UpdateTranscoderLiveCluster"
4526
+ },
4527
+ "packager": {
4528
+ "$ref": "#/components/schemas/UpdatePackagerLiveCluster"
4529
+ },
4530
+ "description": {
4531
+ "type": "string"
4532
+ },
4533
+ "ingestConfig": {
4534
+ "$ref": "#/components/schemas/IngestConfig"
4535
+ },
4536
+ "originConfig": {
4537
+ "$ref": "#/components/schemas/OriginConfig"
4538
+ }
4539
+ },
4540
+ "required": [
4541
+ "name",
4542
+ "transcoder",
4543
+ "packager"
4544
+ ]
4545
+ },
4546
+ "CheckQuotaLimitResult": {
4547
+ "type": "object",
4548
+ "properties": {
4549
+ "overQuota": {
4550
+ "type": "boolean"
4551
+ },
4552
+ "hard": {
4553
+ "type": "number"
4554
+ },
4555
+ "result": {
4556
+ "type": "object"
4557
+ }
4558
+ },
4559
+ "required": [
4560
+ "overQuota",
4561
+ "result"
4562
+ ]
4563
+ },
4564
+ "QuotasResult": {
4565
+ "type": "object",
4566
+ "properties": {
4567
+ "result": {
4568
+ "type": "object"
4569
+ }
4570
+ },
4571
+ "required": [
4572
+ "result"
4573
+ ]
4574
+ },
4575
+ "RegistrationConfig": {
4576
+ "type": "object",
4577
+ "properties": {
4578
+ "seed": {
4579
+ "type": "string"
4580
+ },
4581
+ "jwtToken": {
4582
+ "type": "string"
4583
+ },
4584
+ "appId": {
4585
+ "type": "string"
4586
+ },
4587
+ "server": {
4588
+ "type": "string"
4589
+ },
4590
+ "privateKey": {
4591
+ "type": "string"
4592
+ }
4593
+ },
4594
+ "required": [
4595
+ "seed",
4596
+ "jwtToken",
4597
+ "appId",
4598
+ "server",
4599
+ "privateKey"
4600
+ ]
4601
+ }
4602
+ }
4603
+ }
4604
+ }