1. Packages
  2. Volcengine
  3. API Docs
  4. rds_postgresql
  5. InstancePriceDetails
Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
volcengine logo
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) InstancePriceDetailsResultOutput
    public 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 dictionary

    The following arguments are supported:

    ChargeInfo InstancePriceDetailsChargeInfo
    The charge information of the instance.
    NodeInfos List<InstancePriceDetailsNodeInfo>
    Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
    StorageSpace int
    The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
    StorageType string
    The type of the storage. Valid values: LocalSSD.
    OutputFile string
    File name where to save data source results.
    ChargeInfo InstancePriceDetailsChargeInfo
    The charge information of the instance.
    NodeInfos []InstancePriceDetailsNodeInfo
    Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
    StorageSpace int
    The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
    StorageType string
    The type of the storage. Valid values: LocalSSD.
    OutputFile string
    File name where to save data source results.
    chargeInfo InstancePriceDetailsChargeInfo
    The charge information of the instance.
    nodeInfos List<InstancePriceDetailsNodeInfo>
    Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
    storageSpace Integer
    The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
    storageType String
    The type of the storage. Valid values: LocalSSD.
    outputFile String
    File name where to save data source results.
    chargeInfo InstancePriceDetailsChargeInfo
    The charge information of the instance.
    nodeInfos InstancePriceDetailsNodeInfo[]
    Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
    storageSpace number
    The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
    storageType string
    The type of the storage. Valid values: LocalSSD.
    outputFile string
    File name where to save data source results.
    charge_info InstancePriceDetailsChargeInfo
    The charge information of the instance.
    node_infos Sequence[InstancePriceDetailsNodeInfo]
    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.
    chargeInfo Property Map
    The charge information of the instance.
    nodeInfos List<Property Map>
    Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
    storageSpace Number
    The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
    storageType String
    The type of the storage. Valid values: LocalSSD.
    outputFile String
    File name where to save data source results.

    InstancePriceDetails Result

    The following output properties are available:

    ChargeInfo InstancePriceDetailsChargeInfo
    Id string
    The provider-assigned unique ID for this managed resource.
    InstancesPrices List<InstancePriceDetailsInstancesPrice>
    The collection of query.
    NodeInfos List<InstancePriceDetailsNodeInfo>
    StorageSpace int
    StorageType string
    TotalCount int
    The total count of query.
    OutputFile string
    ChargeInfo InstancePriceDetailsChargeInfo
    Id string
    The provider-assigned unique ID for this managed resource.
    InstancesPrices []InstancePriceDetailsInstancesPrice
    The collection of query.
    NodeInfos []InstancePriceDetailsNodeInfo
    StorageSpace int
    StorageType string
    TotalCount int
    The total count of query.
    OutputFile string
    chargeInfo InstancePriceDetailsChargeInfo
    id String
    The provider-assigned unique ID for this managed resource.
    instancesPrices List<InstancePriceDetailsInstancesPrice>
    The collection of query.
    nodeInfos List<InstancePriceDetailsNodeInfo>
    storageSpace Integer
    storageType String
    totalCount Integer
    The total count of query.
    outputFile String
    chargeInfo InstancePriceDetailsChargeInfo
    id string
    The provider-assigned unique ID for this managed resource.
    instancesPrices InstancePriceDetailsInstancesPrice[]
    The collection of query.
    nodeInfos InstancePriceDetailsNodeInfo[]
    storageSpace number
    storageType string
    totalCount number
    The total count of query.
    outputFile string
    chargeInfo Property Map
    id String
    The provider-assigned unique ID for this managed resource.
    instancesPrices List<Property Map>
    The collection of query.
    nodeInfos List<Property Map>
    storageSpace Number
    storageType String
    totalCount Number
    The total count of query.
    outputFile String

    Supporting Types

    InstancePriceDetailsChargeInfo

    ChargeType string
    The charge type of the instance. Valid values: PostPaid, PrePaid.
    AutoRenew 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.
    PeriodUnit string
    Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
    ChargeType string
    The charge type of the instance. Valid values: PostPaid, PrePaid.
    AutoRenew 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.
    PeriodUnit string
    Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
    chargeType String
    The charge type of the instance. Valid values: PostPaid, PrePaid.
    autoRenew 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.
    periodUnit String
    Purchase cycle in a pre-paid scenario. Valid values: Month, Year.
    chargeType string
    The charge type of the instance. Valid values: PostPaid, PrePaid.
    autoRenew 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.
    periodUnit 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.
    chargeType String
    The charge type of the instance. Valid values: PostPaid, PrePaid.
    autoRenew 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.
    periodUnit String
    Purchase cycle in a pre-paid scenario. Valid values: Month, Year.

    InstancePriceDetailsInstancesPrice

    ChargeItemPrices List<InstancePriceDetailsInstancesPriceChargeItemPrice>
    Price of each charge item.
    Currency string
    Currency unit.
    DiscountPrice double
    Instance price after discount.
    InstanceQuantity int
    Number of purchased instances.
    OriginalPrice double
    Instance price before discount.
    PayablePrice double
    Price payable of instance.
    ChargeItemPrices []InstancePriceDetailsInstancesPriceChargeItemPrice
    Price of each charge item.
    Currency string
    Currency unit.
    DiscountPrice float64
    Instance price after discount.
    InstanceQuantity int
    Number of purchased instances.
    OriginalPrice float64
    Instance price before discount.
    PayablePrice float64
    Price payable of instance.
    chargeItemPrices List<InstancePriceDetailsInstancesPriceChargeItemPrice>
    Price of each charge item.
    currency String
    Currency unit.
    discountPrice Double
    Instance price after discount.
    instanceQuantity Integer
    Number of purchased instances.
    originalPrice Double
    Instance price before discount.
    payablePrice Double
    Price payable of instance.
    chargeItemPrices InstancePriceDetailsInstancesPriceChargeItemPrice[]
    Price of each charge item.
    currency string
    Currency unit.
    discountPrice number
    Instance price after discount.
    instanceQuantity number
    Number of purchased instances.
    originalPrice number
    Instance price before discount.
    payablePrice number
    Price payable of instance.
    charge_item_prices Sequence[InstancePriceDetailsInstancesPriceChargeItemPrice]
    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.
    chargeItemPrices List<Property Map>
    Price of each charge item.
    currency String
    Currency unit.
    discountPrice Number
    Instance price after discount.
    instanceQuantity Number
    Number of purchased instances.
    originalPrice Number
    Instance price before discount.
    payablePrice Number
    Price payable of instance.

    InstancePriceDetailsInstancesPriceChargeItemPrice

    ChargeItemKey string
    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.
    ChargeItemType string
    Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
    ChargeItemValue int
    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.
    DiscountPrice double
    Instance price after discount.
    NodeNumPerInstance int
    Number of nodes of each instance.
    OriginalPrice double
    Instance price before discount.
    PayablePrice double
    Price payable of instance.
    ChargeItemKey string
    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.
    ChargeItemType string
    Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
    ChargeItemValue int
    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.
    DiscountPrice float64
    Instance price after discount.
    NodeNumPerInstance int
    Number of nodes of each instance.
    OriginalPrice float64
    Instance price before discount.
    PayablePrice float64
    Price payable of instance.
    chargeItemKey String
    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.
    chargeItemType String
    Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
    chargeItemValue Integer
    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.
    discountPrice Double
    Instance price after discount.
    nodeNumPerInstance Integer
    Number of nodes of each instance.
    originalPrice Double
    Instance price before discount.
    payablePrice Double
    Price payable of instance.
    chargeItemKey string
    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.
    chargeItemType string
    Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
    chargeItemValue number
    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.
    discountPrice number
    Instance price after discount.
    nodeNumPerInstance number
    Number of nodes of each instance.
    originalPrice number
    Instance price before discount.
    payablePrice number
    Price payable of instance.
    charge_item_key str
    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_type str
    Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
    charge_item_value int
    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_per_instance int
    Number of nodes of each instance.
    original_price float
    Instance price before discount.
    payable_price float
    Price payable of instance.
    chargeItemKey String
    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.
    chargeItemType String
    Billing item name. Values:Primary, Secondary, ReadOnly, Storage.
    chargeItemValue Number
    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.
    discountPrice Number
    Instance price after discount.
    nodeNumPerInstance Number
    Number of nodes of each instance.
    originalPrice Number
    Instance price before discount.
    payablePrice Number
    Price payable of instance.

    InstancePriceDetailsNodeInfo

    NodeSpec string
    The specification of the node.
    NodeType string
    The type of the node. Valid values: Primary, Secondary, ReadOnly.
    ZoneId string
    The AZ of the node.
    NodeId string
    The id of the node.
    NodeOperateType string
    The operate type of the node. Valid values: Create.
    NodeSpec string
    The specification of the node.
    NodeType string
    The type of the node. Valid values: Primary, Secondary, ReadOnly.
    ZoneId string
    The AZ of the node.
    NodeId string
    The id of the node.
    NodeOperateType string
    The operate type of the node. Valid values: Create.
    nodeSpec String
    The specification of the node.
    nodeType String
    The type of the node. Valid values: Primary, Secondary, ReadOnly.
    zoneId String
    The AZ of the node.
    nodeId String
    The id of the node.
    nodeOperateType String
    The operate type of the node. Valid values: Create.
    nodeSpec string
    The specification of the node.
    nodeType string
    The type of the node. Valid values: Primary, Secondary, ReadOnly.
    zoneId string
    The AZ of the node.
    nodeId string
    The id of the node.
    nodeOperateType string
    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_type str
    The operate type of the node. Valid values: Create.
    nodeSpec String
    The specification of the node.
    nodeType String
    The type of the node. Valid values: Primary, Secondary, ReadOnly.
    zoneId String
    The AZ of the node.
    nodeId String
    The id of the node.
    nodeOperateType String
    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 volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
      Meet Neo: Your AI Platform Teammate