GCP:使用catlog API识别正确的实例(N1标准8,N1Highmem等)

时间:2018-05-24 09:42:41

标签: google-cloud-platform google-compute-engine google-cloud-sdk

我们目前正在开发 GCP定价模块,因此我们使用GCP catalog API来获取各种GCP服务的定价。

在分析目录api对Compute Engine的响应时,我们观察到sku对象中没有任何确切的参数可以识别机器类型(N1Standard 4,NIHighmem 16等),除了描述。

除了解析描述之外,是否有任何解决方法可以直接获取具有特定内核数量的sku对象?

是否有任何解决方法可以直接获取特定实例名称的sku对象?

例如:N1Standard 16 以下是具有8个核心的N1Highcpu的示例sku对象,其中核心数量仅在描述中提及。:

{
      "name": "services/<<id>>/skus/C216-207D-0521",
      "skuId": "C216-207D-0521",
      "description": "Highcpu Intel N1 8 VCPU running in Netherlands",
      "category": {
        "serviceDisplayName": "Compute Engine",
        "resourceFamily": "Compute",
        "resourceGroup": "N1Highcpu",
        "usageType": "OnDemand"
      },
      "serviceRegions": [
        "europe-west4"
      ],
      "pricingInfo": [
        {
          "summary": "",
          "pricingExpression": {
            "usageUnit": "h",
            "usageUnitDescription": "hour",
            "baseUnit": "s",
            "baseUnitDescription": "second",
            "baseUnitConversionFactor": 3600,
            "displayQuantity": 1,
            "tieredRates": [
              {
                "startUsageAmount": 0,
                "unitPrice": {
                  "currencyCode": "USD",
                  "units": "0",
                  "nanos": 312400000
                }
              }
            ]
          },
          "currencyConversionRate": 1,
          "effectiveTime": "2018-05-17T08:22:54.236Z"
        }
      ],
      "serviceProviderName": "Google"
    }

1 个答案:

答案 0 :(得分:1)

您所需的功能尚未在Cloud Billing Catalog API上实现。

目前,唯一的解决方法是解析输出以获取Compute Engine实例的SKU。因此,请跟进功能请求here