UNPKG

@pulumi/sdwan

Version:

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

219 lines (218 loc) 6.04 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Service LAN VPN Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getServiceLanVpnFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getServiceLanVpnFeature(args: GetServiceLanVpnFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceLanVpnFeatureResult>; /** * A collection of arguments for invoking getServiceLanVpnFeature. */ export interface GetServiceLanVpnFeatureArgs { /** * Feature Profile ID */ featureProfileId: string; /** * The id of the Feature */ id: string; } /** * A collection of values returned by getServiceLanVpnFeature. */ export interface GetServiceLanVpnFeatureResult { /** * OMP Advertise IPv4 */ readonly advertiseOmpIpv4s: outputs.GetServiceLanVpnFeatureAdvertiseOmpIpv4[]; /** * OMP Advertise IPv6 */ readonly advertiseOmpIpv6s: outputs.GetServiceLanVpnFeatureAdvertiseOmpIpv6[]; /** * Name */ readonly configDescription: string; /** * Variable name */ readonly configDescriptionVariable: string; /** * The description of the Feature */ readonly description: string; /** * Enable SDWAN Remote Access */ readonly enableSdwanRemoteAccess: boolean; /** * Feature Profile ID */ readonly featureProfileId: string; /** * IPv4 Static GRE Route */ readonly greRoutes: outputs.GetServiceLanVpnFeatureGreRoute[]; readonly hostMappings: outputs.GetServiceLanVpnFeatureHostMapping[]; /** * The id of the Feature */ readonly id: string; /** * IPv4 Static IPSEC Route */ readonly ipsecRoutes: outputs.GetServiceLanVpnFeatureIpsecRoute[]; readonly ipv4ExportRouteTargets: outputs.GetServiceLanVpnFeatureIpv4ExportRouteTarget[]; readonly ipv4ImportRouteTargets: outputs.GetServiceLanVpnFeatureIpv4ImportRouteTarget[]; /** * IPv4 Static Route */ readonly ipv4StaticRoutes: outputs.GetServiceLanVpnFeatureIpv4StaticRoute[]; readonly ipv6ExportRouteTargets: outputs.GetServiceLanVpnFeatureIpv6ExportRouteTarget[]; readonly ipv6ImportRouteTargets: outputs.GetServiceLanVpnFeatureIpv6ImportRouteTarget[]; /** * IPv6 Static Route */ readonly ipv6StaticRoutes: outputs.GetServiceLanVpnFeatureIpv6StaticRoute[]; /** * The name of the Feature */ readonly name: string; /** * NAT64 V4 Pool */ readonly nat64V4Pools: outputs.GetServiceLanVpnFeatureNat64V4Pool[]; /** * NAT Pool */ readonly natPools: outputs.GetServiceLanVpnFeatureNatPool[]; /** * NAT Port Forward */ readonly natPortForwards: outputs.GetServiceLanVpnFeatureNatPortForward[]; /** * OMP Admin Distance IPv4 */ readonly ompAdminDistanceIpv4: number; /** * Variable name */ readonly ompAdminDistanceIpv4Variable: string; /** * OMP Admin Distance IPv6 */ readonly ompAdminDistanceIpv6: number; /** * Variable name */ readonly ompAdminDistanceIpv6Variable: string; /** * Primary DNS Address (IPv4) */ readonly primaryDnsAddressIpv4: string; /** * Variable name */ readonly primaryDnsAddressIpv4Variable: string; /** * Primary DNS Address (IPv6) */ readonly primaryDnsAddressIpv6: string; /** * Variable name */ readonly primaryDnsAddressIpv6Variable: string; /** * Enable route leaking from Global to Service VPN */ readonly routeLeakFromGlobalVpns: outputs.GetServiceLanVpnFeatureRouteLeakFromGlobalVpn[]; /** * Enable route leak from another Service VPN to current Service VPN */ readonly routeLeakFromOtherServices: outputs.GetServiceLanVpnFeatureRouteLeakFromOtherService[]; /** * Enable route leaking from Service to Global VPN */ readonly routeLeakToGlobalVpns: outputs.GetServiceLanVpnFeatureRouteLeakToGlobalVpn[]; /** * Secondary DNS Address (IPv4) */ readonly secondaryDnsAddressIpv4: string; /** * Variable name */ readonly secondaryDnsAddressIpv4Variable: string; /** * Secondary DNS Address (IPv6) */ readonly secondaryDnsAddressIpv6: string; /** * Variable name */ readonly secondaryDnsAddressIpv6Variable: string; /** * Service */ readonly serviceRoutes: outputs.GetServiceLanVpnFeatureServiceRoute[]; /** * Service */ readonly services: outputs.GetServiceLanVpnFeatureService[]; /** * Static NAT Rules */ readonly staticNats: outputs.GetServiceLanVpnFeatureStaticNat[]; /** * The version of the Feature */ readonly version: number; /** * VPN */ readonly vpn: number; /** * Variable name */ readonly vpnVariable: string; } /** * This data source can read the Service LAN VPN Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getServiceLanVpnFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getServiceLanVpnFeatureOutput(args: GetServiceLanVpnFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceLanVpnFeatureResult>; /** * A collection of arguments for invoking getServiceLanVpnFeature. */ export interface GetServiceLanVpnFeatureOutputArgs { /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * The id of the Feature */ id: pulumi.Input<string>; }