import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WedataResourceFileConfig extends cdktf.TerraformMetaArguments { /** * cos bucket name, which can be obtained from the GetResourceCosPath interface. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#bucket_name WedataResourceFile#bucket_name} */ readonly bucketName: string; /** * bundle client ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#bundle_id WedataResourceFile#bundle_id} */ readonly bundleId?: string; /** * bundle client information. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#bundle_info WedataResourceFile#bundle_info} */ readonly bundleInfo?: string; /** * The cos bucket area corresponding to the BucketName bucket. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#cos_region WedataResourceFile#cos_region} */ readonly cosRegion: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#id WedataResourceFile#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; /** * The path to upload resource files in the project, example value: /wedata/qxxxm/, root directory, please use/. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#parent_folder_path WedataResourceFile#parent_folder_path} */ readonly parentFolderPath: string; /** * Project id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#project_id WedataResourceFile#project_id} */ readonly projectId: string; /** * - You can only choose one of the two methods of uploading a file and manually filling. If both are provided, the order of values is file> manual filling value * -the manual filling value must be the existing cos path, /datastudio/resource/is a fixed prefix, projectId is the project ID, and a specific value needs to be passed in, parentFolderPath is the parent folder path, name is the file name, and examples of manual filling value values are: /datastudio/resource/projectId/parentFolderPath/name * . * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#resource_file WedataResourceFile#resource_file} */ readonly resourceFile: string; /** * The resource file name should be consistent with the uploaded file name as much as possible. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#resource_name WedataResourceFile#resource_name} */ readonly resourceName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file tencentcloud_wedata_resource_file} */ export declare class WedataResourceFile extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_wedata_resource_file"; /** * Generates CDKTF code for importing a WedataResourceFile 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 WedataResourceFile to import * @param importFromId The id of the existing WedataResourceFile that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_resource_file#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WedataResourceFile 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_resource_file tencentcloud_wedata_resource_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 WedataResourceFileConfig */ constructor(scope: Construct, id: string, config: WedataResourceFileConfig); private _bucketName?; get bucketName(): string; set bucketName(value: string); get bucketNameInput(): string; private _bundleId?; get bundleId(): string; set bundleId(value: string); resetBundleId(): void; get bundleIdInput(): string; private _bundleInfo?; get bundleInfo(): string; set bundleInfo(value: string); resetBundleInfo(): void; get bundleInfoInput(): string; private _cosRegion?; get cosRegion(): string; set cosRegion(value: string); get cosRegionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _parentFolderPath?; get parentFolderPath(): string; set parentFolderPath(value: string); get parentFolderPathInput(): string; private _projectId?; get projectId(): string; set projectId(value: string); get projectIdInput(): string; private _resourceFile?; get resourceFile(): string; set resourceFile(value: string); get resourceFileInput(): string; private _resourceName?; get resourceName(): string; set resourceName(value: string); get resourceNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }