更新时间:2022-06-30 GMT+08:00

查询配额

GES提供查询配额接口,您可以使用该接口查询当前租户的配额,包括图配额和图备份配额。示例代码如下:

  private static void getQuotas(GesClient client) throws GesSdkException{
        Quotas quotas = client.getQuotas();
        System.out.println(quotas);
    }