import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TsfLaneRuleConfig extends cdktf.TerraformMetaArguments { /** * open state, true/false, default: false. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#enable TsfLaneRule#enable} */ readonly enable: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#id TsfLaneRule#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; /** * lane ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#lane_id TsfLaneRule#lane_id} */ readonly laneId: string; /** * Program id list. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#program_id_list TsfLaneRule#program_id_list} */ readonly programIdList?: string[]; /** * Lane rule notes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#remark TsfLaneRule#remark} */ readonly remark: string; /** * lane rule name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#rule_name TsfLaneRule#rule_name} */ readonly ruleName: string; /** * lane rule label relationship. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#rule_tag_relationship TsfLaneRule#rule_tag_relationship} */ readonly ruleTagRelationship: string; /** * rule_tag_list block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#rule_tag_list TsfLaneRule#rule_tag_list} */ readonly ruleTagList: TsfLaneRuleRuleTagListStruct[] | cdktf.IResolvable; } export interface TsfLaneRuleRuleTagListStruct { /** * creation time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#create_time TsfLaneRule#create_time} */ readonly createTime?: number; /** * lane rule ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#lane_rule_id TsfLaneRule#lane_rule_id} */ readonly laneRuleId?: string; /** * label ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#tag_id TsfLaneRule#tag_id} */ readonly tagId?: string; /** * label name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#tag_name TsfLaneRule#tag_name} */ readonly tagName: string; /** * label operator. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#tag_operator TsfLaneRule#tag_operator} */ readonly tagOperator: string; /** * tag value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#tag_value TsfLaneRule#tag_value} */ readonly tagValue: string; /** * update time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#update_time TsfLaneRule#update_time} */ readonly updateTime?: number; } export declare function tsfLaneRuleRuleTagListStructToTerraform(struct?: TsfLaneRuleRuleTagListStruct | cdktf.IResolvable): any; export declare function tsfLaneRuleRuleTagListStructToHclTerraform(struct?: TsfLaneRuleRuleTagListStruct | cdktf.IResolvable): any; export declare class TsfLaneRuleRuleTagListStructOutputReference 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(): TsfLaneRuleRuleTagListStruct | cdktf.IResolvable | undefined; set internalValue(value: TsfLaneRuleRuleTagListStruct | cdktf.IResolvable | undefined); private _createTime?; get createTime(): number; set createTime(value: number); resetCreateTime(): void; get createTimeInput(): number; private _laneRuleId?; get laneRuleId(): string; set laneRuleId(value: string); resetLaneRuleId(): void; get laneRuleIdInput(): string; private _tagId?; get tagId(): string; set tagId(value: string); resetTagId(): void; get tagIdInput(): string; private _tagName?; get tagName(): string; set tagName(value: string); get tagNameInput(): string; private _tagOperator?; get tagOperator(): string; set tagOperator(value: string); get tagOperatorInput(): string; private _tagValue?; get tagValue(): string; set tagValue(value: string); get tagValueInput(): string; private _updateTime?; get updateTime(): number; set updateTime(value: number); resetUpdateTime(): void; get updateTimeInput(): number; } export declare class TsfLaneRuleRuleTagListStructList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: TsfLaneRuleRuleTagListStruct[] | 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): TsfLaneRuleRuleTagListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule tencentcloud_tsf_lane_rule} */ export declare class TsfLaneRule extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tsf_lane_rule"; /** * Generates CDKTF code for importing a TsfLaneRule 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 TsfLaneRule to import * @param importFromId The id of the existing TsfLaneRule that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_lane_rule#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TsfLaneRule 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/resources/tsf_lane_rule tencentcloud_tsf_lane_rule} Resource * * @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 TsfLaneRuleConfig */ constructor(scope: Construct, id: string, config: TsfLaneRuleConfig); get createTime(): any; private _enable?; get enable(): boolean | cdktf.IResolvable; set enable(value: boolean | cdktf.IResolvable); get enableInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _laneId?; get laneId(): string; set laneId(value: string); get laneIdInput(): string; get priority(): any; private _programIdList?; get programIdList(): string[]; set programIdList(value: string[]); resetProgramIdList(): void; get programIdListInput(): string[]; private _remark?; get remark(): string; set remark(value: string); get remarkInput(): string; get ruleId(): any; private _ruleName?; get ruleName(): string; set ruleName(value: string); get ruleNameInput(): string; private _ruleTagRelationship?; get ruleTagRelationship(): string; set ruleTagRelationship(value: string); get ruleTagRelationshipInput(): string; get updateTime(): any; private _ruleTagList; get ruleTagList(): TsfLaneRuleRuleTagListStructList; putRuleTagList(value: TsfLaneRuleRuleTagListStruct[] | cdktf.IResolvable): void; get ruleTagListInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }