import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WedataScriptConfig extends cdktf.TerraformMetaArguments { /** * Cos bucket name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_script#bucket_name WedataScript#bucket_name} */ readonly bucketName?: string; /** * File Extension Type:jar, sql, zip, py, sh, txt, di, dg, pyspark, kjb, ktr, csv. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_script#file_extension_type WedataScript#file_extension_type} */ readonly fileExtensionType?: string; /** * Cos file path:/datastudio/project/projectId/. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_script#file_path WedataScript#file_path} */ readonly filePath?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_script#id WedataScript#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/wedata_script#project_id WedataScript#project_id} */ readonly projectId?: string; /** * Cos region. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_script#region WedataScript#region} */ readonly region?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_script tencentcloud_wedata_script} */ export declare class WedataScript extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_wedata_script"; /** * Generates CDKTF code for importing a WedataScript 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 WedataScript to import * @param importFromId The id of the existing WedataScript that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_script#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WedataScript 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/wedata_script tencentcloud_wedata_script} 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 WedataScriptConfig = {} */ constructor(scope: Construct, id: string, config?: WedataScriptConfig); private _bucketName?; get bucketName(): string; set bucketName(value: string); resetBucketName(): void; get bucketNameInput(): string; private _fileExtensionType?; get fileExtensionType(): string; set fileExtensionType(value: string); resetFileExtensionType(): void; get fileExtensionTypeInput(): string; private _filePath?; get filePath(): string; set filePath(value: string); resetFilePath(): void; get filePathInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _projectId?; get projectId(): string; set projectId(value: string); resetProjectId(): void; get projectIdInput(): string; private _region?; get region(): string; set region(value: string); resetRegion(): void; get regionInput(): string; get resourceId(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }