import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CssDomainRefererConfig extends cdktf.TerraformMetaArguments { /** * Allow blank referers, 0: not allowed, 1: allowed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain_referer#allow_empty CssDomainReferer#allow_empty} */ readonly allowEmpty: number; /** * Domain Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain_referer#domain_name CssDomainReferer#domain_name} */ readonly domainName: string; /** * Whether to enable the referer blacklist authentication of the current domain name,`0`: off, `1`: on. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain_referer#enable CssDomainReferer#enable} */ readonly enable: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain_referer#id CssDomainReferer#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; /** * The list of referers to; separate. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain_referer#rules CssDomainReferer#rules} */ readonly rules: string; /** * List type: 0: blacklist, 1: whitelist. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain_referer#type CssDomainReferer#type} */ readonly type: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain_referer tencentcloud_css_domain_referer} */ export declare class CssDomainReferer extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_css_domain_referer"; /** * Generates CDKTF code for importing a CssDomainReferer 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 CssDomainReferer to import * @param importFromId The id of the existing CssDomainReferer that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_domain_referer#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CssDomainReferer 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_referer tencentcloud_css_domain_referer} 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 CssDomainRefererConfig */ constructor(scope: Construct, id: string, config: CssDomainRefererConfig); private _allowEmpty?; get allowEmpty(): number; set allowEmpty(value: number); get allowEmptyInput(): number; private _domainName?; get domainName(): string; set domainName(value: string); get domainNameInput(): string; private _enable?; get enable(): number; set enable(value: number); get enableInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _rules?; get rules(): string; set rules(value: string); get rulesInput(): string; private _type?; get type(): number; set type(value: number); get typeInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }