automatisch-automatisch
- Description:
Transform your business with Automatisch, the open-source automation tool that seamlessly connects apps like Twitter, Slack, and more. Enhance efficiency and maintain data control with ease and flexibility.
- Copyright:
- 2025 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createAutomatischAutomatischInstance(context, body) → {AutomatischAutomatisch}
- Description:
Create a new Automatisch instance
Example
import { Context } from '@osaas/client-core';
import { createAutomatischAutomatischInstance } from '@osaas/client-services';
const ctx = new Context();
const body: AutomatischAutomatischConfig = { name: 'myinstance', ... };
const instance = await createAutomatischAutomatischInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
AutomatischAutomatischConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getAutomatischAutomatischInstance(context, name) → {AutomatischAutomatisch}
- Description:
Get a Automatisch instance
Example
import { Context } from '@osaas/client-core';
import { getAutomatischAutomatischInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getAutomatischAutomatischInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the automatisch to be retrieved |
Returns:
- Service instance
(async, static) removeAutomatischAutomatischInstance(context, name)
- Description:
Remove a Automatisch instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the automatisch to be removed |