meraki.networks.SwitchRoutingMulticastRendezvousPoints
Explore with Pulumi AI
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:
- Network
Id string - networkId path parameter. Network ID
- Interface
Ip string - The IP address of the interface where the RP needs to be created.
- Multicast
Group string - 'Any', or the IP address of a multicast group
- Rendezvous
Point stringId - rendezvousPointId path parameter. Rendezvous point ID
- Network
Id string - networkId path parameter. Network ID
- Interface
Ip string - The IP address of the interface where the RP needs to be created.
- Multicast
Group string - 'Any', or the IP address of a multicast group
- Rendezvous
Point stringId - rendezvousPointId path parameter. Rendezvous point ID
- network
Id String - networkId path parameter. Network ID
- interface
Ip String - The IP address of the interface where the RP needs to be created.
- multicast
Group String - 'Any', or the IP address of a multicast group
- rendezvous
Point StringId - rendezvousPointId path parameter. Rendezvous point ID
- network
Id string - networkId path parameter. Network ID
- interface
Ip string - The IP address of the interface where the RP needs to be created.
- multicast
Group string - 'Any', or the IP address of a multicast group
- rendezvous
Point stringId - 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_ strid - rendezvousPointId path parameter. Rendezvous point ID
- network
Id String - networkId path parameter. Network ID
- interface
Ip String - The IP address of the interface where the RP needs to be created.
- multicast
Group String - 'Any', or the IP address of a multicast group
- rendezvous
Point StringId - 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.
- Interface
Name string - Serial string
- Id string
- The provider-assigned unique ID for this managed resource.
- Interface
Name string - Serial string
- id String
- The provider-assigned unique ID for this managed resource.
- interface
Name String - serial String
- id string
- The provider-assigned unique ID for this managed resource.
- interface
Name 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.
- interface
Name 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.
- Interface
Ip string - The IP address of the interface where the RP needs to be created.
- Interface
Name string - Multicast
Group string - 'Any', or the IP address of a multicast group
- Network
Id string - networkId path parameter. Network ID
- Rendezvous
Point stringId - rendezvousPointId path parameter. Rendezvous point ID
- Serial string
- Interface
Ip string - The IP address of the interface where the RP needs to be created.
- Interface
Name string - Multicast
Group string - 'Any', or the IP address of a multicast group
- Network
Id string - networkId path parameter. Network ID
- Rendezvous
Point stringId - rendezvousPointId path parameter. Rendezvous point ID
- Serial string
- interface
Ip String - The IP address of the interface where the RP needs to be created.
- interface
Name String - multicast
Group String - 'Any', or the IP address of a multicast group
- network
Id String - networkId path parameter. Network ID
- rendezvous
Point StringId - rendezvousPointId path parameter. Rendezvous point ID
- serial String
- interface
Ip string - The IP address of the interface where the RP needs to be created.
- interface
Name string - multicast
Group string - 'Any', or the IP address of a multicast group
- network
Id string - networkId path parameter. Network ID
- rendezvous
Point stringId - 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_ strid - rendezvousPointId path parameter. Rendezvous point ID
- serial str
- interface
Ip String - The IP address of the interface where the RP needs to be created.
- interface
Name String - multicast
Group String - 'Any', or the IP address of a multicast group
- network
Id String - networkId path parameter. Network ID
- rendezvous
Point StringId - 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.