UNPKG

@pulumi/sdwan

Version:

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

147 lines (146 loc) 3.78 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Transport WAN VPN Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTransportWanVpnFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getTransportWanVpnFeature(args: GetTransportWanVpnFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetTransportWanVpnFeatureResult>; /** * A collection of arguments for invoking getTransportWanVpnFeature. */ export interface GetTransportWanVpnFeatureArgs { /** * Feature Profile ID */ featureProfileId: string; /** * The id of the Feature */ id: string; } /** * A collection of values returned by getTransportWanVpnFeature. */ export interface GetTransportWanVpnFeatureResult { /** * The description of the Feature */ readonly description: string; /** * Enhance ECMP Keying */ readonly enhanceEcmpKeying: boolean; /** * Variable name */ readonly enhanceEcmpKeyingVariable: string; /** * Feature Profile ID */ readonly featureProfileId: string; /** * The id of the Feature */ readonly id: string; /** * IPv4 Static Route */ readonly ipv4StaticRoutes: outputs.GetTransportWanVpnFeatureIpv4StaticRoute[]; /** * IPv6 Static Route */ readonly ipv6StaticRoutes: outputs.GetTransportWanVpnFeatureIpv6StaticRoute[]; /** * The name of the Feature */ readonly name: string; /** * NAT64 V4 Pool */ readonly nat64V4Pools: outputs.GetTransportWanVpnFeatureNat64V4Pool[]; readonly newHostMappings: outputs.GetTransportWanVpnFeatureNewHostMapping[]; /** * Primary DNS Address (IPv4) */ readonly primaryDnsAddressIpv4: string; /** * Variable name */ readonly primaryDnsAddressIpv4Variable: string; /** * Primary DNS Address (IPv6) */ readonly primaryDnsAddressIpv6: string; /** * Variable name */ readonly primaryDnsAddressIpv6Variable: string; /** * 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 services: outputs.GetTransportWanVpnFeatureService[]; /** * The version of the Feature */ readonly version: number; /** * VPN */ readonly vpn: number; } /** * This data source can read the Transport WAN VPN Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTransportWanVpnFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getTransportWanVpnFeatureOutput(args: GetTransportWanVpnFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransportWanVpnFeatureResult>; /** * A collection of arguments for invoking getTransportWanVpnFeature. */ export interface GetTransportWanVpnFeatureOutputArgs { /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * The id of the Feature */ id: pulumi.Input<string>; }