import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ChdfsFileSystemConfig extends cdktf.TerraformMetaArguments { /** * file system capacity. min 1GB, max 1PB, CapacityQuota is N * 1073741824. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#capacity_quota ChdfsFileSystem#capacity_quota} */ readonly capacityQuota: number; /** * desc of the file system. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#description ChdfsFileSystem#description} */ readonly description?: string; /** * check the ranger address or not. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#enable_ranger ChdfsFileSystem#enable_ranger} */ readonly enableRanger?: boolean | cdktf.IResolvable; /** * file system name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#file_system_name ChdfsFileSystem#file_system_name} */ readonly fileSystemName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#id ChdfsFileSystem#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; /** * check POSIX ACL or not. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#posix_acl ChdfsFileSystem#posix_acl} */ readonly posixAcl: boolean | cdktf.IResolvable; /** * ranger address list, default empty. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#ranger_service_addresses ChdfsFileSystem#ranger_service_addresses} */ readonly rangerServiceAddresses?: string[]; /** * super users of the file system, default empty. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#super_users ChdfsFileSystem#super_users} */ readonly superUsers?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system tencentcloud_chdfs_file_system} */ export declare class ChdfsFileSystem extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_chdfs_file_system"; /** * Generates CDKTF code for importing a ChdfsFileSystem 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 ChdfsFileSystem to import * @param importFromId The id of the existing ChdfsFileSystem that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/chdfs_file_system#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ChdfsFileSystem 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/chdfs_file_system tencentcloud_chdfs_file_system} 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 ChdfsFileSystemConfig */ constructor(scope: Construct, id: string, config: ChdfsFileSystemConfig); private _capacityQuota?; get capacityQuota(): number; set capacityQuota(value: number); get capacityQuotaInput(): number; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _enableRanger?; get enableRanger(): boolean | cdktf.IResolvable; set enableRanger(value: boolean | cdktf.IResolvable); resetEnableRanger(): void; get enableRangerInput(): any; private _fileSystemName?; get fileSystemName(): string; set fileSystemName(value: string); get fileSystemNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _posixAcl?; get posixAcl(): boolean | cdktf.IResolvable; set posixAcl(value: boolean | cdktf.IResolvable); get posixAclInput(): any; private _rangerServiceAddresses?; get rangerServiceAddresses(): string[]; set rangerServiceAddresses(value: string[]); resetRangerServiceAddresses(): void; get rangerServiceAddressesInput(): string[]; private _superUsers?; get superUsers(): string[]; set superUsers(value: string[]); resetSuperUsers(): void; get superUsersInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }