alicloud.cen.TransitRouterMulticastDomain

Provides a Cloud Enterprise Network (CEN) Transit Router Multicast Domain resource.

For information about Cloud Enterprise Network (CEN) Transit Router Multicast Domain and how to use it, see What is Transit Router Multicast Domain.

NOTE: Available in v1.195.0+.

Example Usage

Basic Usage

using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var defaultInstance = new AliCloud.Cen.Instance("defaultInstance", new()
    {
        CenInstanceName = "tf-example",
    });

    var defaultTransitRouter = new AliCloud.Cen.TransitRouter("defaultTransitRouter", new()
    {
        CenId = defaultInstance.Id,
        SupportMulticast = true,
    });

    var defaultTransitRouterMulticastDomain = new AliCloud.Cen.TransitRouterMulticastDomain("defaultTransitRouterMulticastDomain", new()
    {
        TransitRouterId = defaultTransitRouter.TransitRouterId,
        TransitRouterMulticastDomainName = "tf-example-name",
        TransitRouterMulticastDomainDescription = "tf-example-description",
    });

});
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cen"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		defaultInstance, err := cen.NewInstance(ctx, "defaultInstance", &cen.InstanceArgs{
			CenInstanceName: pulumi.String("tf-example"),
		})
		if err != nil {
			return err
		}
		defaultTransitRouter, err := cen.NewTransitRouter(ctx, "defaultTransitRouter", &cen.TransitRouterArgs{
			CenId:            defaultInstance.ID(),
			SupportMulticast: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		_, err = cen.NewTransitRouterMulticastDomain(ctx, "defaultTransitRouterMulticastDomain", &cen.TransitRouterMulticastDomainArgs{
			TransitRouterId:                         defaultTransitRouter.TransitRouterId,
			TransitRouterMulticastDomainName:        pulumi.String("tf-example-name"),
			TransitRouterMulticastDomainDescription: pulumi.String("tf-example-description"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cen.Instance;
import com.pulumi.alicloud.cen.InstanceArgs;
import com.pulumi.alicloud.cen.TransitRouter;
import com.pulumi.alicloud.cen.TransitRouterArgs;
import com.pulumi.alicloud.cen.TransitRouterMulticastDomain;
import com.pulumi.alicloud.cen.TransitRouterMulticastDomainArgs;
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 defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()        
            .cenInstanceName("tf-example")
            .build());

        var defaultTransitRouter = new TransitRouter("defaultTransitRouter", TransitRouterArgs.builder()        
            .cenId(defaultInstance.id())
            .supportMulticast(true)
            .build());

        var defaultTransitRouterMulticastDomain = new TransitRouterMulticastDomain("defaultTransitRouterMulticastDomain", TransitRouterMulticastDomainArgs.builder()        
            .transitRouterId(defaultTransitRouter.transitRouterId())
            .transitRouterMulticastDomainName("tf-example-name")
            .transitRouterMulticastDomainDescription("tf-example-description")
            .build());

    }
}
import pulumi
import pulumi_alicloud as alicloud

default_instance = alicloud.cen.Instance("defaultInstance", cen_instance_name="tf-example")
default_transit_router = alicloud.cen.TransitRouter("defaultTransitRouter",
    cen_id=default_instance.id,
    support_multicast=True)
default_transit_router_multicast_domain = alicloud.cen.TransitRouterMulticastDomain("defaultTransitRouterMulticastDomain",
    transit_router_id=default_transit_router.transit_router_id,
    transit_router_multicast_domain_name="tf-example-name",
    transit_router_multicast_domain_description="tf-example-description")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const defaultInstance = new alicloud.cen.Instance("defaultInstance", {cenInstanceName: "tf-example"});
const defaultTransitRouter = new alicloud.cen.TransitRouter("defaultTransitRouter", {
    cenId: defaultInstance.id,
    supportMulticast: true,
});
const defaultTransitRouterMulticastDomain = new alicloud.cen.TransitRouterMulticastDomain("defaultTransitRouterMulticastDomain", {
    transitRouterId: defaultTransitRouter.transitRouterId,
    transitRouterMulticastDomainName: "tf-example-name",
    transitRouterMulticastDomainDescription: "tf-example-description",
});
resources:
  defaultInstance:
    type: alicloud:cen:Instance
    properties:
      cenInstanceName: tf-example
  defaultTransitRouter:
    type: alicloud:cen:TransitRouter
    properties:
      cenId: ${defaultInstance.id}
      supportMulticast: true
  defaultTransitRouterMulticastDomain:
    type: alicloud:cen:TransitRouterMulticastDomain
    properties:
      transitRouterId: ${defaultTransitRouter.transitRouterId}
      transitRouterMulticastDomainName: tf-example-name
      transitRouterMulticastDomainDescription: tf-example-description

Create TransitRouterMulticastDomain Resource

new TransitRouterMulticastDomain(name: string, args: TransitRouterMulticastDomainArgs, opts?: CustomResourceOptions);
@overload
def TransitRouterMulticastDomain(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 tags: Optional[Mapping[str, Any]] = None,
                                 transit_router_id: Optional[str] = None,
                                 transit_router_multicast_domain_description: Optional[str] = None,
                                 transit_router_multicast_domain_name: Optional[str] = None)
@overload
def TransitRouterMulticastDomain(resource_name: str,
                                 args: TransitRouterMulticastDomainArgs,
                                 opts: Optional[ResourceOptions] = None)
func NewTransitRouterMulticastDomain(ctx *Context, name string, args TransitRouterMulticastDomainArgs, opts ...ResourceOption) (*TransitRouterMulticastDomain, error)
public TransitRouterMulticastDomain(string name, TransitRouterMulticastDomainArgs args, CustomResourceOptions? opts = null)
public TransitRouterMulticastDomain(String name, TransitRouterMulticastDomainArgs args)
public TransitRouterMulticastDomain(String name, TransitRouterMulticastDomainArgs args, CustomResourceOptions options)
type: alicloud:cen:TransitRouterMulticastDomain
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args TransitRouterMulticastDomainArgs
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 TransitRouterMulticastDomainArgs
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 TransitRouterMulticastDomainArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args TransitRouterMulticastDomainArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args TransitRouterMulticastDomainArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

TransitRouterId string

The ID of the transit router.

Tags Dictionary<string, object>

A mapping of tags to assign to the resource.

TransitRouterMulticastDomainDescription string

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

TransitRouterMulticastDomainName string

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

TransitRouterId string

The ID of the transit router.

Tags map[string]interface{}

A mapping of tags to assign to the resource.

TransitRouterMulticastDomainDescription string

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

TransitRouterMulticastDomainName string

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterId String

The ID of the transit router.

tags Map<String,Object>

A mapping of tags to assign to the resource.

transitRouterMulticastDomainDescription String

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterMulticastDomainName String

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterId string

The ID of the transit router.

tags {[key: string]: any}

A mapping of tags to assign to the resource.

transitRouterMulticastDomainDescription string

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterMulticastDomainName string

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transit_router_id str

The ID of the transit router.

tags Mapping[str, Any]

A mapping of tags to assign to the resource.

transit_router_multicast_domain_description str

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transit_router_multicast_domain_name str

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterId String

The ID of the transit router.

tags Map<Any>

A mapping of tags to assign to the resource.

transitRouterMulticastDomainDescription String

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterMulticastDomainName String

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Status string

The status of the Transit Router Multicast Domain.

Id string

The provider-assigned unique ID for this managed resource.

Status string

The status of the Transit Router Multicast Domain.

id String

The provider-assigned unique ID for this managed resource.

status String

The status of the Transit Router Multicast Domain.

id string

The provider-assigned unique ID for this managed resource.

status string

The status of the Transit Router Multicast Domain.

id str

The provider-assigned unique ID for this managed resource.

status str

The status of the Transit Router Multicast Domain.

id String

The provider-assigned unique ID for this managed resource.

status String

The status of the Transit Router Multicast Domain.

Look up Existing TransitRouterMulticastDomain Resource

Get an existing TransitRouterMulticastDomain 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?: TransitRouterMulticastDomainState, opts?: CustomResourceOptions): TransitRouterMulticastDomain
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, Any]] = None,
        transit_router_id: Optional[str] = None,
        transit_router_multicast_domain_description: Optional[str] = None,
        transit_router_multicast_domain_name: Optional[str] = None) -> TransitRouterMulticastDomain
func GetTransitRouterMulticastDomain(ctx *Context, name string, id IDInput, state *TransitRouterMulticastDomainState, opts ...ResourceOption) (*TransitRouterMulticastDomain, error)
public static TransitRouterMulticastDomain Get(string name, Input<string> id, TransitRouterMulticastDomainState? state, CustomResourceOptions? opts = null)
public static TransitRouterMulticastDomain get(String name, Output<String> id, TransitRouterMulticastDomainState 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:
Status string

The status of the Transit Router Multicast Domain.

Tags Dictionary<string, object>

A mapping of tags to assign to the resource.

TransitRouterId string

The ID of the transit router.

TransitRouterMulticastDomainDescription string

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

TransitRouterMulticastDomainName string

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

Status string

The status of the Transit Router Multicast Domain.

Tags map[string]interface{}

A mapping of tags to assign to the resource.

TransitRouterId string

The ID of the transit router.

TransitRouterMulticastDomainDescription string

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

TransitRouterMulticastDomainName string

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

status String

The status of the Transit Router Multicast Domain.

tags Map<String,Object>

A mapping of tags to assign to the resource.

transitRouterId String

The ID of the transit router.

transitRouterMulticastDomainDescription String

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterMulticastDomainName String

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

status string

The status of the Transit Router Multicast Domain.

tags {[key: string]: any}

A mapping of tags to assign to the resource.

transitRouterId string

The ID of the transit router.

transitRouterMulticastDomainDescription string

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterMulticastDomainName string

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

status str

The status of the Transit Router Multicast Domain.

tags Mapping[str, Any]

A mapping of tags to assign to the resource.

transit_router_id str

The ID of the transit router.

transit_router_multicast_domain_description str

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transit_router_multicast_domain_name str

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

status String

The status of the Transit Router Multicast Domain.

tags Map<Any>

A mapping of tags to assign to the resource.

transitRouterId String

The ID of the transit router.

transitRouterMulticastDomainDescription String

The description of the multicast domain. The description must be 0 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

transitRouterMulticastDomainName String

The name of the multicast domain. The name must be 0 to 128 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (_), and hyphens (-).

Import

Cloud Enterprise Network (CEN) Transit Router Multicast Domain can be imported using the id, e.g.

 $ pulumi import alicloud:cen/transitRouterMulticastDomain:TransitRouterMulticastDomain example <id>

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes

This Pulumi package is based on the alicloud Terraform Provider.