import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of rds postgresql instance price details
 * ## Example Usage
 *
 * ```typescript
 * 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",
 * });
 * ```
 */
/** @deprecated volcengine.rds_postgresql.InstancePriceDetails has been deprecated in favor of volcengine.rds_postgresql.getInstancePriceDetails */
export declare function instancePriceDetails(args: InstancePriceDetailsArgs, opts?: pulumi.InvokeOptions): Promise<InstancePriceDetailsResult>;
/**
 * A collection of arguments for invoking InstancePriceDetails.
 */
export interface InstancePriceDetailsArgs {
    /**
     * The charge information of the instance.
     */
    chargeInfo: inputs.rds_postgresql.InstancePriceDetailsChargeInfo;
    /**
     * Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
     */
    nodeInfos: inputs.rds_postgresql.InstancePriceDetailsNodeInfo[];
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
     */
    storageSpace: number;
    /**
     * The type of the storage. Valid values: LocalSSD.
     */
    storageType: string;
}
/**
 * A collection of values returned by InstancePriceDetails.
 */
export interface InstancePriceDetailsResult {
    readonly chargeInfo: outputs.rds_postgresql.InstancePriceDetailsChargeInfo;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * The collection of query.
     */
    readonly instancesPrices: outputs.rds_postgresql.InstancePriceDetailsInstancesPrice[];
    readonly nodeInfos: outputs.rds_postgresql.InstancePriceDetailsNodeInfo[];
    readonly outputFile?: string;
    readonly storageSpace: number;
    readonly storageType: string;
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of rds postgresql instance price details
 * ## Example Usage
 *
 * ```typescript
 * 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",
 * });
 * ```
 */
/** @deprecated volcengine.rds_postgresql.InstancePriceDetails has been deprecated in favor of volcengine.rds_postgresql.getInstancePriceDetails */
export declare function instancePriceDetailsOutput(args: InstancePriceDetailsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<InstancePriceDetailsResult>;
/**
 * A collection of arguments for invoking InstancePriceDetails.
 */
export interface InstancePriceDetailsOutputArgs {
    /**
     * The charge information of the instance.
     */
    chargeInfo: pulumi.Input<inputs.rds_postgresql.InstancePriceDetailsChargeInfoArgs>;
    /**
     * Instance specification configuration. An instance must have only one primary node, only one secondary node, and 0~10 read-only nodes.
     */
    nodeInfos: pulumi.Input<pulumi.Input<inputs.rds_postgresql.InstancePriceDetailsNodeInfoArgs>[]>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The storage space of the instance. Value range: [20, 3000], unit: GB, step 10GB.
     */
    storageSpace: pulumi.Input<number>;
    /**
     * The type of the storage. Valid values: LocalSSD.
     */
    storageType: pulumi.Input<string>;
}
