import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpcGatewayConfig extends cdktf.TerraformMetaArguments { /** * The resource description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#description VpcGateway#description} */ readonly description?: string; /** * The folder identifier that resource belongs to. If it is not provided, the default provider `folder-id` is used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#folder_id VpcGateway#folder_id} */ readonly folderId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#id VpcGateway#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; /** * A set of key/value label pairs which assigned to resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#labels VpcGateway#labels} */ readonly labels?: { [key: string]: string; }; /** * The resource name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#name VpcGateway#name} */ readonly name?: string; /** * shared_egress_gateway block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#shared_egress_gateway VpcGateway#shared_egress_gateway} */ readonly sharedEgressGateway?: VpcGatewaySharedEgressGateway; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#timeouts VpcGateway#timeouts} */ readonly timeouts?: VpcGatewayTimeouts; } export interface VpcGatewaySharedEgressGateway { } export declare function vpcGatewaySharedEgressGatewayToTerraform(struct?: VpcGatewaySharedEgressGatewayOutputReference | VpcGatewaySharedEgressGateway): any; export declare function vpcGatewaySharedEgressGatewayToHclTerraform(struct?: VpcGatewaySharedEgressGatewayOutputReference | VpcGatewaySharedEgressGateway): any; export declare class VpcGatewaySharedEgressGatewayOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): VpcGatewaySharedEgressGateway | undefined; set internalValue(value: VpcGatewaySharedEgressGateway | undefined); } export interface VpcGatewayTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#create VpcGateway#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#delete VpcGateway#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#update VpcGateway#update} */ readonly update?: string; } export declare function vpcGatewayTimeoutsToTerraform(struct?: VpcGatewayTimeouts | cdktf.IResolvable): any; export declare function vpcGatewayTimeoutsToHclTerraform(struct?: VpcGatewayTimeouts | cdktf.IResolvable): any; export declare class VpcGatewayTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): VpcGatewayTimeouts | cdktf.IResolvable | undefined; set internalValue(value: VpcGatewayTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway yandex_vpc_gateway} */ export declare class VpcGateway extends cdktf.TerraformResource { static readonly tfResourceType = "yandex_vpc_gateway"; /** * Generates CDKTF code for importing a VpcGateway 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 VpcGateway to import * @param importFromId The id of the existing VpcGateway that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VpcGateway 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/yandex-cloud/yandex/0.177.0/docs/resources/vpc_gateway yandex_vpc_gateway} 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 VpcGatewayConfig = {} */ constructor(scope: Construct, id: string, config?: VpcGatewayConfig); get createdAt(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _folderId?; get folderId(): string; set folderId(value: string); resetFolderId(): void; get folderIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; }; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _sharedEgressGateway; get sharedEgressGateway(): VpcGatewaySharedEgressGatewayOutputReference; putSharedEgressGateway(value: VpcGatewaySharedEgressGateway): void; resetSharedEgressGateway(): void; get sharedEgressGatewayInput(): VpcGatewaySharedEgressGateway; private _timeouts; get timeouts(): VpcGatewayTimeoutsOutputReference; putTimeouts(value: VpcGatewayTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }