1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cen
  5. ChildInstanceRouteEntryToAttachment
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.cen.ChildInstanceRouteEntryToAttachment

Explore with Pulumi AI

Provides a Cen Child Instance Route Entry To Attachment resource.

For information about Cen Child Instance Route Entry To Attachment and how to use it, see What is Child Instance Route Entry To Attachment.

NOTE: Available since v1.195.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = alicloud.cen.getTransitRouterAvailableResources({});
const masterZone = _default.then(_default => _default.resources?.[0]?.masterZones?.[0]);
const slaveZone = _default.then(_default => _default.resources?.[0]?.slaveZones?.[1]);
const example = new alicloud.vpc.Network("example", {
    vpcName: name,
    cidrBlock: "192.168.0.0/16",
});
const exampleMaster = new alicloud.vpc.Switch("example_master", {
    vswitchName: name,
    cidrBlock: "192.168.1.0/24",
    vpcId: example.id,
    zoneId: masterZone,
});
const exampleSlave = new alicloud.vpc.Switch("example_slave", {
    vswitchName: name,
    cidrBlock: "192.168.2.0/24",
    vpcId: example.id,
    zoneId: slaveZone,
});
const exampleInstance = new alicloud.cen.Instance("example", {
    cenInstanceName: name,
    protectionLevel: "REDUCED",
});
const exampleTransitRouter = new alicloud.cen.TransitRouter("example", {
    transitRouterName: name,
    cenId: exampleInstance.id,
});
const exampleTransitRouterVpcAttachment = new alicloud.cen.TransitRouterVpcAttachment("example", {
    cenId: exampleInstance.id,
    transitRouterId: exampleTransitRouter.transitRouterId,
    vpcId: example.id,
    zoneMappings: [
        {
            zoneId: masterZone,
            vswitchId: exampleMaster.id,
        },
        {
            zoneId: slaveZone,
            vswitchId: exampleSlave.id,
        },
    ],
    transitRouterAttachmentName: name,
    transitRouterAttachmentDescription: name,
});
const exampleRouteTable = new alicloud.vpc.RouteTable("example", {
    vpcId: example.id,
    routeTableName: name,
    description: name,
});
const exampleChildInstanceRouteEntryToAttachment = new alicloud.cen.ChildInstanceRouteEntryToAttachment("example", {
    transitRouterAttachmentId: exampleTransitRouterVpcAttachment.transitRouterAttachmentId,
    cenId: exampleInstance.id,
    destinationCidrBlock: "10.0.0.0/24",
    childInstanceRouteTableId: exampleRouteTable.id,
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "terraform-example"
default = alicloud.cen.get_transit_router_available_resources()
master_zone = default.resources[0].master_zones[0]
slave_zone = default.resources[0].slave_zones[1]
example = alicloud.vpc.Network("example",
    vpc_name=name,
    cidr_block="192.168.0.0/16")
example_master = alicloud.vpc.Switch("example_master",
    vswitch_name=name,
    cidr_block="192.168.1.0/24",
    vpc_id=example.id,
    zone_id=master_zone)
example_slave = alicloud.vpc.Switch("example_slave",
    vswitch_name=name,
    cidr_block="192.168.2.0/24",
    vpc_id=example.id,
    zone_id=slave_zone)
example_instance = alicloud.cen.Instance("example",
    cen_instance_name=name,
    protection_level="REDUCED")
example_transit_router = alicloud.cen.TransitRouter("example",
    transit_router_name=name,
    cen_id=example_instance.id)
example_transit_router_vpc_attachment = alicloud.cen.TransitRouterVpcAttachment("example",
    cen_id=example_instance.id,
    transit_router_id=example_transit_router.transit_router_id,
    vpc_id=example.id,
    zone_mappings=[
        {
            "zone_id": master_zone,
            "vswitch_id": example_master.id,
        },
        {
            "zone_id": slave_zone,
            "vswitch_id": example_slave.id,
        },
    ],
    transit_router_attachment_name=name,
    transit_router_attachment_description=name)
example_route_table = alicloud.vpc.RouteTable("example",
    vpc_id=example.id,
    route_table_name=name,
    description=name)
example_child_instance_route_entry_to_attachment = alicloud.cen.ChildInstanceRouteEntryToAttachment("example",
    transit_router_attachment_id=example_transit_router_vpc_attachment.transit_router_attachment_id,
    cen_id=example_instance.id,
    destination_cidr_block="10.0.0.0/24",
    child_instance_route_table_id=example_route_table.id)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		name := "terraform-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_default, err := cen.GetTransitRouterAvailableResources(ctx, &cen.GetTransitRouterAvailableResourcesArgs{}, nil)
		if err != nil {
			return err
		}
		masterZone := _default.Resources[0].MasterZones[0]
		slaveZone := _default.Resources[0].SlaveZones[1]
		example, err := vpc.NewNetwork(ctx, "example", &vpc.NetworkArgs{
			VpcName:   pulumi.String(name),
			CidrBlock: pulumi.String("192.168.0.0/16"),
		})
		if err != nil {
			return err
		}
		exampleMaster, err := vpc.NewSwitch(ctx, "example_master", &vpc.SwitchArgs{
			VswitchName: pulumi.String(name),
			CidrBlock:   pulumi.String("192.168.1.0/24"),
			VpcId:       example.ID(),
			ZoneId:      pulumi.String(masterZone),
		})
		if err != nil {
			return err
		}
		exampleSlave, err := vpc.NewSwitch(ctx, "example_slave", &vpc.SwitchArgs{
			VswitchName: pulumi.String(name),
			CidrBlock:   pulumi.String("192.168.2.0/24"),
			VpcId:       example.ID(),
			ZoneId:      pulumi.String(slaveZone),
		})
		if err != nil {
			return err
		}
		exampleInstance, err := cen.NewInstance(ctx, "example", &cen.InstanceArgs{
			CenInstanceName: pulumi.String(name),
			ProtectionLevel: pulumi.String("REDUCED"),
		})
		if err != nil {
			return err
		}
		exampleTransitRouter, err := cen.NewTransitRouter(ctx, "example", &cen.TransitRouterArgs{
			TransitRouterName: pulumi.String(name),
			CenId:             exampleInstance.ID(),
		})
		if err != nil {
			return err
		}
		exampleTransitRouterVpcAttachment, err := cen.NewTransitRouterVpcAttachment(ctx, "example", &cen.TransitRouterVpcAttachmentArgs{
			CenId:           exampleInstance.ID(),
			TransitRouterId: exampleTransitRouter.TransitRouterId,
			VpcId:           example.ID(),
			ZoneMappings: cen.TransitRouterVpcAttachmentZoneMappingArray{
				&cen.TransitRouterVpcAttachmentZoneMappingArgs{
					ZoneId:    pulumi.String(masterZone),
					VswitchId: exampleMaster.ID(),
				},
				&cen.TransitRouterVpcAttachmentZoneMappingArgs{
					ZoneId:    pulumi.String(slaveZone),
					VswitchId: exampleSlave.ID(),
				},
			},
			TransitRouterAttachmentName:        pulumi.String(name),
			TransitRouterAttachmentDescription: pulumi.String(name),
		})
		if err != nil {
			return err
		}
		exampleRouteTable, err := vpc.NewRouteTable(ctx, "example", &vpc.RouteTableArgs{
			VpcId:          example.ID(),
			RouteTableName: pulumi.String(name),
			Description:    pulumi.String(name),
		})
		if err != nil {
			return err
		}
		_, err = cen.NewChildInstanceRouteEntryToAttachment(ctx, "example", &cen.ChildInstanceRouteEntryToAttachmentArgs{
			TransitRouterAttachmentId: exampleTransitRouterVpcAttachment.TransitRouterAttachmentId,
			CenId:                     exampleInstance.ID(),
			DestinationCidrBlock:      pulumi.String("10.0.0.0/24"),
			ChildInstanceRouteTableId: exampleRouteTable.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "terraform-example";
    var @default = AliCloud.Cen.GetTransitRouterAvailableResources.Invoke();

    var masterZone = @default.Apply(@default => @default.Apply(getTransitRouterAvailableResourcesResult => getTransitRouterAvailableResourcesResult.Resources[0]?.MasterZones[0]));

    var slaveZone = @default.Apply(@default => @default.Apply(getTransitRouterAvailableResourcesResult => getTransitRouterAvailableResourcesResult.Resources[0]?.SlaveZones[1]));

    var example = new AliCloud.Vpc.Network("example", new()
    {
        VpcName = name,
        CidrBlock = "192.168.0.0/16",
    });

    var exampleMaster = new AliCloud.Vpc.Switch("example_master", new()
    {
        VswitchName = name,
        CidrBlock = "192.168.1.0/24",
        VpcId = example.Id,
        ZoneId = masterZone,
    });

    var exampleSlave = new AliCloud.Vpc.Switch("example_slave", new()
    {
        VswitchName = name,
        CidrBlock = "192.168.2.0/24",
        VpcId = example.Id,
        ZoneId = slaveZone,
    });

    var exampleInstance = new AliCloud.Cen.Instance("example", new()
    {
        CenInstanceName = name,
        ProtectionLevel = "REDUCED",
    });

    var exampleTransitRouter = new AliCloud.Cen.TransitRouter("example", new()
    {
        TransitRouterName = name,
        CenId = exampleInstance.Id,
    });

    var exampleTransitRouterVpcAttachment = new AliCloud.Cen.TransitRouterVpcAttachment("example", new()
    {
        CenId = exampleInstance.Id,
        TransitRouterId = exampleTransitRouter.TransitRouterId,
        VpcId = example.Id,
        ZoneMappings = new[]
        {
            new AliCloud.Cen.Inputs.TransitRouterVpcAttachmentZoneMappingArgs
            {
                ZoneId = masterZone,
                VswitchId = exampleMaster.Id,
            },
            new AliCloud.Cen.Inputs.TransitRouterVpcAttachmentZoneMappingArgs
            {
                ZoneId = slaveZone,
                VswitchId = exampleSlave.Id,
            },
        },
        TransitRouterAttachmentName = name,
        TransitRouterAttachmentDescription = name,
    });

    var exampleRouteTable = new AliCloud.Vpc.RouteTable("example", new()
    {
        VpcId = example.Id,
        RouteTableName = name,
        Description = name,
    });

    var exampleChildInstanceRouteEntryToAttachment = new AliCloud.Cen.ChildInstanceRouteEntryToAttachment("example", new()
    {
        TransitRouterAttachmentId = exampleTransitRouterVpcAttachment.TransitRouterAttachmentId,
        CenId = exampleInstance.Id,
        DestinationCidrBlock = "10.0.0.0/24",
        ChildInstanceRouteTableId = exampleRouteTable.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cen.CenFunctions;
import com.pulumi.alicloud.cen.inputs.GetTransitRouterAvailableResourcesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
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.TransitRouterVpcAttachment;
import com.pulumi.alicloud.cen.TransitRouterVpcAttachmentArgs;
import com.pulumi.alicloud.cen.inputs.TransitRouterVpcAttachmentZoneMappingArgs;
import com.pulumi.alicloud.vpc.RouteTable;
import com.pulumi.alicloud.vpc.RouteTableArgs;
import com.pulumi.alicloud.cen.ChildInstanceRouteEntryToAttachment;
import com.pulumi.alicloud.cen.ChildInstanceRouteEntryToAttachmentArgs;
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) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("terraform-example");
        final var default = CenFunctions.getTransitRouterAvailableResources();

        final var masterZone = default_.resources()[0].masterZones()[0];

        final var slaveZone = default_.resources()[0].slaveZones()[1];

        var example = new Network("example", NetworkArgs.builder()
            .vpcName(name)
            .cidrBlock("192.168.0.0/16")
            .build());

        var exampleMaster = new Switch("exampleMaster", SwitchArgs.builder()
            .vswitchName(name)
            .cidrBlock("192.168.1.0/24")
            .vpcId(example.id())
            .zoneId(masterZone)
            .build());

        var exampleSlave = new Switch("exampleSlave", SwitchArgs.builder()
            .vswitchName(name)
            .cidrBlock("192.168.2.0/24")
            .vpcId(example.id())
            .zoneId(slaveZone)
            .build());

        var exampleInstance = new Instance("exampleInstance", InstanceArgs.builder()
            .cenInstanceName(name)
            .protectionLevel("REDUCED")
            .build());

        var exampleTransitRouter = new TransitRouter("exampleTransitRouter", TransitRouterArgs.builder()
            .transitRouterName(name)
            .cenId(exampleInstance.id())
            .build());

        var exampleTransitRouterVpcAttachment = new TransitRouterVpcAttachment("exampleTransitRouterVpcAttachment", TransitRouterVpcAttachmentArgs.builder()
            .cenId(exampleInstance.id())
            .transitRouterId(exampleTransitRouter.transitRouterId())
            .vpcId(example.id())
            .zoneMappings(            
                TransitRouterVpcAttachmentZoneMappingArgs.builder()
                    .zoneId(masterZone)
                    .vswitchId(exampleMaster.id())
                    .build(),
                TransitRouterVpcAttachmentZoneMappingArgs.builder()
                    .zoneId(slaveZone)
                    .vswitchId(exampleSlave.id())
                    .build())
            .transitRouterAttachmentName(name)
            .transitRouterAttachmentDescription(name)
            .build());

        var exampleRouteTable = new RouteTable("exampleRouteTable", RouteTableArgs.builder()
            .vpcId(example.id())
            .routeTableName(name)
            .description(name)
            .build());

        var exampleChildInstanceRouteEntryToAttachment = new ChildInstanceRouteEntryToAttachment("exampleChildInstanceRouteEntryToAttachment", ChildInstanceRouteEntryToAttachmentArgs.builder()
            .transitRouterAttachmentId(exampleTransitRouterVpcAttachment.transitRouterAttachmentId())
            .cenId(exampleInstance.id())
            .destinationCidrBlock("10.0.0.0/24")
            .childInstanceRouteTableId(exampleRouteTable.id())
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: terraform-example
resources:
  example:
    type: alicloud:vpc:Network
    properties:
      vpcName: ${name}
      cidrBlock: 192.168.0.0/16
  exampleMaster:
    type: alicloud:vpc:Switch
    name: example_master
    properties:
      vswitchName: ${name}
      cidrBlock: 192.168.1.0/24
      vpcId: ${example.id}
      zoneId: ${masterZone}
  exampleSlave:
    type: alicloud:vpc:Switch
    name: example_slave
    properties:
      vswitchName: ${name}
      cidrBlock: 192.168.2.0/24
      vpcId: ${example.id}
      zoneId: ${slaveZone}
  exampleInstance:
    type: alicloud:cen:Instance
    name: example
    properties:
      cenInstanceName: ${name}
      protectionLevel: REDUCED
  exampleTransitRouter:
    type: alicloud:cen:TransitRouter
    name: example
    properties:
      transitRouterName: ${name}
      cenId: ${exampleInstance.id}
  exampleTransitRouterVpcAttachment:
    type: alicloud:cen:TransitRouterVpcAttachment
    name: example
    properties:
      cenId: ${exampleInstance.id}
      transitRouterId: ${exampleTransitRouter.transitRouterId}
      vpcId: ${example.id}
      zoneMappings:
        - zoneId: ${masterZone}
          vswitchId: ${exampleMaster.id}
        - zoneId: ${slaveZone}
          vswitchId: ${exampleSlave.id}
      transitRouterAttachmentName: ${name}
      transitRouterAttachmentDescription: ${name}
  exampleRouteTable:
    type: alicloud:vpc:RouteTable
    name: example
    properties:
      vpcId: ${example.id}
      routeTableName: ${name}
      description: ${name}
  exampleChildInstanceRouteEntryToAttachment:
    type: alicloud:cen:ChildInstanceRouteEntryToAttachment
    name: example
    properties:
      transitRouterAttachmentId: ${exampleTransitRouterVpcAttachment.transitRouterAttachmentId}
      cenId: ${exampleInstance.id}
      destinationCidrBlock: 10.0.0.0/24
      childInstanceRouteTableId: ${exampleRouteTable.id}
variables:
  default:
    fn::invoke:
      function: alicloud:cen:getTransitRouterAvailableResources
      arguments: {}
  masterZone: ${default.resources[0].masterZones[0]}
  slaveZone: ${default.resources[0].slaveZones[1]}
Copy

Create ChildInstanceRouteEntryToAttachment Resource

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

Constructor syntax

new ChildInstanceRouteEntryToAttachment(name: string, args: ChildInstanceRouteEntryToAttachmentArgs, opts?: CustomResourceOptions);
@overload
def ChildInstanceRouteEntryToAttachment(resource_name: str,
                                        args: ChildInstanceRouteEntryToAttachmentArgs,
                                        opts: Optional[ResourceOptions] = None)

@overload
def ChildInstanceRouteEntryToAttachment(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        cen_id: Optional[str] = None,
                                        child_instance_route_table_id: Optional[str] = None,
                                        destination_cidr_block: Optional[str] = None,
                                        transit_router_attachment_id: Optional[str] = None,
                                        dry_run: Optional[bool] = None)
func NewChildInstanceRouteEntryToAttachment(ctx *Context, name string, args ChildInstanceRouteEntryToAttachmentArgs, opts ...ResourceOption) (*ChildInstanceRouteEntryToAttachment, error)
public ChildInstanceRouteEntryToAttachment(string name, ChildInstanceRouteEntryToAttachmentArgs args, CustomResourceOptions? opts = null)
public ChildInstanceRouteEntryToAttachment(String name, ChildInstanceRouteEntryToAttachmentArgs args)
public ChildInstanceRouteEntryToAttachment(String name, ChildInstanceRouteEntryToAttachmentArgs args, CustomResourceOptions options)
type: alicloud:cen:ChildInstanceRouteEntryToAttachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ChildInstanceRouteEntryToAttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ChildInstanceRouteEntryToAttachmentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ChildInstanceRouteEntryToAttachmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ChildInstanceRouteEntryToAttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ChildInstanceRouteEntryToAttachmentArgs
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 childInstanceRouteEntryToAttachmentResource = new AliCloud.Cen.ChildInstanceRouteEntryToAttachment("childInstanceRouteEntryToAttachmentResource", new()
{
    CenId = "string",
    ChildInstanceRouteTableId = "string",
    DestinationCidrBlock = "string",
    TransitRouterAttachmentId = "string",
    DryRun = false,
});
Copy
example, err := cen.NewChildInstanceRouteEntryToAttachment(ctx, "childInstanceRouteEntryToAttachmentResource", &cen.ChildInstanceRouteEntryToAttachmentArgs{
	CenId:                     pulumi.String("string"),
	ChildInstanceRouteTableId: pulumi.String("string"),
	DestinationCidrBlock:      pulumi.String("string"),
	TransitRouterAttachmentId: pulumi.String("string"),
	DryRun:                    pulumi.Bool(false),
})
Copy
var childInstanceRouteEntryToAttachmentResource = new ChildInstanceRouteEntryToAttachment("childInstanceRouteEntryToAttachmentResource", ChildInstanceRouteEntryToAttachmentArgs.builder()
    .cenId("string")
    .childInstanceRouteTableId("string")
    .destinationCidrBlock("string")
    .transitRouterAttachmentId("string")
    .dryRun(false)
    .build());
Copy
child_instance_route_entry_to_attachment_resource = alicloud.cen.ChildInstanceRouteEntryToAttachment("childInstanceRouteEntryToAttachmentResource",
    cen_id="string",
    child_instance_route_table_id="string",
    destination_cidr_block="string",
    transit_router_attachment_id="string",
    dry_run=False)
Copy
const childInstanceRouteEntryToAttachmentResource = new alicloud.cen.ChildInstanceRouteEntryToAttachment("childInstanceRouteEntryToAttachmentResource", {
    cenId: "string",
    childInstanceRouteTableId: "string",
    destinationCidrBlock: "string",
    transitRouterAttachmentId: "string",
    dryRun: false,
});
Copy
type: alicloud:cen:ChildInstanceRouteEntryToAttachment
properties:
    cenId: string
    childInstanceRouteTableId: string
    destinationCidrBlock: string
    dryRun: false
    transitRouterAttachmentId: string
Copy

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

CenId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the CEN instance.
ChildInstanceRouteTableId
This property is required.
Changes to this property will trigger replacement.
string
The first ID of the resource
DestinationCidrBlock
This property is required.
Changes to this property will trigger replacement.
string
DestinationCidrBlock
TransitRouterAttachmentId
This property is required.
Changes to this property will trigger replacement.
string
TransitRouterAttachmentId
DryRun bool
Whether to perform pre-check on this request, including permission and instance status verification.
CenId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the CEN instance.
ChildInstanceRouteTableId
This property is required.
Changes to this property will trigger replacement.
string
The first ID of the resource
DestinationCidrBlock
This property is required.
Changes to this property will trigger replacement.
string
DestinationCidrBlock
TransitRouterAttachmentId
This property is required.
Changes to this property will trigger replacement.
string
TransitRouterAttachmentId
DryRun bool
Whether to perform pre-check on this request, including permission and instance status verification.
cenId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the CEN instance.
childInstanceRouteTableId
This property is required.
Changes to this property will trigger replacement.
String
The first ID of the resource
destinationCidrBlock
This property is required.
Changes to this property will trigger replacement.
String
DestinationCidrBlock
transitRouterAttachmentId
This property is required.
Changes to this property will trigger replacement.
String
TransitRouterAttachmentId
dryRun Boolean
Whether to perform pre-check on this request, including permission and instance status verification.
cenId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the CEN instance.
childInstanceRouteTableId
This property is required.
Changes to this property will trigger replacement.
string
The first ID of the resource
destinationCidrBlock
This property is required.
Changes to this property will trigger replacement.
string
DestinationCidrBlock
transitRouterAttachmentId
This property is required.
Changes to this property will trigger replacement.
string
TransitRouterAttachmentId
dryRun boolean
Whether to perform pre-check on this request, including permission and instance status verification.
cen_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the CEN instance.
child_instance_route_table_id
This property is required.
Changes to this property will trigger replacement.
str
The first ID of the resource
destination_cidr_block
This property is required.
Changes to this property will trigger replacement.
str
DestinationCidrBlock
transit_router_attachment_id
This property is required.
Changes to this property will trigger replacement.
str
TransitRouterAttachmentId
dry_run bool
Whether to perform pre-check on this request, including permission and instance status verification.
cenId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the CEN instance.
childInstanceRouteTableId
This property is required.
Changes to this property will trigger replacement.
String
The first ID of the resource
destinationCidrBlock
This property is required.
Changes to this property will trigger replacement.
String
DestinationCidrBlock
transitRouterAttachmentId
This property is required.
Changes to this property will trigger replacement.
String
TransitRouterAttachmentId
dryRun Boolean
Whether to perform pre-check on this request, including permission and instance status verification.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
ServiceType string
ServiceType
Status string
The status of the resource
Id string
The provider-assigned unique ID for this managed resource.
ServiceType string
ServiceType
Status string
The status of the resource
id String
The provider-assigned unique ID for this managed resource.
serviceType String
ServiceType
status String
The status of the resource
id string
The provider-assigned unique ID for this managed resource.
serviceType string
ServiceType
status string
The status of the resource
id str
The provider-assigned unique ID for this managed resource.
service_type str
ServiceType
status str
The status of the resource
id String
The provider-assigned unique ID for this managed resource.
serviceType String
ServiceType
status String
The status of the resource

Look up Existing ChildInstanceRouteEntryToAttachment Resource

Get an existing ChildInstanceRouteEntryToAttachment 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?: ChildInstanceRouteEntryToAttachmentState, opts?: CustomResourceOptions): ChildInstanceRouteEntryToAttachment
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cen_id: Optional[str] = None,
        child_instance_route_table_id: Optional[str] = None,
        destination_cidr_block: Optional[str] = None,
        dry_run: Optional[bool] = None,
        service_type: Optional[str] = None,
        status: Optional[str] = None,
        transit_router_attachment_id: Optional[str] = None) -> ChildInstanceRouteEntryToAttachment
func GetChildInstanceRouteEntryToAttachment(ctx *Context, name string, id IDInput, state *ChildInstanceRouteEntryToAttachmentState, opts ...ResourceOption) (*ChildInstanceRouteEntryToAttachment, error)
public static ChildInstanceRouteEntryToAttachment Get(string name, Input<string> id, ChildInstanceRouteEntryToAttachmentState? state, CustomResourceOptions? opts = null)
public static ChildInstanceRouteEntryToAttachment get(String name, Output<String> id, ChildInstanceRouteEntryToAttachmentState state, CustomResourceOptions options)
resources:  _:    type: alicloud:cen:ChildInstanceRouteEntryToAttachment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
CenId Changes to this property will trigger replacement. string
The ID of the CEN instance.
ChildInstanceRouteTableId Changes to this property will trigger replacement. string
The first ID of the resource
DestinationCidrBlock Changes to this property will trigger replacement. string
DestinationCidrBlock
DryRun bool
Whether to perform pre-check on this request, including permission and instance status verification.
ServiceType string
ServiceType
Status string
The status of the resource
TransitRouterAttachmentId Changes to this property will trigger replacement. string
TransitRouterAttachmentId
CenId Changes to this property will trigger replacement. string
The ID of the CEN instance.
ChildInstanceRouteTableId Changes to this property will trigger replacement. string
The first ID of the resource
DestinationCidrBlock Changes to this property will trigger replacement. string
DestinationCidrBlock
DryRun bool
Whether to perform pre-check on this request, including permission and instance status verification.
ServiceType string
ServiceType
Status string
The status of the resource
TransitRouterAttachmentId Changes to this property will trigger replacement. string
TransitRouterAttachmentId
cenId Changes to this property will trigger replacement. String
The ID of the CEN instance.
childInstanceRouteTableId Changes to this property will trigger replacement. String
The first ID of the resource
destinationCidrBlock Changes to this property will trigger replacement. String
DestinationCidrBlock
dryRun Boolean
Whether to perform pre-check on this request, including permission and instance status verification.
serviceType String
ServiceType
status String
The status of the resource
transitRouterAttachmentId Changes to this property will trigger replacement. String
TransitRouterAttachmentId
cenId Changes to this property will trigger replacement. string
The ID of the CEN instance.
childInstanceRouteTableId Changes to this property will trigger replacement. string
The first ID of the resource
destinationCidrBlock Changes to this property will trigger replacement. string
DestinationCidrBlock
dryRun boolean
Whether to perform pre-check on this request, including permission and instance status verification.
serviceType string
ServiceType
status string
The status of the resource
transitRouterAttachmentId Changes to this property will trigger replacement. string
TransitRouterAttachmentId
cen_id Changes to this property will trigger replacement. str
The ID of the CEN instance.
child_instance_route_table_id Changes to this property will trigger replacement. str
The first ID of the resource
destination_cidr_block Changes to this property will trigger replacement. str
DestinationCidrBlock
dry_run bool
Whether to perform pre-check on this request, including permission and instance status verification.
service_type str
ServiceType
status str
The status of the resource
transit_router_attachment_id Changes to this property will trigger replacement. str
TransitRouterAttachmentId
cenId Changes to this property will trigger replacement. String
The ID of the CEN instance.
childInstanceRouteTableId Changes to this property will trigger replacement. String
The first ID of the resource
destinationCidrBlock Changes to this property will trigger replacement. String
DestinationCidrBlock
dryRun Boolean
Whether to perform pre-check on this request, including permission and instance status verification.
serviceType String
ServiceType
status String
The status of the resource
transitRouterAttachmentId Changes to this property will trigger replacement. String
TransitRouterAttachmentId

Import

Cen Child Instance Route Entry To Attachment can be imported using the id, e.g.

$ pulumi import alicloud:cen/childInstanceRouteEntryToAttachment:ChildInstanceRouteEntryToAttachment example <cen_id>:<child_instance_route_table_id>:<transit_router_attachment_id>:<destination_cidr_block>
Copy

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

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.