Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi
alicloud.adb.getDBClusterLakeVersions
Explore with Pulumi AI
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();
        final var defaultGetNetworks = VpcFunctions.getNetworks(GetNetworksArgs.builder()
            .nameRegex("^default-NODELETING$")
            .build());
        final var defaultGetSwitches = VpcFunctions.getSwitches(GetSwitchesArgs.builder()
            .vpcId(defaultGetNetworks.applyValue(getNetworksResult -> getNetworksResult.ids()[0]))
            .zoneId(default_.ids()[0])
            .build());
        var defaultDBClusterLakeVersion = new DBClusterLakeVersion("defaultDBClusterLakeVersion", DBClusterLakeVersionArgs.builder()
            .dbClusterVersion("5.0")
            .vpcId(defaultGetNetworks.applyValue(getNetworksResult -> getNetworksResult.ids()[0]))
            .vswitchId(defaultGetSwitches.applyValue(getSwitchesResult -> getSwitchesResult.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(getDBClusterLakeVersionsResult -> getDBClusterLakeVersionsResult).applyValue(ids -> ids.applyValue(getDBClusterLakeVersionsResult -> getDBClusterLakeVersionsResult.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 dictionaryThe following arguments are supported:
- EnableDetails bool
- Default to false. Set it totruecan output more details about resource attributes.
- Ids List<string>
- A list of DBCluster IDs.
- OutputFile string
- File name where to save data source results (after running pulumi preview).
- PageNumber int
- PageSize int
- ResourceGroup stringId 
- The ID of the resource group.
- Status string
- The status of the resource. Valid values: Preparing,Creating,Restoring,Running,Deleting,ClassChanging,NetAddressCreating,NetAddressDeleting.
- EnableDetails bool
- Default to false. Set it totruecan output more details about resource attributes.
- Ids []string
- A list of DBCluster IDs.
- OutputFile string
- File name where to save data source results (after running pulumi preview).
- PageNumber int
- PageSize int
- ResourceGroup stringId 
- The ID of the resource group.
- Status string
- The status of the resource. Valid values: Preparing,Creating,Restoring,Running,Deleting,ClassChanging,NetAddressCreating,NetAddressDeleting.
- enableDetails Boolean
- Default to false. Set it totruecan output more details about resource attributes.
- ids List<String>
- A list of DBCluster IDs.
- outputFile String
- File name where to save data source results (after running pulumi preview).
- pageNumber Integer
- pageSize Integer
- resourceGroup StringId 
- The ID of the resource group.
- status String
- The status of the resource. Valid values: Preparing,Creating,Restoring,Running,Deleting,ClassChanging,NetAddressCreating,NetAddressDeleting.
- enableDetails boolean
- Default to false. Set it totruecan output more details about resource attributes.
- ids string[]
- A list of DBCluster IDs.
- outputFile string
- File name where to save data source results (after running pulumi preview).
- pageNumber number
- pageSize number
- resourceGroup 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 totruecan 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.
- enableDetails Boolean
- Default to false. Set it totruecan output more details about resource attributes.
- ids List<String>
- A list of DBCluster IDs.
- outputFile String
- File name where to save data source results (after running pulumi preview).
- pageNumber Number
- pageSize Number
- resourceGroup 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:
- EnableDetails bool
- OutputFile string
- PageNumber int
- PageSize int
- ResourceGroup 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
[]GetDBCluster Lake Versions Version 
- A list of Adb Db Clusters. Each element contains the following attributes:
- EnableDetails bool
- OutputFile string
- PageNumber int
- PageSize int
- ResourceGroup 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<GetDBCluster Lake Versions Version> 
- A list of Adb Db Clusters. Each element contains the following attributes:
- enableDetails Boolean
- outputFile String
- pageNumber Integer
- pageSize Integer
- resourceGroup 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
GetDBCluster Lake Versions Version[] 
- A list of Adb Db Clusters. Each element contains the following attributes:
- enableDetails boolean
- outputFile string
- pageNumber number
- pageSize number
- resourceGroup 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[GetDBCluster 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:
- enableDetails Boolean
- outputFile String
- pageNumber Number
- pageSize Number
- resourceGroup StringId 
- The ID of the resource group.
- status String
- The status of the resource.
Supporting Types
GetDBClusterLakeVersionsVersion    
- CommodityCode string
- The name of the service.
- ComputeResource string
- The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- ConnectionString string
- The endpoint of the cluster.
- CreateTime string
- The CreateTime of the ADB cluster.
- DbCluster stringId 
- The ID of the DBCluster.
- DbCluster stringVersion 
- The db cluster version.
- Engine string
- The engine of the database.
- EngineVersion string
- The engine version of the database.
- ExpireTime string
- The time when the cluster expires.
- Expired string
- Indicates whether the cluster has expired.
- Id string
- The ID of the DBCluster.
- LockMode string
- The lock mode of the cluster.
- LockReason string
- The reason why the cluster is locked.
- PaymentType string
- The payment type of the resource.
- Port string
- The port that is used to access the cluster.
- ResourceGroup stringId 
- The ID of the resource group.
- Status string
- The status of the resource. Valid values: Preparing,Creating,Restoring,Running,Deleting,ClassChanging,NetAddressCreating,NetAddressDeleting.
- StorageResource string
- The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- VpcId string
- The vpc id.
- VswitchId string
- The vswitch id.
- ZoneId string
- The zone ID of the resource.
- CommodityCode string
- The name of the service.
- ComputeResource string
- The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- ConnectionString string
- The endpoint of the cluster.
- CreateTime string
- The CreateTime of the ADB cluster.
- DbCluster stringId 
- The ID of the DBCluster.
- DbCluster stringVersion 
- The db cluster version.
- Engine string
- The engine of the database.
- EngineVersion string
- The engine version of the database.
- ExpireTime string
- The time when the cluster expires.
- Expired string
- Indicates whether the cluster has expired.
- Id string
- The ID of the DBCluster.
- LockMode string
- The lock mode of the cluster.
- LockReason string
- The reason why the cluster is locked.
- PaymentType string
- The payment type of the resource.
- Port string
- The port that is used to access the cluster.
- ResourceGroup stringId 
- The ID of the resource group.
- Status string
- The status of the resource. Valid values: Preparing,Creating,Restoring,Running,Deleting,ClassChanging,NetAddressCreating,NetAddressDeleting.
- StorageResource string
- The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- VpcId string
- The vpc id.
- VswitchId string
- The vswitch id.
- ZoneId string
- The zone ID of the resource.
- commodityCode String
- The name of the service.
- computeResource String
- The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- connectionString String
- The endpoint of the cluster.
- createTime String
- The CreateTime of the ADB cluster.
- dbCluster StringId 
- The ID of the DBCluster.
- dbCluster StringVersion 
- The db cluster version.
- engine String
- The engine of the database.
- engineVersion String
- The engine version of the database.
- expireTime String
- The time when the cluster expires.
- expired String
- Indicates whether the cluster has expired.
- id String
- The ID of the DBCluster.
- lockMode String
- The lock mode of the cluster.
- lockReason String
- The reason why the cluster is locked.
- paymentType String
- The payment type of the resource.
- port String
- The port that is used to access the cluster.
- resourceGroup StringId 
- The ID of the resource group.
- status String
- The status of the resource. Valid values: Preparing,Creating,Restoring,Running,Deleting,ClassChanging,NetAddressCreating,NetAddressDeleting.
- storageResource String
- The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- vpcId String
- The vpc id.
- vswitchId String
- The vswitch id.
- zoneId String
- The zone ID of the resource.
- commodityCode string
- The name of the service.
- computeResource string
- The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- connectionString string
- The endpoint of the cluster.
- createTime string
- The CreateTime of the ADB cluster.
- dbCluster stringId 
- The ID of the DBCluster.
- dbCluster stringVersion 
- The db cluster version.
- engine string
- The engine of the database.
- engineVersion string
- The engine version of the database.
- expireTime string
- The time when the cluster expires.
- expired string
- Indicates whether the cluster has expired.
- id string
- The ID of the DBCluster.
- lockMode string
- The lock mode of the cluster.
- lockReason string
- The reason why the cluster is locked.
- paymentType string
- The payment type of the resource.
- port string
- The port that is used to access the cluster.
- resourceGroup stringId 
- The ID of the resource group.
- status string
- The status of the resource. Valid values: Preparing,Creating,Restoring,Running,Deleting,ClassChanging,NetAddressCreating,NetAddressDeleting.
- storageResource string
- The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- vpcId string
- The vpc id.
- vswitchId string
- The vswitch id.
- zoneId 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.
- commodityCode String
- The name of the service.
- computeResource String
- The specifications of computing resources in elastic mode. The increase of resources can speed up queries.
- connectionString String
- The endpoint of the cluster.
- createTime String
- The CreateTime of the ADB cluster.
- dbCluster StringId 
- The ID of the DBCluster.
- dbCluster StringVersion 
- The db cluster version.
- engine String
- The engine of the database.
- engineVersion String
- The engine version of the database.
- expireTime String
- The time when the cluster expires.
- expired String
- Indicates whether the cluster has expired.
- id String
- The ID of the DBCluster.
- lockMode String
- The lock mode of the cluster.
- lockReason String
- The reason why the cluster is locked.
- paymentType String
- The payment type of the resource.
- port String
- The port that is used to access the cluster.
- resourceGroup StringId 
- The ID of the resource group.
- status String
- The status of the resource. Valid values: Preparing,Creating,Restoring,Running,Deleting,ClassChanging,NetAddressCreating,NetAddressDeleting.
- storageResource String
- The specifications of storage resources in elastic mode. The resources are used for data read and write operations.
- vpcId String
- The vpc id.
- vswitchId String
- The vswitch id.
- zoneId 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 alicloudTerraform Provider.