OCI:根据实例列表估算成本

问题描述 投票:0回答:2

我正在尝试使用 TypeScript SDK 估算 OCI 实例列表的成本。他们有一个工具“云成本估算器”,您可以在其中进行配置并动态显示估算。我想通过 API 来做到这一点。所以我会发送一个请求: { "resources": [ { "name": "compute.standard.x86", "shape": "VM.Standard2.1", "region": "us-ashburn-1", "quantity": 2 }, { "name": "storage.standard", "region": "us-ashburn-1", "quantity": 100 } ] }

并得到回复:

{ "prices": [ { "name": "compute.standard.x86", "shape": "VM.Standard2.1", "region": "us-ashburn-1", "quantity": 2, "price": { "amount": 0.048, "currency": "USD", "unit": "HOUR" } }, { "name": "storage.standard", "region": "us-ashburn-1", "quantity": 100, "price": { "amount": 0.08, "currency": "USD", "unit": "GB" } } ] }

我可以使用任何模块来做到这一点吗?是否可以?我阅读了文档但找不到任何内容。

typescript sdk cloud oracle-cloud-infrastructure
2个回答
0
投票

但是,您可以尝试使用此处记录的标价 API:

https://docs.oracle.com/en-us/iaas/Content/GSG/Tasks/signingup_topic-Estimating_Costs.htm#accessing_list_pricing


0
投票

© www.soinside.com 2019 - 2024. All rights reserved.