Alibaba Cloud v3.86.1 published on Saturday, Sep 27, 2025 by Pulumi
alicloud.adb.getDBClusterLakeVersions
This data source provides the Adb DBCluster Lake Versions of the current Alibaba Cloud user.
NOTE: Available since v1.190.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = alicloud.adb.getZones({});
const defaultGetNetworks = alicloud.vpc.getNetworks({
nameRegex: "^default-NODELETING$",
});
const defaultGetSwitches = Promise.all([defaultGetNetworks, _default]).then(([defaultGetNetworks, _default]) => alicloud.vpc.getSwitches({
vpcId: defaultGetNetworks.ids?.[0],
zoneId: _default.ids?.[0],
}));
const defaultDBClusterLakeVersion = new alicloud.adb.DBClusterLakeVersion("default", {
dbClusterVersion: "5.0",
vpcId: defaultGetNetworks.then(defaultGetNetworks => defaultGetNetworks.ids?.[0]),
vswitchId: defaultGetSwitches.then(defaultGetSwitches => defaultGetSwitches.ids?.[0]),
zoneId: _default.then(_default => _default.ids?.[0]),
computeResource: "16ACU",
storageResource: "0ACU",
paymentType: "PayAsYouGo",
enableDefaultResourceGroup: false,
});
const ids = alicloud.adb.getDBClusterLakeVersionsOutput({
ids: [defaultDBClusterLakeVersion.id],
});
export const adbDbClusterLakeVersionId1 = ids.apply(ids => ids.versions?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.adb.get_zones()
default_get_networks = alicloud.vpc.get_networks(name_regex="^default-NODELETING$")
default_get_switches = alicloud.vpc.get_switches(vpc_id=default_get_networks.ids[0],
zone_id=default.ids[0])
default_db_cluster_lake_version = alicloud.adb.DBClusterLakeVersion("default",
db_cluster_version="5.0",
vpc_id=default_get_networks.ids[0],
vswitch_id=default_get_switches.ids[0],
zone_id=default.ids[0],
compute_resource="16ACU",
storage_resource="0ACU",
payment_type="PayAsYouGo",
enable_default_resource_group=False)
ids = alicloud.adb.get_db_cluster_lake_versions_output(ids=[default_db_cluster_lake_version.id])
pulumi.export("adbDbClusterLakeVersionId1", ids.versions[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/adb"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := adb.GetZones(ctx, &adb.GetZonesArgs{}, nil)
if err != nil {
return err
}
defaultGetNetworks, err := vpc.GetNetworks(ctx, &vpc.GetNetworksArgs{
NameRegex: pulumi.StringRef("^default-NODELETING$"),
}, nil)
if err != nil {
return err
}
defaultGetSwitches, err := vpc.GetSwitches(ctx, &vpc.GetSwitchesArgs{
VpcId: pulumi.StringRef(defaultGetNetworks.Ids[0]),
ZoneId: pulumi.StringRef(_default.Ids[0]),
}, nil)
if err != nil {
return err
}
defaultDBClusterLakeVersion, err := adb.NewDBClusterLakeVersion(ctx, "default", &adb.DBClusterLakeVersionArgs{
DbClusterVersion: pulumi.String("5.0"),
VpcId: pulumi.String(defaultGetNetworks.Ids[0]),
VswitchId: pulumi.String(defaultGetSwitches.Ids[0]),
ZoneId: pulumi.String(_default.Ids[0]),
ComputeResource: pulumi.String("16ACU"),
StorageResource: pulumi.String("0ACU"),
PaymentType: pulumi.String("PayAsYouGo"),
EnableDefaultResourceGroup: pulumi.Bool(false),
})
if err != nil {
return err
}
ids := adb.GetDBClusterLakeVersionsOutput(ctx, adb.GetDBClusterLakeVersionsOutputArgs{
Ids: pulumi.StringArray{
defaultDBClusterLakeVersion.ID(),
},
}, nil)
ctx.Export("adbDbClusterLakeVersionId1", ids.ApplyT(func(ids adb.GetDBClusterLakeVersionsResult) (*string, error) {
return &ids.Versions[0].Id, nil
}).(pulumi.StringPtrOutput))
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.Adb.GetZones.Invoke();
var defaultGetNetworks = AliCloud.Vpc.GetNetworks.Invoke(new()
{
NameRegex = "^default-NODELETING$",
});
var defaultGetSwitches = AliCloud.Vpc.GetSwitches.Invoke(new()
{
VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
ZoneId = @default.Apply(getZonesResult => getZonesResult.Ids[0]),
});
var defaultDBClusterLakeVersion = new AliCloud.Adb.DBClusterLakeVersion("default", new()
{
DbClusterVersion = "5.0",
VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
VswitchId = defaultGetSwitches.Apply(getSwitchesResult => getSwitchesResult.Ids[0]),
ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Ids[0])),
ComputeResource = "16ACU",
StorageResource = "0ACU",
PaymentType = "PayAsYouGo",
EnableDefaultResourceGroup = false,
});
var ids = AliCloud.Adb.GetDBClusterLakeVersions.Invoke(new()
{
Ids = new[]
{
defaultDBClusterLakeVersion.Id,
},
});
return new Dictionary<string, object?>
{
["adbDbClusterLakeVersionId1"] = ids.Apply(getDBClusterLakeVersionsResult => getDBClusterLakeVersionsResult.Versions[0]?.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.adb.AdbFunctions;
import com.pulumi.alicloud.adb.inputs.GetZonesArgs;
import com.pulumi.alicloud.vpc.VpcFunctions;
import com.pulumi.alicloud.vpc.inputs.GetNetworksArgs;
import com.pulumi.alicloud.vpc.inputs.GetSwitchesArgs;
import com.pulumi.alicloud.adb.DBClusterLakeVersion;
import com.pulumi.alicloud.adb.DBClusterLakeVersionArgs;
import com.pulumi.alicloud.adb.inputs.GetDBClusterLakeVersionsArgs;
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 default = AdbFunctions.getZones(GetZonesArgs.builder()
.build());
final var defaultGetNetworks = VpcFunctions.getNetworks(GetNetworksArgs.builder()
.nameRegex("^default-NODELETING$")
.build());
final var defaultGetSwitches = VpcFunctions.getSwitches(GetSwitchesArgs.builder()
.vpcId(defaultGetNetworks.ids()[0])
.zoneId(default_.ids()[0])
.build());
var defaultDBClusterLakeVersion = new DBClusterLakeVersion("defaultDBClusterLakeVersion", DBClusterLakeVersionArgs.builder()
.dbClusterVersion("5.0")
.vpcId(defaultGetNetworks.ids()[0])
.vswitchId(defaultGetSwitches.ids()[0])
.zoneId(default_.ids()[0])
.computeResource("16ACU")
.storageResource("0ACU")
.paymentType("PayAsYouGo")
.enableDefaultResourceGroup(false)
.build());
final var ids = AdbFunctions.getDBClusterLakeVersions(GetDBClusterLakeVersionsArgs.builder()
.ids(defaultDBClusterLakeVersion.id())
.build());
ctx.export("adbDbClusterLakeVersionId1", ids.applyValue(_ids -> _ids.versions()[0].id()));
}
}
resources:
defaultDBClusterLakeVersion:
type: alicloud:adb:DBClusterLakeVersion
name: default
properties:
dbClusterVersion: '5.0'
vpcId: ${defaultGetNetworks.ids[0]}
vswitchId: ${defaultGetSwitches.ids[0]}
zoneId: ${default.ids[0]}
computeResource: 16ACU
storageResource: 0ACU
paymentType: PayAsYouGo
enableDefaultResourceGroup: false
variables:
default:
fn::invoke:
function: alicloud:adb:getZones
arguments: {}
defaultGetNetworks:
fn::invoke:
function: alicloud:vpc:getNetworks
arguments:
nameRegex: ^default-NODELETING$
defaultGetSwitches:
fn::invoke:
function: alicloud:vpc:getSwitches
arguments:
vpcId: ${defaultGetNetworks.ids[0]}
zoneId: ${default.ids[0]}
ids:
fn::invoke:
function: alicloud:adb:getDBClusterLakeVersions
arguments:
ids:
- ${defaultDBClusterLakeVersion.id}
outputs:
adbDbClusterLakeVersionId1: ${ids.versions[0].id}
Using getDBClusterLakeVersions
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 getDBClusterLakeVersions(args: GetDBClusterLakeVersionsArgs, opts?: InvokeOptions): Promise<GetDBClusterLakeVersionsResult>
function getDBClusterLakeVersionsOutput(args: GetDBClusterLakeVersionsOutputArgs, opts?: InvokeOptions): Output<GetDBClusterLakeVersionsResult>
def get_db_cluster_lake_versions(enable_details: Optional[bool] = None,
ids: Optional[Sequence[str]] = None,
output_file: Optional[str] = None,
page_number: Optional[int] = None,
page_size: Optional[int] = None,
resource_group_id: Optional[str] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDBClusterLakeVersionsResult
def get_db_cluster_lake_versions_output(enable_details: Optional[pulumi.Input[bool]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
output_file: Optional[pulumi.Input[str]] = None,
page_number: Optional[pulumi.Input[int]] = None,
page_size: Optional[pulumi.Input[int]] = None,
resource_group_id: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDBClusterLakeVersionsResult]
func GetDBClusterLakeVersions(ctx *Context, args *GetDBClusterLakeVersionsArgs, opts ...InvokeOption) (*GetDBClusterLakeVersionsResult, error)
func GetDBClusterLakeVersionsOutput(ctx *Context, args *GetDBClusterLakeVersionsOutputArgs, opts ...InvokeOption) GetDBClusterLakeVersionsResultOutput
> Note: This function is named GetDBClusterLakeVersions
in the Go SDK.
public static class GetDBClusterLakeVersions
{
public static Task<GetDBClusterLakeVersionsResult> InvokeAsync(GetDBClusterLakeVersionsArgs args, InvokeOptions? opts = null)
public static Output<GetDBClusterLakeVersionsResult> Invoke(GetDBClusterLakeVersionsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDBClusterLakeVersionsResult> getDBClusterLakeVersions(GetDBClusterLakeVersionsArgs args, InvokeOptions options)
public static Output<GetDBClusterLakeVersionsResult> getDBClusterLakeVersions(GetDBClusterLakeVersionsArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:adb/getDBClusterLakeVersions:getDBClusterLakeVersions
arguments:
# arguments dictionary
The following arguments are supported:
- Enable
Details bool - Default to
false
. Set it totrue
can output more details about resource attributes. - Ids List<string>
- A list of DBCluster IDs.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Page
Number int - Page
Size int - Resource
Group stringId - The ID of the resource group.
- Status string
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
.
- Enable
Details bool - Default to
false
. Set it totrue
can output more details about resource attributes. - Ids []string
- A list of DBCluster IDs.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Page
Number int - Page
Size int - Resource
Group stringId - The ID of the resource group.
- Status string
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
.
- enable
Details Boolean - Default to
false
. Set it totrue
can output more details about resource attributes. - ids List<String>
- A list of DBCluster IDs.
- output
File String - File name where to save data source results (after running
pulumi preview
). - page
Number Integer - page
Size Integer - resource
Group StringId - The ID of the resource group.
- status String
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
.
- enable
Details boolean - Default to
false
. Set it totrue
can output more details about resource attributes. - ids string[]
- A list of DBCluster IDs.
- output
File string - File name where to save data source results (after running
pulumi preview
). - page
Number number - page
Size number - resource
Group stringId - The ID of the resource group.
- status string
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
.
- enable_
details bool - Default to
false
. Set it totrue
can output more details about resource attributes. - ids Sequence[str]
- A list of DBCluster IDs.
- output_
file str - File name where to save data source results (after running
pulumi preview
). - page_
number int - page_
size int - resource_
group_ strid - The ID of the resource group.
- status str
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
.
- enable
Details Boolean - Default to
false
. Set it totrue
can output more details about resource attributes. - ids List<String>
- A list of DBCluster IDs.
- output
File String - File name where to save data source results (after running
pulumi preview
). - page
Number Number - page
Size Number - resource
Group StringId - The ID of the resource group.
- status String
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
.
getDBClusterLakeVersions Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Versions
List<Pulumi.
Ali Cloud. Adb. Outputs. Get DBCluster Lake Versions Version> - A list of Adb Db Clusters. Each element contains the following attributes:
- Enable
Details bool - Output
File string - Page
Number int - Page
Size int - Resource
Group stringId - The ID of the resource group.
- Status string
- The status of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Versions
[]Get
DBCluster Lake Versions Version - A list of Adb Db Clusters. Each element contains the following attributes:
- Enable
Details bool - Output
File string - Page
Number int - Page
Size int - Resource
Group stringId - The ID of the resource group.
- Status string
- The status of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- versions
List<Get
DBCluster Lake Versions Version> - A list of Adb Db Clusters. Each element contains the following attributes:
- enable
Details Boolean - output
File String - page
Number Integer - page
Size Integer - resource
Group StringId - The ID of the resource group.
- status String
- The status of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- versions
Get
DBCluster Lake Versions Version[] - A list of Adb Db Clusters. Each element contains the following attributes:
- enable
Details boolean - output
File string - page
Number number - page
Size number - resource
Group stringId - The ID of the resource group.
- status string
- The status of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- versions
Sequence[Get
DBCluster Lake Versions Version] - A list of Adb Db Clusters. Each element contains the following attributes:
- enable_
details bool - output_
file str - page_
number int - page_
size int - resource_
group_ strid - The ID of the resource group.
- status str
- The status of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- versions List<Property Map>
- A list of Adb Db Clusters. Each element contains the following attributes:
- enable
Details Boolean - output
File String - page
Number Number - page
Size Number - resource
Group StringId - The ID of the resource group.
- status String
- The status of the resource.
Supporting Types
GetDBClusterLakeVersionsVersion
- Commodity
Code string - The name of the service.
- Compute
Resource string - The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- Connection
String string - The endpoint of the cluster.
- Create
Time string - The CreateTime of the ADB cluster.
- Db
Cluster stringId - The ID of the DBCluster.
- Db
Cluster stringVersion - The db cluster version.
- Engine string
- The engine of the database.
- Engine
Version string - The engine version of the database.
- Expire
Time string - The time when the cluster expires.
- Expired string
- Indicates whether the cluster has expired.
- Id string
- The ID of the DBCluster.
- Lock
Mode string - The lock mode of the cluster.
- Lock
Reason string - The reason why the cluster is locked.
- Payment
Type string - The payment type of the resource.
- Port string
- The port that is used to access the cluster.
- Resource
Group stringId - The ID of the resource group.
- Status string
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. - Storage
Resource string - The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- Vpc
Id string - The vpc id.
- Vswitch
Id string - The vswitch id.
- Zone
Id string - The zone ID of the resource.
- Commodity
Code string - The name of the service.
- Compute
Resource string - The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- Connection
String string - The endpoint of the cluster.
- Create
Time string - The CreateTime of the ADB cluster.
- Db
Cluster stringId - The ID of the DBCluster.
- Db
Cluster stringVersion - The db cluster version.
- Engine string
- The engine of the database.
- Engine
Version string - The engine version of the database.
- Expire
Time string - The time when the cluster expires.
- Expired string
- Indicates whether the cluster has expired.
- Id string
- The ID of the DBCluster.
- Lock
Mode string - The lock mode of the cluster.
- Lock
Reason string - The reason why the cluster is locked.
- Payment
Type string - The payment type of the resource.
- Port string
- The port that is used to access the cluster.
- Resource
Group stringId - The ID of the resource group.
- Status string
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. - Storage
Resource string - The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- Vpc
Id string - The vpc id.
- Vswitch
Id string - The vswitch id.
- Zone
Id string - The zone ID of the resource.
- commodity
Code String - The name of the service.
- compute
Resource String - The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- connection
String String - The endpoint of the cluster.
- create
Time String - The CreateTime of the ADB cluster.
- db
Cluster StringId - The ID of the DBCluster.
- db
Cluster StringVersion - The db cluster version.
- engine String
- The engine of the database.
- engine
Version String - The engine version of the database.
- expire
Time String - The time when the cluster expires.
- expired String
- Indicates whether the cluster has expired.
- id String
- The ID of the DBCluster.
- lock
Mode String - The lock mode of the cluster.
- lock
Reason String - The reason why the cluster is locked.
- payment
Type String - The payment type of the resource.
- port String
- The port that is used to access the cluster.
- resource
Group StringId - The ID of the resource group.
- status String
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. - storage
Resource String - The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- vpc
Id String - The vpc id.
- vswitch
Id String - The vswitch id.
- zone
Id String - The zone ID of the resource.
- commodity
Code string - The name of the service.
- compute
Resource string - The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- connection
String string - The endpoint of the cluster.
- create
Time string - The CreateTime of the ADB cluster.
- db
Cluster stringId - The ID of the DBCluster.
- db
Cluster stringVersion - The db cluster version.
- engine string
- The engine of the database.
- engine
Version string - The engine version of the database.
- expire
Time string - The time when the cluster expires.
- expired string
- Indicates whether the cluster has expired.
- id string
- The ID of the DBCluster.
- lock
Mode string - The lock mode of the cluster.
- lock
Reason string - The reason why the cluster is locked.
- payment
Type string - The payment type of the resource.
- port string
- The port that is used to access the cluster.
- resource
Group stringId - The ID of the resource group.
- status string
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. - storage
Resource string - The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- vpc
Id string - The vpc id.
- vswitch
Id string - The vswitch id.
- zone
Id string - The zone ID of the resource.
- commodity_
code str - The name of the service.
- compute_
resource str - The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- connection_
string str - The endpoint of the cluster.
- create_
time str - The CreateTime of the ADB cluster.
- db_
cluster_ strid - The ID of the DBCluster.
- db_
cluster_ strversion - The db cluster version.
- engine str
- The engine of the database.
- engine_
version str - The engine version of the database.
- expire_
time str - The time when the cluster expires.
- expired str
- Indicates whether the cluster has expired.
- id str
- The ID of the DBCluster.
- lock_
mode str - The lock mode of the cluster.
- lock_
reason str - The reason why the cluster is locked.
- payment_
type str - The payment type of the resource.
- port str
- The port that is used to access the cluster.
- resource_
group_ strid - The ID of the resource group.
- status str
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. - storage_
resource str - The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- vpc_
id str - The vpc id.
- vswitch_
id str - The vswitch id.
- zone_
id str - The zone ID of the resource.
- commodity
Code String - The name of the service.
- compute
Resource String - The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- connection
String String - The endpoint of the cluster.
- create
Time String - The CreateTime of the ADB cluster.
- db
Cluster StringId - The ID of the DBCluster.
- db
Cluster StringVersion - The db cluster version.
- engine String
- The engine of the database.
- engine
Version String - The engine version of the database.
- expire
Time String - The time when the cluster expires.
- expired String
- Indicates whether the cluster has expired.
- id String
- The ID of the DBCluster.
- lock
Mode String - The lock mode of the cluster.
- lock
Reason String - The reason why the cluster is locked.
- payment
Type String - The payment type of the resource.
- port String
- The port that is used to access the cluster.
- resource
Group StringId - The ID of the resource group.
- status String
- The status of the resource. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. - storage
Resource String - The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- vpc
Id String - The vpc id.
- vswitch
Id String - The vswitch id.
- zone
Id String - The zone ID of the resource.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.