Alibaba Cloud v3.62.1 published on Monday, Sep 16, 2024 by Pulumi
alicloud.adb.getDBClusters
Explore with Pulumi AI
This data source provides the Adb DBClusters of the current Alibaba Cloud user.
NOTE: Available since v1.121.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = alicloud.adb.getDBClusters({
descriptionRegex: "example",
});
export const firstAdbDbClusterId = example.then(example => example.clusters?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.adb.get_db_clusters(description_regex="example")
pulumi.export("firstAdbDbClusterId", example.clusters[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/adb"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := adb.GetDBClusters(ctx, &adb.GetDBClustersArgs{
DescriptionRegex: pulumi.StringRef("example"),
}, nil)
if err != nil {
return err
}
ctx.Export("firstAdbDbClusterId", example.Clusters[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var example = AliCloud.Adb.GetDBClusters.Invoke(new()
{
DescriptionRegex = "example",
});
return new Dictionary<string, object?>
{
["firstAdbDbClusterId"] = example.Apply(getDBClustersResult => getDBClustersResult.Clusters[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.GetDBClustersArgs;
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 example = AdbFunctions.getDBClusters(GetDBClustersArgs.builder()
.descriptionRegex("example")
.build());
ctx.export("firstAdbDbClusterId", example.applyValue(getDBClustersResult -> getDBClustersResult.clusters()[0].id()));
}
}
variables:
example:
fn::invoke:
Function: alicloud:adb:getDBClusters
Arguments:
descriptionRegex: example
outputs:
firstAdbDbClusterId: ${example.clusters[0].id}
Using getDBClusters
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 getDBClusters(args: GetDBClustersArgs, opts?: InvokeOptions): Promise<GetDBClustersResult>
function getDBClustersOutput(args: GetDBClustersOutputArgs, opts?: InvokeOptions): Output<GetDBClustersResult>
def get_db_clusters(description: Optional[str] = None,
description_regex: Optional[str] = None,
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,
tags: Optional[Mapping[str, str]] = None,
opts: Optional[InvokeOptions] = None) -> GetDBClustersResult
def get_db_clusters_output(description: Optional[pulumi.Input[str]] = None,
description_regex: Optional[pulumi.Input[str]] = None,
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,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDBClustersResult]
func GetDBClusters(ctx *Context, args *GetDBClustersArgs, opts ...InvokeOption) (*GetDBClustersResult, error)
func GetDBClustersOutput(ctx *Context, args *GetDBClustersOutputArgs, opts ...InvokeOption) GetDBClustersResultOutput
> Note: This function is named GetDBClusters
in the Go SDK.
public static class GetDBClusters
{
public static Task<GetDBClustersResult> InvokeAsync(GetDBClustersArgs args, InvokeOptions? opts = null)
public static Output<GetDBClustersResult> Invoke(GetDBClustersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDBClustersResult> getDBClusters(GetDBClustersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:adb/getDBClusters:getDBClusters
arguments:
# arguments dictionary
The following arguments are supported:
- Description string
- The description of DBCluster.
- Description
Regex string - A regex string to filter results by DBCluster description.
- 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.
- Dictionary<string, string>
- A map of tags assigned to the cluster.
- Description string
- The description of DBCluster.
- Description
Regex string - A regex string to filter results by DBCluster description.
- 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.
- map[string]string
- A map of tags assigned to the cluster.
- description String
- The description of DBCluster.
- description
Regex String - A regex string to filter results by DBCluster description.
- 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.
- Map<String,String>
- A map of tags assigned to the cluster.
- description string
- The description of DBCluster.
- description
Regex string - A regex string to filter results by DBCluster description.
- 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.
- {[key: string]: string}
- A map of tags assigned to the cluster.
- description str
- The description of DBCluster.
- description_
regex str - A regex string to filter results by DBCluster description.
- 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.
- Mapping[str, str]
- A map of tags assigned to the cluster.
- description String
- The description of DBCluster.
- description
Regex String - A regex string to filter results by DBCluster description.
- 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.
- Map<String>
- A map of tags assigned to the cluster.
getDBClusters Result
The following output properties are available:
- Clusters
List<Pulumi.
Ali Cloud. Adb. Outputs. Get DBClusters Cluster> - A list of Adb Db Clusters. Each element contains the following attributes:
- Descriptions List<string>
- A list of DBCluster descriptions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Total
Count int - Description string
- The description of DBCluster.
- Description
Regex string - 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.
- Dictionary<string, string>
- The tags of the resource.
- Clusters
[]Get
DBClusters Cluster - A list of Adb Db Clusters. Each element contains the following attributes:
- Descriptions []string
- A list of DBCluster descriptions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Total
Count int - Description string
- The description of DBCluster.
- Description
Regex string - 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.
- map[string]string
- The tags of the resource.
- clusters
List<Get
DBClusters Cluster> - A list of Adb Db Clusters. Each element contains the following attributes:
- descriptions List<String>
- A list of DBCluster descriptions.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- total
Count Integer - description String
- The description of DBCluster.
- description
Regex String - 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.
- Map<String,String>
- The tags of the resource.
- clusters
Get
DBClusters Cluster[] - A list of Adb Db Clusters. Each element contains the following attributes:
- descriptions string[]
- A list of DBCluster descriptions.
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- total
Count number - description string
- The description of DBCluster.
- description
Regex string - 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.
- {[key: string]: string}
- The tags of the resource.
- clusters
Sequence[Get
DBClusters Cluster] - A list of Adb Db Clusters. Each element contains the following attributes:
- descriptions Sequence[str]
- A list of DBCluster descriptions.
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- total_
count int - description str
- The description of DBCluster.
- description_
regex str - 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.
- Mapping[str, str]
- The tags of the resource.
- clusters List<Property Map>
- A list of Adb Db Clusters. Each element contains the following attributes:
- descriptions List<String>
- A list of DBCluster descriptions.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- total
Count Number - description String
- The description of DBCluster.
- description
Regex String - 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.
- Map<String>
- The tags of the resource.
Supporting Types
GetDBClustersCluster
- Auto
Renew intPeriod - Auto-renewal period of an cluster, in the unit of the month.
- Charge
Type string - The payment type 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. AnalyticDB for MySQL automatically scales computing resources.
- Connection
String string - The endpoint of the cluster.
- Create
Time string - The CreateTime of the ADB cluster.
- Db
Cluster stringCategory - The db cluster category.
- Db
Cluster stringId - The db cluster id.
- Db
Cluster stringNetwork Type - The db cluster network type.
- Db
Cluster stringType - The db cluster type.
- Db
Cluster stringVersion - The db cluster version.
- Db
Node stringClass - The db node class.
- Db
Node intCount - The db node count.
- Db
Node intStorage - The db node storage.
- Description string
- The description of DBCluster.
- Disk
Type string - The type of the disk.
- Dts
Job stringId - The ID of the data synchronization task in Data Transmission Service (DTS). This parameter is valid only for analytic instances.
- Elastic
Io intResource - The elastic io resource.
- Engine string
- The engine of the database.
- Engine
Version string - The engine version of the database.
- Executor
Count string - The number of nodes. The node resources are used for data computing in elastic mode.
- 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.
- Maintain
Time string - The maintenance window of the cluster.
- Mode string
- The lock mode of the cluster.
- Network
Type string - The db cluster network type.
- Payment
Type string - The payment type of the resource.
- Port int
- The port that is used to access the cluster.
- Rds
Instance stringId - The ID of the ApsaraDB RDS instance from which data is synchronized to the cluster. This parameter is valid only for analytic instances.
- Region
Id string - The region ID of the resource.
- Renewal
Status string - The status of renewal.
- Resource
Group stringId - The ID of the resource group.
- Security
Ips List<string> - List of IP addresses allowed to access all databases of an cluster.
- Status string
- The status of the resource.
- Storage
Resource string - The specifications of storage resources in elastic mode. The resources are used for data read and write operations. The increase of resources can improve the read and write performance of your cluster.
- Dictionary<string, string>
- A map of tags assigned to the cluster.
- Vpc
Cloud stringInstance Id - The vpc cloud instance id.
- Vpc
Id string - The vpc id.
- Vswitch
Id string - The vswitch id.
- Zone
Id string - The zone ID of the resource.
- Auto
Renew intPeriod - Auto-renewal period of an cluster, in the unit of the month.
- Charge
Type string - The payment type 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. AnalyticDB for MySQL automatically scales computing resources.
- Connection
String string - The endpoint of the cluster.
- Create
Time string - The CreateTime of the ADB cluster.
- Db
Cluster stringCategory - The db cluster category.
- Db
Cluster stringId - The db cluster id.
- Db
Cluster stringNetwork Type - The db cluster network type.
- Db
Cluster stringType - The db cluster type.
- Db
Cluster stringVersion - The db cluster version.
- Db
Node stringClass - The db node class.
- Db
Node intCount - The db node count.
- Db
Node intStorage - The db node storage.
- Description string
- The description of DBCluster.
- Disk
Type string - The type of the disk.
- Dts
Job stringId - The ID of the data synchronization task in Data Transmission Service (DTS). This parameter is valid only for analytic instances.
- Elastic
Io intResource - The elastic io resource.
- Engine string
- The engine of the database.
- Engine
Version string - The engine version of the database.
- Executor
Count string - The number of nodes. The node resources are used for data computing in elastic mode.
- 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.
- Maintain
Time string - The maintenance window of the cluster.
- Mode string
- The lock mode of the cluster.
- Network
Type string - The db cluster network type.
- Payment
Type string - The payment type of the resource.
- Port int
- The port that is used to access the cluster.
- Rds
Instance stringId - The ID of the ApsaraDB RDS instance from which data is synchronized to the cluster. This parameter is valid only for analytic instances.
- Region
Id string - The region ID of the resource.
- Renewal
Status string - The status of renewal.
- Resource
Group stringId - The ID of the resource group.
- Security
Ips []string - List of IP addresses allowed to access all databases of an cluster.
- Status string
- The status of the resource.
- Storage
Resource string - The specifications of storage resources in elastic mode. The resources are used for data read and write operations. The increase of resources can improve the read and write performance of your cluster.
- map[string]string
- A map of tags assigned to the cluster.
- Vpc
Cloud stringInstance Id - The vpc cloud instance id.
- Vpc
Id string - The vpc id.
- Vswitch
Id string - The vswitch id.
- Zone
Id string - The zone ID of the resource.
- auto
Renew IntegerPeriod - Auto-renewal period of an cluster, in the unit of the month.
- charge
Type String - The payment type 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. AnalyticDB for MySQL automatically scales computing resources.
- connection
String String - The endpoint of the cluster.
- create
Time String - The CreateTime of the ADB cluster.
- db
Cluster StringCategory - The db cluster category.
- db
Cluster StringId - The db cluster id.
- db
Cluster StringNetwork Type - The db cluster network type.
- db
Cluster StringType - The db cluster type.
- db
Cluster StringVersion - The db cluster version.
- db
Node StringClass - The db node class.
- db
Node IntegerCount - The db node count.
- db
Node IntegerStorage - The db node storage.
- description String
- The description of DBCluster.
- disk
Type String - The type of the disk.
- dts
Job StringId - The ID of the data synchronization task in Data Transmission Service (DTS). This parameter is valid only for analytic instances.
- elastic
Io IntegerResource - The elastic io resource.
- engine String
- The engine of the database.
- engine
Version String - The engine version of the database.
- executor
Count String - The number of nodes. The node resources are used for data computing in elastic mode.
- 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.
- maintain
Time String - The maintenance window of the cluster.
- mode String
- The lock mode of the cluster.
- network
Type String - The db cluster network type.
- payment
Type String - The payment type of the resource.
- port Integer
- The port that is used to access the cluster.
- rds
Instance StringId - The ID of the ApsaraDB RDS instance from which data is synchronized to the cluster. This parameter is valid only for analytic instances.
- region
Id String - The region ID of the resource.
- renewal
Status String - The status of renewal.
- resource
Group StringId - The ID of the resource group.
- security
Ips List<String> - List of IP addresses allowed to access all databases of an cluster.
- status String
- The status of the resource.
- storage
Resource String - The specifications of storage resources in elastic mode. The resources are used for data read and write operations. The increase of resources can improve the read and write performance of your cluster.
- Map<String,String>
- A map of tags assigned to the cluster.
- vpc
Cloud StringInstance Id - The vpc cloud instance id.
- vpc
Id String - The vpc id.
- vswitch
Id String - The vswitch id.
- zone
Id String - The zone ID of the resource.
- auto
Renew numberPeriod - Auto-renewal period of an cluster, in the unit of the month.
- charge
Type string - The payment type 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. AnalyticDB for MySQL automatically scales computing resources.
- connection
String string - The endpoint of the cluster.
- create
Time string - The CreateTime of the ADB cluster.
- db
Cluster stringCategory - The db cluster category.
- db
Cluster stringId - The db cluster id.
- db
Cluster stringNetwork Type - The db cluster network type.
- db
Cluster stringType - The db cluster type.
- db
Cluster stringVersion - The db cluster version.
- db
Node stringClass - The db node class.
- db
Node numberCount - The db node count.
- db
Node numberStorage - The db node storage.
- description string
- The description of DBCluster.
- disk
Type string - The type of the disk.
- dts
Job stringId - The ID of the data synchronization task in Data Transmission Service (DTS). This parameter is valid only for analytic instances.
- elastic
Io numberResource - The elastic io resource.
- engine string
- The engine of the database.
- engine
Version string - The engine version of the database.
- executor
Count string - The number of nodes. The node resources are used for data computing in elastic mode.
- 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.
- maintain
Time string - The maintenance window of the cluster.
- mode string
- The lock mode of the cluster.
- network
Type string - The db cluster network type.
- payment
Type string - The payment type of the resource.
- port number
- The port that is used to access the cluster.
- rds
Instance stringId - The ID of the ApsaraDB RDS instance from which data is synchronized to the cluster. This parameter is valid only for analytic instances.
- region
Id string - The region ID of the resource.
- renewal
Status string - The status of renewal.
- resource
Group stringId - The ID of the resource group.
- security
Ips string[] - List of IP addresses allowed to access all databases of an cluster.
- status string
- The status of the resource.
- storage
Resource string - The specifications of storage resources in elastic mode. The resources are used for data read and write operations. The increase of resources can improve the read and write performance of your cluster.
- {[key: string]: string}
- A map of tags assigned to the cluster.
- vpc
Cloud stringInstance Id - The vpc cloud instance id.
- vpc
Id string - The vpc id.
- vswitch
Id string - The vswitch id.
- zone
Id string - The zone ID of the resource.
- auto_
renew_ intperiod - Auto-renewal period of an cluster, in the unit of the month.
- charge_
type str - The payment type 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. AnalyticDB for MySQL automatically scales computing resources.
- connection_
string str - The endpoint of the cluster.
- create_
time str - The CreateTime of the ADB cluster.
- db_
cluster_ strcategory - The db cluster category.
- db_
cluster_ strid - The db cluster id.
- db_
cluster_ strnetwork_ type - The db cluster network type.
- db_
cluster_ strtype - The db cluster type.
- db_
cluster_ strversion - The db cluster version.
- db_
node_ strclass - The db node class.
- db_
node_ intcount - The db node count.
- db_
node_ intstorage - The db node storage.
- description str
- The description of DBCluster.
- disk_
type str - The type of the disk.
- dts_
job_ strid - The ID of the data synchronization task in Data Transmission Service (DTS). This parameter is valid only for analytic instances.
- elastic_
io_ intresource - The elastic io resource.
- engine str
- The engine of the database.
- engine_
version str - The engine version of the database.
- executor_
count str - The number of nodes. The node resources are used for data computing in elastic mode.
- 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.
- maintain_
time str - The maintenance window of the cluster.
- mode str
- The lock mode of the cluster.
- network_
type str - The db cluster network type.
- payment_
type str - The payment type of the resource.
- port int
- The port that is used to access the cluster.
- rds_
instance_ strid - The ID of the ApsaraDB RDS instance from which data is synchronized to the cluster. This parameter is valid only for analytic instances.
- region_
id str - The region ID of the resource.
- renewal_
status str - The status of renewal.
- resource_
group_ strid - The ID of the resource group.
- security_
ips Sequence[str] - List of IP addresses allowed to access all databases of an cluster.
- status str
- The status of the resource.
- storage_
resource str - The specifications of storage resources in elastic mode. The resources are used for data read and write operations. The increase of resources can improve the read and write performance of your cluster.
- Mapping[str, str]
- A map of tags assigned to the cluster.
- vpc_
cloud_ strinstance_ id - The vpc cloud instance id.
- vpc_
id str - The vpc id.
- vswitch_
id str - The vswitch id.
- zone_
id str - The zone ID of the resource.
- auto
Renew NumberPeriod - Auto-renewal period of an cluster, in the unit of the month.
- charge
Type String - The payment type 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. AnalyticDB for MySQL automatically scales computing resources.
- connection
String String - The endpoint of the cluster.
- create
Time String - The CreateTime of the ADB cluster.
- db
Cluster StringCategory - The db cluster category.
- db
Cluster StringId - The db cluster id.
- db
Cluster StringNetwork Type - The db cluster network type.
- db
Cluster StringType - The db cluster type.
- db
Cluster StringVersion - The db cluster version.
- db
Node StringClass - The db node class.
- db
Node NumberCount - The db node count.
- db
Node NumberStorage - The db node storage.
- description String
- The description of DBCluster.
- disk
Type String - The type of the disk.
- dts
Job StringId - The ID of the data synchronization task in Data Transmission Service (DTS). This parameter is valid only for analytic instances.
- elastic
Io NumberResource - The elastic io resource.
- engine String
- The engine of the database.
- engine
Version String - The engine version of the database.
- executor
Count String - The number of nodes. The node resources are used for data computing in elastic mode.
- 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.
- maintain
Time String - The maintenance window of the cluster.
- mode String
- The lock mode of the cluster.
- network
Type String - The db cluster network type.
- payment
Type String - The payment type of the resource.
- port Number
- The port that is used to access the cluster.
- rds
Instance StringId - The ID of the ApsaraDB RDS instance from which data is synchronized to the cluster. This parameter is valid only for analytic instances.
- region
Id String - The region ID of the resource.
- renewal
Status String - The status of renewal.
- resource
Group StringId - The ID of the resource group.
- security
Ips List<String> - List of IP addresses allowed to access all databases of an cluster.
- status String
- The status of the resource.
- storage
Resource String - The specifications of storage resources in elastic mode. The resources are used for data read and write operations. The increase of resources can improve the read and write performance of your cluster.
- Map<String>
- A map of tags assigned to the cluster.
- vpc
Cloud StringInstance Id - The vpc cloud instance id.
- 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.