1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. databasefilesystem
  5. InstanceAttachment
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.databasefilesystem.InstanceAttachment

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    Provides a DBFS Instance Attachment resource.

    For information about DBFS Instance Attachment and how to use it.

    NOTE: Available since v1.156.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") || "tf-example";
    const zoneId = "cn-hangzhou-i";
    const exampleInstanceTypes = alicloud.ecs.getInstanceTypes({
        availabilityZone: zoneId,
        instanceTypeFamily: "ecs.g7se",
    });
    const exampleImages = Promise.all([exampleInstanceTypes, exampleInstanceTypes.then(exampleInstanceTypes => exampleInstanceTypes.instanceTypes).length]).then(([exampleInstanceTypes, length]) => alicloud.ecs.getImages({
        instanceType: exampleInstanceTypes.instanceTypes[length - 1].id,
        nameRegex: "^aliyun_2_1903_x64_20G_alibase_20231221.vhd",
        owners: "system",
    }));
    const defaultNetworks = alicloud.vpc.getNetworks({
        nameRegex: "^default-NODELETING$",
    });
    const defaultSwitches = defaultNetworks.then(defaultNetworks => alicloud.vpc.getSwitches({
        vpcId: defaultNetworks.ids?.[0],
        zoneId: zoneId,
    }));
    const exampleSecurityGroup = new alicloud.ecs.SecurityGroup("exampleSecurityGroup", {vpcId: defaultNetworks.then(defaultNetworks => defaultNetworks.ids?.[0])});
    const defaultInstance = new alicloud.ecs.Instance("defaultInstance", {
        availabilityZone: zoneId,
        instanceName: name,
        imageId: exampleImages.then(exampleImages => exampleImages.images?.[0]?.id),
        instanceType: Promise.all([exampleInstanceTypes, exampleInstanceTypes.then(exampleInstanceTypes => exampleInstanceTypes.instanceTypes).length]).then(([exampleInstanceTypes, length]) => exampleInstanceTypes.instanceTypes[length - 1].id),
        securityGroups: [exampleSecurityGroup.id],
        vswitchId: defaultSwitches.then(defaultSwitches => defaultSwitches.ids?.[0]),
        systemDiskCategory: "cloud_essd",
    });
    const defaultDatabasefilesystem_instanceInstance = new alicloud.databasefilesystem.Instance("defaultDatabasefilesystem/instanceInstance", {
        category: "enterprise",
        zoneId: defaultInstance.availabilityZone,
        performanceLevel: "PL1",
        fsName: name,
        size: 100,
    });
    const exampleInstanceAttachment = new alicloud.databasefilesystem.InstanceAttachment("exampleInstanceAttachment", {
        ecsId: defaultInstance.id,
        instanceId: defaultDatabasefilesystem / instanceInstance.id,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-example"
    zone_id = "cn-hangzhou-i"
    example_instance_types = alicloud.ecs.get_instance_types(availability_zone=zone_id,
        instance_type_family="ecs.g7se")
    example_images = alicloud.ecs.get_images(instance_type=example_instance_types.instance_types[len(example_instance_types.instance_types) - 1].id,
        name_regex="^aliyun_2_1903_x64_20G_alibase_20231221.vhd",
        owners="system")
    default_networks = alicloud.vpc.get_networks(name_regex="^default-NODELETING$")
    default_switches = alicloud.vpc.get_switches(vpc_id=default_networks.ids[0],
        zone_id=zone_id)
    example_security_group = alicloud.ecs.SecurityGroup("exampleSecurityGroup", vpc_id=default_networks.ids[0])
    default_instance = alicloud.ecs.Instance("defaultInstance",
        availability_zone=zone_id,
        instance_name=name,
        image_id=example_images.images[0].id,
        instance_type=example_instance_types.instance_types[len(example_instance_types.instance_types) - 1].id,
        security_groups=[example_security_group.id],
        vswitch_id=default_switches.ids[0],
        system_disk_category="cloud_essd")
    default_databasefilesystem_instance_instance = alicloud.databasefilesystem.Instance("defaultDatabasefilesystem/instanceInstance",
        category="enterprise",
        zone_id=default_instance.availability_zone,
        performance_level="PL1",
        fs_name=name,
        size=100)
    example_instance_attachment = alicloud.databasefilesystem.InstanceAttachment("exampleInstanceAttachment",
        ecs_id=default_instance.id,
        instance_id=default_databasefilesystem / instance_instance["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/databasefilesystem"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
    	"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 := "tf-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		zoneId := "cn-hangzhou-i"
    		exampleInstanceTypes, err := ecs.GetInstanceTypes(ctx, &ecs.GetInstanceTypesArgs{
    			AvailabilityZone:   pulumi.StringRef(zoneId),
    			InstanceTypeFamily: pulumi.StringRef("ecs.g7se"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleImages, err := ecs.GetImages(ctx, &ecs.GetImagesArgs{
    			InstanceType: pulumi.StringRef(exampleInstanceTypes.InstanceTypes[len(exampleInstanceTypes.InstanceTypes)-1].Id),
    			NameRegex:    pulumi.StringRef("^aliyun_2_1903_x64_20G_alibase_20231221.vhd"),
    			Owners:       pulumi.StringRef("system"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultNetworks, err := vpc.GetNetworks(ctx, &vpc.GetNetworksArgs{
    			NameRegex: pulumi.StringRef("^default-NODELETING$"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultSwitches, err := vpc.GetSwitches(ctx, &vpc.GetSwitchesArgs{
    			VpcId:  pulumi.StringRef(defaultNetworks.Ids[0]),
    			ZoneId: pulumi.StringRef(zoneId),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleSecurityGroup, err := ecs.NewSecurityGroup(ctx, "exampleSecurityGroup", &ecs.SecurityGroupArgs{
    			VpcId: pulumi.String(defaultNetworks.Ids[0]),
    		})
    		if err != nil {
    			return err
    		}
    		defaultInstance, err := ecs.NewInstance(ctx, "defaultInstance", &ecs.InstanceArgs{
    			AvailabilityZone: pulumi.String(zoneId),
    			InstanceName:     pulumi.String(name),
    			ImageId:          pulumi.String(exampleImages.Images[0].Id),
    			InstanceType:     exampleInstanceTypes.InstanceTypes[len(exampleInstanceTypes.InstanceTypes)-1].Id,
    			SecurityGroups: pulumi.StringArray{
    				exampleSecurityGroup.ID(),
    			},
    			VswitchId:          pulumi.String(defaultSwitches.Ids[0]),
    			SystemDiskCategory: pulumi.String("cloud_essd"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = databasefilesystem.NewInstance(ctx, "defaultDatabasefilesystem/instanceInstance", &databasefilesystem.InstanceArgs{
    			Category:         pulumi.String("enterprise"),
    			ZoneId:           defaultInstance.AvailabilityZone,
    			PerformanceLevel: pulumi.String("PL1"),
    			FsName:           pulumi.String(name),
    			Size:             pulumi.Int(100),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = databasefilesystem.NewInstanceAttachment(ctx, "exampleInstanceAttachment", &databasefilesystem.InstanceAttachmentArgs{
    			EcsId:      defaultInstance.ID(),
    			InstanceId: defaultDatabasefilesystem / instanceInstance.Id,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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") ?? "tf-example";
        var zoneId = "cn-hangzhou-i";
    
        var exampleInstanceTypes = AliCloud.Ecs.GetInstanceTypes.Invoke(new()
        {
            AvailabilityZone = zoneId,
            InstanceTypeFamily = "ecs.g7se",
        });
    
        var exampleImages = AliCloud.Ecs.GetImages.Invoke(new()
        {
            InstanceType = exampleInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes)[exampleInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes).Length - 1].Id,
            NameRegex = "^aliyun_2_1903_x64_20G_alibase_20231221.vhd",
            Owners = "system",
        });
    
        var defaultNetworks = AliCloud.Vpc.GetNetworks.Invoke(new()
        {
            NameRegex = "^default-NODELETING$",
        });
    
        var defaultSwitches = AliCloud.Vpc.GetSwitches.Invoke(new()
        {
            VpcId = defaultNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
            ZoneId = zoneId,
        });
    
        var exampleSecurityGroup = new AliCloud.Ecs.SecurityGroup("exampleSecurityGroup", new()
        {
            VpcId = defaultNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
        });
    
        var defaultInstance = new AliCloud.Ecs.Instance("defaultInstance", new()
        {
            AvailabilityZone = zoneId,
            InstanceName = name,
            ImageId = exampleImages.Apply(getImagesResult => getImagesResult.Images[0]?.Id),
            InstanceType = Output.Tuple(exampleInstanceTypes, exampleInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes).Length).Apply(values =>
            {
                var exampleInstanceTypes = values.Item1;
                var length = values.Item2;
                return exampleInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes)[length - 1].Id;
            }),
            SecurityGroups = new[]
            {
                exampleSecurityGroup.Id,
            },
            VswitchId = defaultSwitches.Apply(getSwitchesResult => getSwitchesResult.Ids[0]),
            SystemDiskCategory = "cloud_essd",
        });
    
        var defaultDatabasefilesystem_instanceInstance = new AliCloud.DatabaseFilesystem.Instance("defaultDatabasefilesystem/instanceInstance", new()
        {
            Category = "enterprise",
            ZoneId = defaultInstance.AvailabilityZone,
            PerformanceLevel = "PL1",
            FsName = name,
            Size = 100,
        });
    
        var exampleInstanceAttachment = new AliCloud.DatabaseFilesystem.InstanceAttachment("exampleInstanceAttachment", new()
        {
            EcsId = defaultInstance.Id,
            InstanceId = defaultDatabasefilesystem / instanceInstance.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.ecs.EcsFunctions;
    import com.pulumi.alicloud.ecs.inputs.GetInstanceTypesArgs;
    import com.pulumi.alicloud.ecs.inputs.GetImagesArgs;
    import com.pulumi.alicloud.vpc.VpcFunctions;
    import com.pulumi.alicloud.vpc.inputs.GetNetworksArgs;
    import com.pulumi.alicloud.vpc.inputs.GetSwitchesArgs;
    import com.pulumi.alicloud.ecs.SecurityGroup;
    import com.pulumi.alicloud.ecs.SecurityGroupArgs;
    import com.pulumi.alicloud.ecs.Instance;
    import com.pulumi.alicloud.ecs.InstanceArgs;
    import com.pulumi.alicloud.databasefilesystem.Instance;
    import com.pulumi.alicloud.databasefilesystem.InstanceArgs;
    import com.pulumi.alicloud.databasefilesystem.InstanceAttachment;
    import com.pulumi.alicloud.databasefilesystem.InstanceAttachmentArgs;
    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("tf-example");
            final var zoneId = "cn-hangzhou-i";
    
            final var exampleInstanceTypes = EcsFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
                .availabilityZone(zoneId)
                .instanceTypeFamily("ecs.g7se")
                .build());
    
            final var exampleImages = EcsFunctions.getImages(GetImagesArgs.builder()
                .instanceType(exampleInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes())[exampleInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes()).length() - 1].id())
                .nameRegex("^aliyun_2_1903_x64_20G_alibase_20231221.vhd")
                .owners("system")
                .build());
    
            final var defaultNetworks = VpcFunctions.getNetworks(GetNetworksArgs.builder()
                .nameRegex("^default-NODELETING$")
                .build());
    
            final var defaultSwitches = VpcFunctions.getSwitches(GetSwitchesArgs.builder()
                .vpcId(defaultNetworks.applyValue(getNetworksResult -> getNetworksResult.ids()[0]))
                .zoneId(zoneId)
                .build());
    
            var exampleSecurityGroup = new SecurityGroup("exampleSecurityGroup", SecurityGroupArgs.builder()        
                .vpcId(defaultNetworks.applyValue(getNetworksResult -> getNetworksResult.ids()[0]))
                .build());
    
            var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()        
                .availabilityZone(zoneId)
                .instanceName(name)
                .imageId(exampleImages.applyValue(getImagesResult -> getImagesResult.images()[0].id()))
                .instanceType(exampleInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes())[exampleInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes()).length() - 1].id())
                .securityGroups(exampleSecurityGroup.id())
                .vswitchId(defaultSwitches.applyValue(getSwitchesResult -> getSwitchesResult.ids()[0]))
                .systemDiskCategory("cloud_essd")
                .build());
    
            var defaultDatabasefilesystem_instanceInstance = new Instance("defaultDatabasefilesystem/instanceInstance", InstanceArgs.builder()        
                .category("enterprise")
                .zoneId(defaultInstance.availabilityZone())
                .performanceLevel("PL1")
                .fsName(name)
                .size(100)
                .build());
    
            var exampleInstanceAttachment = new InstanceAttachment("exampleInstanceAttachment", InstanceAttachmentArgs.builder()        
                .ecsId(defaultInstance.id())
                .instanceId(defaultDatabasefilesystem / instanceInstance.id())
                .build());
    
        }
    }
    
    Coming soon!
    

    Create InstanceAttachment Resource

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

    Constructor syntax

    new InstanceAttachment(name: string, args: InstanceAttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def InstanceAttachment(resource_name: str,
                           args: InstanceAttachmentArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def InstanceAttachment(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           ecs_id: Optional[str] = None,
                           instance_id: Optional[str] = None)
    func NewInstanceAttachment(ctx *Context, name string, args InstanceAttachmentArgs, opts ...ResourceOption) (*InstanceAttachment, error)
    public InstanceAttachment(string name, InstanceAttachmentArgs args, CustomResourceOptions? opts = null)
    public InstanceAttachment(String name, InstanceAttachmentArgs args)
    public InstanceAttachment(String name, InstanceAttachmentArgs args, CustomResourceOptions options)
    
    type: alicloud:databasefilesystem:InstanceAttachment
    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 InstanceAttachmentArgs
    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 InstanceAttachmentArgs
    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 InstanceAttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstanceAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstanceAttachmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var alicloudInstanceAttachmentResource = new AliCloud.DatabaseFilesystem.InstanceAttachment("alicloudInstanceAttachmentResource", new()
    {
        EcsId = "string",
        InstanceId = "string",
    });
    
    example, err := databasefilesystem.NewInstanceAttachment(ctx, "alicloudInstanceAttachmentResource", &databasefilesystem.InstanceAttachmentArgs{
    	EcsId:      pulumi.String("string"),
    	InstanceId: pulumi.String("string"),
    })
    
    var alicloudInstanceAttachmentResource = new InstanceAttachment("alicloudInstanceAttachmentResource", InstanceAttachmentArgs.builder()        
        .ecsId("string")
        .instanceId("string")
        .build());
    
    alicloud_instance_attachment_resource = alicloud.databasefilesystem.InstanceAttachment("alicloudInstanceAttachmentResource",
        ecs_id="string",
        instance_id="string")
    
    const alicloudInstanceAttachmentResource = new alicloud.databasefilesystem.InstanceAttachment("alicloudInstanceAttachmentResource", {
        ecsId: "string",
        instanceId: "string",
    });
    
    type: alicloud:databasefilesystem:InstanceAttachment
    properties:
        ecsId: string
        instanceId: string
    

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

    EcsId string
    The ID of the ECS instance.
    InstanceId string
    The ID of the database file system.
    EcsId string
    The ID of the ECS instance.
    InstanceId string
    The ID of the database file system.
    ecsId String
    The ID of the ECS instance.
    instanceId String
    The ID of the database file system.
    ecsId string
    The ID of the ECS instance.
    instanceId string
    The ID of the database file system.
    ecs_id str
    The ID of the ECS instance.
    instance_id str
    The ID of the database file system.
    ecsId String
    The ID of the ECS instance.
    instanceId String
    The ID of the database file system.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.

    Look up Existing InstanceAttachment Resource

    Get an existing InstanceAttachment 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?: InstanceAttachmentState, opts?: CustomResourceOptions): InstanceAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ecs_id: Optional[str] = None,
            instance_id: Optional[str] = None,
            status: Optional[str] = None) -> InstanceAttachment
    func GetInstanceAttachment(ctx *Context, name string, id IDInput, state *InstanceAttachmentState, opts ...ResourceOption) (*InstanceAttachment, error)
    public static InstanceAttachment Get(string name, Input<string> id, InstanceAttachmentState? state, CustomResourceOptions? opts = null)
    public static InstanceAttachment get(String name, Output<String> id, InstanceAttachmentState 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:
    EcsId string
    The ID of the ECS instance.
    InstanceId string
    The ID of the database file system.
    Status string
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    EcsId string
    The ID of the ECS instance.
    InstanceId string
    The ID of the database file system.
    Status string
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    ecsId String
    The ID of the ECS instance.
    instanceId String
    The ID of the database file system.
    status String
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    ecsId string
    The ID of the ECS instance.
    instanceId string
    The ID of the database file system.
    status string
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    ecs_id str
    The ID of the ECS instance.
    instance_id str
    The ID of the database file system.
    status str
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.
    ecsId String
    The ID of the ECS instance.
    instanceId String
    The ID of the database file system.
    status String
    The status of Database file system. Valid values: attached, attaching, unattached, detaching.

    Import

    DBFS Instance Attachment can be imported using the id, e.g.

    $ pulumi import alicloud:databasefilesystem/instanceAttachment:InstanceAttachment example <instance_id>:<ecs_id>
    

    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.
    alicloud logo
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi