import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MysqlDbImportJobOperationConfig extends cdktf.TerraformMetaArguments { /** * The name of the imported target database, if it is not passed, it means that no database is specified. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation#cos_url MysqlDbImportJobOperation#cos_url} */ readonly cosUrl?: string; /** * The name of the imported target database, if it is not passed, it means that no database is specified. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation#db_name MysqlDbImportJobOperation#db_name} */ readonly dbName?: string; /** * file name. This file refers to the file that the user has uploaded to Tencent Cloud, and only .sql files are supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation#file_name MysqlDbImportJobOperation#file_name} */ readonly fileName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation#id MysqlDbImportJobOperation#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; /** * The instance ID, in the format: cdb-c1nl9rpv, is the same as the instance ID displayed on the cloud database console page. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation#instance_id MysqlDbImportJobOperation#instance_id} */ readonly instanceId: string; /** * The password of the user account of the cloud database instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation#password MysqlDbImportJobOperation#password} */ readonly password?: string; /** * The username of the cloud database. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation#user MysqlDbImportJobOperation#user} */ readonly user: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation tencentcloud_mysql_db_import_job_operation} */ export declare class MysqlDbImportJobOperation extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_mysql_db_import_job_operation"; /** * Generates CDKTF code for importing a MysqlDbImportJobOperation 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 MysqlDbImportJobOperation to import * @param importFromId The id of the existing MysqlDbImportJobOperation that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MysqlDbImportJobOperation 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/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_db_import_job_operation tencentcloud_mysql_db_import_job_operation} 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 MysqlDbImportJobOperationConfig */ constructor(scope: Construct, id: string, config: MysqlDbImportJobOperationConfig); get asyncRequestId(): any; private _cosUrl?; get cosUrl(): string; set cosUrl(value: string); resetCosUrl(): void; get cosUrlInput(): string; private _dbName?; get dbName(): string; set dbName(value: string); resetDbName(): void; get dbNameInput(): string; private _fileName?; get fileName(): string; set fileName(value: string); resetFileName(): void; get fileNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); get instanceIdInput(): string; private _password?; get password(): string; set password(value: string); resetPassword(): void; get passwordInput(): string; private _user?; get user(): string; set user(value: string); get userInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }