import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudIgtmStrategyListConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/igtm_strategy_list#id DataTencentcloudIgtmStrategyList#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; /** * Instance ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/igtm_strategy_list#instance_id DataTencentcloudIgtmStrategyList#instance_id} */ readonly instanceId: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/igtm_strategy_list#result_output_file DataTencentcloudIgtmStrategyList#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/igtm_strategy_list#filters DataTencentcloudIgtmStrategyList#filters} */ readonly filters?: DataTencentcloudIgtmStrategyListFilters[] | cdktf.IResolvable; } export interface DataTencentcloudIgtmStrategyListStrategySetSource { } export declare function dataTencentcloudIgtmStrategyListStrategySetSourceToTerraform(struct?: DataTencentcloudIgtmStrategyListStrategySetSource): any; export declare function dataTencentcloudIgtmStrategyListStrategySetSourceToHclTerraform(struct?: DataTencentcloudIgtmStrategyListStrategySetSource): any; export declare class DataTencentcloudIgtmStrategyListStrategySetSourceOutputReference 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(): DataTencentcloudIgtmStrategyListStrategySetSource | undefined; set internalValue(value: DataTencentcloudIgtmStrategyListStrategySetSource | undefined); get dnsLineId(): any; get name(): any; } export declare class DataTencentcloudIgtmStrategyListStrategySetSourceList 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): DataTencentcloudIgtmStrategyListStrategySetSourceOutputReference; } export interface DataTencentcloudIgtmStrategyListStrategySet { } export declare function dataTencentcloudIgtmStrategyListStrategySetToTerraform(struct?: DataTencentcloudIgtmStrategyListStrategySet): any; export declare function dataTencentcloudIgtmStrategyListStrategySetToHclTerraform(struct?: DataTencentcloudIgtmStrategyListStrategySet): any; export declare class DataTencentcloudIgtmStrategyListStrategySetOutputReference 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(): DataTencentcloudIgtmStrategyListStrategySet | undefined; set internalValue(value: DataTencentcloudIgtmStrategyListStrategySet | undefined); get activateLevel(): any; get activateMainPoolId(): any; get activePoolType(): any; get activeTrafficStrategy(): any; get createdOn(): any; get instanceId(): any; get isEnabled(): any; get keepDomainRecords(): any; get monitorNum(): any; get name(): any; private _source; get source(): DataTencentcloudIgtmStrategyListStrategySetSourceList; get status(): any; get strategyId(): any; get switchPoolType(): any; get updatedOn(): any; } export declare class DataTencentcloudIgtmStrategyListStrategySetList 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): DataTencentcloudIgtmStrategyListStrategySetOutputReference; } export interface DataTencentcloudIgtmStrategyListFilters { /** * Whether to enable fuzzy query, only supports filter field name as domain. * When fuzzy query is enabled, Value maximum length is 1, otherwise Value maximum length is 5. (Reserved field, currently unused). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/igtm_strategy_list#fuzzy DataTencentcloudIgtmStrategyList#fuzzy} */ readonly fuzzy?: boolean | cdktf.IResolvable; /** * Filter field name, supported list as follows: * - type: main resource type, CDN. * - instanceId: IGTM instance ID. This is a required parameter, failure to pass will cause interface query failure. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/igtm_strategy_list#name DataTencentcloudIgtmStrategyList#name} */ readonly name: string; /** * Filter field values. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/igtm_strategy_list#value DataTencentcloudIgtmStrategyList#value} */ readonly value: string[]; } export declare function dataTencentcloudIgtmStrategyListFiltersToTerraform(struct?: DataTencentcloudIgtmStrategyListFilters | cdktf.IResolvable): any; export declare function dataTencentcloudIgtmStrategyListFiltersToHclTerraform(struct?: DataTencentcloudIgtmStrategyListFilters | cdktf.IResolvable): any; export declare class DataTencentcloudIgtmStrategyListFiltersOutputReference 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(): DataTencentcloudIgtmStrategyListFilters | cdktf.IResolvable | undefined; set internalValue(value: DataTencentcloudIgtmStrategyListFilters | cdktf.IResolvable | undefined); private _fuzzy?; get fuzzy(): boolean | cdktf.IResolvable; set fuzzy(value: boolean | cdktf.IResolvable); resetFuzzy(): void; get fuzzyInput(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _value?; get value(): string[]; set value(value: string[]); get valueInput(): string[]; } export declare class DataTencentcloudIgtmStrategyListFiltersList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataTencentcloudIgtmStrategyListFilters[] | 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): DataTencentcloudIgtmStrategyListFiltersOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/igtm_strategy_list tencentcloud_igtm_strategy_list} */ export declare class DataTencentcloudIgtmStrategyList extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_igtm_strategy_list"; /** * Generates CDKTF code for importing a DataTencentcloudIgtmStrategyList 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 DataTencentcloudIgtmStrategyList to import * @param importFromId The id of the existing DataTencentcloudIgtmStrategyList that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/igtm_strategy_list#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudIgtmStrategyList 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/igtm_strategy_list tencentcloud_igtm_strategy_list} 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 DataTencentcloudIgtmStrategyListConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudIgtmStrategyListConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); get instanceIdInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _strategySet; get strategySet(): DataTencentcloudIgtmStrategyListStrategySetList; private _filters; get filters(): DataTencentcloudIgtmStrategyListFiltersList; putFilters(value: DataTencentcloudIgtmStrategyListFilters[] | cdktf.IResolvable): void; resetFilters(): void; get filtersInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }