UNPKG

netstorage

Version:

A TypeScript API and CLI for the Akamai NetStorage REST interface

12 lines (11 loc) 565 B
import type { NetStorageClientConfig } from '../index'; /** * @typedef NetStorageClientconfig * Represents the configuration config required to make NetStorage requests. * * @property {string} host - The NetStorage API host (e.g., 'example-nsu.akamaihd.net'). * @property {string} key - The API key used for authentication. * @property {string} keyName - The name associated with the API key. * @property {boolean} ssl - Whether to use HTTPS (true) or HTTP (false). */ export declare function buildUri(config: NetStorageClientConfig, path: string): string;