import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DatabaseQuotaConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota#client_id DatabaseQuota#client_id} */ readonly clientId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota#consumer_byte_rate DatabaseQuota#consumer_byte_rate} */ readonly consumerByteRate: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota#database_id DatabaseQuota#database_id} */ readonly databaseId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota#id DatabaseQuota#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota#producer_byte_rate DatabaseQuota#producer_byte_rate} */ readonly producerByteRate: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota#request_percentage DatabaseQuota#request_percentage} */ readonly requestPercentage: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota#user DatabaseQuota#user} */ readonly user: string; } /** * Represents a {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota vultr_database_quota} */ export declare class DatabaseQuota extends cdktf.TerraformResource { static readonly tfResourceType = "vultr_database_quota"; /** * Generates CDKTF code for importing a DatabaseQuota 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 DatabaseQuota to import * @param importFromId The id of the existing DatabaseQuota that should be imported. Refer to the {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/database_quota#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DatabaseQuota 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/resources/database_quota vultr_database_quota} 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 DatabaseQuotaConfig */ constructor(scope: Construct, id: string, config: DatabaseQuotaConfig); private _clientId?; get clientId(): string; set clientId(value: string); get clientIdInput(): string; private _consumerByteRate?; get consumerByteRate(): number; set consumerByteRate(value: number); get consumerByteRateInput(): number; private _databaseId?; get databaseId(): string; set databaseId(value: string); get databaseIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _producerByteRate?; get producerByteRate(): number; set producerByteRate(value: number); get producerByteRateInput(): number; private _requestPercentage?; get requestPercentage(): number; set requestPercentage(value: number); get requestPercentageInput(): number; private _user?; get user(): string; set user(value: string); get userInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }