import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage the DHCP configuration. * * ## Import * * ```sh * $ pulumi import iosxe:index/dhcp:Dhcp example "Cisco-IOS-XE-native:native/ip/dhcp" * ``` */ export declare class Dhcp extends pulumi.CustomResource { /** * Get an existing Dhcp 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?: DhcpState, opts?: pulumi.CustomResourceOptions): Dhcp; /** * Returns true if the given object is an instance of Dhcp. 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 Dhcp; /** * - Choices: `cisco`, `standard` */ readonly compatibilitySuboptionLinkSelection: pulumi.Output; /** * - Choices: `cisco`, `standard` */ readonly compatibilitySuboptionServerOverride: pulumi.Output; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ readonly deleteMode: pulumi.Output; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * Default option, no vpn */ readonly relayInformationOptionDefault: pulumi.Output; /** * Insert VPN sub-options and change the giaddr to the outgoing interface */ readonly relayInformationOptionVpn: pulumi.Output; /** * Received DHCP packets may contain relay info option with zero giaddr */ readonly relayInformationTrustAll: pulumi.Output; /** * DHCP Snooping */ readonly snooping: pulumi.Output; /** * Use configured hostname for remote id */ readonly snoopingInformationOptionFormatRemoteIdHostname: pulumi.Output; /** * DHCP Snooping vlan */ readonly snoopingVlans: pulumi.Output; /** * Create a Dhcp 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?: DhcpArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Dhcp resources. */ export interface DhcpState { /** * - Choices: `cisco`, `standard` */ compatibilitySuboptionLinkSelection?: pulumi.Input; /** * - Choices: `cisco`, `standard` */ compatibilitySuboptionServerOverride?: pulumi.Input; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ deleteMode?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * Default option, no vpn */ relayInformationOptionDefault?: pulumi.Input; /** * Insert VPN sub-options and change the giaddr to the outgoing interface */ relayInformationOptionVpn?: pulumi.Input; /** * Received DHCP packets may contain relay info option with zero giaddr */ relayInformationTrustAll?: pulumi.Input; /** * DHCP Snooping */ snooping?: pulumi.Input; /** * Use configured hostname for remote id */ snoopingInformationOptionFormatRemoteIdHostname?: pulumi.Input; /** * DHCP Snooping vlan */ snoopingVlans?: pulumi.Input[]>; } /** * The set of arguments for constructing a Dhcp resource. */ export interface DhcpArgs { /** * - Choices: `cisco`, `standard` */ compatibilitySuboptionLinkSelection?: pulumi.Input; /** * - Choices: `cisco`, `standard` */ compatibilitySuboptionServerOverride?: pulumi.Input; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being * managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. * Default value is `all`. - Choices: `all`, `attributes` */ deleteMode?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * Default option, no vpn */ relayInformationOptionDefault?: pulumi.Input; /** * Insert VPN sub-options and change the giaddr to the outgoing interface */ relayInformationOptionVpn?: pulumi.Input; /** * Received DHCP packets may contain relay info option with zero giaddr */ relayInformationTrustAll?: pulumi.Input; /** * DHCP Snooping */ snooping?: pulumi.Input; /** * Use configured hostname for remote id */ snoopingInformationOptionFormatRemoteIdHostname?: pulumi.Input; /** * DHCP Snooping vlan */ snoopingVlans?: pulumi.Input[]>; }