1. Packages
  2. Volcengine
  3. API Docs
  4. cen
  5. AttachInstances
Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine

volcengine.cen.AttachInstances

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine

    Use this data source to query detailed information of cen attach instances

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
        {
            VpcName = "acc-test-vpc",
            CidrBlock = "172.16.0.0/16",
        });
    
        var fooCen = new Volcengine.Cen.Cen("fooCen", new()
        {
            CenName = "acc-test-cen",
            Description = "acc-test",
            ProjectName = "default",
            Tags = new[]
            {
                new Volcengine.Cen.Inputs.CenTagArgs
                {
                    Key = "k1",
                    Value = "v1",
                },
            },
        });
    
        var fooAttachInstance = new Volcengine.Cen.AttachInstance("fooAttachInstance", new()
        {
            CenId = fooCen.Id,
            InstanceId = fooVpc.Id,
            InstanceRegionId = "cn-beijing",
            InstanceType = "VPC",
        });
    
        var fooAttachInstances = Volcengine.Cen.AttachInstances.Invoke(new()
        {
            CenId = fooAttachInstance.CenId,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/cen"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
    			VpcName:   pulumi.String("acc-test-vpc"),
    			CidrBlock: pulumi.String("172.16.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		fooCen, err := cen.NewCen(ctx, "fooCen", &cen.CenArgs{
    			CenName:     pulumi.String("acc-test-cen"),
    			Description: pulumi.String("acc-test"),
    			ProjectName: pulumi.String("default"),
    			Tags: cen.CenTagArray{
    				&cen.CenTagArgs{
    					Key:   pulumi.String("k1"),
    					Value: pulumi.String("v1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		fooAttachInstance, err := cen.NewAttachInstance(ctx, "fooAttachInstance", &cen.AttachInstanceArgs{
    			CenId:            fooCen.ID(),
    			InstanceId:       fooVpc.ID(),
    			InstanceRegionId: pulumi.String("cn-beijing"),
    			InstanceType:     pulumi.String("VPC"),
    		})
    		if err != nil {
    			return err
    		}
    		_ = cen.AttachInstancesOutput(ctx, cen.AttachInstancesOutputArgs{
    			CenId: fooAttachInstance.CenId,
    		}, nil)
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.vpc.Vpc;
    import com.pulumi.volcengine.vpc.VpcArgs;
    import com.pulumi.volcengine.cen.Cen;
    import com.pulumi.volcengine.cen.CenArgs;
    import com.pulumi.volcengine.cen.inputs.CenTagArgs;
    import com.pulumi.volcengine.cen.AttachInstance;
    import com.pulumi.volcengine.cen.AttachInstanceArgs;
    import com.pulumi.volcengine.cen.CenFunctions;
    import com.pulumi.volcengine.cen.inputs.AttachInstancesArgs;
    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 fooVpc = new Vpc("fooVpc", VpcArgs.builder()        
                .vpcName("acc-test-vpc")
                .cidrBlock("172.16.0.0/16")
                .build());
    
            var fooCen = new Cen("fooCen", CenArgs.builder()        
                .cenName("acc-test-cen")
                .description("acc-test")
                .projectName("default")
                .tags(CenTagArgs.builder()
                    .key("k1")
                    .value("v1")
                    .build())
                .build());
    
            var fooAttachInstance = new AttachInstance("fooAttachInstance", AttachInstanceArgs.builder()        
                .cenId(fooCen.id())
                .instanceId(fooVpc.id())
                .instanceRegionId("cn-beijing")
                .instanceType("VPC")
                .build());
    
            final var fooAttachInstances = CenFunctions.AttachInstances(AttachInstancesArgs.builder()
                .cenId(fooAttachInstance.cenId())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo_vpc = volcengine.vpc.Vpc("fooVpc",
        vpc_name="acc-test-vpc",
        cidr_block="172.16.0.0/16")
    foo_cen = volcengine.cen.Cen("fooCen",
        cen_name="acc-test-cen",
        description="acc-test",
        project_name="default",
        tags=[volcengine.cen.CenTagArgs(
            key="k1",
            value="v1",
        )])
    foo_attach_instance = volcengine.cen.AttachInstance("fooAttachInstance",
        cen_id=foo_cen.id,
        instance_id=foo_vpc.id,
        instance_region_id="cn-beijing",
        instance_type="VPC")
    foo_attach_instances = volcengine.cen.attach_instances_output(cen_id=foo_attach_instance.cen_id)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    import * as volcengine from "@volcengine/pulumi";
    
    const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
        vpcName: "acc-test-vpc",
        cidrBlock: "172.16.0.0/16",
    });
    const fooCen = new volcengine.cen.Cen("fooCen", {
        cenName: "acc-test-cen",
        description: "acc-test",
        projectName: "default",
        tags: [{
            key: "k1",
            value: "v1",
        }],
    });
    const fooAttachInstance = new volcengine.cen.AttachInstance("fooAttachInstance", {
        cenId: fooCen.id,
        instanceId: fooVpc.id,
        instanceRegionId: "cn-beijing",
        instanceType: "VPC",
    });
    const fooAttachInstances = volcengine.cen.AttachInstancesOutput({
        cenId: fooAttachInstance.cenId,
    });
    
    resources:
      fooVpc:
        type: volcengine:vpc:Vpc
        properties:
          vpcName: acc-test-vpc
          cidrBlock: 172.16.0.0/16
      fooCen:
        type: volcengine:cen:Cen
        properties:
          cenName: acc-test-cen
          description: acc-test
          projectName: default
          tags:
            - key: k1
              value: v1
      fooAttachInstance:
        type: volcengine:cen:AttachInstance
        properties:
          cenId: ${fooCen.id}
          instanceId: ${fooVpc.id}
          instanceRegionId: cn-beijing
          instanceType: VPC
    variables:
      fooAttachInstances:
        fn::invoke:
          Function: volcengine:cen:AttachInstances
          Arguments:
            cenId: ${fooAttachInstance.cenId}
    

    Using AttachInstances

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function attachInstances(args: AttachInstancesArgs, opts?: InvokeOptions): Promise<AttachInstancesResult>
    function attachInstancesOutput(args: AttachInstancesOutputArgs, opts?: InvokeOptions): Output<AttachInstancesResult>
    def attach_instances(cen_id: Optional[str] = None,
                         instance_id: Optional[str] = None,
                         instance_region_id: Optional[str] = None,
                         instance_type: Optional[str] = None,
                         output_file: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> AttachInstancesResult
    def attach_instances_output(cen_id: Optional[pulumi.Input[str]] = None,
                         instance_id: Optional[pulumi.Input[str]] = None,
                         instance_region_id: Optional[pulumi.Input[str]] = None,
                         instance_type: Optional[pulumi.Input[str]] = None,
                         output_file: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[AttachInstancesResult]
    func AttachInstances(ctx *Context, args *AttachInstancesArgs, opts ...InvokeOption) (*AttachInstancesResult, error)
    func AttachInstancesOutput(ctx *Context, args *AttachInstancesOutputArgs, opts ...InvokeOption) AttachInstancesResultOutput
    public static class AttachInstances 
    {
        public static Task<AttachInstancesResult> InvokeAsync(AttachInstancesArgs args, InvokeOptions? opts = null)
        public static Output<AttachInstancesResult> Invoke(AttachInstancesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<AttachInstancesResult> attachInstances(AttachInstancesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: volcengine:cen:AttachInstances
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CenId string
    A cen ID.
    InstanceId string
    An instance ID.
    InstanceRegionId string
    A region id of instance.
    InstanceType string
    An instance type.
    OutputFile string
    File name where to save data source results.
    CenId string
    A cen ID.
    InstanceId string
    An instance ID.
    InstanceRegionId string
    A region id of instance.
    InstanceType string
    An instance type.
    OutputFile string
    File name where to save data source results.
    cenId String
    A cen ID.
    instanceId String
    An instance ID.
    instanceRegionId String
    A region id of instance.
    instanceType String
    An instance type.
    outputFile String
    File name where to save data source results.
    cenId string
    A cen ID.
    instanceId string
    An instance ID.
    instanceRegionId string
    A region id of instance.
    instanceType string
    An instance type.
    outputFile string
    File name where to save data source results.
    cen_id str
    A cen ID.
    instance_id str
    An instance ID.
    instance_region_id str
    A region id of instance.
    instance_type str
    An instance type.
    output_file str
    File name where to save data source results.
    cenId String
    A cen ID.
    instanceId String
    An instance ID.
    instanceRegionId String
    A region id of instance.
    instanceType String
    An instance type.
    outputFile String
    File name where to save data source results.

    AttachInstances Result

    The following output properties are available:

    AttachInstances List<AttachInstancesAttachInstance>
    The collection of cen attach instance query.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of cen attach instance query.
    CenId string
    The ID of the cen.
    InstanceId string
    The ID of the instance.
    InstanceRegionId string
    The region id of the instance.
    InstanceType string
    The type of the instance.
    OutputFile string
    AttachInstances []AttachInstancesAttachInstance
    The collection of cen attach instance query.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of cen attach instance query.
    CenId string
    The ID of the cen.
    InstanceId string
    The ID of the instance.
    InstanceRegionId string
    The region id of the instance.
    InstanceType string
    The type of the instance.
    OutputFile string
    attachInstances List<AttachInstancesAttachInstance>
    The collection of cen attach instance query.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Integer
    The total count of cen attach instance query.
    cenId String
    The ID of the cen.
    instanceId String
    The ID of the instance.
    instanceRegionId String
    The region id of the instance.
    instanceType String
    The type of the instance.
    outputFile String
    attachInstances AttachInstancesAttachInstance[]
    The collection of cen attach instance query.
    id string
    The provider-assigned unique ID for this managed resource.
    totalCount number
    The total count of cen attach instance query.
    cenId string
    The ID of the cen.
    instanceId string
    The ID of the instance.
    instanceRegionId string
    The region id of the instance.
    instanceType string
    The type of the instance.
    outputFile string
    attach_instances Sequence[AttachInstancesAttachInstance]
    The collection of cen attach instance query.
    id str
    The provider-assigned unique ID for this managed resource.
    total_count int
    The total count of cen attach instance query.
    cen_id str
    The ID of the cen.
    instance_id str
    The ID of the instance.
    instance_region_id str
    The region id of the instance.
    instance_type str
    The type of the instance.
    output_file str
    attachInstances List<Property Map>
    The collection of cen attach instance query.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Number
    The total count of cen attach instance query.
    cenId String
    The ID of the cen.
    instanceId String
    The ID of the instance.
    instanceRegionId String
    The region id of the instance.
    instanceType String
    The type of the instance.
    outputFile String

    Supporting Types

    AttachInstancesAttachInstance

    CenId string
    A cen ID.
    CreationTime string
    The create time of the cen attaching instance.
    InstanceId string
    An instance ID.
    InstanceOwnerId string
    The owner ID of the instance.
    InstanceRegionId string
    A region id of instance.
    InstanceType string
    An instance type.
    Status string
    The status of the cen attaching instance.
    CenId string
    A cen ID.
    CreationTime string
    The create time of the cen attaching instance.
    InstanceId string
    An instance ID.
    InstanceOwnerId string
    The owner ID of the instance.
    InstanceRegionId string
    A region id of instance.
    InstanceType string
    An instance type.
    Status string
    The status of the cen attaching instance.
    cenId String
    A cen ID.
    creationTime String
    The create time of the cen attaching instance.
    instanceId String
    An instance ID.
    instanceOwnerId String
    The owner ID of the instance.
    instanceRegionId String
    A region id of instance.
    instanceType String
    An instance type.
    status String
    The status of the cen attaching instance.
    cenId string
    A cen ID.
    creationTime string
    The create time of the cen attaching instance.
    instanceId string
    An instance ID.
    instanceOwnerId string
    The owner ID of the instance.
    instanceRegionId string
    A region id of instance.
    instanceType string
    An instance type.
    status string
    The status of the cen attaching instance.
    cen_id str
    A cen ID.
    creation_time str
    The create time of the cen attaching instance.
    instance_id str
    An instance ID.
    instance_owner_id str
    The owner ID of the instance.
    instance_region_id str
    A region id of instance.
    instance_type str
    An instance type.
    status str
    The status of the cen attaching instance.
    cenId String
    A cen ID.
    creationTime String
    The create time of the cen attaching instance.
    instanceId String
    An instance ID.
    instanceOwnerId String
    The owner ID of the instance.
    instanceRegionId String
    A region id of instance.
    instanceType String
    An instance type.
    status String
    The status of the cen attaching instance.

    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.25 published on Tuesday, Jul 2, 2024 by Volcengine