获取试用状态 API

编辑

允许您检查试用状态。

请求

编辑

GET /_license/trial_status

描述

编辑

如果您想试用所有订阅功能,您可以开始 30 天的试用。

只有当您的集群尚未为当前主要产品版本激活试用时,才允许您启动试用。例如,如果您已经为 v6.0 激活了试用,则在 v7.0 之前您无法开始新的试用。但是,您可以在 https://elastic.ac.cn/trialextension 请求延长试用期。

有关功能和订阅的更多信息,请参阅 https://elastic.ac.cn/subscriptions

授权

编辑

您必须具有 monitor 集群权限才能使用此 API。 有关更多信息,请参阅 安全权限

示例

编辑

以下示例检查您是否符合开始试用的资格

resp = client.license.get_trial_status()
print(resp)
response = client.license.get_trial_status
puts response
const response = await client.license.getTrialStatus();
console.log(response);
GET /_license/trial_status

示例响应

{
  "eligible_to_start_trial": true
}