import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudGaapAccessRegionsByDestRegionConfig extends cdktf.TerraformMetaArguments { /** * Origin region. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/gaap_access_regions_by_dest_region#dest_region DataTencentcloudGaapAccessRegionsByDestRegion#dest_region} */ readonly destRegion: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/gaap_access_regions_by_dest_region#id DataTencentcloudGaapAccessRegionsByDestRegion#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; /** * IP version, can be taken as IPv4 or IPv6, with a default value of IPv4. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/gaap_access_regions_by_dest_region#ip_address_version DataTencentcloudGaapAccessRegionsByDestRegion#ip_address_version} */ readonly ipAddressVersion?: string; /** * Channel package type, where Thunder represents a standard proxy group, Accelerator represents a game accelerator proxy, and CrossBorder represents a cross-border proxy. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/gaap_access_regions_by_dest_region#package_type DataTencentcloudGaapAccessRegionsByDestRegion#package_type} */ readonly packageType?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/gaap_access_regions_by_dest_region#result_output_file DataTencentcloudGaapAccessRegionsByDestRegion#result_output_file} */ readonly resultOutputFile?: string; } export interface DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSet { } export declare function dataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSetToTerraform(struct?: DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSet): any; export declare function dataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSetToHclTerraform(struct?: DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSet): any; export declare class DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSetOutputReference 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(): DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSet | undefined; set internalValue(value: DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSet | undefined); get bandwidthList(): any; get concurrentList(): any; get featureBitmap(): any; get idcType(): any; get regionArea(): any; get regionAreaName(): any; get regionId(): any; get regionName(): any; } export declare class DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSetList 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): DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSetOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/gaap_access_regions_by_dest_region tencentcloud_gaap_access_regions_by_dest_region} */ export declare class DataTencentcloudGaapAccessRegionsByDestRegion extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_gaap_access_regions_by_dest_region"; /** * Generates CDKTF code for importing a DataTencentcloudGaapAccessRegionsByDestRegion 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 DataTencentcloudGaapAccessRegionsByDestRegion to import * @param importFromId The id of the existing DataTencentcloudGaapAccessRegionsByDestRegion that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/gaap_access_regions_by_dest_region#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudGaapAccessRegionsByDestRegion 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/gaap_access_regions_by_dest_region tencentcloud_gaap_access_regions_by_dest_region} 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 DataTencentcloudGaapAccessRegionsByDestRegionConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudGaapAccessRegionsByDestRegionConfig); private _accessRegionSet; get accessRegionSet(): DataTencentcloudGaapAccessRegionsByDestRegionAccessRegionSetList; private _destRegion?; get destRegion(): string; set destRegion(value: string); get destRegionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ipAddressVersion?; get ipAddressVersion(): string; set ipAddressVersion(value: string); resetIpAddressVersion(): void; get ipAddressVersionInput(): string; private _packageType?; get packageType(): string; set packageType(value: string); resetPackageType(): void; get packageTypeInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }