UNPKG

@cuemby/equinix

Version:

A Pulumi package for creating and managing equinix cloud resources.

32 lines (31 loc) 1.13 kB
/** * The Equinix Metal API auth key for API operations */ export declare const authToken: string | undefined; /** * API Consumer Key available under My Apps section in developer portal */ export declare const clientId: string | undefined; /** * API Consumer secret available under My Apps section in developer portal */ export declare const clientSecret: string | undefined; /** * The Equinix API base URL to point out desired environment. Defaults to https://api.equinix.com */ export declare const endpoint: string | undefined; export declare const maxRetries: number | undefined; export declare const maxRetryWaitSeconds: number | undefined; /** * The duration of time, in seconds, that the Equinix Platform API Client should wait before canceling an API request. * Defaults to 30 */ export declare const requestTimeout: number | undefined; /** * The maximum number of records in a single response for REST queries that produce paginated responses */ export declare const responseMaxPageSize: number | undefined; /** * API token from the developer sandbox */ export declare const token: string | undefined;