Alibaba Cloud v3.57.1 published on Wednesday, Jun 26, 2024 by Pulumi
alicloud.cddc.getDedicatedHostGroups
Explore with Pulumi AI
This data source provides the Cddc Dedicated Host Groups of the current Alibaba Cloud user.
NOTE: Available in v1.132.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const default = alicloud.cddc.getDedicatedHostGroups({
engine: "MongoDB",
});
export const cddcDedicatedHostGroupId = _default.then(_default => _default.id);
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.cddc.get_dedicated_host_groups(engine="MongoDB")
pulumi.export("cddcDedicatedHostGroupId", default.id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cddc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := cddc.GetDedicatedHostGroups(ctx, &cddc.GetDedicatedHostGroupsArgs{
Engine: pulumi.StringRef("MongoDB"),
}, nil)
if err != nil {
return err
}
ctx.Export("cddcDedicatedHostGroupId", _default.Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.Cddc.GetDedicatedHostGroups.Invoke(new()
{
Engine = "MongoDB",
});
return new Dictionary<string, object?>
{
["cddcDedicatedHostGroupId"] = @default.Apply(@default => @default.Apply(getDedicatedHostGroupsResult => getDedicatedHostGroupsResult.Id)),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cddc.CddcFunctions;
import com.pulumi.alicloud.cddc.inputs.GetDedicatedHostGroupsArgs;
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 = CddcFunctions.getDedicatedHostGroups(GetDedicatedHostGroupsArgs.builder()
.engine("MongoDB")
.build());
ctx.export("cddcDedicatedHostGroupId", default_.id());
}
}
variables:
default:
fn::invoke:
Function: alicloud:cddc:getDedicatedHostGroups
Arguments:
engine: MongoDB
outputs:
cddcDedicatedHostGroupId: ${default.id}
Using getDedicatedHostGroups
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 getDedicatedHostGroups(args: GetDedicatedHostGroupsArgs, opts?: InvokeOptions): Promise<GetDedicatedHostGroupsResult>
function getDedicatedHostGroupsOutput(args: GetDedicatedHostGroupsOutputArgs, opts?: InvokeOptions): Output<GetDedicatedHostGroupsResult>
def get_dedicated_host_groups(engine: Optional[str] = None,
ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDedicatedHostGroupsResult
def get_dedicated_host_groups_output(engine: Optional[pulumi.Input[str]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDedicatedHostGroupsResult]
func GetDedicatedHostGroups(ctx *Context, args *GetDedicatedHostGroupsArgs, opts ...InvokeOption) (*GetDedicatedHostGroupsResult, error)
func GetDedicatedHostGroupsOutput(ctx *Context, args *GetDedicatedHostGroupsOutputArgs, opts ...InvokeOption) GetDedicatedHostGroupsResultOutput
> Note: This function is named GetDedicatedHostGroups
in the Go SDK.
public static class GetDedicatedHostGroups
{
public static Task<GetDedicatedHostGroupsResult> InvokeAsync(GetDedicatedHostGroupsArgs args, InvokeOptions? opts = null)
public static Output<GetDedicatedHostGroupsResult> Invoke(GetDedicatedHostGroupsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDedicatedHostGroupsResult> getDedicatedHostGroups(GetDedicatedHostGroupsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:cddc/getDedicatedHostGroups:getDedicatedHostGroups
arguments:
# arguments dictionary
The following arguments are supported:
- Engine string
- Database Engine Type. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- Ids List<string>
- A list of Dedicated Host Group IDs.
- Name
Regex string - A regex string to filter results by Dedicated Host Group name.
- Output
File string - File name where to save data source results (after running
pulumi preview
).
- Engine string
- Database Engine Type. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- Ids []string
- A list of Dedicated Host Group IDs.
- Name
Regex string - A regex string to filter results by Dedicated Host Group name.
- Output
File string - File name where to save data source results (after running
pulumi preview
).
- engine String
- Database Engine Type. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- ids List<String>
- A list of Dedicated Host Group IDs.
- name
Regex String - A regex string to filter results by Dedicated Host Group name.
- output
File String - File name where to save data source results (after running
pulumi preview
).
- engine string
- Database Engine Type. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- ids string[]
- A list of Dedicated Host Group IDs.
- name
Regex string - A regex string to filter results by Dedicated Host Group name.
- output
File string - File name where to save data source results (after running
pulumi preview
).
- engine str
- Database Engine Type. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- ids Sequence[str]
- A list of Dedicated Host Group IDs.
- name_
regex str - A regex string to filter results by Dedicated Host Group name.
- output_
file str - File name where to save data source results (after running
pulumi preview
).
- engine String
- Database Engine Type. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- ids List<String>
- A list of Dedicated Host Group IDs.
- name
Regex String - A regex string to filter results by Dedicated Host Group name.
- output
File String - File name where to save data source results (after running
pulumi preview
).
getDedicatedHostGroups Result
The following output properties are available:
- Groups
List<Pulumi.
Ali Cloud. Cddc. Outputs. Get Dedicated Host Groups Group> - Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
- Engine string
- Name
Regex string - Output
File string
- Groups
[]Get
Dedicated Host Groups Group - Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- Engine string
- Name
Regex string - Output
File string
- groups
List<Get
Dedicated Host Groups Group> - id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- engine String
- name
Regex String - output
File String
- groups
Get
Dedicated Host Groups Group[] - id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- engine string
- name
Regex string - output
File string
- groups
Sequence[Get
Dedicated Host Groups Group] - id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- engine str
- name_
regex str - output_
file str
- groups List<Property Map>
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- engine String
- name
Regex String - output
File String
Supporting Types
GetDedicatedHostGroupsGroup
- Allocation
Policy string - The policy that is used to allocate resources in the dedicated cluster. Valid values:
Evenly
,Intensively
- Bastion
Instance stringId - The Bastion Instance id of the Dedicated Host Group.
- Cpu
Allocate doubleRation - The CPU overcommitment ratio of the dedicated cluster. If you set this parameter to 200, the CPU resources that can be allocated are twice as many as the CPU resources that are provided. This maximizes the CPU utilization. Valid values: 100 to 300. Default value: 200.
- Cpu
Allocated doubleAmount - The CPU Allocated Amount of the Dedicated Host Group.
- Cpu
Allocation intRatio - The CPU overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- Create
Time string - The Created Time of the Dedicated Host Group.
- Dedicated
Host List<Pulumi.Count Group By Host Types Ali Cloud. Cddc. Inputs. Get Dedicated Host Groups Group Dedicated Host Count Group By Host Type> - The Dedicated Host Count Group by Host Type of the Dedicated Host Group.
- Dedicated
Host stringGroup Desc - The name of the dedicated cluster. The name must be 1 to 64 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- Dedicated
Host stringGroup Id - Dedicated Host Group ID.
- Deploy
Type string - The Deployment Type of the Dedicated Host Group.
- Disk
Allocate doubleRation - The storage overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- Disk
Allocated doubleAmount - The Disk Allocated Amount of the Dedicated Host Group.
- Disk
Allocation intRatio - The Disk Allocation Ratio of the Dedicated Host Group.
- Disk
Used doubleAmount - The DiskUsedAmount of the Dedicated Host Group.
- Disk
Utility double - The DiskUtility of the Dedicated Host Group.
- Engine string
- Database Engine Type.The database engine of the dedicated cluster. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- Host
Number int - The Total Host Number of the Dedicated Host Group.
- Host
Replace stringPolicy - The policy based on which the system handles host failures. Valid values:
Auto
,Manual
- Id string
- The ID of the Dedicated Host Group.
- Instance
Number int - The Total Instance Number of the Dedicated Host Group.
- Mem
Allocate doubleRation - The maximum memory usage of each host in the dedicated cluster.Valid values: 0 to 90. Default value: 90.
- Mem
Allocated doubleAmount - The MemAllocatedAmount of the Dedicated Host Group.
- Mem
Allocation intRatio - The Memory Allocation Ratio of the Dedicated Host Group.
- Mem
Used doubleAmount - The MemUsedAmount of the Dedicated Host Group.
- Mem
Utility double - The Mem Utility of the Dedicated Host Group.
- Text string
- The Text of the Dedicated Host Group.
- Vpc
Id string - The virtual private cloud (VPC) ID of the dedicated cluster.
- Zone
Id List<Pulumi.Lists Ali Cloud. Cddc. Inputs. Get Dedicated Host Groups Group Zone Id List> - The ZoneIDList of the Dedicated Host Group.
- Allocation
Policy string - The policy that is used to allocate resources in the dedicated cluster. Valid values:
Evenly
,Intensively
- Bastion
Instance stringId - The Bastion Instance id of the Dedicated Host Group.
- Cpu
Allocate float64Ration - The CPU overcommitment ratio of the dedicated cluster. If you set this parameter to 200, the CPU resources that can be allocated are twice as many as the CPU resources that are provided. This maximizes the CPU utilization. Valid values: 100 to 300. Default value: 200.
- Cpu
Allocated float64Amount - The CPU Allocated Amount of the Dedicated Host Group.
- Cpu
Allocation intRatio - The CPU overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- Create
Time string - The Created Time of the Dedicated Host Group.
- Dedicated
Host []GetCount Group By Host Types Dedicated Host Groups Group Dedicated Host Count Group By Host Type - The Dedicated Host Count Group by Host Type of the Dedicated Host Group.
- Dedicated
Host stringGroup Desc - The name of the dedicated cluster. The name must be 1 to 64 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- Dedicated
Host stringGroup Id - Dedicated Host Group ID.
- Deploy
Type string - The Deployment Type of the Dedicated Host Group.
- Disk
Allocate float64Ration - The storage overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- Disk
Allocated float64Amount - The Disk Allocated Amount of the Dedicated Host Group.
- Disk
Allocation intRatio - The Disk Allocation Ratio of the Dedicated Host Group.
- Disk
Used float64Amount - The DiskUsedAmount of the Dedicated Host Group.
- Disk
Utility float64 - The DiskUtility of the Dedicated Host Group.
- Engine string
- Database Engine Type.The database engine of the dedicated cluster. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- Host
Number int - The Total Host Number of the Dedicated Host Group.
- Host
Replace stringPolicy - The policy based on which the system handles host failures. Valid values:
Auto
,Manual
- Id string
- The ID of the Dedicated Host Group.
- Instance
Number int - The Total Instance Number of the Dedicated Host Group.
- Mem
Allocate float64Ration - The maximum memory usage of each host in the dedicated cluster.Valid values: 0 to 90. Default value: 90.
- Mem
Allocated float64Amount - The MemAllocatedAmount of the Dedicated Host Group.
- Mem
Allocation intRatio - The Memory Allocation Ratio of the Dedicated Host Group.
- Mem
Used float64Amount - The MemUsedAmount of the Dedicated Host Group.
- Mem
Utility float64 - The Mem Utility of the Dedicated Host Group.
- Text string
- The Text of the Dedicated Host Group.
- Vpc
Id string - The virtual private cloud (VPC) ID of the dedicated cluster.
- Zone
Id []GetLists Dedicated Host Groups Group Zone Id List - The ZoneIDList of the Dedicated Host Group.
- allocation
Policy String - The policy that is used to allocate resources in the dedicated cluster. Valid values:
Evenly
,Intensively
- bastion
Instance StringId - The Bastion Instance id of the Dedicated Host Group.
- cpu
Allocate DoubleRation - The CPU overcommitment ratio of the dedicated cluster. If you set this parameter to 200, the CPU resources that can be allocated are twice as many as the CPU resources that are provided. This maximizes the CPU utilization. Valid values: 100 to 300. Default value: 200.
- cpu
Allocated DoubleAmount - The CPU Allocated Amount of the Dedicated Host Group.
- cpu
Allocation IntegerRatio - The CPU overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- create
Time String - The Created Time of the Dedicated Host Group.
- dedicated
Host List<GetCount Group By Host Types Dedicated Host Groups Group Dedicated Host Count Group By Host Type> - The Dedicated Host Count Group by Host Type of the Dedicated Host Group.
- dedicated
Host StringGroup Desc - The name of the dedicated cluster. The name must be 1 to 64 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- dedicated
Host StringGroup Id - Dedicated Host Group ID.
- deploy
Type String - The Deployment Type of the Dedicated Host Group.
- disk
Allocate DoubleRation - The storage overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- disk
Allocated DoubleAmount - The Disk Allocated Amount of the Dedicated Host Group.
- disk
Allocation IntegerRatio - The Disk Allocation Ratio of the Dedicated Host Group.
- disk
Used DoubleAmount - The DiskUsedAmount of the Dedicated Host Group.
- disk
Utility Double - The DiskUtility of the Dedicated Host Group.
- engine String
- Database Engine Type.The database engine of the dedicated cluster. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- host
Number Integer - The Total Host Number of the Dedicated Host Group.
- host
Replace StringPolicy - The policy based on which the system handles host failures. Valid values:
Auto
,Manual
- id String
- The ID of the Dedicated Host Group.
- instance
Number Integer - The Total Instance Number of the Dedicated Host Group.
- mem
Allocate DoubleRation - The maximum memory usage of each host in the dedicated cluster.Valid values: 0 to 90. Default value: 90.
- mem
Allocated DoubleAmount - The MemAllocatedAmount of the Dedicated Host Group.
- mem
Allocation IntegerRatio - The Memory Allocation Ratio of the Dedicated Host Group.
- mem
Used DoubleAmount - The MemUsedAmount of the Dedicated Host Group.
- mem
Utility Double - The Mem Utility of the Dedicated Host Group.
- text String
- The Text of the Dedicated Host Group.
- vpc
Id String - The virtual private cloud (VPC) ID of the dedicated cluster.
- zone
Id List<GetLists Dedicated Host Groups Group Zone Id List> - The ZoneIDList of the Dedicated Host Group.
- allocation
Policy string - The policy that is used to allocate resources in the dedicated cluster. Valid values:
Evenly
,Intensively
- bastion
Instance stringId - The Bastion Instance id of the Dedicated Host Group.
- cpu
Allocate numberRation - The CPU overcommitment ratio of the dedicated cluster. If you set this parameter to 200, the CPU resources that can be allocated are twice as many as the CPU resources that are provided. This maximizes the CPU utilization. Valid values: 100 to 300. Default value: 200.
- cpu
Allocated numberAmount - The CPU Allocated Amount of the Dedicated Host Group.
- cpu
Allocation numberRatio - The CPU overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- create
Time string - The Created Time of the Dedicated Host Group.
- dedicated
Host GetCount Group By Host Types Dedicated Host Groups Group Dedicated Host Count Group By Host Type[] - The Dedicated Host Count Group by Host Type of the Dedicated Host Group.
- dedicated
Host stringGroup Desc - The name of the dedicated cluster. The name must be 1 to 64 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- dedicated
Host stringGroup Id - Dedicated Host Group ID.
- deploy
Type string - The Deployment Type of the Dedicated Host Group.
- disk
Allocate numberRation - The storage overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- disk
Allocated numberAmount - The Disk Allocated Amount of the Dedicated Host Group.
- disk
Allocation numberRatio - The Disk Allocation Ratio of the Dedicated Host Group.
- disk
Used numberAmount - The DiskUsedAmount of the Dedicated Host Group.
- disk
Utility number - The DiskUtility of the Dedicated Host Group.
- engine string
- Database Engine Type.The database engine of the dedicated cluster. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- host
Number number - The Total Host Number of the Dedicated Host Group.
- host
Replace stringPolicy - The policy based on which the system handles host failures. Valid values:
Auto
,Manual
- id string
- The ID of the Dedicated Host Group.
- instance
Number number - The Total Instance Number of the Dedicated Host Group.
- mem
Allocate numberRation - The maximum memory usage of each host in the dedicated cluster.Valid values: 0 to 90. Default value: 90.
- mem
Allocated numberAmount - The MemAllocatedAmount of the Dedicated Host Group.
- mem
Allocation numberRatio - The Memory Allocation Ratio of the Dedicated Host Group.
- mem
Used numberAmount - The MemUsedAmount of the Dedicated Host Group.
- mem
Utility number - The Mem Utility of the Dedicated Host Group.
- text string
- The Text of the Dedicated Host Group.
- vpc
Id string - The virtual private cloud (VPC) ID of the dedicated cluster.
- zone
Id GetLists Dedicated Host Groups Group Zone Id List[] - The ZoneIDList of the Dedicated Host Group.
- allocation_
policy str - The policy that is used to allocate resources in the dedicated cluster. Valid values:
Evenly
,Intensively
- bastion_
instance_ strid - The Bastion Instance id of the Dedicated Host Group.
- cpu_
allocate_ floatration - The CPU overcommitment ratio of the dedicated cluster. If you set this parameter to 200, the CPU resources that can be allocated are twice as many as the CPU resources that are provided. This maximizes the CPU utilization. Valid values: 100 to 300. Default value: 200.
- cpu_
allocated_ floatamount - The CPU Allocated Amount of the Dedicated Host Group.
- cpu_
allocation_ intratio - The CPU overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- create_
time str - The Created Time of the Dedicated Host Group.
- dedicated_
host_ Sequence[Getcount_ group_ by_ host_ types Dedicated Host Groups Group Dedicated Host Count Group By Host Type] - The Dedicated Host Count Group by Host Type of the Dedicated Host Group.
- dedicated_
host_ strgroup_ desc - The name of the dedicated cluster. The name must be 1 to 64 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- dedicated_
host_ strgroup_ id - Dedicated Host Group ID.
- deploy_
type str - The Deployment Type of the Dedicated Host Group.
- disk_
allocate_ floatration - The storage overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- disk_
allocated_ floatamount - The Disk Allocated Amount of the Dedicated Host Group.
- disk_
allocation_ intratio - The Disk Allocation Ratio of the Dedicated Host Group.
- disk_
used_ floatamount - The DiskUsedAmount of the Dedicated Host Group.
- disk_
utility float - The DiskUtility of the Dedicated Host Group.
- engine str
- Database Engine Type.The database engine of the dedicated cluster. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- host_
number int - The Total Host Number of the Dedicated Host Group.
- host_
replace_ strpolicy - The policy based on which the system handles host failures. Valid values:
Auto
,Manual
- id str
- The ID of the Dedicated Host Group.
- instance_
number int - The Total Instance Number of the Dedicated Host Group.
- mem_
allocate_ floatration - The maximum memory usage of each host in the dedicated cluster.Valid values: 0 to 90. Default value: 90.
- mem_
allocated_ floatamount - The MemAllocatedAmount of the Dedicated Host Group.
- mem_
allocation_ intratio - The Memory Allocation Ratio of the Dedicated Host Group.
- mem_
used_ floatamount - The MemUsedAmount of the Dedicated Host Group.
- mem_
utility float - The Mem Utility of the Dedicated Host Group.
- text str
- The Text of the Dedicated Host Group.
- vpc_
id str - The virtual private cloud (VPC) ID of the dedicated cluster.
- zone_
id_ Sequence[Getlists Dedicated Host Groups Group Zone Id List] - The ZoneIDList of the Dedicated Host Group.
- allocation
Policy String - The policy that is used to allocate resources in the dedicated cluster. Valid values:
Evenly
,Intensively
- bastion
Instance StringId - The Bastion Instance id of the Dedicated Host Group.
- cpu
Allocate NumberRation - The CPU overcommitment ratio of the dedicated cluster. If you set this parameter to 200, the CPU resources that can be allocated are twice as many as the CPU resources that are provided. This maximizes the CPU utilization. Valid values: 100 to 300. Default value: 200.
- cpu
Allocated NumberAmount - The CPU Allocated Amount of the Dedicated Host Group.
- cpu
Allocation NumberRatio - The CPU overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- create
Time String - The Created Time of the Dedicated Host Group.
- dedicated
Host List<Property Map>Count Group By Host Types - The Dedicated Host Count Group by Host Type of the Dedicated Host Group.
- dedicated
Host StringGroup Desc - The name of the dedicated cluster. The name must be 1 to 64 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- dedicated
Host StringGroup Id - Dedicated Host Group ID.
- deploy
Type String - The Deployment Type of the Dedicated Host Group.
- disk
Allocate NumberRation - The storage overcommitment ratio of the dedicated cluster.Valid values: 100 to 300. Default value: 200.
- disk
Allocated NumberAmount - The Disk Allocated Amount of the Dedicated Host Group.
- disk
Allocation NumberRatio - The Disk Allocation Ratio of the Dedicated Host Group.
- disk
Used NumberAmount - The DiskUsedAmount of the Dedicated Host Group.
- disk
Utility Number - The DiskUtility of the Dedicated Host Group.
- engine String
- Database Engine Type.The database engine of the dedicated cluster. Valid values:
Redis
,SQLServer
,MySQL
,PostgreSQL
,MongoDB
- host
Number Number - The Total Host Number of the Dedicated Host Group.
- host
Replace StringPolicy - The policy based on which the system handles host failures. Valid values:
Auto
,Manual
- id String
- The ID of the Dedicated Host Group.
- instance
Number Number - The Total Instance Number of the Dedicated Host Group.
- mem
Allocate NumberRation - The maximum memory usage of each host in the dedicated cluster.Valid values: 0 to 90. Default value: 90.
- mem
Allocated NumberAmount - The MemAllocatedAmount of the Dedicated Host Group.
- mem
Allocation NumberRatio - The Memory Allocation Ratio of the Dedicated Host Group.
- mem
Used NumberAmount - The MemUsedAmount of the Dedicated Host Group.
- mem
Utility Number - The Mem Utility of the Dedicated Host Group.
- text String
- The Text of the Dedicated Host Group.
- vpc
Id String - The virtual private cloud (VPC) ID of the dedicated cluster.
- zone
Id List<Property Map>Lists - The ZoneIDList of the Dedicated Host Group.
GetDedicatedHostGroupsGroupDedicatedHostCountGroupByHostType
- Place
Holder string
- Place
Holder string
- place
Holder String
- place
Holder string
- place_
holder str
- place
Holder String
GetDedicatedHostGroupsGroupZoneIdList
- Zone
Id List<string>Lists
- Zone
Id []stringLists
- zone
Id List<String>Lists
- zone
Id string[]Lists
- zone_
id_ Sequence[str]lists
- zone
Id List<String>Lists
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.