eyevinn-tams-gateway

Namespace

eyevinn-tams-gateway

Description:
  • Revolutionize your media management with TAMS Gateway—effortlessly store and index segmented media flows. Enhance efficiency and access powerfully with an integrated database and flexible service support.

Author:
See:

Methods

(async, static) createEyevinnTamsGatewayInstance(context, body) → {EyevinnTamsGateway}

Description:
  • Create a new TAMS Gateway instance

Example
import { Context } from '@osaas/client-core';
import { createEyevinnTamsGatewayInstance } from '@osaas/client-services';

const ctx = new Context();
const body: EyevinnTamsGatewayConfig = { name: 'myinstance', ... };
const instance = await createEyevinnTamsGatewayInstance(ctx, body);
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

body EyevinnTamsGatewayConfig

Service instance configuration

Returns:
  • Service instance
Type
EyevinnTamsGateway

(async, static) getEyevinnTamsGatewayInstance(context, name) → {EyevinnTamsGateway}

Description:
  • Get a TAMS Gateway instance

Example
import { Context } from '@osaas/client-core';
import { getEyevinnTamsGatewayInstance } from '@osaas/client-services';

const ctx = new Context();
const instance = await getEyevinnTamsGatewayInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the gateway to be retrieved

Returns:
  • Service instance
Type
EyevinnTamsGateway

(async, static) removeEyevinnTamsGatewayInstance(context, name)

Description:
  • Remove a TAMS Gateway instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the gateway to be removed