本製品の最新リリースがご利用いただけます。
日本語は機械翻訳による参考訳です。内容に矛盾や不一致があった場合には、英語の内容が優先されます。
通知を一覧表示します
共同作成者
変更を提案
特定のアストラアカウントの通知をリストできます。この処理は、システムアクティビティの監視や問題のデバッグの一環として実行できます。
1. 通知を一覧表示します
次の REST API 呼び出しを実行します。
HTTP メソッド | パス |
---|---|
取得 |
/account/{account_id}/core/v1/notifications |
追加の入力パラメータ
すべての REST API 呼び出しに共通するパラメータに加えて、この手順の curl の例では次のパラメータも使用されます。
パラメータ | を入力します | 必須 | 説明 |
---|---|---|---|
フィルタ |
クエリ |
いいえ |
必要に応じて、応答で返す通知をフィルタリングします。 |
含める |
クエリ |
いいえ |
必要に応じて、応答で返す値を選択します。 |
curl の例:すべての通知を返します
curl --location -i --request GET 'https://astra.netapp.io/accounts/<ACCOUNT_ID>/core/v1/notifications' --header 'Accept: */*' --header 'Authorization: Bearer <API_TOKEN>'
curl の例:重大度が WARNING の通知について概要を返します
curl --location -i --request GET 'https://astra.netapp.io/accounts/<ACCOUNT_ID>/core/v1/notifications?filter=severity%20eq%20'warning'&include=description' --header 'Accept: */*' --header 'Authorization: Bearer <API_TOKEN>'
JSON 出力例
{
"items": [
[
"Trident on cluster david-ie-00 has failed or timed out; installation of the Trident operator failed or is not yet complete; operator failed to reach an installed state within 300.00 seconds; container trident-operator not found in operator deployment"
],
[
"Trident on cluster david-ie-00 has failed or timed out; installation of the Trident operator failed or is not yet complete; operator failed to reach an installed state within 300.00 seconds; container trident-operator not found in operator deployment"
]
],
"metadata": {}
}