package.dist.src.internal.storage-control-client.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Client SDK for Momento services
The newest version!
import { ListStores } from '..';
import { CreateStore, DeleteStore } from '@gomomento/sdk-core';
import { StorageClientAllProps } from './storage-client-all-props';
export declare class StorageControlClient {
private readonly clientWrapper;
private readonly interceptors;
private static readonly REQUEST_TIMEOUT_MS;
private readonly logger;
private readonly cacheServiceErrorMapper;
/**
* @param {StorageClientProps} props
*/
constructor(props: StorageClientAllProps);
close(): void;
createStore(name: string): Promise;
deleteStore(name: string): Promise;
listStores(): Promise;
}