Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
Deprecated: volcengine.rds_postgresql.InstancePriceDetails has been deprecated in favor of volcengine.rds_postgresql.getInstancePriceDetails
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 InstancePriceDetails
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 instancePriceDetails(args: InstancePriceDetailsArgs, opts?: InvokeOptions): Promise<InstancePriceDetailsResult>
function instancePriceDetailsOutput(args: InstancePriceDetailsOutputArgs, opts?: InvokeOptions): Output<InstancePriceDetailsResult>def instance_price_details(charge_info: Optional[InstancePriceDetailsChargeInfo] = None,
node_infos: Optional[Sequence[InstancePriceDetailsNodeInfo]] = None,
output_file: Optional[str] = None,
storage_space: Optional[int] = None,
storage_type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> InstancePriceDetailsResult
def instance_price_details_output(charge_info: Optional[pulumi.Input[InstancePriceDetailsChargeInfoArgs]] = None,
node_infos: Optional[pulumi.Input[Sequence[pulumi.Input[InstancePriceDetailsNodeInfoArgs]]]] = 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[InstancePriceDetailsResult]func InstancePriceDetails(ctx *Context, args *InstancePriceDetailsArgs, opts ...InvokeOption) (*InstancePriceDetailsResult, error)
func InstancePriceDetailsOutput(ctx *Context, args *InstancePriceDetailsOutputArgs, opts ...InvokeOption) InstancePriceDetailsResultOutputpublic static class InstancePriceDetails
{
public static Task<InstancePriceDetailsResult> InvokeAsync(InstancePriceDetailsArgs args, InvokeOptions? opts = null)
public static Output<InstancePriceDetailsResult> Invoke(InstancePriceDetailsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<InstancePriceDetailsResult> instancePriceDetails(InstancePriceDetailsArgs args, InvokeOptions options)
public static Output<InstancePriceDetailsResult> instancePriceDetails(InstancePriceDetailsArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:rds_postgresql:InstancePriceDetails
arguments:
# arguments dictionaryThe following arguments are supported:
- Charge
Info InstancePrice Details Charge Info - The charge information of the instance.
- Node
Infos List<InstancePrice 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 InstancePrice Details Charge Info - The charge information of the instance.
- Node
Infos []InstancePrice 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 InstancePrice Details Charge Info - The charge information of the instance.
- node
Infos List<InstancePrice 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 InstancePrice Details Charge Info - The charge information of the instance.
- node
Infos InstancePrice 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 InstancePrice Details Charge Info - The charge information of the instance.
- node_
infos Sequence[InstancePrice 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.
InstancePriceDetails Result
The following output properties are available:
- Charge
Info InstancePrice Details Charge Info - Id string
- The provider-assigned unique ID for this managed resource.
- Instances
Prices List<InstancePrice Details Instances Price> - The collection of query.
- Node
Infos List<InstancePrice Details Node Info> - Storage
Space int - Storage
Type string - Total
Count int - The total count of query.
- Output
File string
- Charge
Info InstancePrice Details Charge Info - Id string
- The provider-assigned unique ID for this managed resource.
- Instances
Prices []InstancePrice Details Instances Price - The collection of query.
- Node
Infos []InstancePrice Details Node Info - Storage
Space int - Storage
Type string - Total
Count int - The total count of query.
- Output
File string
- charge
Info InstancePrice Details Charge Info - id String
- The provider-assigned unique ID for this managed resource.
- instances
Prices List<InstancePrice Details Instances Price> - The collection of query.
- node
Infos List<InstancePrice Details Node Info> - storage
Space Integer - storage
Type String - total
Count Integer - The total count of query.
- output
File String
- charge
Info InstancePrice Details Charge Info - id string
- The provider-assigned unique ID for this managed resource.
- instances
Prices InstancePrice Details Instances Price[] - The collection of query.
- node
Infos InstancePrice Details Node Info[] - storage
Space number - storage
Type string - total
Count number - The total count of query.
- output
File string
- charge_
info InstancePrice Details Charge Info - id str
- The provider-assigned unique ID for this managed resource.
- instances_
prices Sequence[InstancePrice Details Instances Price] - The collection of query.
- node_
infos Sequence[InstancePrice 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
InstancePriceDetailsChargeInfo
- 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.
InstancePriceDetailsInstancesPrice
- Charge
Item List<InstancePrices 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 []InstancePrices 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<InstancePrices 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 InstancePrices 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[Instanceprices 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.
InstancePriceDetailsInstancesPriceChargeItemPrice
- 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.
InstancePriceDetailsNodeInfo
- 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
