1. Packages
  2. Packages
  3. Panos Provider
  4. API Docs
  5. MulticastPimInterfaceTimerRoutingProfile
Viewing docs for panos 2.0.11
published on Tuesday, Apr 28, 2026 by paloaltonetworks
Viewing docs for panos 2.0.11
published on Tuesday, Apr 28, 2026 by paloaltonetworks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as panos from "@pulumi/panos";
    
    const example = new panos.MulticastPimInterfaceTimerRoutingProfile("example", {
        location: {
            template: {
                name: "my-template",
            },
        },
        name: "example-pim-timer-profile",
        assertInterval: 200,
        helloInterval: 60,
        joinPruneInterval: 120,
    });
    
    import pulumi
    import pulumi_panos as panos
    
    example = panos.MulticastPimInterfaceTimerRoutingProfile("example",
        location={
            "template": {
                "name": "my-template",
            },
        },
        name="example-pim-timer-profile",
        assert_interval=200,
        hello_interval=60,
        join_prune_interval=120)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/panos/v2/panos"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := panos.NewMulticastPimInterfaceTimerRoutingProfile(ctx, "example", &panos.MulticastPimInterfaceTimerRoutingProfileArgs{
    			Location: &panos.MulticastPimInterfaceTimerRoutingProfileLocationArgs{
    				Template: &panos.MulticastPimInterfaceTimerRoutingProfileLocationTemplateArgs{
    					Name: pulumi.String("my-template"),
    				},
    			},
    			Name:              pulumi.String("example-pim-timer-profile"),
    			AssertInterval:    pulumi.Float64(200),
    			HelloInterval:     pulumi.Float64(60),
    			JoinPruneInterval: pulumi.Float64(120),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Panos = Pulumi.Panos;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Panos.MulticastPimInterfaceTimerRoutingProfile("example", new()
        {
            Location = new Panos.Inputs.MulticastPimInterfaceTimerRoutingProfileLocationArgs
            {
                Template = new Panos.Inputs.MulticastPimInterfaceTimerRoutingProfileLocationTemplateArgs
                {
                    Name = "my-template",
                },
            },
            Name = "example-pim-timer-profile",
            AssertInterval = 200,
            HelloInterval = 60,
            JoinPruneInterval = 120,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.panos.MulticastPimInterfaceTimerRoutingProfile;
    import com.pulumi.panos.MulticastPimInterfaceTimerRoutingProfileArgs;
    import com.pulumi.panos.inputs.MulticastPimInterfaceTimerRoutingProfileLocationArgs;
    import com.pulumi.panos.inputs.MulticastPimInterfaceTimerRoutingProfileLocationTemplateArgs;
    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 MulticastPimInterfaceTimerRoutingProfile("example", MulticastPimInterfaceTimerRoutingProfileArgs.builder()
                .location(MulticastPimInterfaceTimerRoutingProfileLocationArgs.builder()
                    .template(MulticastPimInterfaceTimerRoutingProfileLocationTemplateArgs.builder()
                        .name("my-template")
                        .build())
                    .build())
                .name("example-pim-timer-profile")
                .assertInterval(200.0)
                .helloInterval(60.0)
                .joinPruneInterval(120.0)
                .build());
    
        }
    }
    
    resources:
      example:
        type: panos:MulticastPimInterfaceTimerRoutingProfile
        properties:
          location:
            template:
              name: my-template
          name: example-pim-timer-profile
          assertInterval: 200
          helloInterval: 60
          joinPruneInterval: 120
    

    Create MulticastPimInterfaceTimerRoutingProfile Resource

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

    Constructor syntax

    new MulticastPimInterfaceTimerRoutingProfile(name: string, args: MulticastPimInterfaceTimerRoutingProfileArgs, opts?: CustomResourceOptions);
    @overload
    def MulticastPimInterfaceTimerRoutingProfile(resource_name: str,
                                                 args: MulticastPimInterfaceTimerRoutingProfileArgs,
                                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def MulticastPimInterfaceTimerRoutingProfile(resource_name: str,
                                                 opts: Optional[ResourceOptions] = None,
                                                 location: Optional[MulticastPimInterfaceTimerRoutingProfileLocationArgs] = None,
                                                 assert_interval: Optional[float] = None,
                                                 hello_interval: Optional[float] = None,
                                                 join_prune_interval: Optional[float] = None,
                                                 name: Optional[str] = None)
    func NewMulticastPimInterfaceTimerRoutingProfile(ctx *Context, name string, args MulticastPimInterfaceTimerRoutingProfileArgs, opts ...ResourceOption) (*MulticastPimInterfaceTimerRoutingProfile, error)
    public MulticastPimInterfaceTimerRoutingProfile(string name, MulticastPimInterfaceTimerRoutingProfileArgs args, CustomResourceOptions? opts = null)
    public MulticastPimInterfaceTimerRoutingProfile(String name, MulticastPimInterfaceTimerRoutingProfileArgs args)
    public MulticastPimInterfaceTimerRoutingProfile(String name, MulticastPimInterfaceTimerRoutingProfileArgs args, CustomResourceOptions options)
    
    type: panos:MulticastPimInterfaceTimerRoutingProfile
    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 MulticastPimInterfaceTimerRoutingProfileArgs
    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 MulticastPimInterfaceTimerRoutingProfileArgs
    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 MulticastPimInterfaceTimerRoutingProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MulticastPimInterfaceTimerRoutingProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MulticastPimInterfaceTimerRoutingProfileArgs
    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 multicastPimInterfaceTimerRoutingProfileResource = new Panos.MulticastPimInterfaceTimerRoutingProfile("multicastPimInterfaceTimerRoutingProfileResource", new()
    {
        Location = new Panos.Inputs.MulticastPimInterfaceTimerRoutingProfileLocationArgs
        {
            Ngfw = new Panos.Inputs.MulticastPimInterfaceTimerRoutingProfileLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Template = new Panos.Inputs.MulticastPimInterfaceTimerRoutingProfileLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.MulticastPimInterfaceTimerRoutingProfileLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        AssertInterval = 0,
        HelloInterval = 0,
        JoinPruneInterval = 0,
        Name = "string",
    });
    
    example, err := panos.NewMulticastPimInterfaceTimerRoutingProfile(ctx, "multicastPimInterfaceTimerRoutingProfileResource", &panos.MulticastPimInterfaceTimerRoutingProfileArgs{
    	Location: &panos.MulticastPimInterfaceTimerRoutingProfileLocationArgs{
    		Ngfw: &panos.MulticastPimInterfaceTimerRoutingProfileLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Template: &panos.MulticastPimInterfaceTimerRoutingProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.MulticastPimInterfaceTimerRoutingProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    	},
    	AssertInterval:    pulumi.Float64(0),
    	HelloInterval:     pulumi.Float64(0),
    	JoinPruneInterval: pulumi.Float64(0),
    	Name:              pulumi.String("string"),
    })
    
    var multicastPimInterfaceTimerRoutingProfileResource = new MulticastPimInterfaceTimerRoutingProfile("multicastPimInterfaceTimerRoutingProfileResource", MulticastPimInterfaceTimerRoutingProfileArgs.builder()
        .location(MulticastPimInterfaceTimerRoutingProfileLocationArgs.builder()
            .ngfw(MulticastPimInterfaceTimerRoutingProfileLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .template(MulticastPimInterfaceTimerRoutingProfileLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(MulticastPimInterfaceTimerRoutingProfileLocationTemplateStackArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .build())
        .assertInterval(0.0)
        .helloInterval(0.0)
        .joinPruneInterval(0.0)
        .name("string")
        .build());
    
    multicast_pim_interface_timer_routing_profile_resource = panos.MulticastPimInterfaceTimerRoutingProfile("multicastPimInterfaceTimerRoutingProfileResource",
        location={
            "ngfw": {
                "ngfw_device": "string",
            },
            "template": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
        },
        assert_interval=float(0),
        hello_interval=float(0),
        join_prune_interval=float(0),
        name="string")
    
    const multicastPimInterfaceTimerRoutingProfileResource = new panos.MulticastPimInterfaceTimerRoutingProfile("multicastPimInterfaceTimerRoutingProfileResource", {
        location: {
            ngfw: {
                ngfwDevice: "string",
            },
            template: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
        },
        assertInterval: 0,
        helloInterval: 0,
        joinPruneInterval: 0,
        name: "string",
    });
    
    type: panos:MulticastPimInterfaceTimerRoutingProfile
    properties:
        assertInterval: 0
        helloInterval: 0
        joinPruneInterval: 0
        location:
            ngfw:
                ngfwDevice: string
            template:
                name: string
                ngfwDevice: string
                panoramaDevice: string
            templateStack:
                name: string
                ngfwDevice: string
                panoramaDevice: string
        name: string
    

    MulticastPimInterfaceTimerRoutingProfile Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The MulticastPimInterfaceTimerRoutingProfile resource accepts the following input properties:

    Location MulticastPimInterfaceTimerRoutingProfileLocation
    The location of this object.
    AssertInterval double
    interval between PIM Assert messages, in seconds
    HelloInterval double
    interval between PIM Hello messages, in seconds
    JoinPruneInterval double
    interval between PIM Join/Prune messages, in seconds
    Name string
    Location MulticastPimInterfaceTimerRoutingProfileLocationArgs
    The location of this object.
    AssertInterval float64
    interval between PIM Assert messages, in seconds
    HelloInterval float64
    interval between PIM Hello messages, in seconds
    JoinPruneInterval float64
    interval between PIM Join/Prune messages, in seconds
    Name string
    location MulticastPimInterfaceTimerRoutingProfileLocation
    The location of this object.
    assertInterval Double
    interval between PIM Assert messages, in seconds
    helloInterval Double
    interval between PIM Hello messages, in seconds
    joinPruneInterval Double
    interval between PIM Join/Prune messages, in seconds
    name String
    location MulticastPimInterfaceTimerRoutingProfileLocation
    The location of this object.
    assertInterval number
    interval between PIM Assert messages, in seconds
    helloInterval number
    interval between PIM Hello messages, in seconds
    joinPruneInterval number
    interval between PIM Join/Prune messages, in seconds
    name string
    location MulticastPimInterfaceTimerRoutingProfileLocationArgs
    The location of this object.
    assert_interval float
    interval between PIM Assert messages, in seconds
    hello_interval float
    interval between PIM Hello messages, in seconds
    join_prune_interval float
    interval between PIM Join/Prune messages, in seconds
    name str
    location Property Map
    The location of this object.
    assertInterval Number
    interval between PIM Assert messages, in seconds
    helloInterval Number
    interval between PIM Hello messages, in seconds
    joinPruneInterval Number
    interval between PIM Join/Prune messages, in seconds
    name String

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing MulticastPimInterfaceTimerRoutingProfile Resource

    Get an existing MulticastPimInterfaceTimerRoutingProfile 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?: MulticastPimInterfaceTimerRoutingProfileState, opts?: CustomResourceOptions): MulticastPimInterfaceTimerRoutingProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            assert_interval: Optional[float] = None,
            hello_interval: Optional[float] = None,
            join_prune_interval: Optional[float] = None,
            location: Optional[MulticastPimInterfaceTimerRoutingProfileLocationArgs] = None,
            name: Optional[str] = None) -> MulticastPimInterfaceTimerRoutingProfile
    func GetMulticastPimInterfaceTimerRoutingProfile(ctx *Context, name string, id IDInput, state *MulticastPimInterfaceTimerRoutingProfileState, opts ...ResourceOption) (*MulticastPimInterfaceTimerRoutingProfile, error)
    public static MulticastPimInterfaceTimerRoutingProfile Get(string name, Input<string> id, MulticastPimInterfaceTimerRoutingProfileState? state, CustomResourceOptions? opts = null)
    public static MulticastPimInterfaceTimerRoutingProfile get(String name, Output<String> id, MulticastPimInterfaceTimerRoutingProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:MulticastPimInterfaceTimerRoutingProfile    get:      id: ${id}
    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:
    AssertInterval double
    interval between PIM Assert messages, in seconds
    HelloInterval double
    interval between PIM Hello messages, in seconds
    JoinPruneInterval double
    interval between PIM Join/Prune messages, in seconds
    Location MulticastPimInterfaceTimerRoutingProfileLocation
    The location of this object.
    Name string
    AssertInterval float64
    interval between PIM Assert messages, in seconds
    HelloInterval float64
    interval between PIM Hello messages, in seconds
    JoinPruneInterval float64
    interval between PIM Join/Prune messages, in seconds
    Location MulticastPimInterfaceTimerRoutingProfileLocationArgs
    The location of this object.
    Name string
    assertInterval Double
    interval between PIM Assert messages, in seconds
    helloInterval Double
    interval between PIM Hello messages, in seconds
    joinPruneInterval Double
    interval between PIM Join/Prune messages, in seconds
    location MulticastPimInterfaceTimerRoutingProfileLocation
    The location of this object.
    name String
    assertInterval number
    interval between PIM Assert messages, in seconds
    helloInterval number
    interval between PIM Hello messages, in seconds
    joinPruneInterval number
    interval between PIM Join/Prune messages, in seconds
    location MulticastPimInterfaceTimerRoutingProfileLocation
    The location of this object.
    name string
    assert_interval float
    interval between PIM Assert messages, in seconds
    hello_interval float
    interval between PIM Hello messages, in seconds
    join_prune_interval float
    interval between PIM Join/Prune messages, in seconds
    location MulticastPimInterfaceTimerRoutingProfileLocationArgs
    The location of this object.
    name str
    assertInterval Number
    interval between PIM Assert messages, in seconds
    helloInterval Number
    interval between PIM Hello messages, in seconds
    joinPruneInterval Number
    interval between PIM Join/Prune messages, in seconds
    location Property Map
    The location of this object.
    name String

    Supporting Types

    MulticastPimInterfaceTimerRoutingProfileLocation, MulticastPimInterfaceTimerRoutingProfileLocationArgs

    ngfw Property Map
    Located in a specific NGFW device
    template Property Map
    Located in a specific template
    templateStack Property Map
    Located in a specific template stack

    MulticastPimInterfaceTimerRoutingProfileLocationNgfw, MulticastPimInterfaceTimerRoutingProfileLocationNgfwArgs

    NgfwDevice string
    The NGFW device
    NgfwDevice string
    The NGFW device
    ngfwDevice String
    The NGFW device
    ngfwDevice string
    The NGFW device
    ngfw_device str
    The NGFW device
    ngfwDevice String
    The NGFW device

    MulticastPimInterfaceTimerRoutingProfileLocationTemplate, MulticastPimInterfaceTimerRoutingProfileLocationTemplateArgs

    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    MulticastPimInterfaceTimerRoutingProfileLocationTemplateStack, MulticastPimInterfaceTimerRoutingProfileLocationTemplateStackArgs

    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template stack
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template stack
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    Import

    A multicast PIM interface timer routing profile can be imported by providing the following base64 encoded object as the ID

    {

    location = {

    template = {
    
      name            = "my-template"
    
      panorama_device = "localhost.localdomain"
    
      ngfw_device     = "localhost.localdomain"
    
    }
    

    }

    name = “example-pim-timer-profile”

    }

    $ pulumi import panos:index/multicastPimInterfaceTimerRoutingProfile:MulticastPimInterfaceTimerRoutingProfile example $(echo '{"location":{"template":{"name":"my-template","panorama_device":"localhost.localdomain","ngfw_device":"localhost.localdomain"}},"name":"example-pim-timer-profile"}' | base64)
    

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

    Package Details

    Repository
    panos paloaltonetworks/terraform-provider-panos
    License
    Notes
    This Pulumi package is based on the panos Terraform Provider.
    Viewing docs for panos 2.0.11
    published on Tuesday, Apr 28, 2026 by paloaltonetworks
      Try Pulumi Cloud free. Your team will thank you.