import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface GaapGlobalDomainConfig extends cdktf.TerraformMetaArguments { /** * alias. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain#alias GaapGlobalDomain#alias} */ readonly alias?: string; /** * Domain name default entry. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain#default_value GaapGlobalDomain#default_value} */ readonly defaultValue: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain#id GaapGlobalDomain#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; /** * Domain Name Project ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain#project_id GaapGlobalDomain#project_id} */ readonly projectId: number; /** * Global domain statue. Available values: open and close, default is open. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain#status GaapGlobalDomain#status} */ readonly status?: string; /** * Instance tags. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain#tags GaapGlobalDomain#tags} */ readonly tags?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain tencentcloud_gaap_global_domain} */ export declare class GaapGlobalDomain extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_gaap_global_domain"; /** * Generates CDKTF code for importing a GaapGlobalDomain 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 GaapGlobalDomain to import * @param importFromId The id of the existing GaapGlobalDomain that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the GaapGlobalDomain 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/gaap_global_domain tencentcloud_gaap_global_domain} 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 GaapGlobalDomainConfig */ constructor(scope: Construct, id: string, config: GaapGlobalDomainConfig); private _alias?; get alias(): string; set alias(value: string); resetAlias(): void; get aliasInput(): string; private _defaultValue?; get defaultValue(): string; set defaultValue(value: string); get defaultValueInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _projectId?; get projectId(): number; set projectId(value: number); get projectIdInput(): number; private _status?; get status(): string; set status(value: string); resetStatus(): void; get statusInput(): 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; }; }