joeldelpilar-bxf-manager
- Description:
Streamline your broadcast file management with BXF Manager. Effortlessly edit, format, and store BXF files with cloud support, all within a user-friendly interface! Save time and keep organized.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createJoeldelpilarBxfManagerInstance(context, body) → {JoeldelpilarBxfManager}
- Description:
Create a new BXF Manager instance
Example
import { Context } from '@osaas/client-core';
import { createJoeldelpilarBxfManagerInstance } from '@osaas/client-services';
const ctx = new Context();
const body: JoeldelpilarBxfManagerConfig = { name: 'myinstance', ... };
const instance = await createJoeldelpilarBxfManagerInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
JoeldelpilarBxfManagerConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getJoeldelpilarBxfManagerInstance(context, name) → {JoeldelpilarBxfManager}
- Description:
Get a BXF Manager instance
Example
import { Context } from '@osaas/client-core';
import { getJoeldelpilarBxfManagerInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getJoeldelpilarBxfManagerInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the manager to be retrieved |
Returns:
- Service instance
(async, static) removeJoeldelpilarBxfManagerInstance(context, name)
- Description:
Remove a BXF Manager instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the manager to be removed |