1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. getServiceLanVpnFeatureAssociateRoutingOspfFeature
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.getServiceLanVpnFeatureAssociateRoutingOspfFeature

Explore with Pulumi AI

This data source can read the Service LAN VPN Feature Associate Routing OSPF Feature .

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";

const example = sdwan.getServiceLanVpnFeatureAssociateRoutingOspfFeature({
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
    id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
});
Copy
import pulumi
import pulumi_sdwan as sdwan

example = sdwan.get_service_lan_vpn_feature_associate_routing_ospf_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
    id="f6b2c44c-693c-4763-b010-895aa3d236bd")
Copy
package main

import (
	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sdwan.LookupServiceLanVpnFeatureAssociateRoutingOspfFeature(ctx, &sdwan.LookupServiceLanVpnFeatureAssociateRoutingOspfFeatureArgs{
			FeatureProfileId:       "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
			ServiceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
			Id:                     "f6b2c44c-693c-4763-b010-895aa3d236bd",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;

return await Deployment.RunAsync(() => 
{
    var example = Sdwan.GetServiceLanVpnFeatureAssociateRoutingOspfFeature.Invoke(new()
    {
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        ServiceLanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
        Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SdwanFunctions;
import com.pulumi.sdwan.inputs.GetServiceLanVpnFeatureAssociateRoutingOspfFeatureArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var example = SdwanFunctions.getServiceLanVpnFeatureAssociateRoutingOspfFeature(GetServiceLanVpnFeatureAssociateRoutingOspfFeatureArgs.builder()
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
            .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: sdwan:getServiceLanVpnFeatureAssociateRoutingOspfFeature
      arguments:
        featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
        serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
        id: f6b2c44c-693c-4763-b010-895aa3d236bd
Copy

Using getServiceLanVpnFeatureAssociateRoutingOspfFeature

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getServiceLanVpnFeatureAssociateRoutingOspfFeature(args: GetServiceLanVpnFeatureAssociateRoutingOspfFeatureArgs, opts?: InvokeOptions): Promise<GetServiceLanVpnFeatureAssociateRoutingOspfFeatureResult>
function getServiceLanVpnFeatureAssociateRoutingOspfFeatureOutput(args: GetServiceLanVpnFeatureAssociateRoutingOspfFeatureOutputArgs, opts?: InvokeOptions): Output<GetServiceLanVpnFeatureAssociateRoutingOspfFeatureResult>
Copy
def get_service_lan_vpn_feature_associate_routing_ospf_feature(feature_profile_id: Optional[str] = None,
                                                               id: Optional[str] = None,
                                                               service_lan_vpn_feature_id: Optional[str] = None,
                                                               opts: Optional[InvokeOptions] = None) -> GetServiceLanVpnFeatureAssociateRoutingOspfFeatureResult
def get_service_lan_vpn_feature_associate_routing_ospf_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
                                                               id: Optional[pulumi.Input[str]] = None,
                                                               service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
                                                               opts: Optional[InvokeOptions] = None) -> Output[GetServiceLanVpnFeatureAssociateRoutingOspfFeatureResult]
Copy
func LookupServiceLanVpnFeatureAssociateRoutingOspfFeature(ctx *Context, args *LookupServiceLanVpnFeatureAssociateRoutingOspfFeatureArgs, opts ...InvokeOption) (*LookupServiceLanVpnFeatureAssociateRoutingOspfFeatureResult, error)
func LookupServiceLanVpnFeatureAssociateRoutingOspfFeatureOutput(ctx *Context, args *LookupServiceLanVpnFeatureAssociateRoutingOspfFeatureOutputArgs, opts ...InvokeOption) LookupServiceLanVpnFeatureAssociateRoutingOspfFeatureResultOutput
Copy

> Note: This function is named LookupServiceLanVpnFeatureAssociateRoutingOspfFeature in the Go SDK.

public static class GetServiceLanVpnFeatureAssociateRoutingOspfFeature 
{
    public static Task<GetServiceLanVpnFeatureAssociateRoutingOspfFeatureResult> InvokeAsync(GetServiceLanVpnFeatureAssociateRoutingOspfFeatureArgs args, InvokeOptions? opts = null)
    public static Output<GetServiceLanVpnFeatureAssociateRoutingOspfFeatureResult> Invoke(GetServiceLanVpnFeatureAssociateRoutingOspfFeatureInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetServiceLanVpnFeatureAssociateRoutingOspfFeatureResult> getServiceLanVpnFeatureAssociateRoutingOspfFeature(GetServiceLanVpnFeatureAssociateRoutingOspfFeatureArgs args, InvokeOptions options)
public static Output<GetServiceLanVpnFeatureAssociateRoutingOspfFeatureResult> getServiceLanVpnFeatureAssociateRoutingOspfFeature(GetServiceLanVpnFeatureAssociateRoutingOspfFeatureArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: sdwan:index/getServiceLanVpnFeatureAssociateRoutingOspfFeature:getServiceLanVpnFeatureAssociateRoutingOspfFeature
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

FeatureProfileId This property is required. string
Feature Profile ID
Id This property is required. string
The id of the object
ServiceLanVpnFeatureId This property is required. string
Service LAN VPN Feature ID
FeatureProfileId This property is required. string
Feature Profile ID
Id This property is required. string
The id of the object
ServiceLanVpnFeatureId This property is required. string
Service LAN VPN Feature ID
featureProfileId This property is required. String
Feature Profile ID
id This property is required. String
The id of the object
serviceLanVpnFeatureId This property is required. String
Service LAN VPN Feature ID
featureProfileId This property is required. string
Feature Profile ID
id This property is required. string
The id of the object
serviceLanVpnFeatureId This property is required. string
Service LAN VPN Feature ID
feature_profile_id This property is required. str
Feature Profile ID
id This property is required. str
The id of the object
service_lan_vpn_feature_id This property is required. str
Service LAN VPN Feature ID
featureProfileId This property is required. String
Feature Profile ID
id This property is required. String
The id of the object
serviceLanVpnFeatureId This property is required. String
Service LAN VPN Feature ID

getServiceLanVpnFeatureAssociateRoutingOspfFeature Result

The following output properties are available:

FeatureProfileId string
Feature Profile ID
Id string
The id of the object
ServiceLanVpnFeatureId string
Service LAN VPN Feature ID
ServiceRoutingOspfFeatureId string
Service Routing OSPF Feature ID
Version int
The version of the object
FeatureProfileId string
Feature Profile ID
Id string
The id of the object
ServiceLanVpnFeatureId string
Service LAN VPN Feature ID
ServiceRoutingOspfFeatureId string
Service Routing OSPF Feature ID
Version int
The version of the object
featureProfileId String
Feature Profile ID
id String
The id of the object
serviceLanVpnFeatureId String
Service LAN VPN Feature ID
serviceRoutingOspfFeatureId String
Service Routing OSPF Feature ID
version Integer
The version of the object
featureProfileId string
Feature Profile ID
id string
The id of the object
serviceLanVpnFeatureId string
Service LAN VPN Feature ID
serviceRoutingOspfFeatureId string
Service Routing OSPF Feature ID
version number
The version of the object
feature_profile_id str
Feature Profile ID
id str
The id of the object
service_lan_vpn_feature_id str
Service LAN VPN Feature ID
service_routing_ospf_feature_id str
Service Routing OSPF Feature ID
version int
The version of the object
featureProfileId String
Feature Profile ID
id String
The id of the object
serviceLanVpnFeatureId String
Service LAN VPN Feature ID
serviceRoutingOspfFeatureId String
Service Routing OSPF Feature ID
version Number
The version of the object

Package Details

Repository
sdwan pulumi/pulumi-sdwan
License
Apache-2.0
Notes
This Pulumi package is based on the sdwan Terraform Provider.