1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cloudcontrol
  5. getPrices
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.cloudcontrol.getPrices

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    This data source provides Cloud Control Price available to the user.What is Price

    NOTE: Available since v1.241.0.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const _default = alicloud.cloudcontrol.getPrices({
        desireAttributes: {
            AddressType: "internet",
            PaymentType: "PayAsYouGo",
        },
        product: "SLB",
        resourceCode: "LoadBalancer",
    });
    export const alicloudCloudControlPriceExampleId = _default.then(_default => _default.prices?.[0]?.discountPrice);
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.cloudcontrol.get_prices(desire_attributes={
            "AddressType": "internet",
            "PaymentType": "PayAsYouGo",
        },
        product="SLB",
        resource_code="LoadBalancer")
    pulumi.export("alicloudCloudControlPriceExampleId", default.prices[0].discount_price)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudcontrol"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_default, err := cloudcontrol.GetPrices(ctx, &cloudcontrol.GetPricesArgs{
    			DesireAttributes: map[string]interface{}{
    				"AddressType": "internet",
    				"PaymentType": "PayAsYouGo",
    			},
    			Product:      "SLB",
    			ResourceCode: "LoadBalancer",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("alicloudCloudControlPriceExampleId", _default.Prices[0].DiscountPrice)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var @default = AliCloud.CloudControl.GetPrices.Invoke(new()
        {
            DesireAttributes = 
            {
                { "AddressType", "internet" },
                { "PaymentType", "PayAsYouGo" },
            },
            Product = "SLB",
            ResourceCode = "LoadBalancer",
        });
    
        return new Dictionary<string, object?>
        {
            ["alicloudCloudControlPriceExampleId"] = @default.Apply(@default => @default.Apply(getPricesResult => getPricesResult.Prices[0]?.DiscountPrice)),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.cloudcontrol.CloudcontrolFunctions;
    import com.pulumi.alicloud.cloudcontrol.inputs.GetPricesArgs;
    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 config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            final var default = CloudcontrolFunctions.getPrices(GetPricesArgs.builder()
                .desireAttributes(Map.ofEntries(
                    Map.entry("AddressType", "internet"),
                    Map.entry("PaymentType", "PayAsYouGo")
                ))
                .product("SLB")
                .resourceCode("LoadBalancer")
                .build());
    
            ctx.export("alicloudCloudControlPriceExampleId", default_.prices()[0].discountPrice());
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    variables:
      default:
        fn::invoke:
          function: alicloud:cloudcontrol:getPrices
          arguments:
            desireAttributes:
              AddressType: internet
              PaymentType: PayAsYouGo
            product: SLB
            resourceCode: LoadBalancer
    outputs:
      alicloudCloudControlPriceExampleId: ${default.prices[0].discountPrice}
    

    Using getPrices

    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 getPrices(args: GetPricesArgs, opts?: InvokeOptions): Promise<GetPricesResult>
    function getPricesOutput(args: GetPricesOutputArgs, opts?: InvokeOptions): Output<GetPricesResult>
    def get_prices(desire_attributes: Optional[Mapping[str, str]] = None,
                   output_file: Optional[str] = None,
                   product: Optional[str] = None,
                   resource_code: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetPricesResult
    def get_prices_output(desire_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                   output_file: Optional[pulumi.Input[str]] = None,
                   product: Optional[pulumi.Input[str]] = None,
                   resource_code: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetPricesResult]
    func GetPrices(ctx *Context, args *GetPricesArgs, opts ...InvokeOption) (*GetPricesResult, error)
    func GetPricesOutput(ctx *Context, args *GetPricesOutputArgs, opts ...InvokeOption) GetPricesResultOutput

    > Note: This function is named GetPrices in the Go SDK.

    public static class GetPrices 
    {
        public static Task<GetPricesResult> InvokeAsync(GetPricesArgs args, InvokeOptions? opts = null)
        public static Output<GetPricesResult> Invoke(GetPricesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPricesResult> getPrices(GetPricesArgs args, InvokeOptions options)
    public static Output<GetPricesResult> getPrices(GetPricesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: alicloud:cloudcontrol/getPrices:getPrices
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    ResourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    DesireAttributes Dictionary<string, string>
    This property represent the detailed configuration of the Resource which you are going to get price. Give same content as DesireAttributes of the 'Resource' Resource when start Create operation. 'PaymentType' is necessary when in DesireAttributes. Here is a probably example when you get the price of SLB LoadBalancer:```json{"LoadBalancerName": "cc-test","Bandwidth": 6,"PaymentType": "PayAsYouGo","AddressType": "internet","LoadBalancerSpec": "slb.s3.small","InternetChargeType": "paybybandwidth"} See DesireAttributes below.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    Product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    ResourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    DesireAttributes map[string]string
    This property represent the detailed configuration of the Resource which you are going to get price. Give same content as DesireAttributes of the 'Resource' Resource when start Create operation. 'PaymentType' is necessary when in DesireAttributes. Here is a probably example when you get the price of SLB LoadBalancer:```json{"LoadBalancerName": "cc-test","Bandwidth": 6,"PaymentType": "PayAsYouGo","AddressType": "internet","LoadBalancerSpec": "slb.s3.small","InternetChargeType": "paybybandwidth"} See DesireAttributes below.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    product String
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceCode String
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    desireAttributes Map<String,String>
    This property represent the detailed configuration of the Resource which you are going to get price. Give same content as DesireAttributes of the 'Resource' Resource when start Create operation. 'PaymentType' is necessary when in DesireAttributes. Here is a probably example when you get the price of SLB LoadBalancer:```json{"LoadBalancerName": "cc-test","Bandwidth": 6,"PaymentType": "PayAsYouGo","AddressType": "internet","LoadBalancerSpec": "slb.s3.small","InternetChargeType": "paybybandwidth"} See DesireAttributes below.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    product string
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceCode string
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    desireAttributes {[key: string]: string}
    This property represent the detailed configuration of the Resource which you are going to get price. Give same content as DesireAttributes of the 'Resource' Resource when start Create operation. 'PaymentType' is necessary when in DesireAttributes. Here is a probably example when you get the price of SLB LoadBalancer:```json{"LoadBalancerName": "cc-test","Bandwidth": 6,"PaymentType": "PayAsYouGo","AddressType": "internet","LoadBalancerSpec": "slb.s3.small","InternetChargeType": "paybybandwidth"} See DesireAttributes below.
    outputFile string
    File name where to save data source results (after running pulumi preview).
    product str
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resource_code str
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    desire_attributes Mapping[str, str]
    This property represent the detailed configuration of the Resource which you are going to get price. Give same content as DesireAttributes of the 'Resource' Resource when start Create operation. 'PaymentType' is necessary when in DesireAttributes. Here is a probably example when you get the price of SLB LoadBalancer:```json{"LoadBalancerName": "cc-test","Bandwidth": 6,"PaymentType": "PayAsYouGo","AddressType": "internet","LoadBalancerSpec": "slb.s3.small","InternetChargeType": "paybybandwidth"} See DesireAttributes below.
    output_file str
    File name where to save data source results (after running pulumi preview).
    product String
    The product Code represents the product to be operated. Currently supported products and resources can be queried at the following link: supported-services-and-resource-types.
    resourceCode String
    Resource Code, if there is a parent resource, split with ::, such as VPC::VSwitch. The supported resource Code can be obtained from the following link: supported-services-and-resource-types.
    desireAttributes Map<String>
    This property represent the detailed configuration of the Resource which you are going to get price. Give same content as DesireAttributes of the 'Resource' Resource when start Create operation. 'PaymentType' is necessary when in DesireAttributes. Here is a probably example when you get the price of SLB LoadBalancer:```json{"LoadBalancerName": "cc-test","Bandwidth": 6,"PaymentType": "PayAsYouGo","AddressType": "internet","LoadBalancerSpec": "slb.s3.small","InternetChargeType": "paybybandwidth"} See DesireAttributes below.
    outputFile String
    File name where to save data source results (after running pulumi preview).

    getPrices Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Prices List<Pulumi.AliCloud.CloudControl.Outputs.GetPricesPrice>
    A list of Price Entries. Each element contains the following attributes:
    Product string
    ResourceCode string
    DesireAttributes Dictionary<string, string>
    OutputFile string
    Id string
    The provider-assigned unique ID for this managed resource.
    Prices []GetPricesPrice
    A list of Price Entries. Each element contains the following attributes:
    Product string
    ResourceCode string
    DesireAttributes map[string]string
    OutputFile string
    id String
    The provider-assigned unique ID for this managed resource.
    prices List<GetPricesPrice>
    A list of Price Entries. Each element contains the following attributes:
    product String
    resourceCode String
    desireAttributes Map<String,String>
    outputFile String
    id string
    The provider-assigned unique ID for this managed resource.
    prices GetPricesPrice[]
    A list of Price Entries. Each element contains the following attributes:
    product string
    resourceCode string
    desireAttributes {[key: string]: string}
    outputFile string
    id str
    The provider-assigned unique ID for this managed resource.
    prices Sequence[GetPricesPrice]
    A list of Price Entries. Each element contains the following attributes:
    product str
    resource_code str
    desire_attributes Mapping[str, str]
    output_file str
    id String
    The provider-assigned unique ID for this managed resource.
    prices List<Property Map>
    A list of Price Entries. Each element contains the following attributes:
    product String
    resourceCode String
    desireAttributes Map<String>
    outputFile String

    Supporting Types

    GetPricesPrice

    Currency string
    Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
    DiscountPrice double
    Discount
    ModuleDetails List<Pulumi.AliCloud.CloudControl.Inputs.GetPricesPriceModuleDetail>
    Pricing Module Price Details
    OriginalPrice double
    Original Price
    PromotionDetails List<Pulumi.AliCloud.CloudControl.Inputs.GetPricesPricePromotionDetail>
    Offer Details
    TradePrice double
    Preferential price
    Currency string
    Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
    DiscountPrice float64
    Discount
    ModuleDetails []GetPricesPriceModuleDetail
    Pricing Module Price Details
    OriginalPrice float64
    Original Price
    PromotionDetails []GetPricesPricePromotionDetail
    Offer Details
    TradePrice float64
    Preferential price
    currency String
    Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
    discountPrice Double
    Discount
    moduleDetails List<GetPricesPriceModuleDetail>
    Pricing Module Price Details
    originalPrice Double
    Original Price
    promotionDetails List<GetPricesPricePromotionDetail>
    Offer Details
    tradePrice Double
    Preferential price
    currency string
    Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
    discountPrice number
    Discount
    moduleDetails GetPricesPriceModuleDetail[]
    Pricing Module Price Details
    originalPrice number
    Original Price
    promotionDetails GetPricesPricePromotionDetail[]
    Offer Details
    tradePrice number
    Preferential price
    currency str
    Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
    discount_price float
    Discount
    module_details Sequence[GetPricesPriceModuleDetail]
    Pricing Module Price Details
    original_price float
    Original Price
    promotion_details Sequence[GetPricesPricePromotionDetail]
    Offer Details
    trade_price float
    Preferential price
    currency String
    Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
    discountPrice Number
    Discount
    moduleDetails List<Property Map>
    Pricing Module Price Details
    originalPrice Number
    Original Price
    promotionDetails List<Property Map>
    Offer Details
    tradePrice Number
    Preferential price

    GetPricesPriceModuleDetail

    CostAfterDiscount double
    Preferential price.
    InvoiceDiscount double
    Discount.
    ModuleCode string
    Valuation Module Identification.
    ModuleName string
    Pricing Module Name.
    OriginalCost double
    Original Price.
    PriceType string
    Price Type.
    CostAfterDiscount float64
    Preferential price.
    InvoiceDiscount float64
    Discount.
    ModuleCode string
    Valuation Module Identification.
    ModuleName string
    Pricing Module Name.
    OriginalCost float64
    Original Price.
    PriceType string
    Price Type.
    costAfterDiscount Double
    Preferential price.
    invoiceDiscount Double
    Discount.
    moduleCode String
    Valuation Module Identification.
    moduleName String
    Pricing Module Name.
    originalCost Double
    Original Price.
    priceType String
    Price Type.
    costAfterDiscount number
    Preferential price.
    invoiceDiscount number
    Discount.
    moduleCode string
    Valuation Module Identification.
    moduleName string
    Pricing Module Name.
    originalCost number
    Original Price.
    priceType string
    Price Type.
    cost_after_discount float
    Preferential price.
    invoice_discount float
    Discount.
    module_code str
    Valuation Module Identification.
    module_name str
    Pricing Module Name.
    original_cost float
    Original Price.
    price_type str
    Price Type.
    costAfterDiscount Number
    Preferential price.
    invoiceDiscount Number
    Discount.
    moduleCode String
    Valuation Module Identification.
    moduleName String
    Pricing Module Name.
    originalCost Number
    Original Price.
    priceType String
    Price Type.

    GetPricesPricePromotionDetail

    PromotionDesc string
    Offer Description.
    PromotionId int
    Offer logo.
    PromotionName string
    Offer Name.
    PromotionDesc string
    Offer Description.
    PromotionId int
    Offer logo.
    PromotionName string
    Offer Name.
    promotionDesc String
    Offer Description.
    promotionId Integer
    Offer logo.
    promotionName String
    Offer Name.
    promotionDesc string
    Offer Description.
    promotionId number
    Offer logo.
    promotionName string
    Offer Name.
    promotion_desc str
    Offer Description.
    promotion_id int
    Offer logo.
    promotion_name str
    Offer Name.
    promotionDesc String
    Offer Description.
    promotionId Number
    Offer logo.
    promotionName String
    Offer Name.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi