import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudKmsGetParametersForImportConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/kms_get_parameters_for_import#id DataTencentcloudKmsGetParametersForImport#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; /** * CMK unique identifier. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/kms_get_parameters_for_import#key_id DataTencentcloudKmsGetParametersForImport#key_id} */ readonly keyId: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/kms_get_parameters_for_import#result_output_file DataTencentcloudKmsGetParametersForImport#result_output_file} */ readonly resultOutputFile?: string; /** * Specifies the algorithm for encrypting key material, currently supports RSAES_PKCS1_V1_5, RSAES_OAEP_SHA_1, RSAES_OAEP_SHA_256. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/kms_get_parameters_for_import#wrapping_algorithm DataTencentcloudKmsGetParametersForImport#wrapping_algorithm} */ readonly wrappingAlgorithm: string; /** * Specifies the type of encryption key material, currently only supports RSA_2048. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/kms_get_parameters_for_import#wrapping_key_spec DataTencentcloudKmsGetParametersForImport#wrapping_key_spec} */ readonly wrappingKeySpec: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/kms_get_parameters_for_import tencentcloud_kms_get_parameters_for_import} */ export declare class DataTencentcloudKmsGetParametersForImport extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_kms_get_parameters_for_import"; /** * Generates CDKTF code for importing a DataTencentcloudKmsGetParametersForImport 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 DataTencentcloudKmsGetParametersForImport to import * @param importFromId The id of the existing DataTencentcloudKmsGetParametersForImport that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/kms_get_parameters_for_import#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudKmsGetParametersForImport 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/data-sources/kms_get_parameters_for_import tencentcloud_kms_get_parameters_for_import} Data Source * * @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 DataTencentcloudKmsGetParametersForImportConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudKmsGetParametersForImportConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get importToken(): any; private _keyId?; get keyId(): string; set keyId(value: string); get keyIdInput(): string; get parametersValidTo(): any; get publicKey(): any; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _wrappingAlgorithm?; get wrappingAlgorithm(): string; set wrappingAlgorithm(value: string); get wrappingAlgorithmInput(): string; private _wrappingKeySpec?; get wrappingKeySpec(): string; set wrappingKeySpec(value: string); get wrappingKeySpecInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }