import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VultrProviderConfig { /** * The API Key that allows interaction with the API * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs#api_key VultrProvider#api_key} */ readonly apiKey: string; /** * Allows users to set the speed of API calls to work with the Vultr Rate Limit * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs#rate_limit VultrProvider#rate_limit} */ readonly rateLimit?: number; /** * Allows users to set the maximum number of retries allowed for a failed API call. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs#retry_limit VultrProvider#retry_limit} */ readonly retryLimit?: number; /** * Alias name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs#alias VultrProvider#alias} */ readonly alias?: string; } /** * Represents a {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs vultr} */ export declare class VultrProvider extends cdktf.TerraformProvider { static readonly tfResourceType = "vultr"; /** * Generates CDKTF code for importing a VultrProvider resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the VultrProvider to import * @param importFromId The id of the existing VultrProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VultrProvider to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs vultr} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options VultrProviderConfig */ constructor(scope: Construct, id: string, config: VultrProviderConfig); private _apiKey?; get apiKey(): string | undefined; set apiKey(value: string | undefined); get apiKeyInput(): string; private _rateLimit?; get rateLimit(): number | undefined; set rateLimit(value: number | undefined); resetRateLimit(): void; get rateLimitInput(): number; private _retryLimit?; get retryLimit(): number | undefined; set retryLimit(value: number | undefined); resetRetryLimit(): void; get retryLimitInput(): number; private _alias?; get alias(): string | undefined; set alias(value: string | undefined); resetAlias(): void; get aliasInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }