import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TeoFunctionRuntimeEnvironmentConfig extends cdktf.TerraformMetaArguments { /** * ID of the Function. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment#function_id TeoFunctionRuntimeEnvironment#function_id} */ readonly functionId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment#id TeoFunctionRuntimeEnvironment#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; /** * ID of the site. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment#zone_id TeoFunctionRuntimeEnvironment#zone_id} */ readonly zoneId: string; /** * environment_variables block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment#environment_variables TeoFunctionRuntimeEnvironment#environment_variables} */ readonly environmentVariables: TeoFunctionRuntimeEnvironmentEnvironmentVariables[] | cdktf.IResolvable; } export interface TeoFunctionRuntimeEnvironmentEnvironmentVariables { /** * The name of the variable, which is limited to alphanumeric characters and the special characters `@`, `.`, `-`, and `_`. It can have a maximum of 64 bytes and should not be duplicated. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment#key TeoFunctionRuntimeEnvironment#key} */ readonly key: string; /** * The type of the variable can have the following values: - `string`: Represents a string type. - `json`: Represents a JSON object type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment#type TeoFunctionRuntimeEnvironment#type} */ readonly type: string; /** * The value of the variable, which is limited to a maximum of 5000 bytes. The default value is empty. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment#value TeoFunctionRuntimeEnvironment#value} */ readonly value: string; } export declare function teoFunctionRuntimeEnvironmentEnvironmentVariablesToTerraform(struct?: TeoFunctionRuntimeEnvironmentEnvironmentVariables | cdktf.IResolvable): any; export declare function teoFunctionRuntimeEnvironmentEnvironmentVariablesToHclTerraform(struct?: TeoFunctionRuntimeEnvironmentEnvironmentVariables | cdktf.IResolvable): any; export declare class TeoFunctionRuntimeEnvironmentEnvironmentVariablesOutputReference 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(): TeoFunctionRuntimeEnvironmentEnvironmentVariables | cdktf.IResolvable | undefined; set internalValue(value: TeoFunctionRuntimeEnvironmentEnvironmentVariables | cdktf.IResolvable | undefined); private _key?; get key(): string; set key(value: string); get keyInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; private _value?; get value(): string; set value(value: string); get valueInput(): string; } export declare class TeoFunctionRuntimeEnvironmentEnvironmentVariablesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: TeoFunctionRuntimeEnvironmentEnvironmentVariables[] | 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): TeoFunctionRuntimeEnvironmentEnvironmentVariablesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment tencentcloud_teo_function_runtime_environment} */ export declare class TeoFunctionRuntimeEnvironment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_teo_function_runtime_environment"; /** * Generates CDKTF code for importing a TeoFunctionRuntimeEnvironment 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 TeoFunctionRuntimeEnvironment to import * @param importFromId The id of the existing TeoFunctionRuntimeEnvironment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_function_runtime_environment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TeoFunctionRuntimeEnvironment 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/teo_function_runtime_environment tencentcloud_teo_function_runtime_environment} 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 TeoFunctionRuntimeEnvironmentConfig */ constructor(scope: Construct, id: string, config: TeoFunctionRuntimeEnvironmentConfig); private _functionId?; get functionId(): string; set functionId(value: string); get functionIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; private _environmentVariables; get environmentVariables(): TeoFunctionRuntimeEnvironmentEnvironmentVariablesList; putEnvironmentVariables(value: TeoFunctionRuntimeEnvironmentEnvironmentVariables[] | cdktf.IResolvable): void; get environmentVariablesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }