Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
Use this data source to query detailed information of rds postgresql instance price details
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
const example = volcengine.rds_postgresql.getInstancePriceDetails({
chargeInfo: {
chargeType: "PrePaid",
number: 4,
period: 2,
periodUnit: "Month",
},
nodeInfos: [
{
nodeOperateType: "Create",
nodeSpec: "rds.postgres.1c2g",
nodeType: "Primary",
zoneId: "cn-beijing-a",
},
{
nodeOperateType: "Create",
nodeSpec: "rds.postgres.1c2g",
nodeType: "Secondary",
zoneId: "cn-beijing-a",
},
{
nodeOperateType: "Create",
nodeSpec: "rds.postgres.2c8g",
nodeType: "ReadOnly",
zoneId: "cn-beijing-a",
},
],
storageSpace: 100,
storageType: "LocalSSD",
});
import pulumi
import pulumi_volcengine as volcengine
example = volcengine.rds_postgresql.get_instance_price_details(charge_info=volcengine.rds_postgresql.GetInstancePriceDetailsChargeInfoArgs(
charge_type="PrePaid",
number=4,
period=2,
period_unit="Month",
),
node_infos=[
volcengine.rds_postgresql.GetInstancePriceDetailsNodeInfoArgs(
node_operate_type="Create",
node_spec="rds.postgres.1c2g",
node_type="Primary",
zone_id="cn-beijing-a",
),
volcengine.rds_postgresql.GetInstancePriceDetailsNodeInfoArgs(
node_operate_type="Create",
node_spec="rds.postgres.1c2g",
node_type="Secondary",
zone_id="cn-beijing-a",
),
volcengine.rds_postgresql.GetInstancePriceDetailsNodeInfoArgs(
node_operate_type="Create",
node_spec="rds.postgres.2c8g",
node_type="ReadOnly",
zone_id="cn-beijing-a",
),
],
storage_space=100,
storage_type="LocalSSD")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_postgresql"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rds_postgresql.GetInstancePriceDetails(ctx, &rds_postgresql.GetInstancePriceDetailsArgs{
ChargeInfo: rds_postgresql.GetInstancePriceDetailsChargeInfo{
ChargeType: "PrePaid",
Number: pulumi.IntRef(4),
Period: pulumi.IntRef(2),
PeriodUnit: pulumi.StringRef("Month"),
},
NodeInfos: []rds_postgresql.GetInstancePriceDetailsNodeInfo{
{
NodeOperateType: pulumi.StringRef("Create"),
NodeSpec: "rds.postgres.1c2g",
NodeType: "Primary",
ZoneId: "cn-beijing-a",
},
{
NodeOperateType: pulumi.StringRef("Create"),
NodeSpec: "rds.postgres.1c2g",
NodeType: "Secondary",
ZoneId: "cn-beijing-a",
},
{
NodeOperateType: pulumi.StringRef("Create"),
NodeSpec: "rds.postgres.2c8g",
NodeType: "ReadOnly",
ZoneId: "cn-beijing-a",
},
},
StorageSpace: 100,
StorageType: "LocalSSD",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var example = Volcengine.Rds_postgresql.GetInstancePriceDetails.Invoke(new()
{
ChargeInfo = new Volcengine.Rds_postgresql.Inputs.GetInstancePriceDetailsChargeInfoInputArgs
{
ChargeType = "PrePaid",
Number = 4,
Period = 2,
PeriodUnit = "Month",
},
NodeInfos = new[]
{
new Volcengine.Rds_postgresql.Inputs.GetInstancePriceDetailsNodeInfoInputArgs
{
NodeOperateType = "Create",
NodeSpec = "rds.postgres.1c2g",
NodeType = "Primary",
ZoneId = "cn-beijing-a",
},
new Volcengine.Rds_postgresql.Inputs.GetInstancePriceDetailsNodeInfoInputArgs
{
NodeOperateType = "Create",
NodeSpec = "rds.postgres.1c2g",
NodeType = "Secondary",
ZoneId = "cn-beijing-a",
},
new Volcengine.Rds_postgresql.Inputs.GetInstancePriceDetailsNodeInfoInputArgs
{
NodeOperateType = "Create",
NodeSpec = "rds.postgres.2c8g",
NodeType = "ReadOnly",
ZoneId = "cn-beijing-a",
},
},
StorageSpace = 100,
StorageType = "LocalSSD",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.rds_postgresql.Rds_postgresqlFunctions;
import com.pulumi.volcengine.rds_postgresql.inputs.GetInstancePriceDetailsArgs;
import com.pulumi.volcengine.rds_postgresql.inputs.GetInstancePriceDetailsChargeInfoArgs;
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 = Rds_postgresqlFunctions.getInstancePriceDetails(GetInstancePriceDetailsArgs.builder()
.chargeInfo(GetInstancePriceDetailsChargeInfoArgs.builder()
.chargeType("PrePaid")
.number(4)
.period(2)
.periodUnit("Month")
.build())
.nodeInfos(
GetInstancePriceDetailsNodeInfoArgs.builder()
.nodeOperateType("Create")
.nodeSpec("rds.postgres.1c2g")
.nodeType("Primary")
.zoneId("cn-beijing-a")
.build(),
GetInstancePriceDetailsNodeInfoArgs.builder()
.nodeOperateType("Create")
.nodeSpec("rds.postgres.1c2g")
.nodeType("Secondary")
.zoneId("cn-beijing-a")
.build(),
GetInstancePriceDetailsNodeInfoArgs.builder()
.nodeOperateType("Create")
.nodeSpec("rds.postgres.2c8g")
.nodeType("ReadOnly")
.zoneId("cn-beijing-a")
.build())
.storageSpace(100)
.storageType("LocalSSD")
.build());
}
}
variables:
example:
fn::invoke:
Function: volcengine:rds_postgresql:getInstancePriceDetails
Arguments:
chargeInfo:
chargeType: PrePaid
number: 4
period: 2
periodUnit: Month
nodeInfos:
- nodeOperateType: Create
nodeSpec: rds.postgres.1c2g
nodeType: Primary
zoneId: cn-beijing-a
- nodeOperateType: Create
nodeSpec: rds.postgres.1c2g
nodeType: Secondary
zoneId: cn-beijing-a
- nodeOperateType: Create
nodeSpec: rds.postgres.2c8g
nodeType: ReadOnly
zoneId: cn-beijing-a
storageSpace: 100
storageType: LocalSSD
Using getInstancePriceDetails
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 getInstancePriceDetails(args: GetInstancePriceDetailsArgs, opts?: InvokeOptions): Promise<GetInstancePriceDetailsResult>
function getInstancePriceDetailsOutput(args: GetInstancePriceDetailsOutputArgs, opts?: InvokeOptions): Output<GetInstancePriceDetailsResult>def get_instance_price_details(charge_info: Optional[GetInstancePriceDetailsChargeInfo] = None,
node_infos: Optional[Sequence[GetInstancePriceDetailsNodeInfo]] = None,
output_file: Optional[str] = None,
storage_space: Optional[int] = None,
storage_type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInstancePriceDetailsResult
def get_instance_price_details_output(charge_info: Optional[pulumi.Input[GetInstancePriceDetailsChargeInfoArgs]] = None,
node_infos: Optional[pulumi.Input[Sequence[pulumi.Input[GetInstancePriceDetailsNodeInfoArgs]]]] = None,
output_file: Optional[pulumi.Input[str]] = None,
storage_space: Optional[pulumi.Input[int]] = None,
storage_type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInstancePriceDetailsResult]func GetInstancePriceDetails(ctx *Context, args *GetInstancePriceDetailsArgs, opts ...InvokeOption) (*GetInstancePriceDetailsResult, error)
func GetInstancePriceDetailsOutput(ctx *Context, args *GetInstancePriceDetailsOutputArgs, opts ...InvokeOption) GetInstancePriceDetailsResultOutput> Note: This function is named GetInstancePriceDetails in the Go SDK.
public static class GetInstancePriceDetails
{
public static Task<GetInstancePriceDetailsResult> InvokeAsync(GetInstancePriceDetailsArgs args, InvokeOptions? opts = null)
public static Output<GetInstancePriceDetailsResult> Invoke(GetInstancePriceDetailsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetInstancePriceDetailsResult> getInstancePriceDetails(GetInstancePriceDetailsArgs args, InvokeOptions options)
public static Output<GetInstancePriceDetailsResult> getInstancePriceDetails(GetInstancePriceDetailsArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:rds_postgresql/getInstancePriceDetails:getInstancePriceDetails
arguments:
# arguments dictionaryThe following arguments are supported:
- Charge
Info GetInstance Price Details Charge Info - The charge information of the instance.
- Node
Infos List<GetInstance Price Details Node Info> - Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
- Storage
Space int - The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
- Storage
Type string - The type of the storage. Valid values: LocalSSD.
- Output
File string - File name where to save data source results.
- Charge
Info GetInstance Price Details Charge Info - The charge information of the instance.
- Node
Infos []GetInstance Price Details Node Info - Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
- Storage
Space int - The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
- Storage
Type string - The type of the storage. Valid values: LocalSSD.
- Output
File string - File name where to save data source results.
- charge
Info GetInstance Price Details Charge Info - The charge information of the instance.
- node
Infos List<GetInstance Price Details Node Info> - Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
- storage
Space Integer - The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
- storage
Type String - The type of the storage. Valid values: LocalSSD.
- output
File String - File name where to save data source results.
- charge
Info GetInstance Price Details Charge Info - The charge information of the instance.
- node
Infos GetInstance Price Details Node Info[] - Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
- storage
Space number - The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
- storage
Type string - The type of the storage. Valid values: LocalSSD.
- output
File string - File name where to save data source results.
- charge_
info GetInstance Price Details Charge Info - The charge information of the instance.
- node_
infos Sequence[GetInstance Price Details Node Info] - Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
- storage_
space int - The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
- storage_
type str - The type of the storage. Valid values: LocalSSD.
- output_
file str - File name where to save data source results.
- charge
Info Property Map - The charge information of the instance.
- node
Infos List<Property Map> - Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
- storage
Space Number - The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
- storage
Type String - The type of the storage. Valid values: LocalSSD.
- output
File String - File name where to save data source results.
getInstancePriceDetails Result
The following output properties are available:
- Charge
Info GetInstance Price Details Charge Info - Id string
- The provider-assigned unique ID for this managed resource.
- Instances
Prices List<GetInstance Price Details Instances Price> - The collection of query.
- Node
Infos List<GetInstance Price Details Node Info> - Storage
Space int - Storage
Type string - Total
Count int - The total count of query.
- Output
File string
- Charge
Info GetInstance Price Details Charge Info - Id string
- The provider-assigned unique ID for this managed resource.
- Instances
Prices []GetInstance Price Details Instances Price - The collection of query.
- Node
Infos []GetInstance Price Details Node Info - Storage
Space int - Storage
Type string - Total
Count int - The total count of query.
- Output
File string
- charge
Info GetInstance Price Details Charge Info - id String
- The provider-assigned unique ID for this managed resource.
- instances
Prices List<GetInstance Price Details Instances Price> - The collection of query.
- node
Infos List<GetInstance Price Details Node Info> - storage
Space Integer - storage
Type String - total
Count Integer - The total count of query.
- output
File String
- charge
Info GetInstance Price Details Charge Info - id string
- The provider-assigned unique ID for this managed resource.
- instances
Prices GetInstance Price Details Instances Price[] - The collection of query.
- node
Infos GetInstance Price Details Node Info[] - storage
Space number - storage
Type string - total
Count number - The total count of query.
- output
File string
- charge_
info GetInstance Price Details Charge Info - id str
- The provider-assigned unique ID for this managed resource.
- instances_
prices Sequence[GetInstance Price Details Instances Price] - The collection of query.
- node_
infos Sequence[GetInstance Price Details Node Info] - storage_
space int - storage_
type str - total_
count int - The total count of query.
- output_
file str
- charge
Info Property Map - id String
- The provider-assigned unique ID for this managed resource.
- instances
Prices List<Property Map> - The collection of query.
- node
Infos List<Property Map> - storage
Space Number - storage
Type String - total
Count Number - The total count of query.
- output
File String
Supporting Types
GetInstancePriceDetailsChargeInfo
- Charge
Type string - The charge type of the instance. Valid values: PostPaid, PrePaid.
- Auto
Renew bool - Whether to auto renew the subscription in a pre-paid scenario.
- Number int
- Number of purchased instances. Can be an integer between 1 and 20. Default value:1.
- Period int
- Subscription duration in a pre-paid scenario.Default value:1.
- Period
Unit string - Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
- Charge
Type string - The charge type of the instance. Valid values: PostPaid, PrePaid.
- Auto
Renew bool - Whether to auto renew the subscription in a pre-paid scenario.
- Number int
- Number of purchased instances. Can be an integer between 1 and 20. Default value:1.
- Period int
- Subscription duration in a pre-paid scenario.Default value:1.
- Period
Unit string - Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
- charge
Type String - The charge type of the instance. Valid values: PostPaid, PrePaid.
- auto
Renew Boolean - Whether to auto renew the subscription in a pre-paid scenario.
- number Integer
- Number of purchased instances. Can be an integer between 1 and 20. Default value:1.
- period Integer
- Subscription duration in a pre-paid scenario.Default value:1.
- period
Unit String - Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
- charge
Type string - The charge type of the instance. Valid values: PostPaid, PrePaid.
- auto
Renew boolean - Whether to auto renew the subscription in a pre-paid scenario.
- number number
- Number of purchased instances. Can be an integer between 1 and 20. Default value:1.
- period number
- Subscription duration in a pre-paid scenario.Default value:1.
- period
Unit string - Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
- charge_
type str - The charge type of the instance. Valid values: PostPaid, PrePaid.
- auto_
renew bool - Whether to auto renew the subscription in a pre-paid scenario.
- number int
- Number of purchased instances. Can be an integer between 1 and 20. Default value:1.
- period int
- Subscription duration in a pre-paid scenario.Default value:1.
- period_
unit str - Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
- charge
Type String - The charge type of the instance. Valid values: PostPaid, PrePaid.
- auto
Renew Boolean - Whether to auto renew the subscription in a pre-paid scenario.
- number Number
- Number of purchased instances. Can be an integer between 1 and 20. Default value:1.
- period Number
- Subscription duration in a pre-paid scenario.Default value:1.
- period
Unit String - Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
GetInstancePriceDetailsInstancesPrice
- Charge
Item List<GetPrices Instance Price Details Instances Price Charge Item Price> - Price of each charge item.
- Currency string
- Currency unit.
- Discount
Price double - Instance price after discount.
- Instance
Quantity int - Number of purchased instances.
- Original
Price double - Instance price before discount.
- Payable
Price double - Price payable of instance.
- Charge
Item []GetPrices Instance Price Details Instances Price Charge Item Price - Price of each charge item.
- Currency string
- Currency unit.
- Discount
Price float64 - Instance price after discount.
- Instance
Quantity int - Number of purchased instances.
- Original
Price float64 - Instance price before discount.
- Payable
Price float64 - Price payable of instance.
- charge
Item List<GetPrices Instance Price Details Instances Price Charge Item Price> - Price of each charge item.
- currency String
- Currency unit.
- discount
Price Double - Instance price after discount.
- instance
Quantity Integer - Number of purchased instances.
- original
Price Double - Instance price before discount.
- payable
Price Double - Price payable of instance.
- charge
Item GetPrices Instance Price Details Instances Price Charge Item Price[] - Price of each charge item.
- currency string
- Currency unit.
- discount
Price number - Instance price after discount.
- instance
Quantity number - Number of purchased instances.
- original
Price number - Instance price before discount.
- payable
Price number - Price payable of instance.
- charge_
item_ Sequence[Getprices Instance Price Details Instances Price Charge Item Price] - Price of each charge item.
- currency str
- Currency unit.
- discount_
price float - Instance price after discount.
- instance_
quantity int - Number of purchased instances.
- original_
price float - Instance price before discount.
- payable_
price float - Price payable of instance.
- charge
Item List<Property Map>Prices - Price of each charge item.
- currency String
- Currency unit.
- discount
Price Number - Instance price after discount.
- instance
Quantity Number - Number of purchased instances.
- original
Price Number - Instance price before discount.
- payable
Price Number - Price payable of instance.
GetInstancePriceDetailsInstancesPriceChargeItemPrice
- Charge
Item stringKey - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the instance specification, such as rds.pg.d1.1c2g. If charge_item_key is Storage, this parameter returns the stored key, such as rds.pg.d1.localssd.
- Charge
Item stringType - Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
- Charge
Item intValue - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the number of nodes, with a value of "1". If charge_item_key is Storage, his parameter returns the storage size in GB.
- Discount
Price double - Instance price after discount.
- Node
Num intPer Instance - Number of nodes of each instance.
- Original
Price double - Instance price before discount.
- Payable
Price double - Price payable of instance.
- Charge
Item stringKey - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the instance specification, such as rds.pg.d1.1c2g. If charge_item_key is Storage, this parameter returns the stored key, such as rds.pg.d1.localssd.
- Charge
Item stringType - Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
- Charge
Item intValue - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the number of nodes, with a value of "1". If charge_item_key is Storage, his parameter returns the storage size in GB.
- Discount
Price float64 - Instance price after discount.
- Node
Num intPer Instance - Number of nodes of each instance.
- Original
Price float64 - Instance price before discount.
- Payable
Price float64 - Price payable of instance.
- charge
Item StringKey - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the instance specification, such as rds.pg.d1.1c2g. If charge_item_key is Storage, this parameter returns the stored key, such as rds.pg.d1.localssd.
- charge
Item StringType - Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
- charge
Item IntegerValue - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the number of nodes, with a value of "1". If charge_item_key is Storage, his parameter returns the storage size in GB.
- discount
Price Double - Instance price after discount.
- node
Num IntegerPer Instance - Number of nodes of each instance.
- original
Price Double - Instance price before discount.
- payable
Price Double - Price payable of instance.
- charge
Item stringKey - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the instance specification, such as rds.pg.d1.1c2g. If charge_item_key is Storage, this parameter returns the stored key, such as rds.pg.d1.localssd.
- charge
Item stringType - Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
- charge
Item numberValue - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the number of nodes, with a value of "1". If charge_item_key is Storage, his parameter returns the storage size in GB.
- discount
Price number - Instance price after discount.
- node
Num numberPer Instance - Number of nodes of each instance.
- original
Price number - Instance price before discount.
- payable
Price number - Price payable of instance.
- charge_
item_ strkey - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the instance specification, such as rds.pg.d1.1c2g. If charge_item_key is Storage, this parameter returns the stored key, such as rds.pg.d1.localssd.
- charge_
item_ strtype - Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
- charge_
item_ intvalue - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the number of nodes, with a value of "1". If charge_item_key is Storage, his parameter returns the storage size in GB.
- discount_
price float - Instance price after discount.
- node_
num_ intper_ instance - Number of nodes of each instance.
- original_
price float - Instance price before discount.
- payable_
price float - Price payable of instance.
- charge
Item StringKey - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the instance specification, such as rds.pg.d1.1c2g. If charge_item_key is Storage, this parameter returns the stored key, such as rds.pg.d1.localssd.
- charge
Item StringType - Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
- charge
Item NumberValue - If charge_item_key is Primary, Secondary, or ReadOnly, this parameter returns the number of nodes, with a value of "1". If charge_item_key is Storage, his parameter returns the storage size in GB.
- discount
Price Number - Instance price after discount.
- node
Num NumberPer Instance - Number of nodes of each instance.
- original
Price Number - Instance price before discount.
- payable
Price Number - Price payable of instance.
GetInstancePriceDetailsNodeInfo
- Node
Spec string - The specification of the node.
- Node
Type string - The type of the node. Valid values: Primary, Secondary, ReadOnly.
- Zone
Id string - The AZ of the node.
- Node
Id string - The id of the node.
- Node
Operate stringType - The operate type of the node. Valid values: Create.
- Node
Spec string - The specification of the node.
- Node
Type string - The type of the node. Valid values: Primary, Secondary, ReadOnly.
- Zone
Id string - The AZ of the node.
- Node
Id string - The id of the node.
- Node
Operate stringType - The operate type of the node. Valid values: Create.
- node
Spec String - The specification of the node.
- node
Type String - The type of the node. Valid values: Primary, Secondary, ReadOnly.
- zone
Id String - The AZ of the node.
- node
Id String - The id of the node.
- node
Operate StringType - The operate type of the node. Valid values: Create.
- node
Spec string - The specification of the node.
- node
Type string - The type of the node. Valid values: Primary, Secondary, ReadOnly.
- zone
Id string - The AZ of the node.
- node
Id string - The id of the node.
- node
Operate stringType - The operate type of the node. Valid values: Create.
- node_
spec str - The specification of the node.
- node_
type str - The type of the node. Valid values: Primary, Secondary, ReadOnly.
- zone_
id str - The AZ of the node.
- node_
id str - The id of the node.
- node_
operate_ strtype - The operate type of the node. Valid values: Create.
- node
Spec String - The specification of the node.
- node
Type String - The type of the node. Valid values: Primary, Secondary, ReadOnly.
- zone
Id String - The AZ of the node.
- node
Id String - The id of the node.
- node
Operate StringType - The operate type of the node. Valid values: Create.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengineTerraform Provider.
Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
