import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface RumReleaseFileConfig extends cdktf.TerraformMetaArguments { /** * Release file hash. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file#file_hash RumReleaseFile#file_hash} */ readonly fileHash: string; /** * Release file unique key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file#file_key RumReleaseFile#file_key} */ readonly fileKey: string; /** * Release file name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file#file_name RumReleaseFile#file_name} */ readonly fileName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file#id RumReleaseFile#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; /** * Project ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file#project_id RumReleaseFile#project_id} */ readonly projectId: number; /** * Release file id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file#release_file_id RumReleaseFile#release_file_id} */ readonly releaseFileId: number; /** * Release File version. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file#version RumReleaseFile#version} */ readonly version: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file tencentcloud_rum_release_file} */ export declare class RumReleaseFile extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_rum_release_file"; /** * Generates CDKTF code for importing a RumReleaseFile 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 RumReleaseFile to import * @param importFromId The id of the existing RumReleaseFile that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_release_file#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the RumReleaseFile 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/rum_release_file tencentcloud_rum_release_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 RumReleaseFileConfig */ constructor(scope: Construct, id: string, config: RumReleaseFileConfig); private _fileHash?; get fileHash(): string; set fileHash(value: string); get fileHashInput(): string; private _fileKey?; get fileKey(): string; set fileKey(value: string); get fileKeyInput(): string; private _fileName?; get fileName(): string; set fileName(value: string); get fileNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _projectId?; get projectId(): number; set projectId(value: number); get projectIdInput(): number; private _releaseFileId?; get releaseFileId(): number; set releaseFileId(value: number); get releaseFileIdInput(): number; private _version?; get version(): string; set version(value: string); get versionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }