import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WedataFunctionConfig extends cdktf.TerraformMetaArguments { /** * Class name of function entry. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#class_name WedataFunction#class_name} */ readonly className: string; /** * Cluster ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#cluster_identifier WedataFunction#cluster_identifier} */ readonly clusterIdentifier: string; /** * Comment. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#comment WedataFunction#comment} */ readonly comment: string; /** * Database name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#db_name WedataFunction#db_name} */ readonly dbName: string; /** * Description of the function. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#description WedataFunction#description} */ readonly description: string; /** * Example of the function. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#example WedataFunction#example} */ readonly example: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#id WedataFunction#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; /** * Function Kind, Enum: ANALYSIS, ENCRYPTION, AGGREGATE, LOGIC, DATE_AND_TIME, MATH, CONVERSION, STRING, IP_AND_DOMAIN, WINDOW, OTHER. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#kind WedataFunction#kind} */ readonly kind: string; /** * Function Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#name WedataFunction#name} */ readonly name: string; /** * Description of the Parameter. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#param_desc WedataFunction#param_desc} */ readonly paramDesc: string; /** * Project ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#project_id WedataFunction#project_id} */ readonly projectId: string; /** * Description of the Return value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#return_desc WedataFunction#return_desc} */ readonly returnDesc: string; /** * Function Type, Enum: HIVE, SPARK, DLC. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#type WedataFunction#type} */ readonly type: string; /** * Usage of the function. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#usage WedataFunction#usage} */ readonly usage: string; /** * resource_list block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#resource_list WedataFunction#resource_list} */ readonly resourceList: WedataFunctionResourceListStruct[] | cdktf.IResolvable; } export interface WedataFunctionResourceListStruct { /** * Resource ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#id WedataFunction#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; /** * Resource MD5 Value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#md5 WedataFunction#md5} */ readonly md5?: string; /** * Resource Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#name WedataFunction#name} */ readonly name: string; /** * Resource Path. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#path WedataFunction#path} */ readonly path: string; /** * Resource Type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#type WedataFunction#type} */ readonly type?: string; } export declare function wedataFunctionResourceListStructToTerraform(struct?: WedataFunctionResourceListStruct | cdktf.IResolvable): any; export declare function wedataFunctionResourceListStructToHclTerraform(struct?: WedataFunctionResourceListStruct | cdktf.IResolvable): any; export declare class WedataFunctionResourceListStructOutputReference 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(): WedataFunctionResourceListStruct | cdktf.IResolvable | undefined; set internalValue(value: WedataFunctionResourceListStruct | cdktf.IResolvable | undefined); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _md5?; get md5(): string; set md5(value: string); resetMd5(): void; get md5Input(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _path?; get path(): string; set path(value: string); get pathInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; } export declare class WedataFunctionResourceListStructList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: WedataFunctionResourceListStruct[] | 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): WedataFunctionResourceListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function tencentcloud_wedata_function} */ export declare class WedataFunction extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_wedata_function"; /** * Generates CDKTF code for importing a WedataFunction 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 WedataFunction to import * @param importFromId The id of the existing WedataFunction that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/wedata_function#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WedataFunction 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_function tencentcloud_wedata_function} 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 WedataFunctionConfig */ constructor(scope: Construct, id: string, config: WedataFunctionConfig); private _className?; get className(): string; set className(value: string); get classNameInput(): string; private _clusterIdentifier?; get clusterIdentifier(): string; set clusterIdentifier(value: string); get clusterIdentifierInput(): string; private _comment?; get comment(): string; set comment(value: string); get commentInput(): string; private _dbName?; get dbName(): string; set dbName(value: string); get dbNameInput(): string; private _description?; get description(): string; set description(value: string); get descriptionInput(): string; private _example?; get example(): string; set example(value: string); get exampleInput(): string; get functionId(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _kind?; get kind(): string; set kind(value: string); get kindInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _paramDesc?; get paramDesc(): string; set paramDesc(value: string); get paramDescInput(): string; private _projectId?; get projectId(): string; set projectId(value: string); get projectIdInput(): string; private _returnDesc?; get returnDesc(): string; set returnDesc(value: string); get returnDescInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; private _usage?; get usage(): string; set usage(value: string); get usageInput(): string; private _resourceList; get resourceList(): WedataFunctionResourceListStructList; putResourceList(value: WedataFunctionResourceListStruct[] | cdktf.IResolvable): void; get resourceListInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }