Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi
alicloud.cloudcontrol.getPrices
Explore with Pulumi AI
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.
- Resource
Code 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. - Desire
Attributes 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. - Output
File 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.
- Resource
Code 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. - Desire
Attributes 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. - Output
File 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.
- resource
Code 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. - desire
Attributes 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. - output
File 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.
- resource
Code 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. - desire
Attributes {[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. - output
File 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.
- resource
Code 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. - desire
Attributes 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. - output
File 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.
Ali Cloud. Cloud Control. Outputs. Get Prices Price> - A list of Price Entries. Each element contains the following attributes:
- Product string
- Resource
Code string - Desire
Attributes Dictionary<string, string> - Output
File string
- Id string
- The provider-assigned unique ID for this managed resource.
- Prices
[]Get
Prices Price - A list of Price Entries. Each element contains the following attributes:
- Product string
- Resource
Code string - Desire
Attributes map[string]string - Output
File string
- id String
- The provider-assigned unique ID for this managed resource.
- prices
List<Get
Prices Price> - A list of Price Entries. Each element contains the following attributes:
- product String
- resource
Code String - desire
Attributes Map<String,String> - output
File String
- id string
- The provider-assigned unique ID for this managed resource.
- prices
Get
Prices Price[] - A list of Price Entries. Each element contains the following attributes:
- product string
- resource
Code string - desire
Attributes {[key: string]: string} - output
File string
- id str
- The provider-assigned unique ID for this managed resource.
- prices
Sequence[Get
Prices Price] - 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
- resource
Code String - desire
Attributes Map<String> - output
File String
Supporting Types
GetPricesPrice
- Currency string
- Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
- Discount
Price double - Discount
- Module
Details List<Pulumi.Ali Cloud. Cloud Control. Inputs. Get Prices Price Module Detail> - Pricing Module Price Details
- Original
Price double - Original Price
- Promotion
Details List<Pulumi.Ali Cloud. Cloud Control. Inputs. Get Prices Price Promotion Detail> - Offer Details
- Trade
Price double - Preferential price
- Currency string
- Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
- Discount
Price float64 - Discount
- Module
Details []GetPrices Price Module Detail - Pricing Module Price Details
- Original
Price float64 - Original Price
- Promotion
Details []GetPrices Price Promotion Detail - Offer Details
- Trade
Price float64 - Preferential price
- currency String
- Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
- discount
Price Double - Discount
- module
Details List<GetPrices Price Module Detail> - Pricing Module Price Details
- original
Price Double - Original Price
- promotion
Details List<GetPrices Price Promotion Detail> - Offer Details
- trade
Price Double - Preferential price
- currency string
- Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
- discount
Price number - Discount
- module
Details GetPrices Price Module Detail[] - Pricing Module Price Details
- original
Price number - Original Price
- promotion
Details GetPrices Price Promotion Detail[] - Offer Details
- trade
Price number - Preferential price
- currency str
- Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
- discount_
price float - Discount
- module_
details Sequence[GetPrices Price Module Detail] - Pricing Module Price Details
- original_
price float - Original Price
- promotion_
details Sequence[GetPrices Price Promotion Detail] - Offer Details
- trade_
price float - Preferential price
- currency String
- Currency. Value range: CNY: RMB. USD: USD. JPY: Japanese yen.
- discount
Price Number - Discount
- module
Details List<Property Map> - Pricing Module Price Details
- original
Price Number - Original Price
- promotion
Details List<Property Map> - Offer Details
- trade
Price Number - Preferential price
GetPricesPriceModuleDetail
- Cost
After doubleDiscount - Preferential price.
- Invoice
Discount double - Discount.
- Module
Code string - Valuation Module Identification.
- Module
Name string - Pricing Module Name.
- Original
Cost double - Original Price.
- Price
Type string - Price Type.
- Cost
After float64Discount - Preferential price.
- Invoice
Discount float64 - Discount.
- Module
Code string - Valuation Module Identification.
- Module
Name string - Pricing Module Name.
- Original
Cost float64 - Original Price.
- Price
Type string - Price Type.
- cost
After DoubleDiscount - Preferential price.
- invoice
Discount Double - Discount.
- module
Code String - Valuation Module Identification.
- module
Name String - Pricing Module Name.
- original
Cost Double - Original Price.
- price
Type String - Price Type.
- cost
After numberDiscount - Preferential price.
- invoice
Discount number - Discount.
- module
Code string - Valuation Module Identification.
- module
Name string - Pricing Module Name.
- original
Cost number - Original Price.
- price
Type string - Price Type.
- cost_
after_ floatdiscount - 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.
- cost
After NumberDiscount - Preferential price.
- invoice
Discount Number - Discount.
- module
Code String - Valuation Module Identification.
- module
Name String - Pricing Module Name.
- original
Cost Number - Original Price.
- price
Type String - Price Type.
GetPricesPricePromotionDetail
- Promotion
Desc string - Offer Description.
- Promotion
Id int - Offer logo.
- Promotion
Name string - Offer Name.
- Promotion
Desc string - Offer Description.
- Promotion
Id int - Offer logo.
- Promotion
Name string - Offer Name.
- promotion
Desc String - Offer Description.
- promotion
Id Integer - Offer logo.
- promotion
Name String - Offer Name.
- promotion
Desc string - Offer Description.
- promotion
Id number - Offer logo.
- promotion
Name string - Offer Name.
- promotion_
desc str - Offer Description.
- promotion_
id int - Offer logo.
- promotion_
name str - Offer Name.
- promotion
Desc String - Offer Description.
- promotion
Id Number - Offer logo.
- promotion
Name 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.