Skip to main content

StorageServiceClientI

Api Code Documentation / Exports / service/Client_storage_service.h / StorageServiceClientI

service/Client_storage_service.h.StorageServiceClientI

Implemented by#

Table of contents#

Methods#

Methods#

downloadObject#

â–¸ downloadObject(id, secret): Promise<Type<StorageObject>>

Download an object using the matching secret

Parameters#

NameTypeDescription
idstringid of object stored
secretstringsecret to access the object's data

Returns#

Promise<Type<StorageObject>>

Defined in#

src/service/Client_storage_service.h.ts:46


getVersion#

â–¸ getVersion(): Promise<Version>

Get version of conncted storage service

Returns#

Promise<Version>

Defined in#

src/service/Client_storage_service.h.ts:31


isReady#

â–¸ isReady(): Promise<boolean>

Get readiness sattus of storage service

Returns#

Promise<boolean>

Defined in#

src/service/Client_storage_service.h.ts:26


uploadObject#

â–¸ uploadObject(id, name, data): Promise<Type<UploadResponse>>

Upload an object using the

Parameters#

NameTypeDescription
idstringid of object
namestringname of object
datastringcontent of uploaded object base64 encoded

Returns#

Promise<Type<UploadResponse>>

Defined in#

src/service/Client_storage_service.h.ts:39