import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PtsFileConfig extends cdktf.TerraformMetaArguments { /** * File id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#file_id PtsFile#file_id} */ readonly fileId: string; /** * The first few lines of data. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#head_lines PtsFile#head_lines} */ readonly headLines?: string[]; /** * Meter head. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#header_columns PtsFile#header_columns} */ readonly headerColumns?: string[]; /** * Whether the header is in the file. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#header_in_file PtsFile#header_in_file} */ readonly headerInFile?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#id PtsFile#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; /** * File kind, parameter file-1, protocol file-2, request file-3. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#kind PtsFile#kind} */ readonly kind: number; /** * Line count. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#line_count PtsFile#line_count} */ readonly lineCount?: number; /** * File name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#name PtsFile#name} */ readonly name: string; /** * Project id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#project_id PtsFile#project_id} */ readonly projectId: string; /** * File size. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#size PtsFile#size} */ readonly size: number; /** * The last few lines of data. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#tail_lines PtsFile#tail_lines} */ readonly tailLines?: string[]; /** * File type, folder-folder. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#type PtsFile#type} */ readonly type: string; /** * file_infos block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#file_infos PtsFile#file_infos} */ readonly fileInfos?: PtsFileFileInfos[] | cdktf.IResolvable; } export interface PtsFileFileInfos { /** * File id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#file_id PtsFile#file_id} */ readonly fileId?: string; /** * File name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#name PtsFile#name} */ readonly name?: string; /** * File size. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#size PtsFile#size} */ readonly size?: number; /** * File type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#type PtsFile#type} */ readonly type?: string; /** * Update time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#updated_at PtsFile#updated_at} */ readonly updatedAt?: string; } export declare function ptsFileFileInfosToTerraform(struct?: PtsFileFileInfos | cdktf.IResolvable): any; export declare function ptsFileFileInfosToHclTerraform(struct?: PtsFileFileInfos | cdktf.IResolvable): any; export declare class PtsFileFileInfosOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): PtsFileFileInfos | cdktf.IResolvable | undefined; set internalValue(value: PtsFileFileInfos | cdktf.IResolvable | undefined); private _fileId?; get fileId(): string; set fileId(value: string); resetFileId(): void; get fileIdInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _size?; get size(): number; set size(value: number); resetSize(): void; get sizeInput(): number; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; private _updatedAt?; get updatedAt(): string; set updatedAt(value: string); resetUpdatedAt(): void; get updatedAtInput(): string; } export declare class PtsFileFileInfosList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: PtsFileFileInfos[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): PtsFileFileInfosOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file tencentcloud_pts_file} */ export declare class PtsFile extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_pts_file"; /** * Generates CDKTF code for importing a PtsFile 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 PtsFile to import * @param importFromId The id of the existing PtsFile that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_file#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PtsFile 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/pts_file tencentcloud_pts_file} 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 PtsFileConfig */ constructor(scope: Construct, id: string, config: PtsFileConfig); private _fileId?; get fileId(): string; set fileId(value: string); get fileIdInput(): string; private _headLines?; get headLines(): string[]; set headLines(value: string[]); resetHeadLines(): void; get headLinesInput(): string[]; private _headerColumns?; get headerColumns(): string[]; set headerColumns(value: string[]); resetHeaderColumns(): void; get headerColumnsInput(): string[]; private _headerInFile?; get headerInFile(): boolean | cdktf.IResolvable; set headerInFile(value: boolean | cdktf.IResolvable); resetHeaderInFile(): void; get headerInFileInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _kind?; get kind(): number; set kind(value: number); get kindInput(): number; private _lineCount?; get lineCount(): number; set lineCount(value: number); resetLineCount(): void; get lineCountInput(): number; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _projectId?; get projectId(): string; set projectId(value: string); get projectIdInput(): string; private _size?; get size(): number; set size(value: number); get sizeInput(): number; private _tailLines?; get tailLines(): string[]; set tailLines(value: string[]); resetTailLines(): void; get tailLinesInput(): string[]; private _type?; get type(): string; set type(value: string); get typeInput(): string; private _fileInfos; get fileInfos(): PtsFileFileInfosList; putFileInfos(value: PtsFileFileInfos[] | cdktf.IResolvable): void; resetFileInfos(): void; get fileInfosInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }