基本ステータスAPI
このAPIを使用すると、基本ライセンスのステータスを確認できます。
リクエスト
GET /_license/basic_status
説明
基本ライセンスを開始するには、現在基本ライセンスを持っていない必要があります。
さまざまな種類のライセンスについての詳細は、https://www.elastic.co/subscriptionsを参照してください。
認証
このAPIを使用するには、monitor
クラスター権限が必要です。詳細については、セキュリティ権限を参照してください。
例
以下の例は、基本ライセンスを開始する資格があるかどうかを確認します:
Python
resp = client.license.get_basic_status()
print(resp)
Ruby
response = client.license.get_basic_status
puts response
Js
const response = await client.license.getBasicStatus();
console.log(response);
コンソール
GET /_license/basic_status
コンソール-結果
{
"eligible_to_start_basic": true
}