메서드: status
키 액세스 제어 목록 서비스 (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"
]
}
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 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"]]