1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. TransportRoutingOspfFeature
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

sdwan.TransportRoutingOspfFeature

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

    This resource can manage a Transport Routing OSPF Feature.

    • Minimum SD-WAN Manager version: 20.12.0

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.TransportRoutingOspfFeature;
    import com.pulumi.sdwan.TransportRoutingOspfFeatureArgs;
    import com.pulumi.sdwan.inputs.TransportRoutingOspfFeatureRedistributeArgs;
    import com.pulumi.sdwan.inputs.TransportRoutingOspfFeatureRouterLsaArgs;
    import com.pulumi.sdwan.inputs.TransportRoutingOspfFeatureAreaArgs;
    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) {
            var example = new TransportRoutingOspfFeature("example", TransportRoutingOspfFeatureArgs.builder()
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .routerId("1.2.3.4")
                .referenceBandwidth(101)
                .rfc1583Compatible(true)
                .defaultInformationOriginate(false)
                .defaultInformationOriginateAlways(false)
                .defaultInformationOriginateMetric(1)
                .defaultInformationOriginateMetricType("type1")
                .distanceExternal(110)
                .distanceInterArea(110)
                .distanceIntraArea(110)
                .spfCalculationDelay(200)
                .spfInitialHoldTime(1000)
                .spfMaximumHoldTime(10000)
                .redistributes(TransportRoutingOspfFeatureRedistributeArgs.builder()
                    .protocol("static")
                    .nat_dia(true)
                    .build())
                .routerLsas(TransportRoutingOspfFeatureRouterLsaArgs.builder()
                    .type("on-startup")
                    .time(5)
                    .build())
                .areas(TransportRoutingOspfFeatureAreaArgs.builder()
                    .area_number(1)
                    .area_type("stub")
                    .no_summary(false)
                    .interfaces(TransportRoutingOspfFeatureAreaInterfaceArgs.builder()
                        .name("GigabitEthernet2")
                        .helloInterval(10)
                        .deadInterval(40)
                        .lsaRetransmitInterval(5)
                        .cost(10)
                        .designatedRouterPriority(1)
                        .networkType("broadcast")
                        .passiveInterface(false)
                        .authenticationType("message-digest")
                        .messageDigestKeyId(7)
                        .messageDigestKey("sdjfhsghbjdjr")
                        .build())
                    .ranges(TransportRoutingOspfFeatureAreaRangeArgs.builder()
                        .ipAddress("10.1.1.0")
                        .subnetMask("255.255.255.0")
                        .cost(1)
                        .noAdvertise(false)
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:TransportRoutingOspfFeature
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          routerId: 1.2.3.4
          referenceBandwidth: 101
          rfc1583Compatible: true
          defaultInformationOriginate: false
          defaultInformationOriginateAlways: false
          defaultInformationOriginateMetric: 1
          defaultInformationOriginateMetricType: type1
          distanceExternal: 110
          distanceInterArea: 110
          distanceIntraArea: 110
          spfCalculationDelay: 200
          spfInitialHoldTime: 1000
          spfMaximumHoldTime: 10000
          redistributes:
            - protocol: static
              nat_dia: true
          routerLsas:
            - type: on-startup
              time: 5
          areas:
            - area_number: 1
              area_type: stub
              no_summary: false
              interfaces:
                - name: GigabitEthernet2
                  helloInterval: 10
                  deadInterval: 40
                  lsaRetransmitInterval: 5
                  cost: 10
                  designatedRouterPriority: 1
                  networkType: broadcast
                  passiveInterface: false
                  authenticationType: message-digest
                  messageDigestKeyId: 7
                  messageDigestKey: sdjfhsghbjdjr
              ranges:
                - ipAddress: 10.1.1.0
                  subnetMask: 255.255.255.0
                  cost: 1
                  noAdvertise: false
    

    Create TransportRoutingOspfFeature Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TransportRoutingOspfFeature(name: string, args: TransportRoutingOspfFeatureArgs, opts?: CustomResourceOptions);
    @overload
    def TransportRoutingOspfFeature(resource_name: str,
                                    args: TransportRoutingOspfFeatureArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def TransportRoutingOspfFeature(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    feature_profile_id: Optional[str] = None,
                                    name: Optional[str] = None,
                                    spf_maximum_hold_time_variable: Optional[str] = None,
                                    default_information_originate: Optional[bool] = None,
                                    default_information_originate_metric: Optional[int] = None,
                                    default_information_originate_metric_type: Optional[str] = None,
                                    default_information_originate_metric_type_variable: Optional[str] = None,
                                    default_information_originate_metric_variable: Optional[str] = None,
                                    description: Optional[str] = None,
                                    distance_external: Optional[int] = None,
                                    distance_external_variable: Optional[str] = None,
                                    distance_inter_area: Optional[int] = None,
                                    distance_inter_area_variable: Optional[str] = None,
                                    distance_intra_area: Optional[int] = None,
                                    distance_intra_area_variable: Optional[str] = None,
                                    default_information_originate_always_variable: Optional[str] = None,
                                    redistributes: Optional[Sequence[TransportRoutingOspfFeatureRedistributeArgs]] = None,
                                    default_information_originate_always: Optional[bool] = None,
                                    reference_bandwidth: Optional[int] = None,
                                    reference_bandwidth_variable: Optional[str] = None,
                                    rfc1583_compatible: Optional[bool] = None,
                                    rfc1583_compatible_variable: Optional[str] = None,
                                    route_policy_id: Optional[str] = None,
                                    router_id: Optional[str] = None,
                                    router_id_variable: Optional[str] = None,
                                    router_lsas: Optional[Sequence[TransportRoutingOspfFeatureRouterLsaArgs]] = None,
                                    spf_calculation_delay: Optional[int] = None,
                                    spf_calculation_delay_variable: Optional[str] = None,
                                    spf_initial_hold_time: Optional[int] = None,
                                    spf_initial_hold_time_variable: Optional[str] = None,
                                    spf_maximum_hold_time: Optional[int] = None,
                                    areas: Optional[Sequence[TransportRoutingOspfFeatureAreaArgs]] = None)
    func NewTransportRoutingOspfFeature(ctx *Context, name string, args TransportRoutingOspfFeatureArgs, opts ...ResourceOption) (*TransportRoutingOspfFeature, error)
    public TransportRoutingOspfFeature(string name, TransportRoutingOspfFeatureArgs args, CustomResourceOptions? opts = null)
    public TransportRoutingOspfFeature(String name, TransportRoutingOspfFeatureArgs args)
    public TransportRoutingOspfFeature(String name, TransportRoutingOspfFeatureArgs args, CustomResourceOptions options)
    
    type: sdwan:TransportRoutingOspfFeature
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TransportRoutingOspfFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TransportRoutingOspfFeatureArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TransportRoutingOspfFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TransportRoutingOspfFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TransportRoutingOspfFeatureArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var transportRoutingOspfFeatureResource = new Sdwan.TransportRoutingOspfFeature("transportRoutingOspfFeatureResource", new()
    {
        FeatureProfileId = "string",
        Name = "string",
        SpfMaximumHoldTimeVariable = "string",
        DefaultInformationOriginate = false,
        DefaultInformationOriginateMetric = 0,
        DefaultInformationOriginateMetricType = "string",
        DefaultInformationOriginateMetricTypeVariable = "string",
        DefaultInformationOriginateMetricVariable = "string",
        Description = "string",
        DistanceExternal = 0,
        DistanceExternalVariable = "string",
        DistanceInterArea = 0,
        DistanceInterAreaVariable = "string",
        DistanceIntraArea = 0,
        DistanceIntraAreaVariable = "string",
        DefaultInformationOriginateAlwaysVariable = "string",
        Redistributes = new[]
        {
            new Sdwan.Inputs.TransportRoutingOspfFeatureRedistributeArgs
            {
                NatDia = false,
                NatDiaVariable = "string",
                Protocol = "string",
                ProtocolVariable = "string",
                RoutePolicyId = "string",
            },
        },
        DefaultInformationOriginateAlways = false,
        ReferenceBandwidth = 0,
        ReferenceBandwidthVariable = "string",
        Rfc1583Compatible = false,
        Rfc1583CompatibleVariable = "string",
        RoutePolicyId = "string",
        RouterId = "string",
        RouterIdVariable = "string",
        RouterLsas = new[]
        {
            new Sdwan.Inputs.TransportRoutingOspfFeatureRouterLsaArgs
            {
                Time = 0,
                TimeVariable = "string",
                Type = "string",
            },
        },
        SpfCalculationDelay = 0,
        SpfCalculationDelayVariable = "string",
        SpfInitialHoldTime = 0,
        SpfInitialHoldTimeVariable = "string",
        SpfMaximumHoldTime = 0,
        Areas = new[]
        {
            new Sdwan.Inputs.TransportRoutingOspfFeatureAreaArgs
            {
                AreaNumber = 0,
                AreaNumberVariable = "string",
                AreaType = "string",
                Interfaces = new[]
                {
                    new Sdwan.Inputs.TransportRoutingOspfFeatureAreaInterfaceArgs
                    {
                        AuthenticationType = "string",
                        AuthenticationTypeVariable = "string",
                        Cost = 0,
                        CostVariable = "string",
                        DeadInterval = 0,
                        DeadIntervalVariable = "string",
                        DesignatedRouterPriority = 0,
                        DesignatedRouterPriorityVariable = "string",
                        HelloInterval = 0,
                        HelloIntervalVariable = "string",
                        LsaRetransmitInterval = 0,
                        LsaRetransmitIntervalVariable = "string",
                        MessageDigestKey = "string",
                        MessageDigestKeyId = 0,
                        MessageDigestKeyIdVariable = "string",
                        MessageDigestKeyVariable = "string",
                        Name = "string",
                        NameVariable = "string",
                        NetworkType = "string",
                        NetworkTypeVariable = "string",
                        PassiveInterface = false,
                        PassiveInterfaceVariable = "string",
                    },
                },
                NoSummary = false,
                NoSummaryVariable = "string",
                Ranges = new[]
                {
                    new Sdwan.Inputs.TransportRoutingOspfFeatureAreaRangeArgs
                    {
                        Cost = 0,
                        CostVariable = "string",
                        IpAddress = "string",
                        IpAddressVariable = "string",
                        NoAdvertise = false,
                        NoAdvertiseVariable = "string",
                        SubnetMask = "string",
                        SubnetMaskVariable = "string",
                    },
                },
            },
        },
    });
    
    example, err := sdwan.NewTransportRoutingOspfFeature(ctx, "transportRoutingOspfFeatureResource", &sdwan.TransportRoutingOspfFeatureArgs{
    	FeatureProfileId:                              pulumi.String("string"),
    	Name:                                          pulumi.String("string"),
    	SpfMaximumHoldTimeVariable:                    pulumi.String("string"),
    	DefaultInformationOriginate:                   pulumi.Bool(false),
    	DefaultInformationOriginateMetric:             pulumi.Int(0),
    	DefaultInformationOriginateMetricType:         pulumi.String("string"),
    	DefaultInformationOriginateMetricTypeVariable: pulumi.String("string"),
    	DefaultInformationOriginateMetricVariable:     pulumi.String("string"),
    	Description:                                   pulumi.String("string"),
    	DistanceExternal:                              pulumi.Int(0),
    	DistanceExternalVariable:                      pulumi.String("string"),
    	DistanceInterArea:                             pulumi.Int(0),
    	DistanceInterAreaVariable:                     pulumi.String("string"),
    	DistanceIntraArea:                             pulumi.Int(0),
    	DistanceIntraAreaVariable:                     pulumi.String("string"),
    	DefaultInformationOriginateAlwaysVariable:     pulumi.String("string"),
    	Redistributes: sdwan.TransportRoutingOspfFeatureRedistributeArray{
    		&sdwan.TransportRoutingOspfFeatureRedistributeArgs{
    			NatDia:           pulumi.Bool(false),
    			NatDiaVariable:   pulumi.String("string"),
    			Protocol:         pulumi.String("string"),
    			ProtocolVariable: pulumi.String("string"),
    			RoutePolicyId:    pulumi.String("string"),
    		},
    	},
    	DefaultInformationOriginateAlways: pulumi.Bool(false),
    	ReferenceBandwidth:                pulumi.Int(0),
    	ReferenceBandwidthVariable:        pulumi.String("string"),
    	Rfc1583Compatible:                 pulumi.Bool(false),
    	Rfc1583CompatibleVariable:         pulumi.String("string"),
    	RoutePolicyId:                     pulumi.String("string"),
    	RouterId:                          pulumi.String("string"),
    	RouterIdVariable:                  pulumi.String("string"),
    	RouterLsas: sdwan.TransportRoutingOspfFeatureRouterLsaArray{
    		&sdwan.TransportRoutingOspfFeatureRouterLsaArgs{
    			Time:         pulumi.Int(0),
    			TimeVariable: pulumi.String("string"),
    			Type:         pulumi.String("string"),
    		},
    	},
    	SpfCalculationDelay:         pulumi.Int(0),
    	SpfCalculationDelayVariable: pulumi.String("string"),
    	SpfInitialHoldTime:          pulumi.Int(0),
    	SpfInitialHoldTimeVariable:  pulumi.String("string"),
    	SpfMaximumHoldTime:          pulumi.Int(0),
    	Areas: sdwan.TransportRoutingOspfFeatureAreaArray{
    		&sdwan.TransportRoutingOspfFeatureAreaArgs{
    			AreaNumber:         pulumi.Int(0),
    			AreaNumberVariable: pulumi.String("string"),
    			AreaType:           pulumi.String("string"),
    			Interfaces: sdwan.TransportRoutingOspfFeatureAreaInterfaceArray{
    				&sdwan.TransportRoutingOspfFeatureAreaInterfaceArgs{
    					AuthenticationType:               pulumi.String("string"),
    					AuthenticationTypeVariable:       pulumi.String("string"),
    					Cost:                             pulumi.Int(0),
    					CostVariable:                     pulumi.String("string"),
    					DeadInterval:                     pulumi.Int(0),
    					DeadIntervalVariable:             pulumi.String("string"),
    					DesignatedRouterPriority:         pulumi.Int(0),
    					DesignatedRouterPriorityVariable: pulumi.String("string"),
    					HelloInterval:                    pulumi.Int(0),
    					HelloIntervalVariable:            pulumi.String("string"),
    					LsaRetransmitInterval:            pulumi.Int(0),
    					LsaRetransmitIntervalVariable:    pulumi.String("string"),
    					MessageDigestKey:                 pulumi.String("string"),
    					MessageDigestKeyId:               pulumi.Int(0),
    					MessageDigestKeyIdVariable:       pulumi.String("string"),
    					MessageDigestKeyVariable:         pulumi.String("string"),
    					Name:                             pulumi.String("string"),
    					NameVariable:                     pulumi.String("string"),
    					NetworkType:                      pulumi.String("string"),
    					NetworkTypeVariable:              pulumi.String("string"),
    					PassiveInterface:                 pulumi.Bool(false),
    					PassiveInterfaceVariable:         pulumi.String("string"),
    				},
    			},
    			NoSummary:         pulumi.Bool(false),
    			NoSummaryVariable: pulumi.String("string"),
    			Ranges: sdwan.TransportRoutingOspfFeatureAreaRangeArray{
    				&sdwan.TransportRoutingOspfFeatureAreaRangeArgs{
    					Cost:                pulumi.Int(0),
    					CostVariable:        pulumi.String("string"),
    					IpAddress:           pulumi.String("string"),
    					IpAddressVariable:   pulumi.String("string"),
    					NoAdvertise:         pulumi.Bool(false),
    					NoAdvertiseVariable: pulumi.String("string"),
    					SubnetMask:          pulumi.String("string"),
    					SubnetMaskVariable:  pulumi.String("string"),
    				},
    			},
    		},
    	},
    })
    
    var transportRoutingOspfFeatureResource = new TransportRoutingOspfFeature("transportRoutingOspfFeatureResource", TransportRoutingOspfFeatureArgs.builder()
        .featureProfileId("string")
        .name("string")
        .spfMaximumHoldTimeVariable("string")
        .defaultInformationOriginate(false)
        .defaultInformationOriginateMetric(0)
        .defaultInformationOriginateMetricType("string")
        .defaultInformationOriginateMetricTypeVariable("string")
        .defaultInformationOriginateMetricVariable("string")
        .description("string")
        .distanceExternal(0)
        .distanceExternalVariable("string")
        .distanceInterArea(0)
        .distanceInterAreaVariable("string")
        .distanceIntraArea(0)
        .distanceIntraAreaVariable("string")
        .defaultInformationOriginateAlwaysVariable("string")
        .redistributes(TransportRoutingOspfFeatureRedistributeArgs.builder()
            .natDia(false)
            .natDiaVariable("string")
            .protocol("string")
            .protocolVariable("string")
            .routePolicyId("string")
            .build())
        .defaultInformationOriginateAlways(false)
        .referenceBandwidth(0)
        .referenceBandwidthVariable("string")
        .rfc1583Compatible(false)
        .rfc1583CompatibleVariable("string")
        .routePolicyId("string")
        .routerId("string")
        .routerIdVariable("string")
        .routerLsas(TransportRoutingOspfFeatureRouterLsaArgs.builder()
            .time(0)
            .timeVariable("string")
            .type("string")
            .build())
        .spfCalculationDelay(0)
        .spfCalculationDelayVariable("string")
        .spfInitialHoldTime(0)
        .spfInitialHoldTimeVariable("string")
        .spfMaximumHoldTime(0)
        .areas(TransportRoutingOspfFeatureAreaArgs.builder()
            .areaNumber(0)
            .areaNumberVariable("string")
            .areaType("string")
            .interfaces(TransportRoutingOspfFeatureAreaInterfaceArgs.builder()
                .authenticationType("string")
                .authenticationTypeVariable("string")
                .cost(0)
                .costVariable("string")
                .deadInterval(0)
                .deadIntervalVariable("string")
                .designatedRouterPriority(0)
                .designatedRouterPriorityVariable("string")
                .helloInterval(0)
                .helloIntervalVariable("string")
                .lsaRetransmitInterval(0)
                .lsaRetransmitIntervalVariable("string")
                .messageDigestKey("string")
                .messageDigestKeyId(0)
                .messageDigestKeyIdVariable("string")
                .messageDigestKeyVariable("string")
                .name("string")
                .nameVariable("string")
                .networkType("string")
                .networkTypeVariable("string")
                .passiveInterface(false)
                .passiveInterfaceVariable("string")
                .build())
            .noSummary(false)
            .noSummaryVariable("string")
            .ranges(TransportRoutingOspfFeatureAreaRangeArgs.builder()
                .cost(0)
                .costVariable("string")
                .ipAddress("string")
                .ipAddressVariable("string")
                .noAdvertise(false)
                .noAdvertiseVariable("string")
                .subnetMask("string")
                .subnetMaskVariable("string")
                .build())
            .build())
        .build());
    
    transport_routing_ospf_feature_resource = sdwan.TransportRoutingOspfFeature("transportRoutingOspfFeatureResource",
        feature_profile_id="string",
        name="string",
        spf_maximum_hold_time_variable="string",
        default_information_originate=False,
        default_information_originate_metric=0,
        default_information_originate_metric_type="string",
        default_information_originate_metric_type_variable="string",
        default_information_originate_metric_variable="string",
        description="string",
        distance_external=0,
        distance_external_variable="string",
        distance_inter_area=0,
        distance_inter_area_variable="string",
        distance_intra_area=0,
        distance_intra_area_variable="string",
        default_information_originate_always_variable="string",
        redistributes=[sdwan.TransportRoutingOspfFeatureRedistributeArgs(
            nat_dia=False,
            nat_dia_variable="string",
            protocol="string",
            protocol_variable="string",
            route_policy_id="string",
        )],
        default_information_originate_always=False,
        reference_bandwidth=0,
        reference_bandwidth_variable="string",
        rfc1583_compatible=False,
        rfc1583_compatible_variable="string",
        route_policy_id="string",
        router_id="string",
        router_id_variable="string",
        router_lsas=[sdwan.TransportRoutingOspfFeatureRouterLsaArgs(
            time=0,
            time_variable="string",
            type="string",
        )],
        spf_calculation_delay=0,
        spf_calculation_delay_variable="string",
        spf_initial_hold_time=0,
        spf_initial_hold_time_variable="string",
        spf_maximum_hold_time=0,
        areas=[sdwan.TransportRoutingOspfFeatureAreaArgs(
            area_number=0,
            area_number_variable="string",
            area_type="string",
            interfaces=[sdwan.TransportRoutingOspfFeatureAreaInterfaceArgs(
                authentication_type="string",
                authentication_type_variable="string",
                cost=0,
                cost_variable="string",
                dead_interval=0,
                dead_interval_variable="string",
                designated_router_priority=0,
                designated_router_priority_variable="string",
                hello_interval=0,
                hello_interval_variable="string",
                lsa_retransmit_interval=0,
                lsa_retransmit_interval_variable="string",
                message_digest_key="string",
                message_digest_key_id=0,
                message_digest_key_id_variable="string",
                message_digest_key_variable="string",
                name="string",
                name_variable="string",
                network_type="string",
                network_type_variable="string",
                passive_interface=False,
                passive_interface_variable="string",
            )],
            no_summary=False,
            no_summary_variable="string",
            ranges=[sdwan.TransportRoutingOspfFeatureAreaRangeArgs(
                cost=0,
                cost_variable="string",
                ip_address="string",
                ip_address_variable="string",
                no_advertise=False,
                no_advertise_variable="string",
                subnet_mask="string",
                subnet_mask_variable="string",
            )],
        )])
    
    const transportRoutingOspfFeatureResource = new sdwan.TransportRoutingOspfFeature("transportRoutingOspfFeatureResource", {
        featureProfileId: "string",
        name: "string",
        spfMaximumHoldTimeVariable: "string",
        defaultInformationOriginate: false,
        defaultInformationOriginateMetric: 0,
        defaultInformationOriginateMetricType: "string",
        defaultInformationOriginateMetricTypeVariable: "string",
        defaultInformationOriginateMetricVariable: "string",
        description: "string",
        distanceExternal: 0,
        distanceExternalVariable: "string",
        distanceInterArea: 0,
        distanceInterAreaVariable: "string",
        distanceIntraArea: 0,
        distanceIntraAreaVariable: "string",
        defaultInformationOriginateAlwaysVariable: "string",
        redistributes: [{
            natDia: false,
            natDiaVariable: "string",
            protocol: "string",
            protocolVariable: "string",
            routePolicyId: "string",
        }],
        defaultInformationOriginateAlways: false,
        referenceBandwidth: 0,
        referenceBandwidthVariable: "string",
        rfc1583Compatible: false,
        rfc1583CompatibleVariable: "string",
        routePolicyId: "string",
        routerId: "string",
        routerIdVariable: "string",
        routerLsas: [{
            time: 0,
            timeVariable: "string",
            type: "string",
        }],
        spfCalculationDelay: 0,
        spfCalculationDelayVariable: "string",
        spfInitialHoldTime: 0,
        spfInitialHoldTimeVariable: "string",
        spfMaximumHoldTime: 0,
        areas: [{
            areaNumber: 0,
            areaNumberVariable: "string",
            areaType: "string",
            interfaces: [{
                authenticationType: "string",
                authenticationTypeVariable: "string",
                cost: 0,
                costVariable: "string",
                deadInterval: 0,
                deadIntervalVariable: "string",
                designatedRouterPriority: 0,
                designatedRouterPriorityVariable: "string",
                helloInterval: 0,
                helloIntervalVariable: "string",
                lsaRetransmitInterval: 0,
                lsaRetransmitIntervalVariable: "string",
                messageDigestKey: "string",
                messageDigestKeyId: 0,
                messageDigestKeyIdVariable: "string",
                messageDigestKeyVariable: "string",
                name: "string",
                nameVariable: "string",
                networkType: "string",
                networkTypeVariable: "string",
                passiveInterface: false,
                passiveInterfaceVariable: "string",
            }],
            noSummary: false,
            noSummaryVariable: "string",
            ranges: [{
                cost: 0,
                costVariable: "string",
                ipAddress: "string",
                ipAddressVariable: "string",
                noAdvertise: false,
                noAdvertiseVariable: "string",
                subnetMask: "string",
                subnetMaskVariable: "string",
            }],
        }],
    });
    
    type: sdwan:TransportRoutingOspfFeature
    properties:
        areas:
            - areaNumber: 0
              areaNumberVariable: string
              areaType: string
              interfaces:
                - authenticationType: string
                  authenticationTypeVariable: string
                  cost: 0
                  costVariable: string
                  deadInterval: 0
                  deadIntervalVariable: string
                  designatedRouterPriority: 0
                  designatedRouterPriorityVariable: string
                  helloInterval: 0
                  helloIntervalVariable: string
                  lsaRetransmitInterval: 0
                  lsaRetransmitIntervalVariable: string
                  messageDigestKey: string
                  messageDigestKeyId: 0
                  messageDigestKeyIdVariable: string
                  messageDigestKeyVariable: string
                  name: string
                  nameVariable: string
                  networkType: string
                  networkTypeVariable: string
                  passiveInterface: false
                  passiveInterfaceVariable: string
              noSummary: false
              noSummaryVariable: string
              ranges:
                - cost: 0
                  costVariable: string
                  ipAddress: string
                  ipAddressVariable: string
                  noAdvertise: false
                  noAdvertiseVariable: string
                  subnetMask: string
                  subnetMaskVariable: string
        defaultInformationOriginate: false
        defaultInformationOriginateAlways: false
        defaultInformationOriginateAlwaysVariable: string
        defaultInformationOriginateMetric: 0
        defaultInformationOriginateMetricType: string
        defaultInformationOriginateMetricTypeVariable: string
        defaultInformationOriginateMetricVariable: string
        description: string
        distanceExternal: 0
        distanceExternalVariable: string
        distanceInterArea: 0
        distanceInterAreaVariable: string
        distanceIntraArea: 0
        distanceIntraAreaVariable: string
        featureProfileId: string
        name: string
        redistributes:
            - natDia: false
              natDiaVariable: string
              protocol: string
              protocolVariable: string
              routePolicyId: string
        referenceBandwidth: 0
        referenceBandwidthVariable: string
        rfc1583Compatible: false
        rfc1583CompatibleVariable: string
        routePolicyId: string
        routerId: string
        routerIdVariable: string
        routerLsas:
            - time: 0
              timeVariable: string
              type: string
        spfCalculationDelay: 0
        spfCalculationDelayVariable: string
        spfInitialHoldTime: 0
        spfInitialHoldTimeVariable: string
        spfMaximumHoldTime: 0
        spfMaximumHoldTimeVariable: string
    

    TransportRoutingOspfFeature Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The TransportRoutingOspfFeature resource accepts the following input properties:

    FeatureProfileId string
    Feature Profile ID
    Areas List<TransportRoutingOspfFeatureArea>
    Configure OSPF area
    DefaultInformationOriginate bool
    Distribute default external route into OSPF - Default value: false
    DefaultInformationOriginateAlways bool
    Always advertise default route - Default value: false
    DefaultInformationOriginateAlwaysVariable string
    Variable name
    DefaultInformationOriginateMetric int
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    DefaultInformationOriginateMetricType string
    Set default route type - Choices: type1, type2
    DefaultInformationOriginateMetricTypeVariable string
    Variable name
    DefaultInformationOriginateMetricVariable string
    Variable name
    Description string
    The description of the Feature
    DistanceExternal int
    Set distance for external routes - Range: 1-255 - Default value: 110
    DistanceExternalVariable string
    Variable name
    DistanceInterArea int
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    DistanceInterAreaVariable string
    Variable name
    DistanceIntraArea int
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    DistanceIntraAreaVariable string
    Variable name
    Name string
    The name of the Feature
    Redistributes List<TransportRoutingOspfFeatureRedistribute>
    Redistribute routes
    ReferenceBandwidth int
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    ReferenceBandwidthVariable string
    Variable name
    Rfc1583Compatible bool
    Calculate summary route cost based on RFC 1583 - Default value: true
    Rfc1583CompatibleVariable string
    Variable name
    RoutePolicyId string
    RouterId string
    Set OSPF router ID to override system IP address
    RouterIdVariable string
    Variable name
    RouterLsas List<TransportRoutingOspfFeatureRouterLsa>
    Advertise own router LSA with infinite distance
    SpfCalculationDelay int
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    SpfCalculationDelayVariable string
    Variable name
    SpfInitialHoldTime int
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    SpfInitialHoldTimeVariable string
    Variable name
    SpfMaximumHoldTime int
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    SpfMaximumHoldTimeVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Areas []TransportRoutingOspfFeatureAreaArgs
    Configure OSPF area
    DefaultInformationOriginate bool
    Distribute default external route into OSPF - Default value: false
    DefaultInformationOriginateAlways bool
    Always advertise default route - Default value: false
    DefaultInformationOriginateAlwaysVariable string
    Variable name
    DefaultInformationOriginateMetric int
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    DefaultInformationOriginateMetricType string
    Set default route type - Choices: type1, type2
    DefaultInformationOriginateMetricTypeVariable string
    Variable name
    DefaultInformationOriginateMetricVariable string
    Variable name
    Description string
    The description of the Feature
    DistanceExternal int
    Set distance for external routes - Range: 1-255 - Default value: 110
    DistanceExternalVariable string
    Variable name
    DistanceInterArea int
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    DistanceInterAreaVariable string
    Variable name
    DistanceIntraArea int
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    DistanceIntraAreaVariable string
    Variable name
    Name string
    The name of the Feature
    Redistributes []TransportRoutingOspfFeatureRedistributeArgs
    Redistribute routes
    ReferenceBandwidth int
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    ReferenceBandwidthVariable string
    Variable name
    Rfc1583Compatible bool
    Calculate summary route cost based on RFC 1583 - Default value: true
    Rfc1583CompatibleVariable string
    Variable name
    RoutePolicyId string
    RouterId string
    Set OSPF router ID to override system IP address
    RouterIdVariable string
    Variable name
    RouterLsas []TransportRoutingOspfFeatureRouterLsaArgs
    Advertise own router LSA with infinite distance
    SpfCalculationDelay int
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    SpfCalculationDelayVariable string
    Variable name
    SpfInitialHoldTime int
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    SpfInitialHoldTimeVariable string
    Variable name
    SpfMaximumHoldTime int
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    SpfMaximumHoldTimeVariable string
    Variable name
    featureProfileId String
    Feature Profile ID
    areas List<TransportRoutingOspfFeatureArea>
    Configure OSPF area
    defaultInformationOriginate Boolean
    Distribute default external route into OSPF - Default value: false
    defaultInformationOriginateAlways Boolean
    Always advertise default route - Default value: false
    defaultInformationOriginateAlwaysVariable String
    Variable name
    defaultInformationOriginateMetric Integer
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    defaultInformationOriginateMetricType String
    Set default route type - Choices: type1, type2
    defaultInformationOriginateMetricTypeVariable String
    Variable name
    defaultInformationOriginateMetricVariable String
    Variable name
    description String
    The description of the Feature
    distanceExternal Integer
    Set distance for external routes - Range: 1-255 - Default value: 110
    distanceExternalVariable String
    Variable name
    distanceInterArea Integer
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    distanceInterAreaVariable String
    Variable name
    distanceIntraArea Integer
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    distanceIntraAreaVariable String
    Variable name
    name String
    The name of the Feature
    redistributes List<TransportRoutingOspfFeatureRedistribute>
    Redistribute routes
    referenceBandwidth Integer
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    referenceBandwidthVariable String
    Variable name
    rfc1583Compatible Boolean
    Calculate summary route cost based on RFC 1583 - Default value: true
    rfc1583CompatibleVariable String
    Variable name
    routePolicyId String
    routerId String
    Set OSPF router ID to override system IP address
    routerIdVariable String
    Variable name
    routerLsas List<TransportRoutingOspfFeatureRouterLsa>
    Advertise own router LSA with infinite distance
    spfCalculationDelay Integer
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    spfCalculationDelayVariable String
    Variable name
    spfInitialHoldTime Integer
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    spfInitialHoldTimeVariable String
    Variable name
    spfMaximumHoldTime Integer
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    spfMaximumHoldTimeVariable String
    Variable name
    featureProfileId string
    Feature Profile ID
    areas TransportRoutingOspfFeatureArea[]
    Configure OSPF area
    defaultInformationOriginate boolean
    Distribute default external route into OSPF - Default value: false
    defaultInformationOriginateAlways boolean
    Always advertise default route - Default value: false
    defaultInformationOriginateAlwaysVariable string
    Variable name
    defaultInformationOriginateMetric number
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    defaultInformationOriginateMetricType string
    Set default route type - Choices: type1, type2
    defaultInformationOriginateMetricTypeVariable string
    Variable name
    defaultInformationOriginateMetricVariable string
    Variable name
    description string
    The description of the Feature
    distanceExternal number
    Set distance for external routes - Range: 1-255 - Default value: 110
    distanceExternalVariable string
    Variable name
    distanceInterArea number
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    distanceInterAreaVariable string
    Variable name
    distanceIntraArea number
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    distanceIntraAreaVariable string
    Variable name
    name string
    The name of the Feature
    redistributes TransportRoutingOspfFeatureRedistribute[]
    Redistribute routes
    referenceBandwidth number
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    referenceBandwidthVariable string
    Variable name
    rfc1583Compatible boolean
    Calculate summary route cost based on RFC 1583 - Default value: true
    rfc1583CompatibleVariable string
    Variable name
    routePolicyId string
    routerId string
    Set OSPF router ID to override system IP address
    routerIdVariable string
    Variable name
    routerLsas TransportRoutingOspfFeatureRouterLsa[]
    Advertise own router LSA with infinite distance
    spfCalculationDelay number
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    spfCalculationDelayVariable string
    Variable name
    spfInitialHoldTime number
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    spfInitialHoldTimeVariable string
    Variable name
    spfMaximumHoldTime number
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    spfMaximumHoldTimeVariable string
    Variable name
    feature_profile_id str
    Feature Profile ID
    areas Sequence[TransportRoutingOspfFeatureAreaArgs]
    Configure OSPF area
    default_information_originate bool
    Distribute default external route into OSPF - Default value: false
    default_information_originate_always bool
    Always advertise default route - Default value: false
    default_information_originate_always_variable str
    Variable name
    default_information_originate_metric int
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    default_information_originate_metric_type str
    Set default route type - Choices: type1, type2
    default_information_originate_metric_type_variable str
    Variable name
    default_information_originate_metric_variable str
    Variable name
    description str
    The description of the Feature
    distance_external int
    Set distance for external routes - Range: 1-255 - Default value: 110
    distance_external_variable str
    Variable name
    distance_inter_area int
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    distance_inter_area_variable str
    Variable name
    distance_intra_area int
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    distance_intra_area_variable str
    Variable name
    name str
    The name of the Feature
    redistributes Sequence[TransportRoutingOspfFeatureRedistributeArgs]
    Redistribute routes
    reference_bandwidth int
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    reference_bandwidth_variable str
    Variable name
    rfc1583_compatible bool
    Calculate summary route cost based on RFC 1583 - Default value: true
    rfc1583_compatible_variable str
    Variable name
    route_policy_id str
    router_id str
    Set OSPF router ID to override system IP address
    router_id_variable str
    Variable name
    router_lsas Sequence[TransportRoutingOspfFeatureRouterLsaArgs]
    Advertise own router LSA with infinite distance
    spf_calculation_delay int
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    spf_calculation_delay_variable str
    Variable name
    spf_initial_hold_time int
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    spf_initial_hold_time_variable str
    Variable name
    spf_maximum_hold_time int
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    spf_maximum_hold_time_variable str
    Variable name
    featureProfileId String
    Feature Profile ID
    areas List<Property Map>
    Configure OSPF area
    defaultInformationOriginate Boolean
    Distribute default external route into OSPF - Default value: false
    defaultInformationOriginateAlways Boolean
    Always advertise default route - Default value: false
    defaultInformationOriginateAlwaysVariable String
    Variable name
    defaultInformationOriginateMetric Number
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    defaultInformationOriginateMetricType String
    Set default route type - Choices: type1, type2
    defaultInformationOriginateMetricTypeVariable String
    Variable name
    defaultInformationOriginateMetricVariable String
    Variable name
    description String
    The description of the Feature
    distanceExternal Number
    Set distance for external routes - Range: 1-255 - Default value: 110
    distanceExternalVariable String
    Variable name
    distanceInterArea Number
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    distanceInterAreaVariable String
    Variable name
    distanceIntraArea Number
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    distanceIntraAreaVariable String
    Variable name
    name String
    The name of the Feature
    redistributes List<Property Map>
    Redistribute routes
    referenceBandwidth Number
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    referenceBandwidthVariable String
    Variable name
    rfc1583Compatible Boolean
    Calculate summary route cost based on RFC 1583 - Default value: true
    rfc1583CompatibleVariable String
    Variable name
    routePolicyId String
    routerId String
    Set OSPF router ID to override system IP address
    routerIdVariable String
    Variable name
    routerLsas List<Property Map>
    Advertise own router LSA with infinite distance
    spfCalculationDelay Number
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    spfCalculationDelayVariable String
    Variable name
    spfInitialHoldTime Number
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    spfInitialHoldTimeVariable String
    Variable name
    spfMaximumHoldTime Number
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    spfMaximumHoldTimeVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TransportRoutingOspfFeature resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the Feature
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the Feature
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the Feature

    Look up Existing TransportRoutingOspfFeature Resource

    Get an existing TransportRoutingOspfFeature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TransportRoutingOspfFeatureState, opts?: CustomResourceOptions): TransportRoutingOspfFeature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            areas: Optional[Sequence[TransportRoutingOspfFeatureAreaArgs]] = None,
            default_information_originate: Optional[bool] = None,
            default_information_originate_always: Optional[bool] = None,
            default_information_originate_always_variable: Optional[str] = None,
            default_information_originate_metric: Optional[int] = None,
            default_information_originate_metric_type: Optional[str] = None,
            default_information_originate_metric_type_variable: Optional[str] = None,
            default_information_originate_metric_variable: Optional[str] = None,
            description: Optional[str] = None,
            distance_external: Optional[int] = None,
            distance_external_variable: Optional[str] = None,
            distance_inter_area: Optional[int] = None,
            distance_inter_area_variable: Optional[str] = None,
            distance_intra_area: Optional[int] = None,
            distance_intra_area_variable: Optional[str] = None,
            feature_profile_id: Optional[str] = None,
            name: Optional[str] = None,
            redistributes: Optional[Sequence[TransportRoutingOspfFeatureRedistributeArgs]] = None,
            reference_bandwidth: Optional[int] = None,
            reference_bandwidth_variable: Optional[str] = None,
            rfc1583_compatible: Optional[bool] = None,
            rfc1583_compatible_variable: Optional[str] = None,
            route_policy_id: Optional[str] = None,
            router_id: Optional[str] = None,
            router_id_variable: Optional[str] = None,
            router_lsas: Optional[Sequence[TransportRoutingOspfFeatureRouterLsaArgs]] = None,
            spf_calculation_delay: Optional[int] = None,
            spf_calculation_delay_variable: Optional[str] = None,
            spf_initial_hold_time: Optional[int] = None,
            spf_initial_hold_time_variable: Optional[str] = None,
            spf_maximum_hold_time: Optional[int] = None,
            spf_maximum_hold_time_variable: Optional[str] = None,
            version: Optional[int] = None) -> TransportRoutingOspfFeature
    func GetTransportRoutingOspfFeature(ctx *Context, name string, id IDInput, state *TransportRoutingOspfFeatureState, opts ...ResourceOption) (*TransportRoutingOspfFeature, error)
    public static TransportRoutingOspfFeature Get(string name, Input<string> id, TransportRoutingOspfFeatureState? state, CustomResourceOptions? opts = null)
    public static TransportRoutingOspfFeature get(String name, Output<String> id, TransportRoutingOspfFeatureState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Areas List<TransportRoutingOspfFeatureArea>
    Configure OSPF area
    DefaultInformationOriginate bool
    Distribute default external route into OSPF - Default value: false
    DefaultInformationOriginateAlways bool
    Always advertise default route - Default value: false
    DefaultInformationOriginateAlwaysVariable string
    Variable name
    DefaultInformationOriginateMetric int
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    DefaultInformationOriginateMetricType string
    Set default route type - Choices: type1, type2
    DefaultInformationOriginateMetricTypeVariable string
    Variable name
    DefaultInformationOriginateMetricVariable string
    Variable name
    Description string
    The description of the Feature
    DistanceExternal int
    Set distance for external routes - Range: 1-255 - Default value: 110
    DistanceExternalVariable string
    Variable name
    DistanceInterArea int
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    DistanceInterAreaVariable string
    Variable name
    DistanceIntraArea int
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    DistanceIntraAreaVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Name string
    The name of the Feature
    Redistributes List<TransportRoutingOspfFeatureRedistribute>
    Redistribute routes
    ReferenceBandwidth int
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    ReferenceBandwidthVariable string
    Variable name
    Rfc1583Compatible bool
    Calculate summary route cost based on RFC 1583 - Default value: true
    Rfc1583CompatibleVariable string
    Variable name
    RoutePolicyId string
    RouterId string
    Set OSPF router ID to override system IP address
    RouterIdVariable string
    Variable name
    RouterLsas List<TransportRoutingOspfFeatureRouterLsa>
    Advertise own router LSA with infinite distance
    SpfCalculationDelay int
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    SpfCalculationDelayVariable string
    Variable name
    SpfInitialHoldTime int
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    SpfInitialHoldTimeVariable string
    Variable name
    SpfMaximumHoldTime int
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    SpfMaximumHoldTimeVariable string
    Variable name
    Version int
    The version of the Feature
    Areas []TransportRoutingOspfFeatureAreaArgs
    Configure OSPF area
    DefaultInformationOriginate bool
    Distribute default external route into OSPF - Default value: false
    DefaultInformationOriginateAlways bool
    Always advertise default route - Default value: false
    DefaultInformationOriginateAlwaysVariable string
    Variable name
    DefaultInformationOriginateMetric int
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    DefaultInformationOriginateMetricType string
    Set default route type - Choices: type1, type2
    DefaultInformationOriginateMetricTypeVariable string
    Variable name
    DefaultInformationOriginateMetricVariable string
    Variable name
    Description string
    The description of the Feature
    DistanceExternal int
    Set distance for external routes - Range: 1-255 - Default value: 110
    DistanceExternalVariable string
    Variable name
    DistanceInterArea int
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    DistanceInterAreaVariable string
    Variable name
    DistanceIntraArea int
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    DistanceIntraAreaVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Name string
    The name of the Feature
    Redistributes []TransportRoutingOspfFeatureRedistributeArgs
    Redistribute routes
    ReferenceBandwidth int
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    ReferenceBandwidthVariable string
    Variable name
    Rfc1583Compatible bool
    Calculate summary route cost based on RFC 1583 - Default value: true
    Rfc1583CompatibleVariable string
    Variable name
    RoutePolicyId string
    RouterId string
    Set OSPF router ID to override system IP address
    RouterIdVariable string
    Variable name
    RouterLsas []TransportRoutingOspfFeatureRouterLsaArgs
    Advertise own router LSA with infinite distance
    SpfCalculationDelay int
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    SpfCalculationDelayVariable string
    Variable name
    SpfInitialHoldTime int
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    SpfInitialHoldTimeVariable string
    Variable name
    SpfMaximumHoldTime int
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    SpfMaximumHoldTimeVariable string
    Variable name
    Version int
    The version of the Feature
    areas List<TransportRoutingOspfFeatureArea>
    Configure OSPF area
    defaultInformationOriginate Boolean
    Distribute default external route into OSPF - Default value: false
    defaultInformationOriginateAlways Boolean
    Always advertise default route - Default value: false
    defaultInformationOriginateAlwaysVariable String
    Variable name
    defaultInformationOriginateMetric Integer
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    defaultInformationOriginateMetricType String
    Set default route type - Choices: type1, type2
    defaultInformationOriginateMetricTypeVariable String
    Variable name
    defaultInformationOriginateMetricVariable String
    Variable name
    description String
    The description of the Feature
    distanceExternal Integer
    Set distance for external routes - Range: 1-255 - Default value: 110
    distanceExternalVariable String
    Variable name
    distanceInterArea Integer
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    distanceInterAreaVariable String
    Variable name
    distanceIntraArea Integer
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    distanceIntraAreaVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    name String
    The name of the Feature
    redistributes List<TransportRoutingOspfFeatureRedistribute>
    Redistribute routes
    referenceBandwidth Integer
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    referenceBandwidthVariable String
    Variable name
    rfc1583Compatible Boolean
    Calculate summary route cost based on RFC 1583 - Default value: true
    rfc1583CompatibleVariable String
    Variable name
    routePolicyId String
    routerId String
    Set OSPF router ID to override system IP address
    routerIdVariable String
    Variable name
    routerLsas List<TransportRoutingOspfFeatureRouterLsa>
    Advertise own router LSA with infinite distance
    spfCalculationDelay Integer
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    spfCalculationDelayVariable String
    Variable name
    spfInitialHoldTime Integer
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    spfInitialHoldTimeVariable String
    Variable name
    spfMaximumHoldTime Integer
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    spfMaximumHoldTimeVariable String
    Variable name
    version Integer
    The version of the Feature
    areas TransportRoutingOspfFeatureArea[]
    Configure OSPF area
    defaultInformationOriginate boolean
    Distribute default external route into OSPF - Default value: false
    defaultInformationOriginateAlways boolean
    Always advertise default route - Default value: false
    defaultInformationOriginateAlwaysVariable string
    Variable name
    defaultInformationOriginateMetric number
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    defaultInformationOriginateMetricType string
    Set default route type - Choices: type1, type2
    defaultInformationOriginateMetricTypeVariable string
    Variable name
    defaultInformationOriginateMetricVariable string
    Variable name
    description string
    The description of the Feature
    distanceExternal number
    Set distance for external routes - Range: 1-255 - Default value: 110
    distanceExternalVariable string
    Variable name
    distanceInterArea number
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    distanceInterAreaVariable string
    Variable name
    distanceIntraArea number
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    distanceIntraAreaVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    name string
    The name of the Feature
    redistributes TransportRoutingOspfFeatureRedistribute[]
    Redistribute routes
    referenceBandwidth number
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    referenceBandwidthVariable string
    Variable name
    rfc1583Compatible boolean
    Calculate summary route cost based on RFC 1583 - Default value: true
    rfc1583CompatibleVariable string
    Variable name
    routePolicyId string
    routerId string
    Set OSPF router ID to override system IP address
    routerIdVariable string
    Variable name
    routerLsas TransportRoutingOspfFeatureRouterLsa[]
    Advertise own router LSA with infinite distance
    spfCalculationDelay number
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    spfCalculationDelayVariable string
    Variable name
    spfInitialHoldTime number
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    spfInitialHoldTimeVariable string
    Variable name
    spfMaximumHoldTime number
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    spfMaximumHoldTimeVariable string
    Variable name
    version number
    The version of the Feature
    areas Sequence[TransportRoutingOspfFeatureAreaArgs]
    Configure OSPF area
    default_information_originate bool
    Distribute default external route into OSPF - Default value: false
    default_information_originate_always bool
    Always advertise default route - Default value: false
    default_information_originate_always_variable str
    Variable name
    default_information_originate_metric int
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    default_information_originate_metric_type str
    Set default route type - Choices: type1, type2
    default_information_originate_metric_type_variable str
    Variable name
    default_information_originate_metric_variable str
    Variable name
    description str
    The description of the Feature
    distance_external int
    Set distance for external routes - Range: 1-255 - Default value: 110
    distance_external_variable str
    Variable name
    distance_inter_area int
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    distance_inter_area_variable str
    Variable name
    distance_intra_area int
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    distance_intra_area_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    name str
    The name of the Feature
    redistributes Sequence[TransportRoutingOspfFeatureRedistributeArgs]
    Redistribute routes
    reference_bandwidth int
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    reference_bandwidth_variable str
    Variable name
    rfc1583_compatible bool
    Calculate summary route cost based on RFC 1583 - Default value: true
    rfc1583_compatible_variable str
    Variable name
    route_policy_id str
    router_id str
    Set OSPF router ID to override system IP address
    router_id_variable str
    Variable name
    router_lsas Sequence[TransportRoutingOspfFeatureRouterLsaArgs]
    Advertise own router LSA with infinite distance
    spf_calculation_delay int
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    spf_calculation_delay_variable str
    Variable name
    spf_initial_hold_time int
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    spf_initial_hold_time_variable str
    Variable name
    spf_maximum_hold_time int
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    spf_maximum_hold_time_variable str
    Variable name
    version int
    The version of the Feature
    areas List<Property Map>
    Configure OSPF area
    defaultInformationOriginate Boolean
    Distribute default external route into OSPF - Default value: false
    defaultInformationOriginateAlways Boolean
    Always advertise default route - Default value: false
    defaultInformationOriginateAlwaysVariable String
    Variable name
    defaultInformationOriginateMetric Number
    Set metric used to generate default route <0..16777214> - Range: 0-16777214
    defaultInformationOriginateMetricType String
    Set default route type - Choices: type1, type2
    defaultInformationOriginateMetricTypeVariable String
    Variable name
    defaultInformationOriginateMetricVariable String
    Variable name
    description String
    The description of the Feature
    distanceExternal Number
    Set distance for external routes - Range: 1-255 - Default value: 110
    distanceExternalVariable String
    Variable name
    distanceInterArea Number
    Set distance for inter-area routes - Range: 1-255 - Default value: 110
    distanceInterAreaVariable String
    Variable name
    distanceIntraArea Number
    Set distance for intra-area routes - Range: 1-255 - Default value: 110
    distanceIntraAreaVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    name String
    The name of the Feature
    redistributes List<Property Map>
    Redistribute routes
    referenceBandwidth Number
    Set reference bandwidth method to assign OSPF cost - Range: 1-4294967 - Default value: 100
    referenceBandwidthVariable String
    Variable name
    rfc1583Compatible Boolean
    Calculate summary route cost based on RFC 1583 - Default value: true
    rfc1583CompatibleVariable String
    Variable name
    routePolicyId String
    routerId String
    Set OSPF router ID to override system IP address
    routerIdVariable String
    Variable name
    routerLsas List<Property Map>
    Advertise own router LSA with infinite distance
    spfCalculationDelay Number
    Set delay from first change received until performing SPF calculation - Range: 1-600000 - Default value: 200
    spfCalculationDelayVariable String
    Variable name
    spfInitialHoldTime Number
    Set initial hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 1000
    spfInitialHoldTimeVariable String
    Variable name
    spfMaximumHoldTime Number
    Set maximum hold time between consecutive SPF calculations - Range: 1-600000 - Default value: 10000
    spfMaximumHoldTimeVariable String
    Variable name
    version Number
    The version of the Feature

    Supporting Types

    TransportRoutingOspfFeatureArea, TransportRoutingOspfFeatureAreaArgs

    AreaNumber int
    Set OSPF area number

    • Range: 0-4294967295
    AreaNumberVariable string
    Variable name
    AreaType string
    set the area type

    • Choices: stub, nssa
    Interfaces List<TransportRoutingOspfFeatureAreaInterface>
    Set OSPF interface parameters
    NoSummary bool
    Do not inject interarea routes into STUB or NSSA

    • Default value: false
    NoSummaryVariable string
    Variable name
    Ranges List<TransportRoutingOspfFeatureAreaRange>
    Summarize OSPF routes at an area boundary
    AreaNumber int
    Set OSPF area number

    • Range: 0-4294967295
    AreaNumberVariable string
    Variable name
    AreaType string
    set the area type

    • Choices: stub, nssa
    Interfaces []TransportRoutingOspfFeatureAreaInterface
    Set OSPF interface parameters
    NoSummary bool
    Do not inject interarea routes into STUB or NSSA

    • Default value: false
    NoSummaryVariable string
    Variable name
    Ranges []TransportRoutingOspfFeatureAreaRange
    Summarize OSPF routes at an area boundary
    areaNumber Integer
    Set OSPF area number

    • Range: 0-4294967295
    areaNumberVariable String
    Variable name
    areaType String
    set the area type

    • Choices: stub, nssa
    interfaces List<TransportRoutingOspfFeatureAreaInterface>
    Set OSPF interface parameters
    noSummary Boolean
    Do not inject interarea routes into STUB or NSSA

    • Default value: false
    noSummaryVariable String
    Variable name
    ranges List<TransportRoutingOspfFeatureAreaRange>
    Summarize OSPF routes at an area boundary
    areaNumber number
    Set OSPF area number

    • Range: 0-4294967295
    areaNumberVariable string
    Variable name
    areaType string
    set the area type

    • Choices: stub, nssa
    interfaces TransportRoutingOspfFeatureAreaInterface[]
    Set OSPF interface parameters
    noSummary boolean
    Do not inject interarea routes into STUB or NSSA

    • Default value: false
    noSummaryVariable string
    Variable name
    ranges TransportRoutingOspfFeatureAreaRange[]
    Summarize OSPF routes at an area boundary
    area_number int
    Set OSPF area number

    • Range: 0-4294967295
    area_number_variable str
    Variable name
    area_type str
    set the area type

    • Choices: stub, nssa
    interfaces Sequence[TransportRoutingOspfFeatureAreaInterface]
    Set OSPF interface parameters
    no_summary bool
    Do not inject interarea routes into STUB or NSSA

    • Default value: false
    no_summary_variable str
    Variable name
    ranges Sequence[TransportRoutingOspfFeatureAreaRange]
    Summarize OSPF routes at an area boundary
    areaNumber Number
    Set OSPF area number

    • Range: 0-4294967295
    areaNumberVariable String
    Variable name
    areaType String
    set the area type

    • Choices: stub, nssa
    interfaces List<Property Map>
    Set OSPF interface parameters
    noSummary Boolean
    Do not inject interarea routes into STUB or NSSA

    • Default value: false
    noSummaryVariable String
    Variable name
    ranges List<Property Map>
    Summarize OSPF routes at an area boundary

    TransportRoutingOspfFeatureAreaInterface, TransportRoutingOspfFeatureAreaInterfaceArgs

    AuthenticationType string
    Set OSPF interface authentication type

    • Choices: message-digest
    AuthenticationTypeVariable string
    Variable name
    Cost int
    Set cost of OSPF interface

    • Range: 1-65535
    CostVariable string
    Variable name
    DeadInterval int
    Set interval after which neighbor is declared to be down

    • Range: 1-65535
    • Default value: 40
    DeadIntervalVariable string
    Variable name
    DesignatedRouterPriority int
    Set router’s priority to be elected as designated router

    • Range: 0-255
    • Default value: 1
    DesignatedRouterPriorityVariable string
    Variable name
    HelloInterval int
    Set interval between OSPF hello packets

    • Range: 1-65535
    • Default value: 10
    HelloIntervalVariable string
    Variable name
    LsaRetransmitInterval int
    Set time between retransmitting LSAs

    • Range: 1-65535
    • Default value: 5
    LsaRetransmitIntervalVariable string
    Variable name
    MessageDigestKey string
    Set MD5 authentication key
    MessageDigestKeyId int
    Set MD5 message digest key

    • Range: 1-255
    MessageDigestKeyIdVariable string
    Variable name
    MessageDigestKeyVariable string
    Variable name
    Name string
    Set interface name
    NameVariable string
    Variable name
    NetworkType string
    Set the OSPF network type

    • Choices: broadcast, point-to-point, non-broadcast, point-to-multipoint
    • Default value: broadcast
    NetworkTypeVariable string
    Variable name
    PassiveInterface bool
    Set the interface to advertise its address, but not to actively run OSPF

    • Default value: false
    PassiveInterfaceVariable string
    Variable name
    AuthenticationType string
    Set OSPF interface authentication type

    • Choices: message-digest
    AuthenticationTypeVariable string
    Variable name
    Cost int
    Set cost of OSPF interface

    • Range: 1-65535
    CostVariable string
    Variable name
    DeadInterval int
    Set interval after which neighbor is declared to be down

    • Range: 1-65535
    • Default value: 40
    DeadIntervalVariable string
    Variable name
    DesignatedRouterPriority int
    Set router’s priority to be elected as designated router

    • Range: 0-255
    • Default value: 1
    DesignatedRouterPriorityVariable string
    Variable name
    HelloInterval int
    Set interval between OSPF hello packets

    • Range: 1-65535
    • Default value: 10
    HelloIntervalVariable string
    Variable name
    LsaRetransmitInterval int
    Set time between retransmitting LSAs

    • Range: 1-65535
    • Default value: 5
    LsaRetransmitIntervalVariable string
    Variable name
    MessageDigestKey string
    Set MD5 authentication key
    MessageDigestKeyId int
    Set MD5 message digest key

    • Range: 1-255
    MessageDigestKeyIdVariable string
    Variable name
    MessageDigestKeyVariable string
    Variable name
    Name string
    Set interface name
    NameVariable string
    Variable name
    NetworkType string
    Set the OSPF network type

    • Choices: broadcast, point-to-point, non-broadcast, point-to-multipoint
    • Default value: broadcast
    NetworkTypeVariable string
    Variable name
    PassiveInterface bool
    Set the interface to advertise its address, but not to actively run OSPF

    • Default value: false
    PassiveInterfaceVariable string
    Variable name
    authenticationType String
    Set OSPF interface authentication type

    • Choices: message-digest
    authenticationTypeVariable String
    Variable name
    cost Integer
    Set cost of OSPF interface

    • Range: 1-65535
    costVariable String
    Variable name
    deadInterval Integer
    Set interval after which neighbor is declared to be down

    • Range: 1-65535
    • Default value: 40
    deadIntervalVariable String
    Variable name
    designatedRouterPriority Integer
    Set router’s priority to be elected as designated router

    • Range: 0-255
    • Default value: 1
    designatedRouterPriorityVariable String
    Variable name
    helloInterval Integer
    Set interval between OSPF hello packets

    • Range: 1-65535
    • Default value: 10
    helloIntervalVariable String
    Variable name
    lsaRetransmitInterval Integer
    Set time between retransmitting LSAs

    • Range: 1-65535
    • Default value: 5
    lsaRetransmitIntervalVariable String
    Variable name
    messageDigestKey String
    Set MD5 authentication key
    messageDigestKeyId Integer
    Set MD5 message digest key

    • Range: 1-255
    messageDigestKeyIdVariable String
    Variable name
    messageDigestKeyVariable String
    Variable name
    name String
    Set interface name
    nameVariable String
    Variable name
    networkType String
    Set the OSPF network type

    • Choices: broadcast, point-to-point, non-broadcast, point-to-multipoint
    • Default value: broadcast
    networkTypeVariable String
    Variable name
    passiveInterface Boolean
    Set the interface to advertise its address, but not to actively run OSPF

    • Default value: false
    passiveInterfaceVariable String
    Variable name
    authenticationType string
    Set OSPF interface authentication type

    • Choices: message-digest
    authenticationTypeVariable string
    Variable name
    cost number
    Set cost of OSPF interface

    • Range: 1-65535
    costVariable string
    Variable name
    deadInterval number
    Set interval after which neighbor is declared to be down

    • Range: 1-65535
    • Default value: 40
    deadIntervalVariable string
    Variable name
    designatedRouterPriority number
    Set router’s priority to be elected as designated router

    • Range: 0-255
    • Default value: 1
    designatedRouterPriorityVariable string
    Variable name
    helloInterval number
    Set interval between OSPF hello packets

    • Range: 1-65535
    • Default value: 10
    helloIntervalVariable string
    Variable name
    lsaRetransmitInterval number
    Set time between retransmitting LSAs

    • Range: 1-65535
    • Default value: 5
    lsaRetransmitIntervalVariable string
    Variable name
    messageDigestKey string
    Set MD5 authentication key
    messageDigestKeyId number
    Set MD5 message digest key

    • Range: 1-255
    messageDigestKeyIdVariable string
    Variable name
    messageDigestKeyVariable string
    Variable name
    name string
    Set interface name
    nameVariable string
    Variable name
    networkType string
    Set the OSPF network type

    • Choices: broadcast, point-to-point, non-broadcast, point-to-multipoint
    • Default value: broadcast
    networkTypeVariable string
    Variable name
    passiveInterface boolean
    Set the interface to advertise its address, but not to actively run OSPF

    • Default value: false
    passiveInterfaceVariable string
    Variable name
    authentication_type str
    Set OSPF interface authentication type

    • Choices: message-digest
    authentication_type_variable str
    Variable name
    cost int
    Set cost of OSPF interface

    • Range: 1-65535
    cost_variable str
    Variable name
    dead_interval int
    Set interval after which neighbor is declared to be down

    • Range: 1-65535
    • Default value: 40
    dead_interval_variable str
    Variable name
    designated_router_priority int
    Set router’s priority to be elected as designated router

    • Range: 0-255
    • Default value: 1
    designated_router_priority_variable str
    Variable name
    hello_interval int
    Set interval between OSPF hello packets

    • Range: 1-65535
    • Default value: 10
    hello_interval_variable str
    Variable name
    lsa_retransmit_interval int
    Set time between retransmitting LSAs

    • Range: 1-65535
    • Default value: 5
    lsa_retransmit_interval_variable str
    Variable name
    message_digest_key str
    Set MD5 authentication key
    message_digest_key_id int
    Set MD5 message digest key

    • Range: 1-255
    message_digest_key_id_variable str
    Variable name
    message_digest_key_variable str
    Variable name
    name str
    Set interface name
    name_variable str
    Variable name
    network_type str
    Set the OSPF network type

    • Choices: broadcast, point-to-point, non-broadcast, point-to-multipoint
    • Default value: broadcast
    network_type_variable str
    Variable name
    passive_interface bool
    Set the interface to advertise its address, but not to actively run OSPF

    • Default value: false
    passive_interface_variable str
    Variable name
    authenticationType String
    Set OSPF interface authentication type

    • Choices: message-digest
    authenticationTypeVariable String
    Variable name
    cost Number
    Set cost of OSPF interface

    • Range: 1-65535
    costVariable String
    Variable name
    deadInterval Number
    Set interval after which neighbor is declared to be down

    • Range: 1-65535
    • Default value: 40
    deadIntervalVariable String
    Variable name
    designatedRouterPriority Number
    Set router’s priority to be elected as designated router

    • Range: 0-255
    • Default value: 1
    designatedRouterPriorityVariable String
    Variable name
    helloInterval Number
    Set interval between OSPF hello packets

    • Range: 1-65535
    • Default value: 10
    helloIntervalVariable String
    Variable name
    lsaRetransmitInterval Number
    Set time between retransmitting LSAs

    • Range: 1-65535
    • Default value: 5
    lsaRetransmitIntervalVariable String
    Variable name
    messageDigestKey String
    Set MD5 authentication key
    messageDigestKeyId Number
    Set MD5 message digest key

    • Range: 1-255
    messageDigestKeyIdVariable String
    Variable name
    messageDigestKeyVariable String
    Variable name
    name String
    Set interface name
    nameVariable String
    Variable name
    networkType String
    Set the OSPF network type

    • Choices: broadcast, point-to-point, non-broadcast, point-to-multipoint
    • Default value: broadcast
    networkTypeVariable String
    Variable name
    passiveInterface Boolean
    Set the interface to advertise its address, but not to actively run OSPF

    • Default value: false
    passiveInterfaceVariable String
    Variable name

    TransportRoutingOspfFeatureAreaRange, TransportRoutingOspfFeatureAreaRangeArgs

    Cost int
    Set cost for this range

    • Range: 0-16777214
    CostVariable string
    Variable name
    IpAddress string
    IP Address
    IpAddressVariable string
    Variable name
    NoAdvertise bool
    Do not advertise this range

    • Default value: false
    NoAdvertiseVariable string
    Variable name
    SubnetMask string
    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
    SubnetMaskVariable string
    Variable name
    Cost int
    Set cost for this range

    • Range: 0-16777214
    CostVariable string
    Variable name
    IpAddress string
    IP Address
    IpAddressVariable string
    Variable name
    NoAdvertise bool
    Do not advertise this range

    • Default value: false
    NoAdvertiseVariable string
    Variable name
    SubnetMask string
    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
    SubnetMaskVariable string
    Variable name
    cost Integer
    Set cost for this range

    • Range: 0-16777214
    costVariable String
    Variable name
    ipAddress String
    IP Address
    ipAddressVariable String
    Variable name
    noAdvertise Boolean
    Do not advertise this range

    • Default value: false
    noAdvertiseVariable String
    Variable name
    subnetMask String
    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
    subnetMaskVariable String
    Variable name
    cost number
    Set cost for this range

    • Range: 0-16777214
    costVariable string
    Variable name
    ipAddress string
    IP Address
    ipAddressVariable string
    Variable name
    noAdvertise boolean
    Do not advertise this range

    • Default value: false
    noAdvertiseVariable string
    Variable name
    subnetMask string
    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
    subnetMaskVariable string
    Variable name
    cost int
    Set cost for this range

    • Range: 0-16777214
    cost_variable str
    Variable name
    ip_address str
    IP Address
    ip_address_variable str
    Variable name
    no_advertise bool
    Do not advertise this range

    • Default value: false
    no_advertise_variable str
    Variable name
    subnet_mask str
    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
    subnet_mask_variable str
    Variable name
    cost Number
    Set cost for this range

    • Range: 0-16777214
    costVariable String
    Variable name
    ipAddress String
    IP Address
    ipAddressVariable String
    Variable name
    noAdvertise Boolean
    Do not advertise this range

    • Default value: false
    noAdvertiseVariable String
    Variable name
    subnetMask String
    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
    subnetMaskVariable String
    Variable name

    TransportRoutingOspfFeatureRedistribute, TransportRoutingOspfFeatureRedistributeArgs

    NatDia bool
    Enable NAT DIA for redistributed routes

    • Default value: true
    NatDiaVariable string
    Variable name
    Protocol string
    Set the protocol

    • Choices: static, connected, bgp, omp, nat, eigrp
    ProtocolVariable string
    Variable name
    RoutePolicyId string
    NatDia bool
    Enable NAT DIA for redistributed routes

    • Default value: true
    NatDiaVariable string
    Variable name
    Protocol string
    Set the protocol

    • Choices: static, connected, bgp, omp, nat, eigrp
    ProtocolVariable string
    Variable name
    RoutePolicyId string
    natDia Boolean
    Enable NAT DIA for redistributed routes

    • Default value: true
    natDiaVariable String
    Variable name
    protocol String
    Set the protocol

    • Choices: static, connected, bgp, omp, nat, eigrp
    protocolVariable String
    Variable name
    routePolicyId String
    natDia boolean
    Enable NAT DIA for redistributed routes

    • Default value: true
    natDiaVariable string
    Variable name
    protocol string
    Set the protocol

    • Choices: static, connected, bgp, omp, nat, eigrp
    protocolVariable string
    Variable name
    routePolicyId string
    nat_dia bool
    Enable NAT DIA for redistributed routes

    • Default value: true
    nat_dia_variable str
    Variable name
    protocol str
    Set the protocol

    • Choices: static, connected, bgp, omp, nat, eigrp
    protocol_variable str
    Variable name
    route_policy_id str
    natDia Boolean
    Enable NAT DIA for redistributed routes

    • Default value: true
    natDiaVariable String
    Variable name
    protocol String
    Set the protocol

    • Choices: static, connected, bgp, omp, nat, eigrp
    protocolVariable String
    Variable name
    routePolicyId String

    TransportRoutingOspfFeatureRouterLsa, TransportRoutingOspfFeatureRouterLsaArgs

    Time int
    Set how long to advertise maximum metric after router starts up

    • Range: 5-86400
    TimeVariable string
    Variable name
    Type string
    Set the router LSA advertisement type

    • Choices: administrative, on-startup
    Time int
    Set how long to advertise maximum metric after router starts up

    • Range: 5-86400
    TimeVariable string
    Variable name
    Type string
    Set the router LSA advertisement type

    • Choices: administrative, on-startup
    time Integer
    Set how long to advertise maximum metric after router starts up

    • Range: 5-86400
    timeVariable String
    Variable name
    type String
    Set the router LSA advertisement type

    • Choices: administrative, on-startup
    time number
    Set how long to advertise maximum metric after router starts up

    • Range: 5-86400
    timeVariable string
    Variable name
    type string
    Set the router LSA advertisement type

    • Choices: administrative, on-startup
    time int
    Set how long to advertise maximum metric after router starts up

    • Range: 5-86400
    time_variable str
    Variable name
    type str
    Set the router LSA advertisement type

    • Choices: administrative, on-startup
    time Number
    Set how long to advertise maximum metric after router starts up

    • Range: 5-86400
    timeVariable String
    Variable name
    type String
    Set the router LSA advertisement type

    • Choices: administrative, on-startup

    Import

    $ pulumi import sdwan:index/transportRoutingOspfFeature:TransportRoutingOspfFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi