mickael-kerjean-filestash

Namespace

mickael-kerjean-filestash

Description:
  • Transform your data management with Filestash, a versatile file manager that integrates seamlessly with multiple cloud services and protocols. Enjoy blazing speed, user-friendly interfaces, and plugin flexibility.

Author:
See:

Methods

(async, static) createMickaelKerjeanFilestashInstance(context, body) → {MickaelKerjeanFilestash}

Description:
  • Create a new Filestash instance

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

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

Open Source Cloud configuration context

body MickaelKerjeanFilestashConfig

Service instance configuration

Returns:
  • Service instance
Type
MickaelKerjeanFilestash

(async, static) getMickaelKerjeanFilestashInstance(context, name) → {MickaelKerjeanFilestash}

Description:
  • Get a Filestash instance

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

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

Open Source Cloud configuration context

name string

Name of the filestash to be retrieved

Returns:
  • Service instance
Type
MickaelKerjeanFilestash

(async, static) removeMickaelKerjeanFilestashInstance(context, name)

Description:
  • Remove a Filestash instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the filestash to be removed