import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TcssClusterAccessConfig extends cdktf.TerraformMetaArguments { /** * Cluster Id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcss_cluster_access#cluster_id TcssClusterAccess#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcss_cluster_access#id TcssClusterAccess#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 to enable cluster defend status. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcss_cluster_access#switch_on TcssClusterAccess#switch_on} */ readonly switchOn?: boolean | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcss_cluster_access#timeouts TcssClusterAccess#timeouts} */ readonly timeouts?: TcssClusterAccessTimeouts; } export interface TcssClusterAccessTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcss_cluster_access#create TcssClusterAccess#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcss_cluster_access#delete TcssClusterAccess#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcss_cluster_access#update TcssClusterAccess#update} */ readonly update?: string; } export declare function tcssClusterAccessTimeoutsToTerraform(struct?: TcssClusterAccessTimeouts | cdktf.IResolvable): any; export declare function tcssClusterAccessTimeoutsToHclTerraform(struct?: TcssClusterAccessTimeouts | cdktf.IResolvable): any; export declare class TcssClusterAccessTimeoutsOutputReference 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(): TcssClusterAccessTimeouts | cdktf.IResolvable | undefined; set internalValue(value: TcssClusterAccessTimeouts | 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/tcss_cluster_access tencentcloud_tcss_cluster_access} */ export declare class TcssClusterAccess extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tcss_cluster_access"; /** * Generates CDKTF code for importing a TcssClusterAccess 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 TcssClusterAccess to import * @param importFromId The id of the existing TcssClusterAccess that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcss_cluster_access#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TcssClusterAccess 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/tcss_cluster_access tencentcloud_tcss_cluster_access} 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 TcssClusterAccessConfig */ constructor(scope: Construct, id: string, config: TcssClusterAccessConfig); get accessedStatus(): any; private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; get defenderStatus(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _switchOn?; get switchOn(): boolean | cdktf.IResolvable; set switchOn(value: boolean | cdktf.IResolvable); resetSwitchOn(): void; get switchOnInput(): any; private _timeouts; get timeouts(): TcssClusterAccessTimeoutsOutputReference; putTimeouts(value: TcssClusterAccessTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }