/** * API key for Nutanix Prism authentication. Can be used as an * alternative to username/password. When set, the X-Ntnx-Api-Key header * will be used instead of Basic Authentication. */ export declare const apiKey: string | undefined; /** * Custom HTTP headers to add to all API requests. Useful for * environments that require additional headers such as Cloudflare Access * service tokens. Headers can also be set via environment variables with * the NUTANIX_HEADER_ prefix (e.g., NUTANIX_HEADER_CF_ACCESS_CLIENT_ID * becomes Cf-Access-Client-Id). Config values take precedence over env vars. */ export declare const customHeaders: { [key: string]: string; } | undefined; /** * URL for Nutanix Prism (e.g IP or FQDN for cluster VIP * note, this is never the data services VIP, and should not be an * individual CVM address, as this would cause calls to fail during * cluster lifecycle management operations, such as AOS upgrades. */ export declare const endpoint: string | undefined; /** * endpoint for foundation VM (eg. Foundation VM IP) */ export declare const foundationEndpoint: string | undefined; /** * Port for foundation VM */ export declare const foundationPort: string | undefined; /** * Explicitly allow the provider to perform "insecure" SSL requests. If omitted,default value is `false` */ export declare const insecure: boolean | undefined; /** * endpoint for Era VM (era ip) */ export declare const ndbEndpoint: string | undefined; export declare const ndbPassword: string | undefined; export declare const ndbUsername: string | undefined; /** * Password for provided user name. */ export declare const password: string | undefined; /** * Port for Nutanix Prism. */ export declare const port: string | undefined; export declare const proxyUrl: string | undefined; /** * Use session authentification instead of basic auth for each request */ export declare const sessionAuth: boolean | undefined; /** * User name for Nutanix Prism. Could be * local cluster auth (e.g. 'admin') or directory auth. */ export declare const username: string | undefined; /** * Set if you know that the creation o update of a resource may take long time (minutes) */ export declare const waitTimeout: number | undefined; //# sourceMappingURL=vars.d.ts.map