import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PrivateNetworkConfig extends cdktf.TerraformMetaArguments { /** * A free-form text describing the network. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#description PrivateNetwork#description} */ readonly description?: string; /** * (For managed Privnets) The first/last IPv4 addresses used by the DHCP service for dynamic leases. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#end_ip PrivateNetwork#end_ip} */ readonly endIp?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#id PrivateNetwork#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 map of key/value labels. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#labels PrivateNetwork#labels} */ readonly labels?: { [key: string]: string; }; /** * The private network name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#name PrivateNetwork#name} */ readonly name: string; /** * (For managed Privnets) The network mask defining the IPv4 network allowed for static leases. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#netmask PrivateNetwork#netmask} */ readonly netmask?: string; /** * (For managed Privnets) The first/last IPv4 addresses used by the DHCP service for dynamic leases. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#start_ip PrivateNetwork#start_ip} */ readonly startIp?: string; /** * ❗ The Exoscale [Zone](https://www.exoscale.com/datacenters/) name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#zone PrivateNetwork#zone} */ readonly zone: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#timeouts PrivateNetwork#timeouts} */ readonly timeouts?: PrivateNetworkTimeouts; } export interface PrivateNetworkTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#create PrivateNetwork#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#delete PrivateNetwork#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#read PrivateNetwork#read} */ readonly read?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#update PrivateNetwork#update} */ readonly update?: string; } export declare function privateNetworkTimeoutsToTerraform(struct?: PrivateNetworkTimeouts | cdktf.IResolvable): any; export declare function privateNetworkTimeoutsToHclTerraform(struct?: PrivateNetworkTimeouts | cdktf.IResolvable): any; export declare class PrivateNetworkTimeoutsOutputReference 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(): PrivateNetworkTimeouts | cdktf.IResolvable | undefined; set internalValue(value: PrivateNetworkTimeouts | 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 _read?; get read(): string; set read(value: string); resetRead(): void; get readInput(): string; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network exoscale_private_network} */ export declare class PrivateNetwork extends cdktf.TerraformResource { static readonly tfResourceType = "exoscale_private_network"; /** * Generates CDKTF code for importing a PrivateNetwork 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 PrivateNetwork to import * @param importFromId The id of the existing PrivateNetwork that should be imported. Refer to the {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/resources/private_network#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PrivateNetwork 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/exoscale/exoscale/0.67.1/docs/resources/private_network exoscale_private_network} 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 PrivateNetworkConfig */ constructor(scope: Construct, id: string, config: PrivateNetworkConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _endIp?; get endIp(): string; set endIp(value: string); resetEndIp(): void; get endIpInput(): 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); get nameInput(): string; private _netmask?; get netmask(): string; set netmask(value: string); resetNetmask(): void; get netmaskInput(): string; private _startIp?; get startIp(): string; set startIp(value: string); resetStartIp(): void; get startIpInput(): string; private _zone?; get zone(): string; set zone(value: string); get zoneInput(): string; private _timeouts; get timeouts(): PrivateNetworkTimeoutsOutputReference; putTimeouts(value: PrivateNetworkTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }