birme-bucket-commander
- Description:
Manage your S3 buckets effortlessly with Bucket Commander, offering a Norton Commander-inspired dual-pane interface. Experience seamless navigation, secure credential management, and quick file operations.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createBirmeBucketCommanderInstance(context, body) → {BirmeBucketCommander}
- Description:
Create a new Bucket Commander instance
Example
import { Context } from '@osaas/client-core';
import { createBirmeBucketCommanderInstance } from '@osaas/client-services';
const ctx = new Context();
const body: BirmeBucketCommanderConfig = { name: 'myinstance', ... };
const instance = await createBirmeBucketCommanderInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
BirmeBucketCommanderConfig | Service instance configuration |
Returns:
- Service instance
- Type
- BirmeBucketCommander
(async, static) getBirmeBucketCommanderInstance(context, name) → {BirmeBucketCommander}
- Description:
Get a Bucket Commander instance
Example
import { Context } from '@osaas/client-core';
import { getBirmeBucketCommanderInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getBirmeBucketCommanderInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the commander to be retrieved |
Returns:
- Service instance
- Type
- BirmeBucketCommander
(async, static) removeBirmeBucketCommanderInstance(context, name)
- Description:
Remove a Bucket Commander instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the commander to be removed |