メソッド: status
Key Access Control List Service(KACLS)のステータスをチェックして、
正しく構成されています
KMS のアクセシビリティの確認やシステムの状態の記録などの内部セルフチェック
実行することもできます。
HTTP リクエスト
GET https://KACLS_URL/status
KACLS_URL
は、鍵アクセス制御リストサービス(KACLS)に置き換えます。
URL を入力します。
パスパラメータ
なし。
リクエスト本文
なし。
レスポンスの本文
レスポンスの本文には、次の構造のデータが含まれます。
JSON 表現 |
{
"name": string,
"vendor_id": string,
"version": string,
"server_type": string,
"operations_supported": string array
}
|
フィールド |
name |
string (UTF-8)
インスタンス名(省略可)。
|
operations_supported |
string array
サービスでサポートされているオペレーションのリスト。オペレーションの名前は、その URL パスで定義されます。
|
server_type |
string (UTF-8)
KACLS を指定します。
|
vendor_id |
string (UTF-8)
KACLS ベンダー名。
|
version |
string (UTF-8)
ソフトウェア バージョン。
|
例
この例では、status
に対するサンプル レスポンスを示します。
メソッドを呼び出します。
レスポンス
{
"server_type": "KACLS",
"vendor_id": "Test",
"version": "demo",
"name": "K8 reference",
"operations_supported": [
"wrap", "unwrap", "privilegedunwrap",
"privatekeydecrypt", "privatekeysign", "privilegedprivatekeydecrypt"
]
}
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-08-22 UTC。
[null,null,["最終更新日 2024-08-22 UTC。"],[[["This endpoint (`GET /status`) checks the operational status and configuration of a Key Access Control List Service (KACLS)."],["It provides essential information about the KACLS instance, such as its name, vendor, version, server type, and supported operations."],["The response confirms whether the KACLS is active and details the functionalities it offers."],["Internal self-checks within the KACLS, including KMS accessibility and logging system health, might also be conducted as part of the status check."]]],["A `GET` request to the `/status` endpoint of a Key Access Control List Service (KACLS) URL checks its status. The response contains JSON data, including the KACLS's `server_type` (which must be \"KACLS\"), `vendor_id`, `version`, an optional `name`, and a `operations_supported` array. This method is also used for internal checks such as KMS accessibility and logging health. Example provided of how a successful response looks like.\n"]]