UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

541 lines (540 loc) 17.9 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a Service LAN VPN Interface SVI Feature. * - Minimum SD-WAN Manager version: `20.12.0` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "service_lan_vpn_interface_svi_feature_id,feature_profile_id,service_lan_vpn_feature_id" * * ```sh * $ pulumi import sdwan:index/serviceLanVpnInterfaceSviFeature:ServiceLanVpnInterfaceSviFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037" * ``` */ export declare class ServiceLanVpnInterfaceSviFeature extends pulumi.CustomResource { /** * Get an existing ServiceLanVpnInterfaceSviFeature 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<pulumi.ID>, state?: ServiceLanVpnInterfaceSviFeatureState, opts?: pulumi.CustomResourceOptions): ServiceLanVpnInterfaceSviFeature; /** * Returns true if the given object is an instance of ServiceLanVpnInterfaceSviFeature. 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 ServiceLanVpnInterfaceSviFeature; readonly aclIpv4EgressFeatureId: pulumi.Output<string | undefined>; readonly aclIpv4IngressFeatureId: pulumi.Output<string | undefined>; readonly aclIpv6EgressFeatureId: pulumi.Output<string | undefined>; readonly aclIpv6IngressFeatureId: pulumi.Output<string | undefined>; /** * Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: `0`-`2678400` - Default value: `1200` */ readonly arpTimeout: pulumi.Output<number | undefined>; /** * Variable name */ readonly arpTimeoutVariable: pulumi.Output<string | undefined>; /** * Configure static ARP entries */ readonly arps: pulumi.Output<outputs.ServiceLanVpnInterfaceSviFeatureArp[] | undefined>; /** * The description of the Feature */ readonly description: pulumi.Output<string | undefined>; /** * Enable DHCPv6 - Default value: `false` */ readonly enableDhcpv6: pulumi.Output<boolean | undefined>; /** * Variable name */ readonly enableDhcpv6Variable: pulumi.Output<string | undefined>; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output<string>; /** * ICMP/ICMPv6 Redirect Disable - Default value: `true` */ readonly icmpRedirectDisable: pulumi.Output<boolean | undefined>; /** * Variable name */ readonly icmpRedirectDisableVariable: pulumi.Output<string | undefined>; /** * Interface description */ readonly interfaceDescription: pulumi.Output<string | undefined>; /** * Variable name */ readonly interfaceDescriptionVariable: pulumi.Output<string | undefined>; /** * Interface MTU <1500..9216> in bytes - Range: `1500`-`9216` - Default value: `1500` */ readonly interfaceMtu: pulumi.Output<number | undefined>; /** * Variable name */ readonly interfaceMtuVariable: pulumi.Output<string | undefined>; /** * Interface name: VLAN 1 - VLAN 4094 when present */ readonly interfaceName: pulumi.Output<string | undefined>; /** * Variable name */ readonly interfaceNameVariable: pulumi.Output<string | undefined>; /** * IP Directed-Broadcast - Default value: `false` */ readonly ipDirectedBroadcast: pulumi.Output<boolean | undefined>; /** * Variable name */ readonly ipDirectedBroadcastVariable: pulumi.Output<string | undefined>; /** * IP MTU <576..Interface MTU>, in bytes - Range: `576`-`9216` - Default value: `1500` */ readonly ipMtu: pulumi.Output<number | undefined>; /** * Variable name */ readonly ipMtuVariable: pulumi.Output<string | undefined>; /** * IP Address */ readonly ipv4Address: pulumi.Output<string | undefined>; /** * Variable name */ readonly ipv4AddressVariable: pulumi.Output<string | undefined>; /** * List of DHCP helper addresses */ readonly ipv4DhcpHelpers: pulumi.Output<string[] | undefined>; /** * Variable name */ readonly ipv4DhcpHelpersVariable: pulumi.Output<string | undefined>; /** * Assign secondary IP addresses */ readonly ipv4SecondaryAddresses: pulumi.Output<outputs.ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress[] | undefined>; /** * Subnet Mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, * `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, * `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, * `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, * `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0` */ readonly ipv4SubnetMask: pulumi.Output<string | undefined>; /** * Variable name */ readonly ipv4SubnetMaskVariable: pulumi.Output<string | undefined>; /** * Enable ipv4 VRRP */ readonly ipv4Vrrps: pulumi.Output<outputs.ServiceLanVpnInterfaceSviFeatureIpv4Vrrp[] | undefined>; /** * Assign IPv6 address */ readonly ipv6Address: pulumi.Output<string | undefined>; /** * Variable name */ readonly ipv6AddressVariable: pulumi.Output<string | undefined>; /** * DHCPv6 Helper */ readonly ipv6DhcpHelpers: pulumi.Output<outputs.ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper[] | undefined>; /** * Assign secondary IPv6 addresses */ readonly ipv6SecondaryAddresses: pulumi.Output<outputs.ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress[] | undefined>; /** * Enable ipv6 VRRP */ readonly ipv6Vrrps: pulumi.Output<outputs.ServiceLanVpnInterfaceSviFeatureIpv6Vrrp[] | undefined>; /** * The name of the Feature */ readonly name: pulumi.Output<string>; /** * Service LAN VPN Feature ID */ readonly serviceLanVpnFeatureId: pulumi.Output<string>; /** * Administrative state - Default value: `true` */ readonly shutdown: pulumi.Output<boolean | undefined>; /** * Variable name */ readonly shutdownVariable: pulumi.Output<string | undefined>; /** * TCP MSS on SYN packets, in bytes - Range: `552`-`1960` */ readonly tcpMss: pulumi.Output<number | undefined>; /** * Variable name */ readonly tcpMssVariable: pulumi.Output<string | undefined>; /** * The version of the Feature */ readonly version: pulumi.Output<number>; /** * Create a ServiceLanVpnInterfaceSviFeature 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: ServiceLanVpnInterfaceSviFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServiceLanVpnInterfaceSviFeature resources. */ export interface ServiceLanVpnInterfaceSviFeatureState { aclIpv4EgressFeatureId?: pulumi.Input<string>; aclIpv4IngressFeatureId?: pulumi.Input<string>; aclIpv6EgressFeatureId?: pulumi.Input<string>; aclIpv6IngressFeatureId?: pulumi.Input<string>; /** * Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: `0`-`2678400` - Default value: `1200` */ arpTimeout?: pulumi.Input<number>; /** * Variable name */ arpTimeoutVariable?: pulumi.Input<string>; /** * Configure static ARP entries */ arps?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureArp>[]>; /** * The description of the Feature */ description?: pulumi.Input<string>; /** * Enable DHCPv6 - Default value: `false` */ enableDhcpv6?: pulumi.Input<boolean>; /** * Variable name */ enableDhcpv6Variable?: pulumi.Input<string>; /** * Feature Profile ID */ featureProfileId?: pulumi.Input<string>; /** * ICMP/ICMPv6 Redirect Disable - Default value: `true` */ icmpRedirectDisable?: pulumi.Input<boolean>; /** * Variable name */ icmpRedirectDisableVariable?: pulumi.Input<string>; /** * Interface description */ interfaceDescription?: pulumi.Input<string>; /** * Variable name */ interfaceDescriptionVariable?: pulumi.Input<string>; /** * Interface MTU <1500..9216> in bytes - Range: `1500`-`9216` - Default value: `1500` */ interfaceMtu?: pulumi.Input<number>; /** * Variable name */ interfaceMtuVariable?: pulumi.Input<string>; /** * Interface name: VLAN 1 - VLAN 4094 when present */ interfaceName?: pulumi.Input<string>; /** * Variable name */ interfaceNameVariable?: pulumi.Input<string>; /** * IP Directed-Broadcast - Default value: `false` */ ipDirectedBroadcast?: pulumi.Input<boolean>; /** * Variable name */ ipDirectedBroadcastVariable?: pulumi.Input<string>; /** * IP MTU <576..Interface MTU>, in bytes - Range: `576`-`9216` - Default value: `1500` */ ipMtu?: pulumi.Input<number>; /** * Variable name */ ipMtuVariable?: pulumi.Input<string>; /** * IP Address */ ipv4Address?: pulumi.Input<string>; /** * Variable name */ ipv4AddressVariable?: pulumi.Input<string>; /** * List of DHCP helper addresses */ ipv4DhcpHelpers?: pulumi.Input<pulumi.Input<string>[]>; /** * Variable name */ ipv4DhcpHelpersVariable?: pulumi.Input<string>; /** * Assign secondary IP addresses */ ipv4SecondaryAddresses?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress>[]>; /** * Subnet Mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, * `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, * `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, * `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, * `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0` */ ipv4SubnetMask?: pulumi.Input<string>; /** * Variable name */ ipv4SubnetMaskVariable?: pulumi.Input<string>; /** * Enable ipv4 VRRP */ ipv4Vrrps?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv4Vrrp>[]>; /** * Assign IPv6 address */ ipv6Address?: pulumi.Input<string>; /** * Variable name */ ipv6AddressVariable?: pulumi.Input<string>; /** * DHCPv6 Helper */ ipv6DhcpHelpers?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper>[]>; /** * Assign secondary IPv6 addresses */ ipv6SecondaryAddresses?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress>[]>; /** * Enable ipv6 VRRP */ ipv6Vrrps?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv6Vrrp>[]>; /** * The name of the Feature */ name?: pulumi.Input<string>; /** * Service LAN VPN Feature ID */ serviceLanVpnFeatureId?: pulumi.Input<string>; /** * Administrative state - Default value: `true` */ shutdown?: pulumi.Input<boolean>; /** * Variable name */ shutdownVariable?: pulumi.Input<string>; /** * TCP MSS on SYN packets, in bytes - Range: `552`-`1960` */ tcpMss?: pulumi.Input<number>; /** * Variable name */ tcpMssVariable?: pulumi.Input<string>; /** * The version of the Feature */ version?: pulumi.Input<number>; } /** * The set of arguments for constructing a ServiceLanVpnInterfaceSviFeature resource. */ export interface ServiceLanVpnInterfaceSviFeatureArgs { aclIpv4EgressFeatureId?: pulumi.Input<string>; aclIpv4IngressFeatureId?: pulumi.Input<string>; aclIpv6EgressFeatureId?: pulumi.Input<string>; aclIpv6IngressFeatureId?: pulumi.Input<string>; /** * Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: `0`-`2678400` - Default value: `1200` */ arpTimeout?: pulumi.Input<number>; /** * Variable name */ arpTimeoutVariable?: pulumi.Input<string>; /** * Configure static ARP entries */ arps?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureArp>[]>; /** * The description of the Feature */ description?: pulumi.Input<string>; /** * Enable DHCPv6 - Default value: `false` */ enableDhcpv6?: pulumi.Input<boolean>; /** * Variable name */ enableDhcpv6Variable?: pulumi.Input<string>; /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * ICMP/ICMPv6 Redirect Disable - Default value: `true` */ icmpRedirectDisable?: pulumi.Input<boolean>; /** * Variable name */ icmpRedirectDisableVariable?: pulumi.Input<string>; /** * Interface description */ interfaceDescription?: pulumi.Input<string>; /** * Variable name */ interfaceDescriptionVariable?: pulumi.Input<string>; /** * Interface MTU <1500..9216> in bytes - Range: `1500`-`9216` - Default value: `1500` */ interfaceMtu?: pulumi.Input<number>; /** * Variable name */ interfaceMtuVariable?: pulumi.Input<string>; /** * Interface name: VLAN 1 - VLAN 4094 when present */ interfaceName?: pulumi.Input<string>; /** * Variable name */ interfaceNameVariable?: pulumi.Input<string>; /** * IP Directed-Broadcast - Default value: `false` */ ipDirectedBroadcast?: pulumi.Input<boolean>; /** * Variable name */ ipDirectedBroadcastVariable?: pulumi.Input<string>; /** * IP MTU <576..Interface MTU>, in bytes - Range: `576`-`9216` - Default value: `1500` */ ipMtu?: pulumi.Input<number>; /** * Variable name */ ipMtuVariable?: pulumi.Input<string>; /** * IP Address */ ipv4Address?: pulumi.Input<string>; /** * Variable name */ ipv4AddressVariable?: pulumi.Input<string>; /** * List of DHCP helper addresses */ ipv4DhcpHelpers?: pulumi.Input<pulumi.Input<string>[]>; /** * Variable name */ ipv4DhcpHelpersVariable?: pulumi.Input<string>; /** * Assign secondary IP addresses */ ipv4SecondaryAddresses?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress>[]>; /** * Subnet Mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, * `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, * `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, * `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, * `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0` */ ipv4SubnetMask?: pulumi.Input<string>; /** * Variable name */ ipv4SubnetMaskVariable?: pulumi.Input<string>; /** * Enable ipv4 VRRP */ ipv4Vrrps?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv4Vrrp>[]>; /** * Assign IPv6 address */ ipv6Address?: pulumi.Input<string>; /** * Variable name */ ipv6AddressVariable?: pulumi.Input<string>; /** * DHCPv6 Helper */ ipv6DhcpHelpers?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper>[]>; /** * Assign secondary IPv6 addresses */ ipv6SecondaryAddresses?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress>[]>; /** * Enable ipv6 VRRP */ ipv6Vrrps?: pulumi.Input<pulumi.Input<inputs.ServiceLanVpnInterfaceSviFeatureIpv6Vrrp>[]>; /** * The name of the Feature */ name?: pulumi.Input<string>; /** * Service LAN VPN Feature ID */ serviceLanVpnFeatureId: pulumi.Input<string>; /** * Administrative state - Default value: `true` */ shutdown?: pulumi.Input<boolean>; /** * Variable name */ shutdownVariable?: pulumi.Input<string>; /** * TCP MSS on SYN packets, in bytes - Range: `552`-`1960` */ tcpMss?: pulumi.Input<number>; /** * Variable name */ tcpMssVariable?: pulumi.Input<string>; }