typescript OCI:根据示例列表估计成本

hpxqektj  于 2022-12-03  发布在  TypeScript
关注(0)|答案(1)|浏览(111)

我正在尝试使用TypeScript SDK估算OCI示例列表的成本。他们有一个工具Cloud Cost Estimator,您可以在其中进行配置,它会动态显示估算值。我希望通过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"
            }
        }
    ]
}

有没有什么模块我可以用来做这件事?有可能吗?我看了文档,什么都找不到。

xytpbqjk

xytpbqjk1#

成本估算工具没有公共API可供交互。
但是,您可以尝试使用此处介绍的价目表价格API:https://docs.oracle.com/en-us/iaas/Content/GSG/Tasks/signingup_topic-Estimating_Costs.htm#accessing_list_pricing

相关问题