1. Packages
  2. Volcengine
  3. API Docs
  4. vpc
  5. RouteTableAssociate
Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine

volcengine.vpc.RouteTableAssociate

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine

    Provides a resource to manage route table associate

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Volcengine.Vpc.RouteTableAssociate("foo", new()
        {
            RouteTableId = "vtb-274e19skkuhog7fap8u4i8ird",
            SubnetId = "subnet-2744ht7fhjthc7fap8tm10eqg",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vpc.NewRouteTableAssociate(ctx, "foo", &vpc.RouteTableAssociateArgs{
    			RouteTableId: pulumi.String("vtb-274e19skkuhog7fap8u4i8ird"),
    			SubnetId:     pulumi.String("subnet-2744ht7fhjthc7fap8tm10eqg"),
    		})
    		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.volcengine.vpc.RouteTableAssociate;
    import com.pulumi.volcengine.vpc.RouteTableAssociateArgs;
    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 foo = new RouteTableAssociate("foo", RouteTableAssociateArgs.builder()        
                .routeTableId("vtb-274e19skkuhog7fap8u4i8ird")
                .subnetId("subnet-2744ht7fhjthc7fap8tm10eqg")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.vpc.RouteTableAssociate("foo",
        route_table_id="vtb-274e19skkuhog7fap8u4i8ird",
        subnet_id="subnet-2744ht7fhjthc7fap8tm10eqg")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@volcengine/pulumi";
    
    const foo = new volcengine.vpc.RouteTableAssociate("foo", {
        routeTableId: "vtb-274e19skkuhog7fap8u4i8ird",
        subnetId: "subnet-2744ht7fhjthc7fap8tm10eqg",
    });
    
    resources:
      foo:
        type: volcengine:vpc:RouteTableAssociate
        properties:
          routeTableId: vtb-274e19skkuhog7fap8u4i8ird
          subnetId: subnet-2744ht7fhjthc7fap8tm10eqg
    

    Create RouteTableAssociate Resource

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

    Constructor syntax

    new RouteTableAssociate(name: string, args: RouteTableAssociateArgs, opts?: CustomResourceOptions);
    @overload
    def RouteTableAssociate(resource_name: str,
                            args: RouteTableAssociateArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def RouteTableAssociate(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            route_table_id: Optional[str] = None,
                            subnet_id: Optional[str] = None)
    func NewRouteTableAssociate(ctx *Context, name string, args RouteTableAssociateArgs, opts ...ResourceOption) (*RouteTableAssociate, error)
    public RouteTableAssociate(string name, RouteTableAssociateArgs args, CustomResourceOptions? opts = null)
    public RouteTableAssociate(String name, RouteTableAssociateArgs args)
    public RouteTableAssociate(String name, RouteTableAssociateArgs args, CustomResourceOptions options)
    
    type: volcengine:vpc:RouteTableAssociate
    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 RouteTableAssociateArgs
    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 RouteTableAssociateArgs
    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 RouteTableAssociateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RouteTableAssociateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RouteTableAssociateArgs
    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 routeTableAssociateResource = new Volcengine.Vpc.RouteTableAssociate("routeTableAssociateResource", new()
    {
        RouteTableId = "string",
        SubnetId = "string",
    });
    
    example, err := vpc.NewRouteTableAssociate(ctx, "routeTableAssociateResource", &vpc.RouteTableAssociateArgs{
    	RouteTableId: pulumi.String("string"),
    	SubnetId:     pulumi.String("string"),
    })
    
    var routeTableAssociateResource = new RouteTableAssociate("routeTableAssociateResource", RouteTableAssociateArgs.builder()
        .routeTableId("string")
        .subnetId("string")
        .build());
    
    route_table_associate_resource = volcengine.vpc.RouteTableAssociate("routeTableAssociateResource",
        route_table_id="string",
        subnet_id="string")
    
    const routeTableAssociateResource = new volcengine.vpc.RouteTableAssociate("routeTableAssociateResource", {
        routeTableId: "string",
        subnetId: "string",
    });
    
    type: volcengine:vpc:RouteTableAssociate
    properties:
        routeTableId: string
        subnetId: string
    

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

    RouteTableId string
    The id of the route table.
    SubnetId string
    The id of the subnet.
    RouteTableId string
    The id of the route table.
    SubnetId string
    The id of the subnet.
    routeTableId String
    The id of the route table.
    subnetId String
    The id of the subnet.
    routeTableId string
    The id of the route table.
    subnetId string
    The id of the subnet.
    route_table_id str
    The id of the route table.
    subnet_id str
    The id of the subnet.
    routeTableId String
    The id of the route table.
    subnetId String
    The id of the subnet.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RouteTableAssociate 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 RouteTableAssociate Resource

    Get an existing RouteTableAssociate 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?: RouteTableAssociateState, opts?: CustomResourceOptions): RouteTableAssociate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            route_table_id: Optional[str] = None,
            subnet_id: Optional[str] = None) -> RouteTableAssociate
    func GetRouteTableAssociate(ctx *Context, name string, id IDInput, state *RouteTableAssociateState, opts ...ResourceOption) (*RouteTableAssociate, error)
    public static RouteTableAssociate Get(string name, Input<string> id, RouteTableAssociateState? state, CustomResourceOptions? opts = null)
    public static RouteTableAssociate get(String name, Output<String> id, RouteTableAssociateState 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:
    RouteTableId string
    The id of the route table.
    SubnetId string
    The id of the subnet.
    RouteTableId string
    The id of the route table.
    SubnetId string
    The id of the subnet.
    routeTableId String
    The id of the route table.
    subnetId String
    The id of the subnet.
    routeTableId string
    The id of the route table.
    subnetId string
    The id of the subnet.
    route_table_id str
    The id of the route table.
    subnet_id str
    The id of the subnet.
    routeTableId String
    The id of the route table.
    subnetId String
    The id of the subnet.

    Import

    Route table associate address can be imported using the route_table_id:subnet_id, e.g.

     $ pulumi import volcengine:vpc/routeTableAssociate:RouteTableAssociate default vtb-2fdzao4h726f45******:subnet-2fdzaou4liw3k5oxruv******
    

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

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine