import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BiEmbedTokenApplyConfig extends cdktf.TerraformMetaArguments { /** * Expiration. Unit: Minutes Maximum value: 240. i.e. 4 hours Default: 240. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#expire_time BiEmbedTokenApply#expire_time} */ readonly expireTime?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#id BiEmbedTokenApply#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; /** * Sharing page id, this is empty value 0 when embedding the board. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#page_id BiEmbedTokenApply#page_id} */ readonly pageId?: number; /** * Share project id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#project_id BiEmbedTokenApply#project_id} */ readonly projectId?: number; /** * Page means embedding the page, and panel means embedding the entire board. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#scope BiEmbedTokenApply#scope} */ readonly scope?: string; /** * Access limit, the limit range is 1-99999, if it is empty, no access limit will be set. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#ticket_num BiEmbedTokenApply#ticket_num} */ readonly ticketNum?: number; /** * User enterprise ID (for multi-user only). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#user_corp_id BiEmbedTokenApply#user_corp_id} */ readonly userCorpId?: string; /** * UserId (for multi-user only). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#user_id BiEmbedTokenApply#user_id} */ readonly userId?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply tencentcloud_bi_embed_token_apply} */ export declare class BiEmbedTokenApply extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_bi_embed_token_apply"; /** * Generates CDKTF code for importing a BiEmbedTokenApply 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 BiEmbedTokenApply to import * @param importFromId The id of the existing BiEmbedTokenApply that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/bi_embed_token_apply#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BiEmbedTokenApply 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/bi_embed_token_apply tencentcloud_bi_embed_token_apply} 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 BiEmbedTokenApplyConfig = {} */ constructor(scope: Construct, id: string, config?: BiEmbedTokenApplyConfig); get biToken(): any; get createAt(): any; private _expireTime?; get expireTime(): string; set expireTime(value: string); resetExpireTime(): void; get expireTimeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _pageId?; get pageId(): number; set pageId(value: number); resetPageId(): void; get pageIdInput(): number; private _projectId?; get projectId(): number; set projectId(value: number); resetProjectId(): void; get projectIdInput(): number; private _scope?; get scope(): string; set scope(value: string); resetScope(): void; get scopeInput(): string; private _ticketNum?; get ticketNum(): number; set ticketNum(value: number); resetTicketNum(): void; get ticketNumInput(): number; get udpateAt(): any; private _userCorpId?; get userCorpId(): string; set userCorpId(value: string); resetUserCorpId(): void; get userCorpIdInput(): string; private _userId?; get userId(): string; set userId(value: string); resetUserId(): void; get userIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }