import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage a Service LAN VPN Interface GRE Feature. * - Minimum SD-WAN Manager version: `20.15.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.ServiceLanVpnInterfaceGreFeature("example", { * name: "Example", * description: "My Example", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037", * interfaceName: "gre1", * interfaceDescription: "gre1", * ipv4Address: "70.1.1.1", * ipv4SubnetMask: "255.255.255.0", * shutdown: true, * tunnelProtection: false, * tunnelMode: "ipv4", * tunnelSourceIpv4Address: "78.1.1.1", * tunnelDestinationIpv4Address: "79.1.1.1", * ipv4Mtu: 1500, * ipv4TcpMss: 1460, * clearDontFragment: false, * dpdInterval: 10, * dpdRetries: 3, * ikeVersion: 1, * ikeMode: "main", * ikeRekeyInterval: 14400, * ikeCiphersuite: "aes256-cbc-sha1", * ikeGroup: "16", * preSharedSecret: "123", * ikeLocalId: "xxx", * ikeRemoteId: "xxx", * ipsecRekeyInterval: 3600, * ipsecReplayWindow: 512, * ipsecCiphersuite: "aes256-gcm", * perfectForwardSecrecy: "group-16", * applicationTunnelType: "none", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "service_lan_vpn_interface_gre_feature_id,feature_profile_id,service_lan_vpn_feature_id" * * ```sh * $ pulumi import sdwan:index/serviceLanVpnInterfaceGreFeature:ServiceLanVpnInterfaceGreFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037" * ``` */ export declare class ServiceLanVpnInterfaceGreFeature extends pulumi.CustomResource { /** * Get an existing ServiceLanVpnInterfaceGreFeature 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?: ServiceLanVpnInterfaceGreFeatureState, opts?: pulumi.CustomResourceOptions): ServiceLanVpnInterfaceGreFeature; /** * Returns true if the given object is an instance of ServiceLanVpnInterfaceGreFeature. 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 ServiceLanVpnInterfaceGreFeature; /** * Enable Application Tunnel Type * - Choices: `none`, `sig` */ readonly applicationTunnelType: pulumi.Output; /** * Variable name */ readonly applicationTunnelTypeVariable: pulumi.Output; /** * Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) * - Default value: `false` */ readonly clearDontFragment: pulumi.Output; /** * Variable name */ readonly clearDontFragmentVariable: pulumi.Output; /** * The description of the Feature */ readonly description: pulumi.Output; /** * IKE keepalive interval (seconds) * - Range: `10`-`3600` * - Default value: `10` */ readonly dpdInterval: pulumi.Output; /** * Variable name */ readonly dpdIntervalVariable: pulumi.Output; /** * IKE keepalive retries * - Range: `2`-`60` * - Default value: `3` */ readonly dpdRetries: pulumi.Output; /** * Variable name */ readonly dpdRetriesVariable: pulumi.Output; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output; /** * IKE identity the IKE preshared secret belongs to * - Choices: `aes256-cbc-sha1`, `aes256-cbc-sha2`, `aes128-cbc-sha1`, `aes128-cbc-sha2` * - Default value: `aes256-cbc-sha1` */ readonly ikeCiphersuite: pulumi.Output; /** * Variable name */ readonly ikeCiphersuiteVariable: pulumi.Output; /** * IKE Diffie Hellman Groups * - Choices: `2`, `14`, `15`, `16`, `19`, `20`, `21`, `24` * - Default value: `16` */ readonly ikeGroup: pulumi.Output; /** * Variable name */ readonly ikeGroupVariable: pulumi.Output; /** * IKE ID for the local endpoint. Input IPv4 address, domain name, or email address */ readonly ikeLocalId: pulumi.Output; /** * Variable name */ readonly ikeLocalIdVariable: pulumi.Output; /** * IKE integrity protocol * - Choices: `main`, `aggressive` * - Default value: `main` */ readonly ikeMode: pulumi.Output; /** * Variable name */ readonly ikeModeVariable: pulumi.Output; /** * IKE rekey interval <60..86400> seconds * - Range: `60`-`86400` * - Default value: `14400` */ readonly ikeRekeyInterval: pulumi.Output; /** * Variable name */ readonly ikeRekeyIntervalVariable: pulumi.Output; /** * IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address */ readonly ikeRemoteId: pulumi.Output; /** * Variable name */ readonly ikeRemoteIdVariable: pulumi.Output; /** * IKE Version <1..2> * - Range: `1`-`2` * - Default value: `1` */ readonly ikeVersion: pulumi.Output; /** * Interface description */ readonly interfaceDescription: pulumi.Output; /** * Variable name */ readonly interfaceDescriptionVariable: pulumi.Output; /** * Interface name (1..255) */ readonly interfaceName: pulumi.Output; /** * Variable name */ readonly interfaceNameVariable: pulumi.Output; /** * IPsec(ESP) encryption and integrity protocol * - Choices: `aes256-cbc-sha1`, `aes256-cbc-sha384`, `aes256-cbc-sha256`, `aes256-cbc-sha512`, `aes256-gcm`, `null-sha1`, `null-sha384`, `null-sha256`, `null-sha512` * - Default value: `aes256-gcm` */ readonly ipsecCiphersuite: pulumi.Output; /** * Variable name */ readonly ipsecCiphersuiteVariable: pulumi.Output; /** * IPsec rekey interval <300..1209600> seconds * - Range: `120`-`2592000` * - Default value: `3600` */ readonly ipsecRekeyInterval: pulumi.Output; /** * Variable name */ readonly ipsecRekeyIntervalVariable: pulumi.Output; /** * Replay window size 32..8192 (must be a power of 2) * - Range: `64`-`4096` * - Default value: `512` */ readonly ipsecReplayWindow: pulumi.Output; /** * Variable name */ readonly ipsecReplayWindowVariable: pulumi.Output; readonly ipv4Address: pulumi.Output; /** * Variable name */ readonly ipv4AddressVariable: pulumi.Output; /** * Interface MTU <576..9976>, in bytes * - Range: `576`-`9976` * - Default value: `1500` */ readonly ipv4Mtu: pulumi.Output; /** * Variable name */ readonly ipv4MtuVariable: pulumi.Output; /** * - 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.248.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; /** * Variable name */ readonly ipv4SubnetMaskVariable: pulumi.Output; /** * TCP MSS on SYN packets, in bytes * - Range: `500`-`1460` */ readonly ipv4TcpMss: pulumi.Output; /** * Variable name */ readonly ipv4TcpMssVariable: pulumi.Output; /** * Assign IPv6 address */ readonly ipv6Address: pulumi.Output; /** * Variable name */ readonly ipv6AddressVariable: pulumi.Output; /** * Interface MTU <1280..9976>, in bytes * - Range: `1280`-`9976` */ readonly ipv6Mtu: pulumi.Output; /** * Variable name */ readonly ipv6MtuVariable: pulumi.Output; /** * IPv6 TCP MSS on SYN packets, in bytes * - Range: `40`-`1454` */ readonly ipv6TcpMss: pulumi.Output; /** * Variable name */ readonly ipv6TcpMssVariable: pulumi.Output; /** * The name of the Feature */ readonly name: pulumi.Output; /** * IPsec perfect forward secrecy settings * - Choices: `group-1`, `group-2`, `group-5`, `group-14`, `group-15`, `group-16`, `group-19`, `group-20`, `group-21`, `group-24`, `none` * - Default value: `group-16` */ readonly perfectForwardSecrecy: pulumi.Output; /** * Variable name */ readonly perfectForwardSecrecyVariable: pulumi.Output; /** * Use preshared key to authenticate IKE peer */ readonly preSharedSecret: pulumi.Output; /** * Variable name */ readonly preSharedSecretVariable: pulumi.Output; /** * Service LAN VPN Feature ID */ readonly serviceLanVpnFeatureId: pulumi.Output; /** * Administrative state * - Default value: `false` */ readonly shutdown: pulumi.Output; /** * Variable name */ readonly shutdownVariable: pulumi.Output; /** * Tunnel destination IP Address, Attribute conditional on `tunnelMode` equal to `ipv4` */ readonly tunnelDestinationIpv4Address: pulumi.Output; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ readonly tunnelDestinationIpv4AddressVariable: pulumi.Output; /** * Tunnel destination IPv6 Address, Attribute conditional on `tunnelMode` equal to `ipv6` */ readonly tunnelDestinationIpv6Address: pulumi.Output; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ readonly tunnelDestinationIpv6AddressVariable: pulumi.Output; /** * GRE Tunnel Mode * - Choices: `ipv4`, `ipv6` * - Default value: `ipv4` */ readonly tunnelMode: pulumi.Output; /** * Tunnel protection state * - Default value: `false` */ readonly tunnelProtection: pulumi.Output; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid */ readonly tunnelRouteViaInterface: pulumi.Output; /** * Variable name */ readonly tunnelRouteViaInterfaceVariable: pulumi.Output; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on `tunnelMode` equal to `ipv4` */ readonly tunnelRouteViaIpv4Address: pulumi.Output; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ readonly tunnelRouteViaIpv4AddressVariable: pulumi.Output; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on `tunnelMode` equal to `ipv6` */ readonly tunnelRouteViaIpv6Address: pulumi.Output; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ readonly tunnelRouteViaIpv6AddressVariable: pulumi.Output; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid */ readonly tunnelRouteViaLoopback: pulumi.Output; /** * Variable name */ readonly tunnelRouteViaLoopbackVariable: pulumi.Output; /** * <1..32 characters> Interface name */ readonly tunnelSourceInterface: pulumi.Output; /** * <1..32 characters> Interface name */ readonly tunnelSourceInterfaceLoopback: pulumi.Output; /** * Variable name */ readonly tunnelSourceInterfaceLoopbackVariable: pulumi.Output; /** * Variable name */ readonly tunnelSourceInterfaceVariable: pulumi.Output; /** * Tunnel source IP Address, Attribute conditional on `tunnelMode` equal to `ipv4` */ readonly tunnelSourceIpv4Address: pulumi.Output; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ readonly tunnelSourceIpv4AddressVariable: pulumi.Output; /** * Tunnel source IPv6 Address, Attribute conditional on `tunnelMode` equal to `ipv6` */ readonly tunnelSourceIpv6Address: pulumi.Output; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ readonly tunnelSourceIpv6AddressVariable: pulumi.Output; /** * The version of the Feature */ readonly version: pulumi.Output; /** * Create a ServiceLanVpnInterfaceGreFeature 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: ServiceLanVpnInterfaceGreFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServiceLanVpnInterfaceGreFeature resources. */ export interface ServiceLanVpnInterfaceGreFeatureState { /** * Enable Application Tunnel Type * - Choices: `none`, `sig` */ applicationTunnelType?: pulumi.Input; /** * Variable name */ applicationTunnelTypeVariable?: pulumi.Input; /** * Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) * - Default value: `false` */ clearDontFragment?: pulumi.Input; /** * Variable name */ clearDontFragmentVariable?: pulumi.Input; /** * The description of the Feature */ description?: pulumi.Input; /** * IKE keepalive interval (seconds) * - Range: `10`-`3600` * - Default value: `10` */ dpdInterval?: pulumi.Input; /** * Variable name */ dpdIntervalVariable?: pulumi.Input; /** * IKE keepalive retries * - Range: `2`-`60` * - Default value: `3` */ dpdRetries?: pulumi.Input; /** * Variable name */ dpdRetriesVariable?: pulumi.Input; /** * Feature Profile ID */ featureProfileId?: pulumi.Input; /** * IKE identity the IKE preshared secret belongs to * - Choices: `aes256-cbc-sha1`, `aes256-cbc-sha2`, `aes128-cbc-sha1`, `aes128-cbc-sha2` * - Default value: `aes256-cbc-sha1` */ ikeCiphersuite?: pulumi.Input; /** * Variable name */ ikeCiphersuiteVariable?: pulumi.Input; /** * IKE Diffie Hellman Groups * - Choices: `2`, `14`, `15`, `16`, `19`, `20`, `21`, `24` * - Default value: `16` */ ikeGroup?: pulumi.Input; /** * Variable name */ ikeGroupVariable?: pulumi.Input; /** * IKE ID for the local endpoint. Input IPv4 address, domain name, or email address */ ikeLocalId?: pulumi.Input; /** * Variable name */ ikeLocalIdVariable?: pulumi.Input; /** * IKE integrity protocol * - Choices: `main`, `aggressive` * - Default value: `main` */ ikeMode?: pulumi.Input; /** * Variable name */ ikeModeVariable?: pulumi.Input; /** * IKE rekey interval <60..86400> seconds * - Range: `60`-`86400` * - Default value: `14400` */ ikeRekeyInterval?: pulumi.Input; /** * Variable name */ ikeRekeyIntervalVariable?: pulumi.Input; /** * IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address */ ikeRemoteId?: pulumi.Input; /** * Variable name */ ikeRemoteIdVariable?: pulumi.Input; /** * IKE Version <1..2> * - Range: `1`-`2` * - Default value: `1` */ ikeVersion?: pulumi.Input; /** * Interface description */ interfaceDescription?: pulumi.Input; /** * Variable name */ interfaceDescriptionVariable?: pulumi.Input; /** * Interface name (1..255) */ interfaceName?: pulumi.Input; /** * Variable name */ interfaceNameVariable?: pulumi.Input; /** * IPsec(ESP) encryption and integrity protocol * - Choices: `aes256-cbc-sha1`, `aes256-cbc-sha384`, `aes256-cbc-sha256`, `aes256-cbc-sha512`, `aes256-gcm`, `null-sha1`, `null-sha384`, `null-sha256`, `null-sha512` * - Default value: `aes256-gcm` */ ipsecCiphersuite?: pulumi.Input; /** * Variable name */ ipsecCiphersuiteVariable?: pulumi.Input; /** * IPsec rekey interval <300..1209600> seconds * - Range: `120`-`2592000` * - Default value: `3600` */ ipsecRekeyInterval?: pulumi.Input; /** * Variable name */ ipsecRekeyIntervalVariable?: pulumi.Input; /** * Replay window size 32..8192 (must be a power of 2) * - Range: `64`-`4096` * - Default value: `512` */ ipsecReplayWindow?: pulumi.Input; /** * Variable name */ ipsecReplayWindowVariable?: pulumi.Input; ipv4Address?: pulumi.Input; /** * Variable name */ ipv4AddressVariable?: pulumi.Input; /** * Interface MTU <576..9976>, in bytes * - Range: `576`-`9976` * - Default value: `1500` */ ipv4Mtu?: pulumi.Input; /** * Variable name */ ipv4MtuVariable?: pulumi.Input; /** * - 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.248.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; /** * Variable name */ ipv4SubnetMaskVariable?: pulumi.Input; /** * TCP MSS on SYN packets, in bytes * - Range: `500`-`1460` */ ipv4TcpMss?: pulumi.Input; /** * Variable name */ ipv4TcpMssVariable?: pulumi.Input; /** * Assign IPv6 address */ ipv6Address?: pulumi.Input; /** * Variable name */ ipv6AddressVariable?: pulumi.Input; /** * Interface MTU <1280..9976>, in bytes * - Range: `1280`-`9976` */ ipv6Mtu?: pulumi.Input; /** * Variable name */ ipv6MtuVariable?: pulumi.Input; /** * IPv6 TCP MSS on SYN packets, in bytes * - Range: `40`-`1454` */ ipv6TcpMss?: pulumi.Input; /** * Variable name */ ipv6TcpMssVariable?: pulumi.Input; /** * The name of the Feature */ name?: pulumi.Input; /** * IPsec perfect forward secrecy settings * - Choices: `group-1`, `group-2`, `group-5`, `group-14`, `group-15`, `group-16`, `group-19`, `group-20`, `group-21`, `group-24`, `none` * - Default value: `group-16` */ perfectForwardSecrecy?: pulumi.Input; /** * Variable name */ perfectForwardSecrecyVariable?: pulumi.Input; /** * Use preshared key to authenticate IKE peer */ preSharedSecret?: pulumi.Input; /** * Variable name */ preSharedSecretVariable?: pulumi.Input; /** * Service LAN VPN Feature ID */ serviceLanVpnFeatureId?: pulumi.Input; /** * Administrative state * - Default value: `false` */ shutdown?: pulumi.Input; /** * Variable name */ shutdownVariable?: pulumi.Input; /** * Tunnel destination IP Address, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelDestinationIpv4Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelDestinationIpv4AddressVariable?: pulumi.Input; /** * Tunnel destination IPv6 Address, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelDestinationIpv6Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelDestinationIpv6AddressVariable?: pulumi.Input; /** * GRE Tunnel Mode * - Choices: `ipv4`, `ipv6` * - Default value: `ipv4` */ tunnelMode?: pulumi.Input; /** * Tunnel protection state * - Default value: `false` */ tunnelProtection?: pulumi.Input; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid */ tunnelRouteViaInterface?: pulumi.Input; /** * Variable name */ tunnelRouteViaInterfaceVariable?: pulumi.Input; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelRouteViaIpv4Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelRouteViaIpv4AddressVariable?: pulumi.Input; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelRouteViaIpv6Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelRouteViaIpv6AddressVariable?: pulumi.Input; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid */ tunnelRouteViaLoopback?: pulumi.Input; /** * Variable name */ tunnelRouteViaLoopbackVariable?: pulumi.Input; /** * <1..32 characters> Interface name */ tunnelSourceInterface?: pulumi.Input; /** * <1..32 characters> Interface name */ tunnelSourceInterfaceLoopback?: pulumi.Input; /** * Variable name */ tunnelSourceInterfaceLoopbackVariable?: pulumi.Input; /** * Variable name */ tunnelSourceInterfaceVariable?: pulumi.Input; /** * Tunnel source IP Address, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelSourceIpv4Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelSourceIpv4AddressVariable?: pulumi.Input; /** * Tunnel source IPv6 Address, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelSourceIpv6Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelSourceIpv6AddressVariable?: pulumi.Input; /** * The version of the Feature */ version?: pulumi.Input; } /** * The set of arguments for constructing a ServiceLanVpnInterfaceGreFeature resource. */ export interface ServiceLanVpnInterfaceGreFeatureArgs { /** * Enable Application Tunnel Type * - Choices: `none`, `sig` */ applicationTunnelType?: pulumi.Input; /** * Variable name */ applicationTunnelTypeVariable?: pulumi.Input; /** * Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) * - Default value: `false` */ clearDontFragment?: pulumi.Input; /** * Variable name */ clearDontFragmentVariable?: pulumi.Input; /** * The description of the Feature */ description?: pulumi.Input; /** * IKE keepalive interval (seconds) * - Range: `10`-`3600` * - Default value: `10` */ dpdInterval?: pulumi.Input; /** * Variable name */ dpdIntervalVariable?: pulumi.Input; /** * IKE keepalive retries * - Range: `2`-`60` * - Default value: `3` */ dpdRetries?: pulumi.Input; /** * Variable name */ dpdRetriesVariable?: pulumi.Input; /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * IKE identity the IKE preshared secret belongs to * - Choices: `aes256-cbc-sha1`, `aes256-cbc-sha2`, `aes128-cbc-sha1`, `aes128-cbc-sha2` * - Default value: `aes256-cbc-sha1` */ ikeCiphersuite?: pulumi.Input; /** * Variable name */ ikeCiphersuiteVariable?: pulumi.Input; /** * IKE Diffie Hellman Groups * - Choices: `2`, `14`, `15`, `16`, `19`, `20`, `21`, `24` * - Default value: `16` */ ikeGroup?: pulumi.Input; /** * Variable name */ ikeGroupVariable?: pulumi.Input; /** * IKE ID for the local endpoint. Input IPv4 address, domain name, or email address */ ikeLocalId?: pulumi.Input; /** * Variable name */ ikeLocalIdVariable?: pulumi.Input; /** * IKE integrity protocol * - Choices: `main`, `aggressive` * - Default value: `main` */ ikeMode?: pulumi.Input; /** * Variable name */ ikeModeVariable?: pulumi.Input; /** * IKE rekey interval <60..86400> seconds * - Range: `60`-`86400` * - Default value: `14400` */ ikeRekeyInterval?: pulumi.Input; /** * Variable name */ ikeRekeyIntervalVariable?: pulumi.Input; /** * IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address */ ikeRemoteId?: pulumi.Input; /** * Variable name */ ikeRemoteIdVariable?: pulumi.Input; /** * IKE Version <1..2> * - Range: `1`-`2` * - Default value: `1` */ ikeVersion?: pulumi.Input; /** * Interface description */ interfaceDescription?: pulumi.Input; /** * Variable name */ interfaceDescriptionVariable?: pulumi.Input; /** * Interface name (1..255) */ interfaceName?: pulumi.Input; /** * Variable name */ interfaceNameVariable?: pulumi.Input; /** * IPsec(ESP) encryption and integrity protocol * - Choices: `aes256-cbc-sha1`, `aes256-cbc-sha384`, `aes256-cbc-sha256`, `aes256-cbc-sha512`, `aes256-gcm`, `null-sha1`, `null-sha384`, `null-sha256`, `null-sha512` * - Default value: `aes256-gcm` */ ipsecCiphersuite?: pulumi.Input; /** * Variable name */ ipsecCiphersuiteVariable?: pulumi.Input; /** * IPsec rekey interval <300..1209600> seconds * - Range: `120`-`2592000` * - Default value: `3600` */ ipsecRekeyInterval?: pulumi.Input; /** * Variable name */ ipsecRekeyIntervalVariable?: pulumi.Input; /** * Replay window size 32..8192 (must be a power of 2) * - Range: `64`-`4096` * - Default value: `512` */ ipsecReplayWindow?: pulumi.Input; /** * Variable name */ ipsecReplayWindowVariable?: pulumi.Input; ipv4Address?: pulumi.Input; /** * Variable name */ ipv4AddressVariable?: pulumi.Input; /** * Interface MTU <576..9976>, in bytes * - Range: `576`-`9976` * - Default value: `1500` */ ipv4Mtu?: pulumi.Input; /** * Variable name */ ipv4MtuVariable?: pulumi.Input; /** * - 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.248.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; /** * Variable name */ ipv4SubnetMaskVariable?: pulumi.Input; /** * TCP MSS on SYN packets, in bytes * - Range: `500`-`1460` */ ipv4TcpMss?: pulumi.Input; /** * Variable name */ ipv4TcpMssVariable?: pulumi.Input; /** * Assign IPv6 address */ ipv6Address?: pulumi.Input; /** * Variable name */ ipv6AddressVariable?: pulumi.Input; /** * Interface MTU <1280..9976>, in bytes * - Range: `1280`-`9976` */ ipv6Mtu?: pulumi.Input; /** * Variable name */ ipv6MtuVariable?: pulumi.Input; /** * IPv6 TCP MSS on SYN packets, in bytes * - Range: `40`-`1454` */ ipv6TcpMss?: pulumi.Input; /** * Variable name */ ipv6TcpMssVariable?: pulumi.Input; /** * The name of the Feature */ name?: pulumi.Input; /** * IPsec perfect forward secrecy settings * - Choices: `group-1`, `group-2`, `group-5`, `group-14`, `group-15`, `group-16`, `group-19`, `group-20`, `group-21`, `group-24`, `none` * - Default value: `group-16` */ perfectForwardSecrecy?: pulumi.Input; /** * Variable name */ perfectForwardSecrecyVariable?: pulumi.Input; /** * Use preshared key to authenticate IKE peer */ preSharedSecret?: pulumi.Input; /** * Variable name */ preSharedSecretVariable?: pulumi.Input; /** * Service LAN VPN Feature ID */ serviceLanVpnFeatureId: pulumi.Input; /** * Administrative state * - Default value: `false` */ shutdown?: pulumi.Input; /** * Variable name */ shutdownVariable?: pulumi.Input; /** * Tunnel destination IP Address, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelDestinationIpv4Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelDestinationIpv4AddressVariable?: pulumi.Input; /** * Tunnel destination IPv6 Address, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelDestinationIpv6Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelDestinationIpv6AddressVariable?: pulumi.Input; /** * GRE Tunnel Mode * - Choices: `ipv4`, `ipv6` * - Default value: `ipv4` */ tunnelMode?: pulumi.Input; /** * Tunnel protection state * - Default value: `false` */ tunnelProtection?: pulumi.Input; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid */ tunnelRouteViaInterface?: pulumi.Input; /** * Variable name */ tunnelRouteViaInterfaceVariable?: pulumi.Input; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelRouteViaIpv4Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelRouteViaIpv4AddressVariable?: pulumi.Input; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelRouteViaIpv6Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelRouteViaIpv6AddressVariable?: pulumi.Input; /** * <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid */ tunnelRouteViaLoopback?: pulumi.Input; /** * Variable name */ tunnelRouteViaLoopbackVariable?: pulumi.Input; /** * <1..32 characters> Interface name */ tunnelSourceInterface?: pulumi.Input; /** * <1..32 characters> Interface name */ tunnelSourceInterfaceLoopback?: pulumi.Input; /** * Variable name */ tunnelSourceInterfaceLoopbackVariable?: pulumi.Input; /** * Variable name */ tunnelSourceInterfaceVariable?: pulumi.Input; /** * Tunnel source IP Address, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelSourceIpv4Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv4` */ tunnelSourceIpv4AddressVariable?: pulumi.Input; /** * Tunnel source IPv6 Address, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelSourceIpv6Address?: pulumi.Input; /** * Variable name, Attribute conditional on `tunnelMode` equal to `ipv6` */ tunnelSourceIpv6AddressVariable?: pulumi.Input; } //# sourceMappingURL=serviceLanVpnInterfaceGreFeature.d.ts.map