import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WedataCodeFileConfig extends cdktf.TerraformMetaArguments { /** * Code file content. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#code_file_content WedataCodeFile#code_file_content} */ readonly codeFileContent?: string; /** * Code file name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#code_file_name WedataCodeFile#code_file_name} */ readonly codeFileName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#id WedataCodeFile#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; /** * Parent folder path, for example /aaa/bbb/ccc, path header must start with a slash, root directory pass /. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#parent_folder_path WedataCodeFile#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_code_file#project_id WedataCodeFile#project_id} */ readonly projectId: string; /** * code_file_config block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#code_file_config WedataCodeFile#code_file_config} */ readonly codeFileConfig?: WedataCodeFileCodeFileConfig; } export interface WedataCodeFileCodeFileConfigNotebookSessionInfo { /** * Session ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#notebook_session_id WedataCodeFile#notebook_session_id} */ readonly notebookSessionId?: string; /** * Session name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#notebook_session_name WedataCodeFile#notebook_session_name} */ readonly notebookSessionName?: string; } export declare function wedataCodeFileCodeFileConfigNotebookSessionInfoToTerraform(struct?: WedataCodeFileCodeFileConfigNotebookSessionInfoOutputReference | WedataCodeFileCodeFileConfigNotebookSessionInfo): any; export declare function wedataCodeFileCodeFileConfigNotebookSessionInfoToHclTerraform(struct?: WedataCodeFileCodeFileConfigNotebookSessionInfoOutputReference | WedataCodeFileCodeFileConfigNotebookSessionInfo): any; export declare class WedataCodeFileCodeFileConfigNotebookSessionInfoOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): WedataCodeFileCodeFileConfigNotebookSessionInfo | undefined; set internalValue(value: WedataCodeFileCodeFileConfigNotebookSessionInfo | undefined); private _notebookSessionId?; get notebookSessionId(): string; set notebookSessionId(value: string); resetNotebookSessionId(): void; get notebookSessionIdInput(): string; private _notebookSessionName?; get notebookSessionName(): string; set notebookSessionName(value: string); resetNotebookSessionName(): void; get notebookSessionNameInput(): string; } export interface WedataCodeFileCodeFileConfig { /** * Advanced runtime parameters, variable substitution, map-json String,String. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#params WedataCodeFile#params} */ readonly params?: string; /** * notebook_session_info block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#notebook_session_info WedataCodeFile#notebook_session_info} */ readonly notebookSessionInfo?: WedataCodeFileCodeFileConfigNotebookSessionInfo; } export declare function wedataCodeFileCodeFileConfigToTerraform(struct?: WedataCodeFileCodeFileConfigOutputReference | WedataCodeFileCodeFileConfig): any; export declare function wedataCodeFileCodeFileConfigToHclTerraform(struct?: WedataCodeFileCodeFileConfigOutputReference | WedataCodeFileCodeFileConfig): any; export declare class WedataCodeFileCodeFileConfigOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): WedataCodeFileCodeFileConfig | undefined; set internalValue(value: WedataCodeFileCodeFileConfig | undefined); private _params?; get params(): string; set params(value: string); resetParams(): void; get paramsInput(): string; private _notebookSessionInfo; get notebookSessionInfo(): WedataCodeFileCodeFileConfigNotebookSessionInfoOutputReference; putNotebookSessionInfo(value: WedataCodeFileCodeFileConfigNotebookSessionInfo): void; resetNotebookSessionInfo(): void; get notebookSessionInfoInput(): WedataCodeFileCodeFileConfigNotebookSessionInfo; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file tencentcloud_wedata_code_file} */ export declare class WedataCodeFile extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_wedata_code_file"; /** * Generates CDKTF code for importing a WedataCodeFile 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 WedataCodeFile to import * @param importFromId The id of the existing WedataCodeFile that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_code_file#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WedataCodeFile 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_code_file tencentcloud_wedata_code_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 WedataCodeFileConfig */ constructor(scope: Construct, id: string, config: WedataCodeFileConfig); get accessScope(): any; private _codeFileContent?; get codeFileContent(): string; set codeFileContent(value: string); resetCodeFileContent(): void; get codeFileContentInput(): string; get codeFileId(): any; private _codeFileName?; get codeFileName(): string; set codeFileName(value: string); get codeFileNameInput(): 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; get path(): any; private _projectId?; get projectId(): string; set projectId(value: string); get projectIdInput(): string; private _codeFileConfig; get codeFileConfig(): WedataCodeFileCodeFileConfigOutputReference; putCodeFileConfig(value: WedataCodeFileCodeFileConfig): void; resetCodeFileConfig(): void; get codeFileConfigInput(): WedataCodeFileCodeFileConfig; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }