import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TsfGroupConfig extends cdktf.TerraformMetaArguments { /** * Deployment Group Notes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#alias TsfGroup#alias} */ readonly alias?: string; /** * The application ID to which the group belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#application_id TsfGroup#application_id} */ readonly applicationId: string; /** * Cluster ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#cluster_id TsfGroup#cluster_id} */ readonly clusterId: string; /** * Group description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#group_desc TsfGroup#group_desc} */ readonly groupDesc?: string; /** * Group name field, length 1~60, beginning with a letter or underscore, can contain alphanumeric underscore. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#group_name TsfGroup#group_name} */ readonly groupName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#id TsfGroup#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; /** * ID of the namespace to which the group belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#namespace_id TsfGroup#namespace_id} */ readonly namespaceId: string; /** * Tag description list. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#tags TsfGroup#tags} */ readonly tags?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group tencentcloud_tsf_group} */ export declare class TsfGroup extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tsf_group"; /** * Generates CDKTF code for importing a TsfGroup 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 TsfGroup to import * @param importFromId The id of the existing TsfGroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_group#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TsfGroup 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_group tencentcloud_tsf_group} 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 TsfGroupConfig */ constructor(scope: Construct, id: string, config: TsfGroupConfig); private _alias?; get alias(): string; set alias(value: string); resetAlias(): void; get aliasInput(): string; private _applicationId?; get applicationId(): string; set applicationId(value: string); get applicationIdInput(): string; private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; private _groupDesc?; get groupDesc(): string; set groupDesc(value: string); resetGroupDesc(): void; get groupDescInput(): string; private _groupName?; get groupName(): string; set groupName(value: string); get groupNameInput(): string; get groupResourceType(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _namespaceId?; get namespaceId(): string; set namespaceId(value: string); get namespaceIdInput(): string; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }