UNPKG

@pulumi/linode

Version:

A Pulumi package for creating and managing linode cloud resources.

82 lines (81 loc) 2.69 kB
/** * The path to a Linode API CA file to trust. */ export declare const apiCaPath: string | undefined; /** * The version of Linode API. */ export declare const apiVersion: string | undefined; /** * The path to the Linode config file to use. (default `~/.config/linode`) */ export declare const configPath: string | undefined; /** * The Linode config profile to use. (default `default`) */ export declare const configProfile: string | undefined; /** * Disable the internal caching system that backs certain Linode API requests. */ export declare const disableInternalCache: boolean | undefined; /** * The rate in milliseconds to poll for events. */ export declare const eventPollMs: number | undefined; /** * The rate in milliseconds to poll for LKE events. */ export declare const lkeEventPollMs: number | undefined; /** * The rate in milliseconds to poll for an LKE node to be ready. */ export declare const lkeNodeReadyPollMs: number | undefined; /** * Maximum delay in milliseconds before retrying a request. */ export declare const maxRetryDelayMs: number | undefined; /** * Minimum delay in milliseconds before retrying a request. */ export declare const minRetryDelayMs: number | undefined; /** * The access key to be used in linode.ObjectStorageBucket and linode_object_storage_object. */ export declare const objAccessKey: string | undefined; /** * If true, when deleting a linode.ObjectStorageBucket any objects and versions will be force deleted. */ export declare const objBucketForceDelete: boolean | undefined; /** * The secret key to be used in linode.ObjectStorageBucket and linode_object_storage_object. */ export declare const objSecretKey: string | undefined; /** * If true, temporary object keys will be created implicitly at apply-time for the linode.ObjectStorageObject and * linodeObjectSorageBucket resource. */ export declare const objUseTempKeys: boolean | undefined; /** * If true, Linode Instances will not be rebooted on config and interface changes. */ export declare const skipImplicitReboots: boolean | undefined; /** * Skip waiting for a linode.Instance resource to finish deleting. */ export declare const skipInstanceDeletePoll: boolean | undefined; /** * Skip waiting for a linode.Instance resource to be running. */ export declare const skipInstanceReadyPoll: boolean | undefined; /** * The token that allows you access to your Linode account */ export declare const token: string | undefined; /** * An HTTP User-Agent Prefix to prepend in API requests. */ export declare const uaPrefix: string | undefined; /** * The HTTP(S) API address of the Linode API to use. */ export declare const url: string | undefined;