import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TeoOriginAclConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#id TeoOriginAcl#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; /** * he list of L4 proxy Instances that require enabling origin ACLs. This list must be empty when the request parameter L4EnableMode is set to 'all'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#l4_proxy_ids TeoOriginAcl#l4_proxy_ids} */ readonly l4ProxyIds?: string[]; /** * The list of L7 acceleration domains that require enabling the origin ACLs. This list must be empty when the request parameter L7EnableMode is set to 'all'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#l7_hosts TeoOriginAcl#l7_hosts} */ readonly l7Hosts?: string[]; /** * Specifies the site ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#zone_id TeoOriginAcl#zone_id} */ readonly zoneId: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#timeouts TeoOriginAcl#timeouts} */ readonly timeouts?: TeoOriginAclTimeouts; } export interface TeoOriginAclTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#create TeoOriginAcl#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#delete TeoOriginAcl#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#update TeoOriginAcl#update} */ readonly update?: string; } export declare function teoOriginAclTimeoutsToTerraform(struct?: TeoOriginAclTimeouts | cdktf.IResolvable): any; export declare function teoOriginAclTimeoutsToHclTerraform(struct?: TeoOriginAclTimeouts | cdktf.IResolvable): any; export declare class TeoOriginAclTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): TeoOriginAclTimeouts | cdktf.IResolvable | undefined; set internalValue(value: TeoOriginAclTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl tencentcloud_teo_origin_acl} */ export declare class TeoOriginAcl extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_teo_origin_acl"; /** * Generates CDKTF code for importing a TeoOriginAcl 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 TeoOriginAcl to import * @param importFromId The id of the existing TeoOriginAcl that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_origin_acl#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TeoOriginAcl 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/teo_origin_acl tencentcloud_teo_origin_acl} 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 TeoOriginAclConfig */ constructor(scope: Construct, id: string, config: TeoOriginAclConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _l4ProxyIds?; get l4ProxyIds(): string[]; set l4ProxyIds(value: string[]); resetL4ProxyIds(): void; get l4ProxyIdsInput(): string[]; private _l7Hosts?; get l7Hosts(): string[]; set l7Hosts(value: string[]); resetL7Hosts(): void; get l7HostsInput(): string[]; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; private _timeouts; get timeouts(): TeoOriginAclTimeoutsOutputReference; putTimeouts(value: TeoOriginAclTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }