import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CvmExportImagesConfig extends cdktf.TerraformMetaArguments { /** * COS bucket name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#bucket_name CvmExportImages#bucket_name} */ readonly bucketName: string; /** * Check whether the image can be exported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#dry_run CvmExportImages#dry_run} */ readonly dryRun?: boolean | cdktf.IResolvable; /** * Format of the exported image file. Valid values: RAW, QCOW2, VHD and VMDK. Default value: RAW. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#export_format CvmExportImages#export_format} */ readonly exportFormat?: string; /** * Prefix of exported file. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#file_name_prefix CvmExportImages#file_name_prefix} */ readonly fileNamePrefix: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#id CvmExportImages#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; /** * Image ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#image_id CvmExportImages#image_id} */ readonly imageId: string; /** * Whether to export only the system disk. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#only_export_root_disk CvmExportImages#only_export_root_disk} */ readonly onlyExportRootDisk?: boolean | cdktf.IResolvable; /** * Role name (Default: CVM_QcsRole). Before exporting the images, make sure the role exists, and it has write permission to COS. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#role_name CvmExportImages#role_name} */ readonly roleName?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images tencentcloud_cvm_export_images} */ export declare class CvmExportImages extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cvm_export_images"; /** * Generates CDKTF code for importing a CvmExportImages 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 CvmExportImages to import * @param importFromId The id of the existing CvmExportImages that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_export_images#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CvmExportImages 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/cvm_export_images tencentcloud_cvm_export_images} 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 CvmExportImagesConfig */ constructor(scope: Construct, id: string, config: CvmExportImagesConfig); private _bucketName?; get bucketName(): string; set bucketName(value: string); get bucketNameInput(): string; private _dryRun?; get dryRun(): boolean | cdktf.IResolvable; set dryRun(value: boolean | cdktf.IResolvable); resetDryRun(): void; get dryRunInput(): any; private _exportFormat?; get exportFormat(): string; set exportFormat(value: string); resetExportFormat(): void; get exportFormatInput(): string; private _fileNamePrefix?; get fileNamePrefix(): string; set fileNamePrefix(value: string); get fileNamePrefixInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _imageId?; get imageId(): string; set imageId(value: string); get imageIdInput(): string; private _onlyExportRootDisk?; get onlyExportRootDisk(): boolean | cdktf.IResolvable; set onlyExportRootDisk(value: boolean | cdktf.IResolvable); resetOnlyExportRootDisk(): void; get onlyExportRootDiskInput(): any; private _roleName?; get roleName(): string; set roleName(value: string); resetRoleName(): void; get roleNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }