import * as pulumi from "@pulumi/pulumi"; /** * Simple Zone in Proxmox SDN. It will create an isolated VNet bridge. This bridge is not linked to a physical interface, and VM traffic is only local on each the node. It can be used in NAT or routed setups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const example = new proxmoxve.sdn.zone.Simple("example", { * resourceId: "simple1", * nodes: ["pve"], * mtu: 1500, * dns: "1.1.1.1", * dnsZone: "example.com", * ipam: "pve", * reverseDns: "1.1.1.1", * }); * ``` * * ## Import * * !/usr/bin/env sh * Simple SDN zone can be imported using its unique identifier (zone ID) * * ```sh * $ pulumi import proxmoxve:sdn/zone/simple:Simple example simple1 * ``` */ export declare class Simple extends pulumi.CustomResource { /** * Get an existing Simple resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SimpleState, opts?: pulumi.CustomResourceOptions): Simple; /** * Returns true if the given object is an instance of Simple. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Simple; /** * The type of the DHCP backend for this zone. Currently the only supported value is `dnsmasq`. */ readonly dhcp: pulumi.Output; /** * DNS API server address. */ readonly dns: pulumi.Output; /** * DNS domain name. Used to register hostnames, such as `.`. The DNS zone must already exist on the DNS server. */ readonly dnsZone: pulumi.Output; /** * IP Address Management system. */ readonly ipam: pulumi.Output; /** * MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation. */ readonly mtu: pulumi.Output; /** * The Proxmox nodes which the zone and associated VNets should be deployed on */ readonly nodes: pulumi.Output; /** * Indicates if the zone has pending configuration changes that need to be applied. */ readonly pending: pulumi.Output; /** * The unique identifier of the SDN zone. */ readonly resourceId: pulumi.Output; /** * Reverse DNS API server address. */ readonly reverseDns: pulumi.Output; /** * Indicates the current state of the zone. */ readonly state: pulumi.Output; /** * Create a Simple resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: SimpleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Simple resources. */ export interface SimpleState { /** * The type of the DHCP backend for this zone. Currently the only supported value is `dnsmasq`. */ dhcp?: pulumi.Input; /** * DNS API server address. */ dns?: pulumi.Input; /** * DNS domain name. Used to register hostnames, such as `.`. The DNS zone must already exist on the DNS server. */ dnsZone?: pulumi.Input; /** * IP Address Management system. */ ipam?: pulumi.Input; /** * MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation. */ mtu?: pulumi.Input; /** * The Proxmox nodes which the zone and associated VNets should be deployed on */ nodes?: pulumi.Input[] | undefined>; /** * Indicates if the zone has pending configuration changes that need to be applied. */ pending?: pulumi.Input; /** * The unique identifier of the SDN zone. */ resourceId?: pulumi.Input; /** * Reverse DNS API server address. */ reverseDns?: pulumi.Input; /** * Indicates the current state of the zone. */ state?: pulumi.Input; } /** * The set of arguments for constructing a Simple resource. */ export interface SimpleArgs { /** * The type of the DHCP backend for this zone. Currently the only supported value is `dnsmasq`. */ dhcp?: pulumi.Input; /** * DNS API server address. */ dns?: pulumi.Input; /** * DNS domain name. Used to register hostnames, such as `.`. The DNS zone must already exist on the DNS server. */ dnsZone?: pulumi.Input; /** * IP Address Management system. */ ipam?: pulumi.Input; /** * MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation. */ mtu?: pulumi.Input; /** * The Proxmox nodes which the zone and associated VNets should be deployed on */ nodes?: pulumi.Input[] | undefined>; /** * The unique identifier of the SDN zone. */ resourceId: pulumi.Input; /** * Reverse DNS API server address. */ reverseDns?: pulumi.Input; } //# sourceMappingURL=simple.d.ts.map