alicloud.adb.getClusters
Explore with Pulumi AI
The alicloud.adb.getClusters
data source provides a collection of ADB clusters available in Alibaba Cloud account.
Filters support regular expression for the cluster description, searches by tags, and other filters which are listed below.
DEPRECATED: This resource has been deprecated from version
1.121.0
. Please use new datasource alicloud_adb_db_clusters.
NOTE: Available in v1.71.0+.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const adbClustersDs = alicloud.adb.getClusters({
descriptionRegex: "am-\\w+",
status: "Running",
});
export const firstAdbClusterId = adbClustersDs.then(adbClustersDs => adbClustersDs.clusters?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
adb_clusters_ds = alicloud.adb.get_clusters(description_regex="am-\\w+",
status="Running")
pulumi.export("firstAdbClusterId", adb_clusters_ds.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 {
adbClustersDs, err := adb.GetClusters(ctx, &adb.GetClustersArgs{
DescriptionRegex: pulumi.StringRef("am-\\w+"),
Status: pulumi.StringRef("Running"),
}, nil)
if err != nil {
return err
}
ctx.Export("firstAdbClusterId", adbClustersDs.Clusters[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var adbClustersDs = AliCloud.Adb.GetClusters.Invoke(new()
{
DescriptionRegex = "am-\\w+",
Status = "Running",
});
return new Dictionary<string, object?>
{
["firstAdbClusterId"] = adbClustersDs.Apply(getClustersResult => getClustersResult.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.GetClustersArgs;
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 adbClustersDs = AdbFunctions.getClusters(GetClustersArgs.builder()
.descriptionRegex("am-\\w+")
.status("Running")
.build());
ctx.export("firstAdbClusterId", adbClustersDs.applyValue(getClustersResult -> getClustersResult.clusters()[0].id()));
}
}
variables:
adbClustersDs:
fn::invoke:
Function: alicloud:adb:getClusters
Arguments:
descriptionRegex: am-\w+
status: Running
outputs:
firstAdbClusterId: ${adbClustersDs.clusters[0].id}
Using getClusters
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 getClusters(args: GetClustersArgs, opts?: InvokeOptions): Promise<GetClustersResult>
function getClustersOutput(args: GetClustersOutputArgs, opts?: InvokeOptions): Output<GetClustersResult>
def get_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) -> GetClustersResult
def get_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[GetClustersResult]
func GetClusters(ctx *Context, args *GetClustersArgs, opts ...InvokeOption) (*GetClustersResult, error)
func GetClustersOutput(ctx *Context, args *GetClustersOutputArgs, opts ...InvokeOption) GetClustersResultOutput
> Note: This function is named GetClusters
in the Go SDK.
public static class GetClusters
{
public static Task<GetClustersResult> InvokeAsync(GetClustersArgs args, InvokeOptions? opts = null)
public static Output<GetClustersResult> Invoke(GetClustersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetClustersResult> getClusters(GetClustersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:adb/getClusters:getClusters
arguments:
# arguments dictionary
The following arguments are supported:
- Description string
- The description of the ADB cluster.
- Description
Regex string - A regex string to filter results by cluster description.
- Enable
Details bool - Ids List<string>
- A list of ADB cluster 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 - Status string
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- Description string
- The description of the ADB cluster.
- Description
Regex string - A regex string to filter results by cluster description.
- Enable
Details bool - Ids []string
- A list of ADB cluster 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 - Status string
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - map[string]string
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- description String
- The description of the ADB cluster.
- description
Regex String - A regex string to filter results by cluster description.
- enable
Details Boolean - ids List<String>
- A list of ADB cluster 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 - status String
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - Map<String,String>
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- description string
- The description of the ADB cluster.
- description
Regex string - A regex string to filter results by cluster description.
- enable
Details boolean - ids string[]
- A list of ADB cluster 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 - status string
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- description str
- The description of the ADB cluster.
- description_
regex str - A regex string to filter results by cluster description.
- enable_
details bool - ids Sequence[str]
- A list of ADB cluster 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 - status str
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- description String
- The description of the ADB cluster.
- description
Regex String - A regex string to filter results by cluster description.
- enable
Details Boolean - ids List<String>
- A list of ADB cluster 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 - status String
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - Map<String>
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
getClusters Result
The following output properties are available:
- Clusters
List<Pulumi.
Ali Cloud. Adb. Outputs. Get Clusters Cluster> - A list of ADB clusters. Each element contains the following attributes:
- Descriptions List<string>
- A list of ADB cluster descriptions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- A list of ADB cluster IDs.
- Total
Count int - Description string
- The description of the ADB cluster.
- Description
Regex string - Enable
Details bool - Output
File string - Page
Number int - Page
Size int - Resource
Group stringId - Status string
- Status of the cluster.
- Dictionary<string, string>
- Clusters
[]Get
Clusters Cluster - A list of ADB clusters. Each element contains the following attributes:
- Descriptions []string
- A list of ADB cluster descriptions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- A list of ADB cluster IDs.
- Total
Count int - Description string
- The description of the ADB cluster.
- Description
Regex string - Enable
Details bool - Output
File string - Page
Number int - Page
Size int - Resource
Group stringId - Status string
- Status of the cluster.
- map[string]string
- clusters
List<Get
Clusters Cluster> - A list of ADB clusters. Each element contains the following attributes:
- descriptions List<String>
- A list of ADB cluster descriptions.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of ADB cluster IDs.
- total
Count Integer - description String
- The description of the ADB cluster.
- description
Regex String - enable
Details Boolean - output
File String - page
Number Integer - page
Size Integer - resource
Group StringId - status String
- Status of the cluster.
- Map<String,String>
- clusters
Get
Clusters Cluster[] - A list of ADB clusters. Each element contains the following attributes:
- descriptions string[]
- A list of ADB cluster descriptions.
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- A list of ADB cluster IDs.
- total
Count number - description string
- The description of the ADB cluster.
- description
Regex string - enable
Details boolean - output
File string - page
Number number - page
Size number - resource
Group stringId - status string
- Status of the cluster.
- {[key: string]: string}
- clusters
Sequence[Get
Clusters Cluster] - A list of ADB clusters. Each element contains the following attributes:
- descriptions Sequence[str]
- A list of ADB cluster descriptions.
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- A list of ADB cluster IDs.
- total_
count int - description str
- The description of the ADB cluster.
- description_
regex str - enable_
details bool - output_
file str - page_
number int - page_
size int - resource_
group_ strid - status str
- Status of the cluster.
- Mapping[str, str]
- clusters List<Property Map>
- A list of ADB clusters. Each element contains the following attributes:
- descriptions List<String>
- A list of ADB cluster descriptions.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of ADB cluster IDs.
- total
Count Number - description String
- The description of the ADB cluster.
- description
Regex String - enable
Details Boolean - output
File String - page
Number Number - page
Size Number - resource
Group StringId - status String
- Status of the cluster.
- Map<String>
Supporting Types
GetClustersCluster
- Auto
Renew intPeriod - Charge
Type string - Billing method. Value options:
PostPaid
for Pay-As-You-Go andPrePaid
for subscription. - Commodity
Code string - Compute
Resource string - Connection
String string - Create
Time string - The CreateTime of the ADB cluster.
- Db
Cluster stringCategory - Db
Cluster stringId - Db
Cluster stringNetwork Type - Db
Cluster stringType - Db
Cluster stringVersion - Db
Node stringClass - The DBNodeClass of the ADB cluster.
- Db
Node intCount - The DBNodeCount of the ADB cluster.
- Db
Node intStorage - The DBNodeStorage of the ADB cluster.
- Description string
- The description of the ADB cluster.
- Disk
Type string - Dts
Job stringId - Elastic
Io intResource - Engine string
- Engine
Version string - Executor
Count string - Expire
Time string - Expiration time. Pay-As-You-Go clusters never expire.
- Expired string
- The expired of the ADB cluster.
- Id string
- The ID of the ADB cluster.
- Lock
Mode string - The LockMode of the ADB cluster.
- Lock
Reason string - Maintain
Time string - Mode string
- Network
Type string - The DBClusterNetworkType of the ADB cluster.
- Payment
Type string - Port int
- Rds
Instance stringId - Region
Id string - Region ID the cluster belongs to.
- Renewal
Status string - Resource
Group stringId - Security
Ips List<string> - Status string
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - Storage
Resource string - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- Vpc
Cloud stringInstance Id - Vpc
Id string - ID of the VPC the cluster belongs to.
- Vswitch
Id string - Zone
Id string - The ZoneId of the ADB cluster.
- Auto
Renew intPeriod - Charge
Type string - Billing method. Value options:
PostPaid
for Pay-As-You-Go andPrePaid
for subscription. - Commodity
Code string - Compute
Resource string - Connection
String string - Create
Time string - The CreateTime of the ADB cluster.
- Db
Cluster stringCategory - Db
Cluster stringId - Db
Cluster stringNetwork Type - Db
Cluster stringType - Db
Cluster stringVersion - Db
Node stringClass - The DBNodeClass of the ADB cluster.
- Db
Node intCount - The DBNodeCount of the ADB cluster.
- Db
Node intStorage - The DBNodeStorage of the ADB cluster.
- Description string
- The description of the ADB cluster.
- Disk
Type string - Dts
Job stringId - Elastic
Io intResource - Engine string
- Engine
Version string - Executor
Count string - Expire
Time string - Expiration time. Pay-As-You-Go clusters never expire.
- Expired string
- The expired of the ADB cluster.
- Id string
- The ID of the ADB cluster.
- Lock
Mode string - The LockMode of the ADB cluster.
- Lock
Reason string - Maintain
Time string - Mode string
- Network
Type string - The DBClusterNetworkType of the ADB cluster.
- Payment
Type string - Port int
- Rds
Instance stringId - Region
Id string - Region ID the cluster belongs to.
- Renewal
Status string - Resource
Group stringId - Security
Ips []string - Status string
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - Storage
Resource string - map[string]string
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- Vpc
Cloud stringInstance Id - Vpc
Id string - ID of the VPC the cluster belongs to.
- Vswitch
Id string - Zone
Id string - The ZoneId of the ADB cluster.
- auto
Renew IntegerPeriod - charge
Type String - Billing method. Value options:
PostPaid
for Pay-As-You-Go andPrePaid
for subscription. - commodity
Code String - compute
Resource String - connection
String String - create
Time String - The CreateTime of the ADB cluster.
- db
Cluster StringCategory - db
Cluster StringId - db
Cluster StringNetwork Type - db
Cluster StringType - db
Cluster StringVersion - db
Node StringClass - The DBNodeClass of the ADB cluster.
- db
Node IntegerCount - The DBNodeCount of the ADB cluster.
- db
Node IntegerStorage - The DBNodeStorage of the ADB cluster.
- description String
- The description of the ADB cluster.
- disk
Type String - dts
Job StringId - elastic
Io IntegerResource - engine String
- engine
Version String - executor
Count String - expire
Time String - Expiration time. Pay-As-You-Go clusters never expire.
- expired String
- The expired of the ADB cluster.
- id String
- The ID of the ADB cluster.
- lock
Mode String - The LockMode of the ADB cluster.
- lock
Reason String - maintain
Time String - mode String
- network
Type String - The DBClusterNetworkType of the ADB cluster.
- payment
Type String - port Integer
- rds
Instance StringId - region
Id String - Region ID the cluster belongs to.
- renewal
Status String - resource
Group StringId - security
Ips List<String> - status String
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - storage
Resource String - Map<String,String>
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- vpc
Cloud StringInstance Id - vpc
Id String - ID of the VPC the cluster belongs to.
- vswitch
Id String - zone
Id String - The ZoneId of the ADB cluster.
- auto
Renew numberPeriod - charge
Type string - Billing method. Value options:
PostPaid
for Pay-As-You-Go andPrePaid
for subscription. - commodity
Code string - compute
Resource string - connection
String string - create
Time string - The CreateTime of the ADB cluster.
- db
Cluster stringCategory - db
Cluster stringId - db
Cluster stringNetwork Type - db
Cluster stringType - db
Cluster stringVersion - db
Node stringClass - The DBNodeClass of the ADB cluster.
- db
Node numberCount - The DBNodeCount of the ADB cluster.
- db
Node numberStorage - The DBNodeStorage of the ADB cluster.
- description string
- The description of the ADB cluster.
- disk
Type string - dts
Job stringId - elastic
Io numberResource - engine string
- engine
Version string - executor
Count string - expire
Time string - Expiration time. Pay-As-You-Go clusters never expire.
- expired string
- The expired of the ADB cluster.
- id string
- The ID of the ADB cluster.
- lock
Mode string - The LockMode of the ADB cluster.
- lock
Reason string - maintain
Time string - mode string
- network
Type string - The DBClusterNetworkType of the ADB cluster.
- payment
Type string - port number
- rds
Instance stringId - region
Id string - Region ID the cluster belongs to.
- renewal
Status string - resource
Group stringId - security
Ips string[] - status string
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - storage
Resource string - {[key: string]: string}
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- vpc
Cloud stringInstance Id - vpc
Id string - ID of the VPC the cluster belongs to.
- vswitch
Id string - zone
Id string - The ZoneId of the ADB cluster.
- auto_
renew_ intperiod - charge_
type str - Billing method. Value options:
PostPaid
for Pay-As-You-Go andPrePaid
for subscription. - commodity_
code str - compute_
resource str - connection_
string str - create_
time str - The CreateTime of the ADB cluster.
- db_
cluster_ strcategory - db_
cluster_ strid - db_
cluster_ strnetwork_ type - db_
cluster_ strtype - db_
cluster_ strversion - db_
node_ strclass - The DBNodeClass of the ADB cluster.
- db_
node_ intcount - The DBNodeCount of the ADB cluster.
- db_
node_ intstorage - The DBNodeStorage of the ADB cluster.
- description str
- The description of the ADB cluster.
- disk_
type str - dts_
job_ strid - elastic_
io_ intresource - engine str
- engine_
version str - executor_
count str - expire_
time str - Expiration time. Pay-As-You-Go clusters never expire.
- expired str
- The expired of the ADB cluster.
- id str
- The ID of the ADB cluster.
- lock_
mode str - The LockMode of the ADB cluster.
- lock_
reason str - maintain_
time str - mode str
- network_
type str - The DBClusterNetworkType of the ADB cluster.
- payment_
type str - port int
- rds_
instance_ strid - region_
id str - Region ID the cluster belongs to.
- renewal_
status str - resource_
group_ strid - security_
ips Sequence[str] - status str
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - storage_
resource str - Mapping[str, str]
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- vpc_
cloud_ strinstance_ id - vpc_
id str - ID of the VPC the cluster belongs to.
- vswitch_
id str - zone_
id str - The ZoneId of the ADB cluster.
- auto
Renew NumberPeriod - charge
Type String - Billing method. Value options:
PostPaid
for Pay-As-You-Go andPrePaid
for subscription. - commodity
Code String - compute
Resource String - connection
String String - create
Time String - The CreateTime of the ADB cluster.
- db
Cluster StringCategory - db
Cluster StringId - db
Cluster StringNetwork Type - db
Cluster StringType - db
Cluster StringVersion - db
Node StringClass - The DBNodeClass of the ADB cluster.
- db
Node NumberCount - The DBNodeCount of the ADB cluster.
- db
Node NumberStorage - The DBNodeStorage of the ADB cluster.
- description String
- The description of the ADB cluster.
- disk
Type String - dts
Job StringId - elastic
Io NumberResource - engine String
- engine
Version String - executor
Count String - expire
Time String - Expiration time. Pay-As-You-Go clusters never expire.
- expired String
- The expired of the ADB cluster.
- id String
- The ID of the ADB cluster.
- lock
Mode String - The LockMode of the ADB cluster.
- lock
Reason String - maintain
Time String - mode String
- network
Type String - The DBClusterNetworkType of the ADB cluster.
- payment
Type String - port Number
- rds
Instance StringId - region
Id String - Region ID the cluster belongs to.
- renewal
Status String - resource
Group StringId - security
Ips List<String> - status String
- The status of the cluster. Valid values:
Preparing
,Creating
,Restoring
,Running
,Deleting
,ClassChanging
,NetAddressCreating
,NetAddressDeleting
. For more information, see Cluster status. - storage
Resource String - Map<String>
- A mapping of tags to assign to the resource.
- Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
- Value: It can be up to 128 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It can be a null string.
- vpc
Cloud StringInstance Id - vpc
Id String - ID of the VPC the cluster belongs to.
- vswitch
Id String - zone
Id String - The ZoneId of the ADB cluster.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.