olawalejuwonm-anomalydetector

Namespace

olawalejuwonm-anomalydetector

Description:
  • Safeguard your space with Anomaly Detector, a cutting-edge video surveillance solution. Experience real-time anomaly detection using advanced computer vision, ensuring privacy and reducing false alarms. Enhance security efficiently!

Author:

Methods

(async, static) createOlawalejuwonmAnomalydetectorInstance(context, body) → {OlawalejuwonmAnomalydetector}

Description:
  • Create a new Anomaly Detector instance

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

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

Open Source Cloud configuration context

body OlawalejuwonmAnomalydetectorConfig

Service instance configuration

Returns:
  • Service instance
Type
OlawalejuwonmAnomalydetector

(async, static) getOlawalejuwonmAnomalydetectorInstance(context, name) → {OlawalejuwonmAnomalydetector}

Description:
  • Get a Anomaly Detector instance

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

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

Open Source Cloud configuration context

name string

Name of the anomalydetector to be retrieved

Returns:
  • Service instance
Type
OlawalejuwonmAnomalydetector

(async, static) removeOlawalejuwonmAnomalydetectorInstance(context, name)

Description:
  • Remove a Anomaly Detector instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the anomalydetector to be removed