1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. CiscoBfdFeatureTemplate
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.CiscoBfdFeatureTemplate

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    This resource can manage a Cisco BFD feature template.

    • Minimum SD-WAN Manager version: 15.0.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.CiscoBfdFeatureTemplate;
    import com.pulumi.sdwan.CiscoBfdFeatureTemplateArgs;
    import com.pulumi.sdwan.inputs.CiscoBfdFeatureTemplateColorArgs;
    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 CiscoBfdFeatureTemplate("example", CiscoBfdFeatureTemplateArgs.builder()        
                .name("Example")
                .description("My Example")
                .deviceTypes("vedge-C8000V")
                .multiplier(3)
                .pollInterval(800000)
                .defaultDscp(48)
                .colors(CiscoBfdFeatureTemplateColorArgs.builder()
                    .color("private5")
                    .hello_interval(1000)
                    .multiplier(7)
                    .pmtu_discovery(true)
                    .dscp(46)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:CiscoBfdFeatureTemplate
        properties:
          name: Example
          description: My Example
          deviceTypes:
            - vedge-C8000V
          multiplier: 3
          pollInterval: 800000
          defaultDscp: 48
          colors:
            - color: private5
              hello_interval: 1000
              multiplier: 7
              pmtu_discovery: true
              dscp: 46
    

    Create CiscoBfdFeatureTemplate Resource

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

    Constructor syntax

    new CiscoBfdFeatureTemplate(name: string, args: CiscoBfdFeatureTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def CiscoBfdFeatureTemplate(resource_name: str,
                                args: CiscoBfdFeatureTemplateArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def CiscoBfdFeatureTemplate(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                description: Optional[str] = None,
                                device_types: Optional[Sequence[str]] = None,
                                colors: Optional[Sequence[CiscoBfdFeatureTemplateColorArgs]] = None,
                                default_dscp: Optional[int] = None,
                                default_dscp_variable: Optional[str] = None,
                                multiplier: Optional[int] = None,
                                multiplier_variable: Optional[str] = None,
                                name: Optional[str] = None,
                                poll_interval: Optional[int] = None,
                                poll_interval_variable: Optional[str] = None)
    func NewCiscoBfdFeatureTemplate(ctx *Context, name string, args CiscoBfdFeatureTemplateArgs, opts ...ResourceOption) (*CiscoBfdFeatureTemplate, error)
    public CiscoBfdFeatureTemplate(string name, CiscoBfdFeatureTemplateArgs args, CustomResourceOptions? opts = null)
    public CiscoBfdFeatureTemplate(String name, CiscoBfdFeatureTemplateArgs args)
    public CiscoBfdFeatureTemplate(String name, CiscoBfdFeatureTemplateArgs args, CustomResourceOptions options)
    
    type: sdwan:CiscoBfdFeatureTemplate
    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 CiscoBfdFeatureTemplateArgs
    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 CiscoBfdFeatureTemplateArgs
    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 CiscoBfdFeatureTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CiscoBfdFeatureTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CiscoBfdFeatureTemplateArgs
    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 ciscoBfdFeatureTemplateResource = new Sdwan.CiscoBfdFeatureTemplate("ciscoBfdFeatureTemplateResource", new()
    {
        Description = "string",
        DeviceTypes = new[]
        {
            "string",
        },
        Colors = new[]
        {
            new Sdwan.Inputs.CiscoBfdFeatureTemplateColorArgs
            {
                Color = "string",
                ColorVariable = "string",
                Dscp = 0,
                DscpVariable = "string",
                HelloInterval = 0,
                HelloIntervalVariable = "string",
                Multiplier = 0,
                MultiplierVariable = "string",
                Optional = false,
                PmtuDiscovery = false,
                PmtuDiscoveryVariable = "string",
            },
        },
        DefaultDscp = 0,
        DefaultDscpVariable = "string",
        Multiplier = 0,
        MultiplierVariable = "string",
        Name = "string",
        PollInterval = 0,
        PollIntervalVariable = "string",
    });
    
    example, err := sdwan.NewCiscoBfdFeatureTemplate(ctx, "ciscoBfdFeatureTemplateResource", &sdwan.CiscoBfdFeatureTemplateArgs{
    	Description: pulumi.String("string"),
    	DeviceTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Colors: sdwan.CiscoBfdFeatureTemplateColorArray{
    		&sdwan.CiscoBfdFeatureTemplateColorArgs{
    			Color:                 pulumi.String("string"),
    			ColorVariable:         pulumi.String("string"),
    			Dscp:                  pulumi.Int(0),
    			DscpVariable:          pulumi.String("string"),
    			HelloInterval:         pulumi.Int(0),
    			HelloIntervalVariable: pulumi.String("string"),
    			Multiplier:            pulumi.Int(0),
    			MultiplierVariable:    pulumi.String("string"),
    			Optional:              pulumi.Bool(false),
    			PmtuDiscovery:         pulumi.Bool(false),
    			PmtuDiscoveryVariable: pulumi.String("string"),
    		},
    	},
    	DefaultDscp:          pulumi.Int(0),
    	DefaultDscpVariable:  pulumi.String("string"),
    	Multiplier:           pulumi.Int(0),
    	MultiplierVariable:   pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	PollInterval:         pulumi.Int(0),
    	PollIntervalVariable: pulumi.String("string"),
    })
    
    var ciscoBfdFeatureTemplateResource = new CiscoBfdFeatureTemplate("ciscoBfdFeatureTemplateResource", CiscoBfdFeatureTemplateArgs.builder()
        .description("string")
        .deviceTypes("string")
        .colors(CiscoBfdFeatureTemplateColorArgs.builder()
            .color("string")
            .colorVariable("string")
            .dscp(0)
            .dscpVariable("string")
            .helloInterval(0)
            .helloIntervalVariable("string")
            .multiplier(0)
            .multiplierVariable("string")
            .optional(false)
            .pmtuDiscovery(false)
            .pmtuDiscoveryVariable("string")
            .build())
        .defaultDscp(0)
        .defaultDscpVariable("string")
        .multiplier(0)
        .multiplierVariable("string")
        .name("string")
        .pollInterval(0)
        .pollIntervalVariable("string")
        .build());
    
    cisco_bfd_feature_template_resource = sdwan.CiscoBfdFeatureTemplate("ciscoBfdFeatureTemplateResource",
        description="string",
        device_types=["string"],
        colors=[sdwan.CiscoBfdFeatureTemplateColorArgs(
            color="string",
            color_variable="string",
            dscp=0,
            dscp_variable="string",
            hello_interval=0,
            hello_interval_variable="string",
            multiplier=0,
            multiplier_variable="string",
            optional=False,
            pmtu_discovery=False,
            pmtu_discovery_variable="string",
        )],
        default_dscp=0,
        default_dscp_variable="string",
        multiplier=0,
        multiplier_variable="string",
        name="string",
        poll_interval=0,
        poll_interval_variable="string")
    
    const ciscoBfdFeatureTemplateResource = new sdwan.CiscoBfdFeatureTemplate("ciscoBfdFeatureTemplateResource", {
        description: "string",
        deviceTypes: ["string"],
        colors: [{
            color: "string",
            colorVariable: "string",
            dscp: 0,
            dscpVariable: "string",
            helloInterval: 0,
            helloIntervalVariable: "string",
            multiplier: 0,
            multiplierVariable: "string",
            optional: false,
            pmtuDiscovery: false,
            pmtuDiscoveryVariable: "string",
        }],
        defaultDscp: 0,
        defaultDscpVariable: "string",
        multiplier: 0,
        multiplierVariable: "string",
        name: "string",
        pollInterval: 0,
        pollIntervalVariable: "string",
    });
    
    type: sdwan:CiscoBfdFeatureTemplate
    properties:
        colors:
            - color: string
              colorVariable: string
              dscp: 0
              dscpVariable: string
              helloInterval: 0
              helloIntervalVariable: string
              multiplier: 0
              multiplierVariable: string
              optional: false
              pmtuDiscovery: false
              pmtuDiscoveryVariable: string
        defaultDscp: 0
        defaultDscpVariable: string
        description: string
        deviceTypes:
            - string
        multiplier: 0
        multiplierVariable: string
        name: string
        pollInterval: 0
        pollIntervalVariable: string
    

    CiscoBfdFeatureTemplate 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 CiscoBfdFeatureTemplate resource accepts the following input properties:

    Description string
    The description of the feature template
    DeviceTypes List<string>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    Colors List<CiscoBfdFeatureTemplateColor>
    Set color that identifies the WAN transport tunnel
    DefaultDscp int
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    DefaultDscpVariable string
    Variable name
    Multiplier int
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    MultiplierVariable string
    Variable name
    Name string
    The name of the feature template
    PollInterval int
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    PollIntervalVariable string
    Variable name
    Description string
    The description of the feature template
    DeviceTypes []string
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    Colors []CiscoBfdFeatureTemplateColorArgs
    Set color that identifies the WAN transport tunnel
    DefaultDscp int
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    DefaultDscpVariable string
    Variable name
    Multiplier int
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    MultiplierVariable string
    Variable name
    Name string
    The name of the feature template
    PollInterval int
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    PollIntervalVariable string
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    colors List<CiscoBfdFeatureTemplateColor>
    Set color that identifies the WAN transport tunnel
    defaultDscp Integer
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    defaultDscpVariable String
    Variable name
    multiplier Integer
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    multiplierVariable String
    Variable name
    name String
    The name of the feature template
    pollInterval Integer
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    pollIntervalVariable String
    Variable name
    description string
    The description of the feature template
    deviceTypes string[]
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    colors CiscoBfdFeatureTemplateColor[]
    Set color that identifies the WAN transport tunnel
    defaultDscp number
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    defaultDscpVariable string
    Variable name
    multiplier number
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    multiplierVariable string
    Variable name
    name string
    The name of the feature template
    pollInterval number
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    pollIntervalVariable string
    Variable name
    description str
    The description of the feature template
    device_types Sequence[str]
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    colors Sequence[CiscoBfdFeatureTemplateColorArgs]
    Set color that identifies the WAN transport tunnel
    default_dscp int
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    default_dscp_variable str
    Variable name
    multiplier int
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    multiplier_variable str
    Variable name
    name str
    The name of the feature template
    poll_interval int
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    poll_interval_variable str
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    colors List<Property Map>
    Set color that identifies the WAN transport tunnel
    defaultDscp Number
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    defaultDscpVariable String
    Variable name
    multiplier Number
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    multiplierVariable String
    Variable name
    name String
    The name of the feature template
    pollInterval Number
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    pollIntervalVariable String
    Variable name

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    TemplateType string
    The template type
    Version int
    The version of the feature template
    Id string
    The provider-assigned unique ID for this managed resource.
    TemplateType string
    The template type
    Version int
    The version of the feature template
    id String
    The provider-assigned unique ID for this managed resource.
    templateType String
    The template type
    version Integer
    The version of the feature template
    id string
    The provider-assigned unique ID for this managed resource.
    templateType string
    The template type
    version number
    The version of the feature template
    id str
    The provider-assigned unique ID for this managed resource.
    template_type str
    The template type
    version int
    The version of the feature template
    id String
    The provider-assigned unique ID for this managed resource.
    templateType String
    The template type
    version Number
    The version of the feature template

    Look up Existing CiscoBfdFeatureTemplate Resource

    Get an existing CiscoBfdFeatureTemplate 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?: CiscoBfdFeatureTemplateState, opts?: CustomResourceOptions): CiscoBfdFeatureTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            colors: Optional[Sequence[CiscoBfdFeatureTemplateColorArgs]] = None,
            default_dscp: Optional[int] = None,
            default_dscp_variable: Optional[str] = None,
            description: Optional[str] = None,
            device_types: Optional[Sequence[str]] = None,
            multiplier: Optional[int] = None,
            multiplier_variable: Optional[str] = None,
            name: Optional[str] = None,
            poll_interval: Optional[int] = None,
            poll_interval_variable: Optional[str] = None,
            template_type: Optional[str] = None,
            version: Optional[int] = None) -> CiscoBfdFeatureTemplate
    func GetCiscoBfdFeatureTemplate(ctx *Context, name string, id IDInput, state *CiscoBfdFeatureTemplateState, opts ...ResourceOption) (*CiscoBfdFeatureTemplate, error)
    public static CiscoBfdFeatureTemplate Get(string name, Input<string> id, CiscoBfdFeatureTemplateState? state, CustomResourceOptions? opts = null)
    public static CiscoBfdFeatureTemplate get(String name, Output<String> id, CiscoBfdFeatureTemplateState 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:
    Colors List<CiscoBfdFeatureTemplateColor>
    Set color that identifies the WAN transport tunnel
    DefaultDscp int
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    DefaultDscpVariable string
    Variable name
    Description string
    The description of the feature template
    DeviceTypes List<string>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    Multiplier int
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    MultiplierVariable string
    Variable name
    Name string
    The name of the feature template
    PollInterval int
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    PollIntervalVariable string
    Variable name
    TemplateType string
    The template type
    Version int
    The version of the feature template
    Colors []CiscoBfdFeatureTemplateColorArgs
    Set color that identifies the WAN transport tunnel
    DefaultDscp int
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    DefaultDscpVariable string
    Variable name
    Description string
    The description of the feature template
    DeviceTypes []string
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    Multiplier int
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    MultiplierVariable string
    Variable name
    Name string
    The name of the feature template
    PollInterval int
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    PollIntervalVariable string
    Variable name
    TemplateType string
    The template type
    Version int
    The version of the feature template
    colors List<CiscoBfdFeatureTemplateColor>
    Set color that identifies the WAN transport tunnel
    defaultDscp Integer
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    defaultDscpVariable String
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    multiplier Integer
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    multiplierVariable String
    Variable name
    name String
    The name of the feature template
    pollInterval Integer
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    pollIntervalVariable String
    Variable name
    templateType String
    The template type
    version Integer
    The version of the feature template
    colors CiscoBfdFeatureTemplateColor[]
    Set color that identifies the WAN transport tunnel
    defaultDscp number
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    defaultDscpVariable string
    Variable name
    description string
    The description of the feature template
    deviceTypes string[]
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    multiplier number
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    multiplierVariable string
    Variable name
    name string
    The name of the feature template
    pollInterval number
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    pollIntervalVariable string
    Variable name
    templateType string
    The template type
    version number
    The version of the feature template
    colors Sequence[CiscoBfdFeatureTemplateColorArgs]
    Set color that identifies the WAN transport tunnel
    default_dscp int
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    default_dscp_variable str
    Variable name
    description str
    The description of the feature template
    device_types Sequence[str]
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    multiplier int
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    multiplier_variable str
    Variable name
    name str
    The name of the feature template
    poll_interval int
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    poll_interval_variable str
    Variable name
    template_type str
    The template type
    version int
    The version of the feature template
    colors List<Property Map>
    Set color that identifies the WAN transport tunnel
    defaultDscp Number
    Set default DSCP value for BFD packets - Range: 0-63 - Default value: 48
    defaultDscpVariable String
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
    multiplier Number
    Set the number of polling intervals used to determine tunnel SLA class - Range: 1-6 - Default value: 6
    multiplierVariable String
    Variable name
    name String
    The name of the feature template
    pollInterval Number
    Set how often BFD polls tunnels to collect packet latency, loss, and statistics - Range: 1-4294967295 - Default value: 600000
    pollIntervalVariable String
    Variable name
    templateType String
    The template type
    version Number
    The version of the feature template

    Supporting Types

    CiscoBfdFeatureTemplateColor, CiscoBfdFeatureTemplateColorArgs

    Color string
    Set color that identifies the WAN transport tunnel

    • Choices: default, mpls, metro-ethernet, biz-internet, public-internet, lte, 3g, red, green, blue, gold, silver, bronze, custom1, custom2, custom3, private1, private2, private3, private4, private5, private6
    ColorVariable string
    Variable name
    Dscp int
    Set BFD Default DSCP value for tloc color

    • Range: 0-63
    • Default value: 48
    DscpVariable string
    Variable name
    HelloInterval int
    Set how often BFD sends Hello packets

    • Range: 100-300000
    • Default value: 1000
    HelloIntervalVariable string
    Variable name
    Multiplier int
    Set how many Hello packet intervals to wait before declaring that a tunnel has failed

    • Range: 1-60
    • Default value: 7
    MultiplierVariable string
    Variable name
    Optional bool
    Indicates if list item is considered optional.
    PmtuDiscovery bool
    Control automatic path MTU discovery

    • Default value: true
    PmtuDiscoveryVariable string
    Variable name
    Color string
    Set color that identifies the WAN transport tunnel

    • Choices: default, mpls, metro-ethernet, biz-internet, public-internet, lte, 3g, red, green, blue, gold, silver, bronze, custom1, custom2, custom3, private1, private2, private3, private4, private5, private6
    ColorVariable string
    Variable name
    Dscp int
    Set BFD Default DSCP value for tloc color

    • Range: 0-63
    • Default value: 48
    DscpVariable string
    Variable name
    HelloInterval int
    Set how often BFD sends Hello packets

    • Range: 100-300000
    • Default value: 1000
    HelloIntervalVariable string
    Variable name
    Multiplier int
    Set how many Hello packet intervals to wait before declaring that a tunnel has failed

    • Range: 1-60
    • Default value: 7
    MultiplierVariable string
    Variable name
    Optional bool
    Indicates if list item is considered optional.
    PmtuDiscovery bool
    Control automatic path MTU discovery

    • Default value: true
    PmtuDiscoveryVariable string
    Variable name
    color String
    Set color that identifies the WAN transport tunnel

    • Choices: default, mpls, metro-ethernet, biz-internet, public-internet, lte, 3g, red, green, blue, gold, silver, bronze, custom1, custom2, custom3, private1, private2, private3, private4, private5, private6
    colorVariable String
    Variable name
    dscp Integer
    Set BFD Default DSCP value for tloc color

    • Range: 0-63
    • Default value: 48
    dscpVariable String
    Variable name
    helloInterval Integer
    Set how often BFD sends Hello packets

    • Range: 100-300000
    • Default value: 1000
    helloIntervalVariable String
    Variable name
    multiplier Integer
    Set how many Hello packet intervals to wait before declaring that a tunnel has failed

    • Range: 1-60
    • Default value: 7
    multiplierVariable String
    Variable name
    optional Boolean
    Indicates if list item is considered optional.
    pmtuDiscovery Boolean
    Control automatic path MTU discovery

    • Default value: true
    pmtuDiscoveryVariable String
    Variable name
    color string
    Set color that identifies the WAN transport tunnel

    • Choices: default, mpls, metro-ethernet, biz-internet, public-internet, lte, 3g, red, green, blue, gold, silver, bronze, custom1, custom2, custom3, private1, private2, private3, private4, private5, private6
    colorVariable string
    Variable name
    dscp number
    Set BFD Default DSCP value for tloc color

    • Range: 0-63
    • Default value: 48
    dscpVariable string
    Variable name
    helloInterval number
    Set how often BFD sends Hello packets

    • Range: 100-300000
    • Default value: 1000
    helloIntervalVariable string
    Variable name
    multiplier number
    Set how many Hello packet intervals to wait before declaring that a tunnel has failed

    • Range: 1-60
    • Default value: 7
    multiplierVariable string
    Variable name
    optional boolean
    Indicates if list item is considered optional.
    pmtuDiscovery boolean
    Control automatic path MTU discovery

    • Default value: true
    pmtuDiscoveryVariable string
    Variable name
    color str
    Set color that identifies the WAN transport tunnel

    • Choices: default, mpls, metro-ethernet, biz-internet, public-internet, lte, 3g, red, green, blue, gold, silver, bronze, custom1, custom2, custom3, private1, private2, private3, private4, private5, private6
    color_variable str
    Variable name
    dscp int
    Set BFD Default DSCP value for tloc color

    • Range: 0-63
    • Default value: 48
    dscp_variable str
    Variable name
    hello_interval int
    Set how often BFD sends Hello packets

    • Range: 100-300000
    • Default value: 1000
    hello_interval_variable str
    Variable name
    multiplier int
    Set how many Hello packet intervals to wait before declaring that a tunnel has failed

    • Range: 1-60
    • Default value: 7
    multiplier_variable str
    Variable name
    optional bool
    Indicates if list item is considered optional.
    pmtu_discovery bool
    Control automatic path MTU discovery

    • Default value: true
    pmtu_discovery_variable str
    Variable name
    color String
    Set color that identifies the WAN transport tunnel

    • Choices: default, mpls, metro-ethernet, biz-internet, public-internet, lte, 3g, red, green, blue, gold, silver, bronze, custom1, custom2, custom3, private1, private2, private3, private4, private5, private6
    colorVariable String
    Variable name
    dscp Number
    Set BFD Default DSCP value for tloc color

    • Range: 0-63
    • Default value: 48
    dscpVariable String
    Variable name
    helloInterval Number
    Set how often BFD sends Hello packets

    • Range: 100-300000
    • Default value: 1000
    helloIntervalVariable String
    Variable name
    multiplier Number
    Set how many Hello packet intervals to wait before declaring that a tunnel has failed

    • Range: 1-60
    • Default value: 7
    multiplierVariable String
    Variable name
    optional Boolean
    Indicates if list item is considered optional.
    pmtuDiscovery Boolean
    Control automatic path MTU discovery

    • Default value: true
    pmtuDiscoveryVariable String
    Variable name

    Import

    $ pulumi import sdwan:index/ciscoBfdFeatureTemplate:CiscoBfdFeatureTemplate 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.1 published on Friday, May 31, 2024 by Pulumi