import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudTsfConfigSummaryConfig extends cdktf.TerraformMetaArguments { /** * Application ID. If not passed, the query will be for all. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#application_id DataTencentcloudTsfConfigSummary#application_id} */ readonly applicationId?: string; /** * Config Id List. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#config_id_list DataTencentcloudTsfConfigSummary#config_id_list} */ readonly configIdList?: string[]; /** * config tag list. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#config_tag_list DataTencentcloudTsfConfigSummary#config_tag_list} */ readonly configTagList?: string[]; /** * Whether to disable dataset authentication. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#disable_program_auth_check DataTencentcloudTsfConfigSummary#disable_program_auth_check} */ readonly disableProgramAuthCheck?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#id DataTencentcloudTsfConfigSummary#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; /** * Order term. support Sort by time: creation_time; or Sort by name: config_name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#order_by DataTencentcloudTsfConfigSummary#order_by} */ readonly orderBy?: string; /** * Pass 0 for ascending order and 1 for descending order. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#order_type DataTencentcloudTsfConfigSummary#order_type} */ readonly orderType?: number; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#result_output_file DataTencentcloudTsfConfigSummary#result_output_file} */ readonly resultOutputFile?: string; /** * Query keyword, fuzzy query: application name, configuration item name. If not passed, the query will be for all. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#search_word DataTencentcloudTsfConfigSummary#search_word} */ readonly searchWord?: string; } export interface DataTencentcloudTsfConfigSummaryResultContent { } export declare function dataTencentcloudTsfConfigSummaryResultContentToTerraform(struct?: DataTencentcloudTsfConfigSummaryResultContent): any; export declare function dataTencentcloudTsfConfigSummaryResultContentToHclTerraform(struct?: DataTencentcloudTsfConfigSummaryResultContent): any; export declare class DataTencentcloudTsfConfigSummaryResultContentOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataTencentcloudTsfConfigSummaryResultContent | undefined; set internalValue(value: DataTencentcloudTsfConfigSummaryResultContent | undefined); get applicationId(): any; get applicationName(): any; get configId(): any; get configName(): any; get configType(): any; get configValue(): any; get configVersion(): any; get configVersionCount(): any; get configVersionDesc(): any; get creationTime(): any; get deleteFlag(): any; get lastUpdateTime(): any; } export declare class DataTencentcloudTsfConfigSummaryResultContentList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataTencentcloudTsfConfigSummaryResultContentOutputReference; } export interface DataTencentcloudTsfConfigSummaryResult { } export declare function dataTencentcloudTsfConfigSummaryResultToTerraform(struct?: DataTencentcloudTsfConfigSummaryResult): any; export declare function dataTencentcloudTsfConfigSummaryResultToHclTerraform(struct?: DataTencentcloudTsfConfigSummaryResult): any; export declare class DataTencentcloudTsfConfigSummaryResultOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataTencentcloudTsfConfigSummaryResult | undefined; set internalValue(value: DataTencentcloudTsfConfigSummaryResult | undefined); private _content; get content(): DataTencentcloudTsfConfigSummaryResultContentList; get totalCount(): any; } export declare class DataTencentcloudTsfConfigSummaryResultList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataTencentcloudTsfConfigSummaryResultOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary tencentcloud_tsf_config_summary} */ export declare class DataTencentcloudTsfConfigSummary extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_tsf_config_summary"; /** * Generates CDKTF code for importing a DataTencentcloudTsfConfigSummary 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 DataTencentcloudTsfConfigSummary to import * @param importFromId The id of the existing DataTencentcloudTsfConfigSummary that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tsf_config_summary#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudTsfConfigSummary 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/tsf_config_summary tencentcloud_tsf_config_summary} 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 DataTencentcloudTsfConfigSummaryConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudTsfConfigSummaryConfig); private _applicationId?; get applicationId(): string; set applicationId(value: string); resetApplicationId(): void; get applicationIdInput(): string; private _configIdList?; get configIdList(): string[]; set configIdList(value: string[]); resetConfigIdList(): void; get configIdListInput(): string[]; private _configTagList?; get configTagList(): string[]; set configTagList(value: string[]); resetConfigTagList(): void; get configTagListInput(): string[]; private _disableProgramAuthCheck?; get disableProgramAuthCheck(): boolean | cdktf.IResolvable; set disableProgramAuthCheck(value: boolean | cdktf.IResolvable); resetDisableProgramAuthCheck(): void; get disableProgramAuthCheckInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _orderBy?; get orderBy(): string; set orderBy(value: string); resetOrderBy(): void; get orderByInput(): string; private _orderType?; get orderType(): number; set orderType(value: number); resetOrderType(): void; get orderTypeInput(): number; private _result; get result(): DataTencentcloudTsfConfigSummaryResultList; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _searchWord?; get searchWord(): string; set searchWord(value: string); resetSearchWord(): void; get searchWordInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }