ablindberg-chaosmaker
- Description:
Experience seamless management and enhance video streaming resilience with Chaos Stream Proxy Configurator! Effortlessly handle various network conditions and create chaos configurations through an intuitive interface.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createAblindbergChaosmakerInstance(context, body) → {AblindbergChaosmaker}
- Description:
Create a new Chaos Maker instance
Example
import { Context } from '@osaas/client-core';
import { createAblindbergChaosmakerInstance } from '@osaas/client-services';
const ctx = new Context();
const body: AblindbergChaosmakerConfig = { name: 'myinstance', ... };
const instance = await createAblindbergChaosmakerInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
AblindbergChaosmakerConfig | Service instance configuration |
Returns:
- Service instance
- Type
- AblindbergChaosmaker
(async, static) getAblindbergChaosmakerInstance(context, name) → {AblindbergChaosmaker}
- Description:
Get a Chaos Maker instance
Example
import { Context } from '@osaas/client-core';
import { getAblindbergChaosmakerInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getAblindbergChaosmakerInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the chaosmaker to be retrieved |
Returns:
- Service instance
- Type
- AblindbergChaosmaker
(async, static) removeAblindbergChaosmakerInstance(context, name)
- Description:
Remove a Chaos Maker instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the chaosmaker to be removed |