import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CssDomainConfig extends cdktf.TerraformMetaArguments { /** * Domain Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#domain_name CssDomain#domain_name} */ readonly domainName: string; /** * Domain type: `0`: push stream. `1`: playback. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#domain_type CssDomain#domain_type} */ readonly domainType: number; /** * Switch. true: enable the specified domain, false: disable the specified domain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#enable CssDomain#enable} */ readonly enable?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#id CssDomain#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; /** * Whether it is LCB: `0`: LVB. `1`: LCB. Default value is 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#is_delay_live CssDomain#is_delay_live} */ readonly isDelayLive?: number; /** * `0`: LVB. `1`: LVB on Mini Program. Note: this field may return null, indicating that no valid values can be obtained. Default value is 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#is_mini_program_live CssDomain#is_mini_program_live} */ readonly isMiniProgramLive?: number; /** * Play Type. This parameter is valid only if `DomainType` is 1. Available values: `1`: in Mainland China. `2`: global. `3`: outside Mainland China. Default value is 1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#play_type CssDomain#play_type} */ readonly playType?: number; /** * Domain name attribution verification type. `dnsCheck`, `fileCheck`, `dbCheck`. The default is `dbCheck`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#verify_owner_type CssDomain#verify_owner_type} */ readonly verifyOwnerType?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain tencentcloud_css_domain} */ export declare class CssDomain extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_css_domain"; /** * Generates CDKTF code for importing a CssDomain 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 CssDomain to import * @param importFromId The id of the existing CssDomain that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CssDomain 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/css_domain tencentcloud_css_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 CssDomainConfig */ constructor(scope: Construct, id: string, config: CssDomainConfig); private _domainName?; get domainName(): string; set domainName(value: string); get domainNameInput(): string; private _domainType?; get domainType(): number; set domainType(value: number); get domainTypeInput(): number; private _enable?; get enable(): boolean | cdktf.IResolvable; set enable(value: boolean | cdktf.IResolvable); resetEnable(): void; get enableInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _isDelayLive?; get isDelayLive(): number; set isDelayLive(value: number); resetIsDelayLive(): void; get isDelayLiveInput(): number; private _isMiniProgramLive?; get isMiniProgramLive(): number; set isMiniProgramLive(value: number); resetIsMiniProgramLive(): void; get isMiniProgramLiveInput(): number; private _playType?; get playType(): number; set playType(value: number); resetPlayType(): void; get playTypeInput(): number; private _verifyOwnerType?; get verifyOwnerType(): string; set verifyOwnerType(value: string); resetVerifyOwnerType(): void; get verifyOwnerTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }