2

我创建了一个谷歌云项目并启用了谷歌云密钥管理服务 (KMS) API。我创建了两个钥匙圈。keyring1位于us-east1并且keyring2位于global。我创建了以下 java 程序来列出该区域中的密钥环:

GoogleCredential credential = GoogleCredential.getApplicationDefault();
credential = credential.createScoped(CloudKMSScopes.all());

String keyRingPath = "projects/<<projectId>>/locations/global";

CloudKMS kms = new CloudKMS.Builder(httpTransport, jsonFactory, credential).setApplicationName("CloudKMS snippets").build();

ListKeyRingsResponse response = kms.projects().locations().keyRings().list(keyRingPath).execute();

System.out.println(response.getKeyRings());

我收到以下禁止错误:

Exception in thread "main" com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden
{
  "code" : 403,
  "errors" : [ {
    "domain" : "global",
    "message" : "This API is not acessible from your region.",
    "reason" : "forbidden"
  } ],
  "message" : "This API is not acessible from your region.",
  "status" : "PERMISSION_DENIED"
}
4

2 回答 2

4

我是一名从事 Cloud KMS 的工程师。

不幸的是,在各个国家/地区提供此服务存在许多复杂性,我们没有具体的时间表来说明何时或是否会推出任何特定国家/地区。

任何对特定国家/地区的可用性感兴趣的人都应与我们联系,以查看是否有任何信息可用并帮助我们确定优先级。

于 2017-05-10T15:48:03.710 回答
2

我正在尝试从印度调用 Cloud KMS API。看起来 Cloud KMS 尚未在所有位置都可用。Cloud KMS 服务在印度尚不可用。单击此处了解可使用 Cloud KMS 的国家/地区列表。这就是我收到This API is not acessible from your region.错误的原因

于 2017-05-10T11:54:20.653 回答