import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface FastedgeAppConfig 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_app#binary FastedgeApp#binary} */ readonly binary?: number; /** * Application comment. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#comment FastedgeApp#comment} */ readonly comment?: string; /** * Logging enabled. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#debug FastedgeApp#debug} */ readonly debug?: boolean | cdktf.IResolvable; /** * Environment variables. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#env FastedgeApp#env} */ readonly env?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#id FastedgeApp#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; /** * Application name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#name FastedgeApp#name} */ readonly name?: string; /** * Response headers. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#rsp_headers FastedgeApp#rsp_headers} */ readonly rspHeaders?: { [key: string]: string; }; /** * Secret variables. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#secrets FastedgeApp#secrets} */ readonly secrets?: { [key: string]: number; }; /** * Status code. Possible values are: enabled, disabled, suspended. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#status FastedgeApp#status} */ readonly status: string; /** * Application template id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#template FastedgeApp#template} */ readonly template?: number; } /** * Represents a {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app gcore_fastedge_app} */ export declare class FastedgeApp extends cdktf.TerraformResource { static readonly tfResourceType = "gcore_fastedge_app"; /** * Generates CDKTF code for importing a FastedgeApp 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 FastedgeApp to import * @param importFromId The id of the existing FastedgeApp that should be imported. Refer to the {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/fastedge_app#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the FastedgeApp 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_app gcore_fastedge_app} 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 FastedgeAppConfig */ constructor(scope: Construct, id: string, config: FastedgeAppConfig); private _binary?; get binary(): number; set binary(value: number); resetBinary(): void; get binaryInput(): number; private _comment?; get comment(): string; set comment(value: string); resetComment(): void; get commentInput(): string; private _debug?; get debug(): boolean | cdktf.IResolvable; set debug(value: boolean | cdktf.IResolvable); resetDebug(): void; get debugInput(): any; private _env?; get env(): { [key: string]: string; }; set env(value: { [key: string]: string; }); resetEnv(): void; get envInput(): { [key: string]: string; }; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _rspHeaders?; get rspHeaders(): { [key: string]: string; }; set rspHeaders(value: { [key: string]: string; }); resetRspHeaders(): void; get rspHeadersInput(): { [key: string]: string; }; private _secrets?; get secrets(): { [key: string]: number; }; set secrets(value: { [key: string]: number; }); resetSecrets(): void; get secretsInput(): { [key: string]: number; }; private _status?; get status(): string; set status(value: string); get statusInput(): string; private _template?; get template(): number; set template(value: number); resetTemplate(): void; get templateInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }