import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudTagKeysConfig extends cdktf.TerraformMetaArguments { /** * Tag type. Valid values: Custom: custom tag; System: system tag; All: all tags. Default value: All. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tag_keys#category DataTencentcloudTagKeys#category} */ readonly category?: string; /** * Creator `Uin`. If not specified, `Uin` is only used as the query condition. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tag_keys#create_uin DataTencentcloudTagKeys#create_uin} */ readonly createUin?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tag_keys#id DataTencentcloudTagKeys#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; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tag_keys#result_output_file DataTencentcloudTagKeys#result_output_file} */ readonly resultOutputFile?: string; /** * Whether to show project. Allow values: 0: no, 1: yes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tag_keys#show_project DataTencentcloudTagKeys#show_project} */ readonly showProject?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tag_keys tencentcloud_tag_keys} */ export declare class DataTencentcloudTagKeys extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_tag_keys"; /** * Generates CDKTF code for importing a DataTencentcloudTagKeys 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 DataTencentcloudTagKeys to import * @param importFromId The id of the existing DataTencentcloudTagKeys that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tag_keys#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudTagKeys 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/tag_keys tencentcloud_tag_keys} 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 DataTencentcloudTagKeysConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudTagKeysConfig); private _category?; get category(): string; set category(value: string); resetCategory(): void; get categoryInput(): string; private _createUin?; get createUin(): number; set createUin(value: number); resetCreateUin(): void; get createUinInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _showProject?; get showProject(): number; set showProject(value: number); resetShowProject(): void; get showProjectInput(): number; get tags(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }