import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ScfReservedConcurrencyConfigConfig extends cdktf.TerraformMetaArguments { /** * Specifies the function of which you want to configure the reserved quota. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_reserved_concurrency_config#function_name ScfReservedConcurrencyConfig#function_name} */ readonly functionName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_reserved_concurrency_config#id ScfReservedConcurrencyConfig#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 namespace. Default value: default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_reserved_concurrency_config#namespace ScfReservedConcurrencyConfig#namespace} */ readonly namespace?: string; /** * Reserved memory quota of the function. Note: the upper limit for the total reserved quota of the function is the user's total concurrency memory minus 12800. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_reserved_concurrency_config#reserved_concurrency_mem ScfReservedConcurrencyConfig#reserved_concurrency_mem} */ readonly reservedConcurrencyMem: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_reserved_concurrency_config tencentcloud_scf_reserved_concurrency_config} */ export declare class ScfReservedConcurrencyConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_scf_reserved_concurrency_config"; /** * Generates CDKTF code for importing a ScfReservedConcurrencyConfig 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 ScfReservedConcurrencyConfig to import * @param importFromId The id of the existing ScfReservedConcurrencyConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_reserved_concurrency_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ScfReservedConcurrencyConfig 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/scf_reserved_concurrency_config tencentcloud_scf_reserved_concurrency_config} 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 ScfReservedConcurrencyConfigConfig */ constructor(scope: Construct, id: string, config: ScfReservedConcurrencyConfigConfig); private _functionName?; get functionName(): string; set functionName(value: string); get functionNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _namespace?; get namespace(): string; set namespace(value: string); resetNamespace(): void; get namespaceInput(): string; private _reservedConcurrencyMem?; get reservedConcurrencyMem(): number; set reservedConcurrencyMem(value: number); get reservedConcurrencyMemInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }