UNPKG

@pulumi/digitalocean

Version:

A Pulumi package for creating and managing DigitalOcean cloud resources.

37 lines (36 loc) 1.05 kB
/** * The URL to use for the DigitalOcean API. */ export declare const apiEndpoint: string; /** * The maximum number of retries on a failed API request. */ export declare const httpRetryMax: number | undefined; /** * The maximum wait time (in seconds) between failed API requests. */ export declare const httpRetryWaitMax: number | undefined; /** * The minimum wait time (in seconds) between failed API requests. */ export declare const httpRetryWaitMin: number | undefined; /** * The rate of requests per second to limit the HTTP client. */ export declare const requestsPerSecond: number | undefined; /** * The access key ID for Spaces API operations. */ export declare const spacesAccessId: string | undefined; /** * The URL to use for the DigitalOcean Spaces API. */ export declare const spacesEndpoint: string | undefined; /** * The secret access key for Spaces API operations. */ export declare const spacesSecretKey: string | undefined; /** * The token key for API operations. */ export declare const token: string | undefined;