import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface Vpc2Config extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/vpc2#description Vpc2#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/vpc2#id Vpc2#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; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/vpc2#ip_block Vpc2#ip_block} */ readonly ipBlock?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/vpc2#ip_type Vpc2#ip_type} */ readonly ipType?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/vpc2#prefix_length Vpc2#prefix_length} */ readonly prefixLength?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/vpc2#region Vpc2#region} */ readonly region: string; } /** * Represents a {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/vpc2 vultr_vpc2} */ export declare class Vpc2 extends cdktf.TerraformResource { static readonly tfResourceType = "vultr_vpc2"; /** * Generates CDKTF code for importing a Vpc2 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 Vpc2 to import * @param importFromId The id of the existing Vpc2 that should be imported. Refer to the {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/vpc2#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Vpc2 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/vultr/vultr/2.28.0/docs/resources/vpc2 vultr_vpc2} 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 Vpc2Config */ constructor(scope: Construct, id: string, config: Vpc2Config); get dateCreated(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ipBlock?; get ipBlock(): string; set ipBlock(value: string); resetIpBlock(): void; get ipBlockInput(): string; private _ipType?; get ipType(): string; set ipType(value: string); resetIpType(): void; get ipTypeInput(): string; private _prefixLength?; get prefixLength(): number; set prefixLength(value: number); resetPrefixLength(): void; get prefixLengthInput(): number; private _region?; get region(): string; set region(value: string); get regionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }