import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudPrivateDnsEndPointsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/private_dns_end_points#id DataTencentcloudPrivateDnsEndPoints#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/private_dns_end_points#result_output_file DataTencentcloudPrivateDnsEndPoints#result_output_file} */ readonly resultOutputFile?: string; /** * filters block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/private_dns_end_points#filters DataTencentcloudPrivateDnsEndPoints#filters} */ readonly filters?: DataTencentcloudPrivateDnsEndPointsFilters[] | cdktf.IResolvable; } export interface DataTencentcloudPrivateDnsEndPointsEndPointSetTags { } export declare function dataTencentcloudPrivateDnsEndPointsEndPointSetTagsToTerraform(struct?: DataTencentcloudPrivateDnsEndPointsEndPointSetTags): any; export declare function dataTencentcloudPrivateDnsEndPointsEndPointSetTagsToHclTerraform(struct?: DataTencentcloudPrivateDnsEndPointsEndPointSetTags): any; export declare class DataTencentcloudPrivateDnsEndPointsEndPointSetTagsOutputReference 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(): DataTencentcloudPrivateDnsEndPointsEndPointSetTags | undefined; set internalValue(value: DataTencentcloudPrivateDnsEndPointsEndPointSetTags | undefined); get tagKey(): any; get tagValue(): any; } export declare class DataTencentcloudPrivateDnsEndPointsEndPointSetTagsList 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): DataTencentcloudPrivateDnsEndPointsEndPointSetTagsOutputReference; } export interface DataTencentcloudPrivateDnsEndPointsEndPointSet { } export declare function dataTencentcloudPrivateDnsEndPointsEndPointSetToTerraform(struct?: DataTencentcloudPrivateDnsEndPointsEndPointSet): any; export declare function dataTencentcloudPrivateDnsEndPointsEndPointSetToHclTerraform(struct?: DataTencentcloudPrivateDnsEndPointsEndPointSet): any; export declare class DataTencentcloudPrivateDnsEndPointsEndPointSetOutputReference 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(): DataTencentcloudPrivateDnsEndPointsEndPointSet | undefined; set internalValue(value: DataTencentcloudPrivateDnsEndPointsEndPointSet | undefined); get endPointId(): any; get endPointName(): any; get endPointServiceId(): any; get endPointVipSet(): any; get regionCode(): any; private _tags; get tags(): DataTencentcloudPrivateDnsEndPointsEndPointSetTagsList; } export declare class DataTencentcloudPrivateDnsEndPointsEndPointSetList 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): DataTencentcloudPrivateDnsEndPointsEndPointSetOutputReference; } export interface DataTencentcloudPrivateDnsEndPointsFilters { /** * Parameter name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/private_dns_end_points#name DataTencentcloudPrivateDnsEndPoints#name} */ readonly name: string; /** * Array of parameter values. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/private_dns_end_points#values DataTencentcloudPrivateDnsEndPoints#values} */ readonly values: string[]; } export declare function dataTencentcloudPrivateDnsEndPointsFiltersToTerraform(struct?: DataTencentcloudPrivateDnsEndPointsFilters | cdktf.IResolvable): any; export declare function dataTencentcloudPrivateDnsEndPointsFiltersToHclTerraform(struct?: DataTencentcloudPrivateDnsEndPointsFilters | cdktf.IResolvable): any; export declare class DataTencentcloudPrivateDnsEndPointsFiltersOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): DataTencentcloudPrivateDnsEndPointsFilters | cdktf.IResolvable | undefined; set internalValue(value: DataTencentcloudPrivateDnsEndPointsFilters | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); get nameInput(): string; private _values?; get values(): string[]; set values(value: string[]); get valuesInput(): string[]; } export declare class DataTencentcloudPrivateDnsEndPointsFiltersList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataTencentcloudPrivateDnsEndPointsFilters[] | cdktf.IResolvable; /** * @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): DataTencentcloudPrivateDnsEndPointsFiltersOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/private_dns_end_points tencentcloud_private_dns_end_points} */ export declare class DataTencentcloudPrivateDnsEndPoints extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_private_dns_end_points"; /** * Generates CDKTF code for importing a DataTencentcloudPrivateDnsEndPoints 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 DataTencentcloudPrivateDnsEndPoints to import * @param importFromId The id of the existing DataTencentcloudPrivateDnsEndPoints that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/private_dns_end_points#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudPrivateDnsEndPoints 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/private_dns_end_points tencentcloud_private_dns_end_points} 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 DataTencentcloudPrivateDnsEndPointsConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudPrivateDnsEndPointsConfig); private _endPointSet; get endPointSet(): DataTencentcloudPrivateDnsEndPointsEndPointSetList; 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 _filters; get filters(): DataTencentcloudPrivateDnsEndPointsFiltersList; putFilters(value: DataTencentcloudPrivateDnsEndPointsFilters[] | cdktf.IResolvable): void; resetFilters(): void; get filtersInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }