import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IgtmInstanceConfig extends cdktf.TerraformMetaArguments { /** * Access main domain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#access_domain IgtmInstance#access_domain} */ readonly accessDomain: string; /** * Access subdomain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#access_sub_domain IgtmInstance#access_sub_domain} */ readonly accessSubDomain: string; /** * CUSTOM: Custom access domain * SYSTEM: System access domain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#access_type IgtmInstance#access_type} */ readonly accessType: string; /** * Business domain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#domain IgtmInstance#domain} */ readonly domain: string; /** * Resolution effective time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#global_ttl IgtmInstance#global_ttl} */ readonly globalTtl: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#id IgtmInstance#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; /** * Instance name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#instance_name IgtmInstance#instance_name} */ readonly instanceName: string; /** * Package type * FREE: Free version * STANDARD: Standard version * ULTIMATE: Ultimate version. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#package_type IgtmInstance#package_type} */ readonly packageType: string; /** * Remark. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#remark IgtmInstance#remark} */ readonly remark?: string; /** * Package resource ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#resource_id IgtmInstance#resource_id} */ readonly resourceId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance tencentcloud_igtm_instance} */ export declare class IgtmInstance extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_igtm_instance"; /** * Generates CDKTF code for importing a IgtmInstance 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 IgtmInstance to import * @param importFromId The id of the existing IgtmInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/igtm_instance#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the IgtmInstance 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/igtm_instance tencentcloud_igtm_instance} 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 IgtmInstanceConfig */ constructor(scope: Construct, id: string, config: IgtmInstanceConfig); private _accessDomain?; get accessDomain(): string; set accessDomain(value: string); get accessDomainInput(): string; private _accessSubDomain?; get accessSubDomain(): string; set accessSubDomain(value: string); get accessSubDomainInput(): string; private _accessType?; get accessType(): string; set accessType(value: string); get accessTypeInput(): string; private _domain?; get domain(): string; set domain(value: string); get domainInput(): string; private _globalTtl?; get globalTtl(): number; set globalTtl(value: number); get globalTtlInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get instanceId(): any; private _instanceName?; get instanceName(): string; set instanceName(value: string); get instanceNameInput(): string; private _packageType?; get packageType(): string; set packageType(value: string); get packageTypeInput(): string; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; private _resourceId?; get resourceId(): string; set resourceId(value: string); get resourceIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }