1. Packages
  2. Cisco Meraki
  3. API Docs
  4. networks
  5. SwitchRoutingMulticastRendezvousPoints
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.networks.SwitchRoutingMulticastRendezvousPoints

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = new meraki.networks.SwitchRoutingMulticastRendezvousPoints("example", {
        interfaceIp: "192.168.1.2",
        multicastGroup: "Any",
        networkId: "string",
    });
    export const merakiNetworksSwitchRoutingMulticastRendezvousPointsExample = example;
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.networks.SwitchRoutingMulticastRendezvousPoints("example",
        interface_ip="192.168.1.2",
        multicast_group="Any",
        network_id="string")
    pulumi.export("merakiNetworksSwitchRoutingMulticastRendezvousPointsExample", example)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := networks.NewSwitchRoutingMulticastRendezvousPoints(ctx, "example", &networks.SwitchRoutingMulticastRendezvousPointsArgs{
    			InterfaceIp:    pulumi.String("192.168.1.2"),
    			MulticastGroup: pulumi.String("Any"),
    			NetworkId:      pulumi.String("string"),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiNetworksSwitchRoutingMulticastRendezvousPointsExample", example)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Meraki.Networks.SwitchRoutingMulticastRendezvousPoints("example", new()
        {
            InterfaceIp = "192.168.1.2",
            MulticastGroup = "Any",
            NetworkId = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiNetworksSwitchRoutingMulticastRendezvousPointsExample"] = example,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.networks.SwitchRoutingMulticastRendezvousPoints;
    import com.pulumi.meraki.networks.SwitchRoutingMulticastRendezvousPointsArgs;
    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 SwitchRoutingMulticastRendezvousPoints("example", SwitchRoutingMulticastRendezvousPointsArgs.builder()
                .interfaceIp("192.168.1.2")
                .multicastGroup("Any")
                .networkId("string")
                .build());
    
            ctx.export("merakiNetworksSwitchRoutingMulticastRendezvousPointsExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:networks:SwitchRoutingMulticastRendezvousPoints
        properties:
          interfaceIp: 192.168.1.2
          multicastGroup: Any
          networkId: string
    outputs:
      merakiNetworksSwitchRoutingMulticastRendezvousPointsExample: ${example}
    

    Create SwitchRoutingMulticastRendezvousPoints Resource

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

    Constructor syntax

    new SwitchRoutingMulticastRendezvousPoints(name: string, args: SwitchRoutingMulticastRendezvousPointsArgs, opts?: CustomResourceOptions);
    @overload
    def SwitchRoutingMulticastRendezvousPoints(resource_name: str,
                                               args: SwitchRoutingMulticastRendezvousPointsArgs,
                                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def SwitchRoutingMulticastRendezvousPoints(resource_name: str,
                                               opts: Optional[ResourceOptions] = None,
                                               network_id: Optional[str] = None,
                                               interface_ip: Optional[str] = None,
                                               multicast_group: Optional[str] = None,
                                               rendezvous_point_id: Optional[str] = None)
    func NewSwitchRoutingMulticastRendezvousPoints(ctx *Context, name string, args SwitchRoutingMulticastRendezvousPointsArgs, opts ...ResourceOption) (*SwitchRoutingMulticastRendezvousPoints, error)
    public SwitchRoutingMulticastRendezvousPoints(string name, SwitchRoutingMulticastRendezvousPointsArgs args, CustomResourceOptions? opts = null)
    public SwitchRoutingMulticastRendezvousPoints(String name, SwitchRoutingMulticastRendezvousPointsArgs args)
    public SwitchRoutingMulticastRendezvousPoints(String name, SwitchRoutingMulticastRendezvousPointsArgs args, CustomResourceOptions options)
    
    type: meraki:networks:SwitchRoutingMulticastRendezvousPoints
    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 SwitchRoutingMulticastRendezvousPointsArgs
    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 SwitchRoutingMulticastRendezvousPointsArgs
    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 SwitchRoutingMulticastRendezvousPointsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SwitchRoutingMulticastRendezvousPointsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SwitchRoutingMulticastRendezvousPointsArgs
    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 switchRoutingMulticastRendezvousPointsResource = new Meraki.Networks.SwitchRoutingMulticastRendezvousPoints("switchRoutingMulticastRendezvousPointsResource", new()
    {
        NetworkId = "string",
        InterfaceIp = "string",
        MulticastGroup = "string",
        RendezvousPointId = "string",
    });
    
    example, err := networks.NewSwitchRoutingMulticastRendezvousPoints(ctx, "switchRoutingMulticastRendezvousPointsResource", &networks.SwitchRoutingMulticastRendezvousPointsArgs{
    	NetworkId:         pulumi.String("string"),
    	InterfaceIp:       pulumi.String("string"),
    	MulticastGroup:    pulumi.String("string"),
    	RendezvousPointId: pulumi.String("string"),
    })
    
    var switchRoutingMulticastRendezvousPointsResource = new SwitchRoutingMulticastRendezvousPoints("switchRoutingMulticastRendezvousPointsResource", SwitchRoutingMulticastRendezvousPointsArgs.builder()
        .networkId("string")
        .interfaceIp("string")
        .multicastGroup("string")
        .rendezvousPointId("string")
        .build());
    
    switch_routing_multicast_rendezvous_points_resource = meraki.networks.SwitchRoutingMulticastRendezvousPoints("switchRoutingMulticastRendezvousPointsResource",
        network_id="string",
        interface_ip="string",
        multicast_group="string",
        rendezvous_point_id="string")
    
    const switchRoutingMulticastRendezvousPointsResource = new meraki.networks.SwitchRoutingMulticastRendezvousPoints("switchRoutingMulticastRendezvousPointsResource", {
        networkId: "string",
        interfaceIp: "string",
        multicastGroup: "string",
        rendezvousPointId: "string",
    });
    
    type: meraki:networks:SwitchRoutingMulticastRendezvousPoints
    properties:
        interfaceIp: string
        multicastGroup: string
        networkId: string
        rendezvousPointId: string
    

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

    NetworkId string
    networkId path parameter. Network ID
    InterfaceIp string
    The IP address of the interface where the RP needs to be created.
    MulticastGroup string
    'Any', or the IP address of a multicast group
    RendezvousPointId string
    rendezvousPointId path parameter. Rendezvous point ID
    NetworkId string
    networkId path parameter. Network ID
    InterfaceIp string
    The IP address of the interface where the RP needs to be created.
    MulticastGroup string
    'Any', or the IP address of a multicast group
    RendezvousPointId string
    rendezvousPointId path parameter. Rendezvous point ID
    networkId String
    networkId path parameter. Network ID
    interfaceIp String
    The IP address of the interface where the RP needs to be created.
    multicastGroup String
    'Any', or the IP address of a multicast group
    rendezvousPointId String
    rendezvousPointId path parameter. Rendezvous point ID
    networkId string
    networkId path parameter. Network ID
    interfaceIp string
    The IP address of the interface where the RP needs to be created.
    multicastGroup string
    'Any', or the IP address of a multicast group
    rendezvousPointId string
    rendezvousPointId path parameter. Rendezvous point ID
    network_id str
    networkId path parameter. Network ID
    interface_ip str
    The IP address of the interface where the RP needs to be created.
    multicast_group str
    'Any', or the IP address of a multicast group
    rendezvous_point_id str
    rendezvousPointId path parameter. Rendezvous point ID
    networkId String
    networkId path parameter. Network ID
    interfaceIp String
    The IP address of the interface where the RP needs to be created.
    multicastGroup String
    'Any', or the IP address of a multicast group
    rendezvousPointId String
    rendezvousPointId path parameter. Rendezvous point ID

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    InterfaceName string
    Serial string
    Id string
    The provider-assigned unique ID for this managed resource.
    InterfaceName string
    Serial string
    id String
    The provider-assigned unique ID for this managed resource.
    interfaceName String
    serial String
    id string
    The provider-assigned unique ID for this managed resource.
    interfaceName string
    serial string
    id str
    The provider-assigned unique ID for this managed resource.
    interface_name str
    serial str
    id String
    The provider-assigned unique ID for this managed resource.
    interfaceName String
    serial String

    Look up Existing SwitchRoutingMulticastRendezvousPoints Resource

    Get an existing SwitchRoutingMulticastRendezvousPoints 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?: SwitchRoutingMulticastRendezvousPointsState, opts?: CustomResourceOptions): SwitchRoutingMulticastRendezvousPoints
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            interface_ip: Optional[str] = None,
            interface_name: Optional[str] = None,
            multicast_group: Optional[str] = None,
            network_id: Optional[str] = None,
            rendezvous_point_id: Optional[str] = None,
            serial: Optional[str] = None) -> SwitchRoutingMulticastRendezvousPoints
    func GetSwitchRoutingMulticastRendezvousPoints(ctx *Context, name string, id IDInput, state *SwitchRoutingMulticastRendezvousPointsState, opts ...ResourceOption) (*SwitchRoutingMulticastRendezvousPoints, error)
    public static SwitchRoutingMulticastRendezvousPoints Get(string name, Input<string> id, SwitchRoutingMulticastRendezvousPointsState? state, CustomResourceOptions? opts = null)
    public static SwitchRoutingMulticastRendezvousPoints get(String name, Output<String> id, SwitchRoutingMulticastRendezvousPointsState 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:
    InterfaceIp string
    The IP address of the interface where the RP needs to be created.
    InterfaceName string
    MulticastGroup string
    'Any', or the IP address of a multicast group
    NetworkId string
    networkId path parameter. Network ID
    RendezvousPointId string
    rendezvousPointId path parameter. Rendezvous point ID
    Serial string
    InterfaceIp string
    The IP address of the interface where the RP needs to be created.
    InterfaceName string
    MulticastGroup string
    'Any', or the IP address of a multicast group
    NetworkId string
    networkId path parameter. Network ID
    RendezvousPointId string
    rendezvousPointId path parameter. Rendezvous point ID
    Serial string
    interfaceIp String
    The IP address of the interface where the RP needs to be created.
    interfaceName String
    multicastGroup String
    'Any', or the IP address of a multicast group
    networkId String
    networkId path parameter. Network ID
    rendezvousPointId String
    rendezvousPointId path parameter. Rendezvous point ID
    serial String
    interfaceIp string
    The IP address of the interface where the RP needs to be created.
    interfaceName string
    multicastGroup string
    'Any', or the IP address of a multicast group
    networkId string
    networkId path parameter. Network ID
    rendezvousPointId string
    rendezvousPointId path parameter. Rendezvous point ID
    serial string
    interface_ip str
    The IP address of the interface where the RP needs to be created.
    interface_name str
    multicast_group str
    'Any', or the IP address of a multicast group
    network_id str
    networkId path parameter. Network ID
    rendezvous_point_id str
    rendezvousPointId path parameter. Rendezvous point ID
    serial str
    interfaceIp String
    The IP address of the interface where the RP needs to be created.
    interfaceName String
    multicastGroup String
    'Any', or the IP address of a multicast group
    networkId String
    networkId path parameter. Network ID
    rendezvousPointId String
    rendezvousPointId path parameter. Rendezvous point ID
    serial String

    Import

    $ pulumi import meraki:networks/switchRoutingMulticastRendezvousPoints:SwitchRoutingMulticastRendezvousPoints example "network_id,rendezvous_point_id"
    

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

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi