import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface GaapGlobalDomainDnsConfig extends cdktf.TerraformMetaArguments { /** * Domain Id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain_dns#domain_id GaapGlobalDomainDns#domain_id} */ readonly domainId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain_dns#id GaapGlobalDomainDns#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; /** * Nation Country Inner Codes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain_dns#nation_country_inner_codes GaapGlobalDomainDns#nation_country_inner_codes} */ readonly nationCountryInnerCodes: string[]; /** * Proxy Id List. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain_dns#proxy_id_list GaapGlobalDomainDns#proxy_id_list} */ readonly proxyIdList: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain_dns tencentcloud_gaap_global_domain_dns} */ export declare class GaapGlobalDomainDns extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_gaap_global_domain_dns"; /** * Generates CDKTF code for importing a GaapGlobalDomainDns 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 GaapGlobalDomainDns to import * @param importFromId The id of the existing GaapGlobalDomainDns that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_global_domain_dns#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the GaapGlobalDomainDns 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_dns tencentcloud_gaap_global_domain_dns} 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 GaapGlobalDomainDnsConfig */ constructor(scope: Construct, id: string, config: GaapGlobalDomainDnsConfig); private _domainId?; get domainId(): string; set domainId(value: string); get domainIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _nationCountryInnerCodes?; get nationCountryInnerCodes(): string[]; set nationCountryInnerCodes(value: string[]); get nationCountryInnerCodesInput(): string[]; private _proxyIdList?; get proxyIdList(): string[]; set proxyIdList(value: string[]); get proxyIdListInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }