감사 로그 작업 목록
감사 로그 작업 목록 (AuditLogActions)
Docker Hub 감사 로그에서 특정 그룹으로 묶인 작업(action) 목록을 나타내는 스키마예요. 그룹 라벨과 함께 AuditLogAction 항목들의 배열을 담아요.
출처: 문서
본문
이 스키마는 label과 actions 필드를 가진 객체예요. label은 특정 작업 집합의 그룹 라벨이고, actions는 AuditLogAction 항목들의 배열이에요.
{
"properties": {
"actions": {
"description": "List of audit log actions.",
"items": {
"$ref": "#/components/schemas/AuditLogAction"
},
"type": "array"
},
"label": {
"description": "Grouping label for a particular set of audit log actions.",
"type": "string"
}
},
"type": "object"
}
더 알아보기
- 감사 로그 작업 (AuditLogAction):
actions배열의 각 항목 구조를 확인해요. - 감사 로그 작업 조회 응답 (GetAuditActionsResponse): 이 목록을 담는 상위 응답을 살펴봐요.