alicloud.clickhouse.getDbClusters
This data source provides the Click House DBCluster of the current Alibaba Cloud user.
NOTE: Available in v1.134.0+.
Example Usage
Basic Usage
using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var defaultDbCluster = new AliCloud.ClickHouse.DbCluster("defaultDbCluster", new()
{
DbClusterVersion = "20.3.10.75",
Category = "Basic",
DbClusterClass = "S8",
DbClusterNetworkType = "vpc",
DbNodeGroupCount = 1,
PaymentType = "PayAsYouGo",
DbNodeStorage = "500",
StorageType = "cloud_essd",
VswitchId = "your_vswitch_id",
});
var defaultDbClusters = AliCloud.ClickHouse.GetDbClusters.Invoke(new()
{
Ids = new[]
{
defaultDbCluster.Id,
},
});
return new Dictionary<string, object?>
{
["dbCluster"] = defaultDbClusters.Apply(getDbClustersResult => getDbClustersResult.Ids[0]),
};
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/clickhouse"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
defaultDbCluster, err := clickhouse.NewDbCluster(ctx, "defaultDbCluster", &clickhouse.DbClusterArgs{
DbClusterVersion: pulumi.String("20.3.10.75"),
Category: pulumi.String("Basic"),
DbClusterClass: pulumi.String("S8"),
DbClusterNetworkType: pulumi.String("vpc"),
DbNodeGroupCount: pulumi.Int(1),
PaymentType: pulumi.String("PayAsYouGo"),
DbNodeStorage: pulumi.String("500"),
StorageType: pulumi.String("cloud_essd"),
VswitchId: pulumi.String("your_vswitch_id"),
})
if err != nil {
return err
}
defaultDbClusters := clickhouse.GetDbClustersOutput(ctx, clickhouse.GetDbClustersOutputArgs{
Ids: pulumi.StringArray{
defaultDbCluster.ID(),
},
}, nil)
ctx.Export("dbCluster", defaultDbClusters.ApplyT(func(defaultDbClusters clickhouse.GetDbClustersResult) (*string, error) {
return &defaultDbClusters.Ids[0], nil
}).(pulumi.StringPtrOutput))
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.clickhouse.DbCluster;
import com.pulumi.alicloud.clickhouse.DbClusterArgs;
import com.pulumi.alicloud.clickhouse.ClickhouseFunctions;
import com.pulumi.alicloud.clickhouse.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) {
var defaultDbCluster = new DbCluster("defaultDbCluster", DbClusterArgs.builder()
.dbClusterVersion("20.3.10.75")
.category("Basic")
.dbClusterClass("S8")
.dbClusterNetworkType("vpc")
.dbNodeGroupCount("1")
.paymentType("PayAsYouGo")
.dbNodeStorage("500")
.storageType("cloud_essd")
.vswitchId("your_vswitch_id")
.build());
final var defaultDbClusters = ClickhouseFunctions.getDbClusters(GetDbClustersArgs.builder()
.ids(defaultDbCluster.id())
.build());
ctx.export("dbCluster", defaultDbClusters.applyValue(getDbClustersResult -> getDbClustersResult).applyValue(defaultDbClusters -> defaultDbClusters.applyValue(getDbClustersResult -> getDbClustersResult.ids()[0])));
}
}
import pulumi
import pulumi_alicloud as alicloud
default_db_cluster = alicloud.clickhouse.DbCluster("defaultDbCluster",
db_cluster_version="20.3.10.75",
category="Basic",
db_cluster_class="S8",
db_cluster_network_type="vpc",
db_node_group_count=1,
payment_type="PayAsYouGo",
db_node_storage="500",
storage_type="cloud_essd",
vswitch_id="your_vswitch_id")
default_db_clusters = alicloud.clickhouse.get_db_clusters_output(ids=[default_db_cluster.id])
pulumi.export("dbCluster", default_db_clusters.ids[0])
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const defaultDbCluster = new alicloud.clickhouse.DbCluster("defaultDbCluster", {
dbClusterVersion: "20.3.10.75",
category: "Basic",
dbClusterClass: "S8",
dbClusterNetworkType: "vpc",
dbNodeGroupCount: 1,
paymentType: "PayAsYouGo",
dbNodeStorage: "500",
storageType: "cloud_essd",
vswitchId: "your_vswitch_id",
});
const defaultDbClusters = alicloud.clickhouse.getDbClustersOutput({
ids: [defaultDbCluster.id],
});
export const dbCluster = defaultDbClusters.apply(defaultDbClusters => defaultDbClusters.ids?.[0]);
resources:
defaultDbCluster:
type: alicloud:clickhouse:DbCluster
properties:
dbClusterVersion: 20.3.10.75
category: Basic
dbClusterClass: S8
dbClusterNetworkType: vpc
dbNodeGroupCount: '1'
paymentType: PayAsYouGo
dbNodeStorage: '500'
storageType: cloud_essd
vswitchId: your_vswitch_id
variables:
defaultDbClusters:
fn::invoke:
Function: alicloud:clickhouse:getDbClusters
Arguments:
ids:
- ${defaultDbCluster.id}
outputs:
dbCluster: ${defaultDbClusters.ids[0]}
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(db_cluster_description: Optional[str] = None,
enable_details: Optional[bool] = None,
ids: Optional[Sequence[str]] = None,
output_file: Optional[str] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbClustersResult
def get_db_clusters_output(db_cluster_description: 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,
status: Optional[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:clickhouse/getDbClusters:getDbClusters
arguments:
# arguments dictionary
The following arguments are supported:
- Db
Cluster stringDescription The 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 - Status string
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.
- Db
Cluster stringDescription The 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 - Status string
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.
- db
Cluster StringDescription The 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 - status String
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.
- db
Cluster stringDescription The 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 - status string
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.
- db_
cluster_ strdescription The 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 - status str
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.
- db
Cluster StringDescription The 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 - status String
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.
getDbClusters Result
The following output properties are available:
- Clusters
List<Pulumi.
Ali Cloud. Click House. Outputs. Get Db Clusters Cluster> - Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Db
Cluster stringDescription - Enable
Details bool - Output
File string - Status string
- Clusters
[]Get
Db Clusters Cluster - Id string
The provider-assigned unique ID for this managed resource.
- Ids []string
- Db
Cluster stringDescription - Enable
Details bool - Output
File string - Status string
- clusters
List<Get
Db Clusters Cluster> - id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
- db
Cluster StringDescription - enable
Details Boolean - output
File String - status String
- clusters
Get
Db Clusters Cluster[] - id string
The provider-assigned unique ID for this managed resource.
- ids string[]
- db
Cluster stringDescription - enable
Details boolean - output
File string - status string
- clusters
Sequence[Get
Db Clusters Cluster] - id str
The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- db_
cluster_ strdescription - enable_
details bool - output_
file str - status str
- clusters List<Property Map>
- id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
- db
Cluster StringDescription - enable
Details Boolean - output
File String - status String
Supporting Types
GetDbClustersCluster
- Ali
Uid string Alibaba Cloud account Id.
- Bid string
The ID of the business process flow.
- Category string
Instance family values include: Basic: Basic edition; HighAvailability: high availability edition.
- Commodity
Code string The Commodity Code of the DBCluster.
- Connection
String string Connection string.
- Control
Version string The control version of the DBCluster.
- Create
Time string The creation time of the resource.
- Db
Cluster List<Pulumi.Access White Lists Ali Cloud. Click House. Inputs. Get Db Clusters Cluster Db Cluster Access White List> The db cluster access white list.
- Db
Cluster stringDescription The DBCluster description.
- Db
Cluster stringId - Db
Cluster stringNetwork Type The DBCluster network type.
- Db
Cluster stringType The DBCluster type.
- Db
Node stringClass The node class of the DBCluster.
- Db
Node stringCount The node count of the DBCluster.
- Db
Node stringStorage The node storage of the DBCluster.
- Encryption
Key string Key management service KMS key ID.
- Encryption
Type string Currently only supports ECS disk encryption, with a value of CloudDisk, not encrypted when empty.
- Engine string
The Engine of the DBCluster.
- Engine
Version string The engine version of the DBCluster.
- Expire
Time string The expiration time of the DBCluster.
- Id string
The ID of the DBCluster.
- Is
Expired string If the instance has expired.
- Lock
Mode string The lock mode of the DBCluster.
- Lock
Reason string Lock reason of the DBCluster.
- Maintain
Time string Examples of the maintenance window, in the format of hh:mmZ-hh:mm Z.
- Payment
Type string The payment type of the resource. Valid values:
PayAsYouGo
,Subscription
.- Port int
Connection port.
- Public
Connection stringString A public IP address for the connection.
- Public
Port string Public network port.
- Scale
Out List<Pulumi.Statuses Ali Cloud. Click House. Inputs. Get Db Clusters Cluster Scale Out Status> Scale state.
- Status string
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.- Storage
Type string Storage type of DBCluster. Valid values:
cloud_essd
,cloud_efficiency
,cloud_essd_pl2
,cloud_essd_pl3
.- Support
Backup int Support fallback scheme.
- Support
Https boolPort The system supports http port number.
- Support
Mysql boolPort Supports Mysql, and those of the ports.
- Vpc
Cloud stringInstance Id Virtual Private Cloud (VPC cloud instance ID.
- Vpc
Id string The VPC ID of the DBCluster.
- Vswitch
Id string The vswitch id of the DBCluster.
- Zone
Id string The zone ID of the DBCluster.
- Ali
Uid string Alibaba Cloud account Id.
- Bid string
The ID of the business process flow.
- Category string
Instance family values include: Basic: Basic edition; HighAvailability: high availability edition.
- Commodity
Code string The Commodity Code of the DBCluster.
- Connection
String string Connection string.
- Control
Version string The control version of the DBCluster.
- Create
Time string The creation time of the resource.
- Db
Cluster []GetAccess White Lists Db Clusters Cluster Db Cluster Access White List The db cluster access white list.
- Db
Cluster stringDescription The DBCluster description.
- Db
Cluster stringId - Db
Cluster stringNetwork Type The DBCluster network type.
- Db
Cluster stringType The DBCluster type.
- Db
Node stringClass The node class of the DBCluster.
- Db
Node stringCount The node count of the DBCluster.
- Db
Node stringStorage The node storage of the DBCluster.
- Encryption
Key string Key management service KMS key ID.
- Encryption
Type string Currently only supports ECS disk encryption, with a value of CloudDisk, not encrypted when empty.
- Engine string
The Engine of the DBCluster.
- Engine
Version string The engine version of the DBCluster.
- Expire
Time string The expiration time of the DBCluster.
- Id string
The ID of the DBCluster.
- Is
Expired string If the instance has expired.
- Lock
Mode string The lock mode of the DBCluster.
- Lock
Reason string Lock reason of the DBCluster.
- Maintain
Time string Examples of the maintenance window, in the format of hh:mmZ-hh:mm Z.
- Payment
Type string The payment type of the resource. Valid values:
PayAsYouGo
,Subscription
.- Port int
Connection port.
- Public
Connection stringString A public IP address for the connection.
- Public
Port string Public network port.
- Scale
Out []GetStatuses Db Clusters Cluster Scale Out Status Scale state.
- Status string
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.- Storage
Type string Storage type of DBCluster. Valid values:
cloud_essd
,cloud_efficiency
,cloud_essd_pl2
,cloud_essd_pl3
.- Support
Backup int Support fallback scheme.
- Support
Https boolPort The system supports http port number.
- Support
Mysql boolPort Supports Mysql, and those of the ports.
- Vpc
Cloud stringInstance Id Virtual Private Cloud (VPC cloud instance ID.
- Vpc
Id string The VPC ID of the DBCluster.
- Vswitch
Id string The vswitch id of the DBCluster.
- Zone
Id string The zone ID of the DBCluster.
- ali
Uid String Alibaba Cloud account Id.
- bid String
The ID of the business process flow.
- category String
Instance family values include: Basic: Basic edition; HighAvailability: high availability edition.
- commodity
Code String The Commodity Code of the DBCluster.
- connection
String String Connection string.
- control
Version String The control version of the DBCluster.
- create
Time String The creation time of the resource.
- db
Cluster List<GetAccess White Lists Db Clusters Cluster Db Cluster Access White List> The db cluster access white list.
- db
Cluster StringDescription The DBCluster description.
- db
Cluster StringId - db
Cluster StringNetwork Type The DBCluster network type.
- db
Cluster StringType The DBCluster type.
- db
Node StringClass The node class of the DBCluster.
- db
Node StringCount The node count of the DBCluster.
- db
Node StringStorage The node storage of the DBCluster.
- encryption
Key String Key management service KMS key ID.
- encryption
Type String Currently only supports ECS disk encryption, with a value of CloudDisk, not encrypted when empty.
- engine String
The Engine of the DBCluster.
- engine
Version String The engine version of the DBCluster.
- expire
Time String The expiration time of the DBCluster.
- id String
The ID of the DBCluster.
- is
Expired String If the instance has expired.
- lock
Mode String The lock mode of the DBCluster.
- lock
Reason String Lock reason of the DBCluster.
- maintain
Time String Examples of the maintenance window, in the format of hh:mmZ-hh:mm Z.
- payment
Type String The payment type of the resource. Valid values:
PayAsYouGo
,Subscription
.- port Integer
Connection port.
- public
Connection StringString A public IP address for the connection.
- public
Port String Public network port.
- scale
Out List<GetStatuses Db Clusters Cluster Scale Out Status> Scale state.
- status String
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.- storage
Type String Storage type of DBCluster. Valid values:
cloud_essd
,cloud_efficiency
,cloud_essd_pl2
,cloud_essd_pl3
.- support
Backup Integer Support fallback scheme.
- support
Https BooleanPort The system supports http port number.
- support
Mysql BooleanPort Supports Mysql, and those of the ports.
- vpc
Cloud StringInstance Id Virtual Private Cloud (VPC cloud instance ID.
- vpc
Id String The VPC ID of the DBCluster.
- vswitch
Id String The vswitch id of the DBCluster.
- zone
Id String The zone ID of the DBCluster.
- ali
Uid string Alibaba Cloud account Id.
- bid string
The ID of the business process flow.
- category string
Instance family values include: Basic: Basic edition; HighAvailability: high availability edition.
- commodity
Code string The Commodity Code of the DBCluster.
- connection
String string Connection string.
- control
Version string The control version of the DBCluster.
- create
Time string The creation time of the resource.
- db
Cluster GetAccess White Lists Db Clusters Cluster Db Cluster Access White List[] The db cluster access white list.
- db
Cluster stringDescription The DBCluster description.
- db
Cluster stringId - db
Cluster stringNetwork Type The DBCluster network type.
- db
Cluster stringType The DBCluster type.
- db
Node stringClass The node class of the DBCluster.
- db
Node stringCount The node count of the DBCluster.
- db
Node stringStorage The node storage of the DBCluster.
- encryption
Key string Key management service KMS key ID.
- encryption
Type string Currently only supports ECS disk encryption, with a value of CloudDisk, not encrypted when empty.
- engine string
The Engine of the DBCluster.
- engine
Version string The engine version of the DBCluster.
- expire
Time string The expiration time of the DBCluster.
- id string
The ID of the DBCluster.
- is
Expired string If the instance has expired.
- lock
Mode string The lock mode of the DBCluster.
- lock
Reason string Lock reason of the DBCluster.
- maintain
Time string Examples of the maintenance window, in the format of hh:mmZ-hh:mm Z.
- payment
Type string The payment type of the resource. Valid values:
PayAsYouGo
,Subscription
.- port number
Connection port.
- public
Connection stringString A public IP address for the connection.
- public
Port string Public network port.
- scale
Out GetStatuses Db Clusters Cluster Scale Out Status[] Scale state.
- status string
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.- storage
Type string Storage type of DBCluster. Valid values:
cloud_essd
,cloud_efficiency
,cloud_essd_pl2
,cloud_essd_pl3
.- support
Backup number Support fallback scheme.
- support
Https booleanPort The system supports http port number.
- support
Mysql booleanPort Supports Mysql, and those of the ports.
- vpc
Cloud stringInstance Id Virtual Private Cloud (VPC cloud instance ID.
- vpc
Id string The VPC ID of the DBCluster.
- vswitch
Id string The vswitch id of the DBCluster.
- zone
Id string The zone ID of the DBCluster.
- ali_
uid str Alibaba Cloud account Id.
- bid str
The ID of the business process flow.
- category str
Instance family values include: Basic: Basic edition; HighAvailability: high availability edition.
- commodity_
code str The Commodity Code of the DBCluster.
- connection_
string str Connection string.
- control_
version str The control version of the DBCluster.
- create_
time str The creation time of the resource.
- db_
cluster_ Sequence[Getaccess_ white_ lists Db Clusters Cluster Db Cluster Access White List] The db cluster access white list.
- db_
cluster_ strdescription The DBCluster description.
- db_
cluster_ strid - db_
cluster_ strnetwork_ type The DBCluster network type.
- db_
cluster_ strtype The DBCluster type.
- db_
node_ strclass The node class of the DBCluster.
- db_
node_ strcount The node count of the DBCluster.
- db_
node_ strstorage The node storage of the DBCluster.
- encryption_
key str Key management service KMS key ID.
- encryption_
type str Currently only supports ECS disk encryption, with a value of CloudDisk, not encrypted when empty.
- engine str
The Engine of the DBCluster.
- engine_
version str The engine version of the DBCluster.
- expire_
time str The expiration time of the DBCluster.
- id str
The ID of the DBCluster.
- is_
expired str If the instance has expired.
- lock_
mode str The lock mode of the DBCluster.
- lock_
reason str Lock reason of the DBCluster.
- maintain_
time str Examples of the maintenance window, in the format of hh:mmZ-hh:mm Z.
- payment_
type str The payment type of the resource. Valid values:
PayAsYouGo
,Subscription
.- port int
Connection port.
- public_
connection_ strstring A public IP address for the connection.
- public_
port str Public network port.
- scale_
out_ Sequence[Getstatuses Db Clusters Cluster Scale Out Status] Scale state.
- status str
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.- storage_
type str Storage type of DBCluster. Valid values:
cloud_essd
,cloud_efficiency
,cloud_essd_pl2
,cloud_essd_pl3
.- support_
backup int Support fallback scheme.
- support_
https_ boolport The system supports http port number.
- support_
mysql_ boolport Supports Mysql, and those of the ports.
- vpc_
cloud_ strinstance_ id Virtual Private Cloud (VPC cloud instance ID.
- vpc_
id str The VPC ID of the DBCluster.
- vswitch_
id str The vswitch id of the DBCluster.
- zone_
id str The zone ID of the DBCluster.
- ali
Uid String Alibaba Cloud account Id.
- bid String
The ID of the business process flow.
- category String
Instance family values include: Basic: Basic edition; HighAvailability: high availability edition.
- commodity
Code String The Commodity Code of the DBCluster.
- connection
String String Connection string.
- control
Version String The control version of the DBCluster.
- create
Time String The creation time of the resource.
- db
Cluster List<Property Map>Access White Lists The db cluster access white list.
- db
Cluster StringDescription The DBCluster description.
- db
Cluster StringId - db
Cluster StringNetwork Type The DBCluster network type.
- db
Cluster StringType The DBCluster type.
- db
Node StringClass The node class of the DBCluster.
- db
Node StringCount The node count of the DBCluster.
- db
Node StringStorage The node storage of the DBCluster.
- encryption
Key String Key management service KMS key ID.
- encryption
Type String Currently only supports ECS disk encryption, with a value of CloudDisk, not encrypted when empty.
- engine String
The Engine of the DBCluster.
- engine
Version String The engine version of the DBCluster.
- expire
Time String The expiration time of the DBCluster.
- id String
The ID of the DBCluster.
- is
Expired String If the instance has expired.
- lock
Mode String The lock mode of the DBCluster.
- lock
Reason String Lock reason of the DBCluster.
- maintain
Time String Examples of the maintenance window, in the format of hh:mmZ-hh:mm Z.
- payment
Type String The payment type of the resource. Valid values:
PayAsYouGo
,Subscription
.- port Number
Connection port.
- public
Connection StringString A public IP address for the connection.
- public
Port String Public network port.
- scale
Out List<Property Map>Statuses Scale state.
- status String
The status of the DBCluster. Valid values:
Running
,Creating
,Deleting
,Restarting
,Preparing
.- storage
Type String Storage type of DBCluster. Valid values:
cloud_essd
,cloud_efficiency
,cloud_essd_pl2
,cloud_essd_pl3
.- support
Backup Number Support fallback scheme.
- support
Https BooleanPort The system supports http port number.
- support
Mysql BooleanPort Supports Mysql, and those of the ports.
- vpc
Cloud StringInstance Id Virtual Private Cloud (VPC cloud instance ID.
- vpc
Id String The VPC ID of the DBCluster.
- vswitch
Id String The vswitch id of the DBCluster.
- zone
Id String The zone ID of the DBCluster.
GetDbClustersClusterDbClusterAccessWhiteList
- Db
Cluster stringIp Array Attribute Field
db_cluster_ip_array_attribute
has been removed from provider.- Db
Cluster stringIp Array Name Whitelist group name.
- Security
Ip stringList The IP address list under the whitelist group.
- Db
Cluster stringIp Array Attribute Field
db_cluster_ip_array_attribute
has been removed from provider.- Db
Cluster stringIp Array Name Whitelist group name.
- Security
Ip stringList The IP address list under the whitelist group.
- db
Cluster StringIp Array Attribute Field
db_cluster_ip_array_attribute
has been removed from provider.- db
Cluster StringIp Array Name Whitelist group name.
- security
Ip StringList The IP address list under the whitelist group.
- db
Cluster stringIp Array Attribute Field
db_cluster_ip_array_attribute
has been removed from provider.- db
Cluster stringIp Array Name Whitelist group name.
- security
Ip stringList The IP address list under the whitelist group.
- db_
cluster_ strip_ array_ attribute Field
db_cluster_ip_array_attribute
has been removed from provider.- db_
cluster_ strip_ array_ name Whitelist group name.
- security_
ip_ strlist The IP address list under the whitelist group.
- db
Cluster StringIp Array Attribute Field
db_cluster_ip_array_attribute
has been removed from provider.- db
Cluster StringIp Array Name Whitelist group name.
- security
Ip StringList The IP address list under the whitelist group.
GetDbClustersClusterScaleOutStatus
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.