import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface FastedgeTemplateConfig extends cdktf.TerraformMetaArguments { /** * WebAssembly binary id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#binary FastedgeTemplate#binary} */ readonly binary: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#id FastedgeTemplate#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; /** * Instruction how to configure the template. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#long_descr FastedgeTemplate#long_descr} */ readonly longDescr?: string; /** * Template name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#name FastedgeTemplate#name} */ readonly name: string; /** * Short description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#short_descr FastedgeTemplate#short_descr} */ readonly shortDescr?: string; /** * param block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#param FastedgeTemplate#param} */ readonly param?: FastedgeTemplateParam[] | cdktf.IResolvable; } export interface FastedgeTemplateParam { /** * Parameter description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#descr FastedgeTemplate#descr} */ readonly descr?: string; /** * Is parameter mandatory, true/false (false by default). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#mandatory FastedgeTemplate#mandatory} */ readonly mandatory?: boolean | cdktf.IResolvable; /** * Parameter name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#name FastedgeTemplate#name} */ readonly name: string; /** * Parameter type. Possible values are: string, number, date, time, secret. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#type FastedgeTemplate#type} */ readonly type: string; } export declare function fastedgeTemplateParamToTerraform(struct?: FastedgeTemplateParam | cdktf.IResolvable): any; export declare function fastedgeTemplateParamToHclTerraform(struct?: FastedgeTemplateParam | cdktf.IResolvable): any; export declare class FastedgeTemplateParamOutputReference 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(): FastedgeTemplateParam | cdktf.IResolvable | undefined; set internalValue(value: FastedgeTemplateParam | cdktf.IResolvable | undefined); private _descr?; get descr(): string; set descr(value: string); resetDescr(): void; get descrInput(): string; private _mandatory?; get mandatory(): boolean | cdktf.IResolvable; set mandatory(value: boolean | cdktf.IResolvable); resetMandatory(): void; get mandatoryInput(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; } export declare class FastedgeTemplateParamList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: FastedgeTemplateParam[] | 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): FastedgeTemplateParamOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template gcore_fastedge_template} */ export declare class FastedgeTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "gcore_fastedge_template"; /** * Generates CDKTF code for importing a FastedgeTemplate 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 FastedgeTemplate to import * @param importFromId The id of the existing FastedgeTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the FastedgeTemplate 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/g-core/gcore/0.32.5/docs/resources/fastedge_template gcore_fastedge_template} 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 FastedgeTemplateConfig */ constructor(scope: Construct, id: string, config: FastedgeTemplateConfig); private _binary?; get binary(): number; set binary(value: number); get binaryInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _longDescr?; get longDescr(): string; set longDescr(value: string); resetLongDescr(): void; get longDescrInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _shortDescr?; get shortDescr(): string; set shortDescr(value: string); resetShortDescr(): void; get shortDescrInput(): string; private _param; get param(): FastedgeTemplateParamList; putParam(value: FastedgeTemplateParam[] | cdktf.IResolvable): void; resetParam(): void; get paramInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }