anderswassen-chaosproxy-config
- Description:
Revolutionize your streaming experience with the Chaos Stream Proxy Configurator! Customize HLS streams with precision-timed delays for enhanced content manipulation and control effortlessly.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createAnderswassenChaosproxyConfigInstance(context, body) → {AnderswassenChaosproxyConfig}
- Description:
Create a new Chaos Stream Proxy Configurator instance
Example
import { Context } from '@osaas/client-core';
import { createAnderswassenChaosproxyConfigInstance } from '@osaas/client-services';
const ctx = new Context();
const body: AnderswassenChaosproxyConfigConfig = { name: 'myinstance', ... };
const instance = await createAnderswassenChaosproxyConfigInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
AnderswassenChaosproxyConfigConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getAnderswassenChaosproxyConfigInstance(context, name) → {AnderswassenChaosproxyConfig}
- Description:
Get a Chaos Stream Proxy Configurator instance
Example
import { Context } from '@osaas/client-core';
import { getAnderswassenChaosproxyConfigInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getAnderswassenChaosproxyConfigInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the configurator to be retrieved |
Returns:
- Service instance
(async, static) removeAnderswassenChaosproxyConfigInstance(context, name)
- Description:
Remove a Chaos Stream Proxy Configurator instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the configurator to be removed |