admin '/secrets/access' endpoints (#983)

This commit is contained in:
Michael Quigley
2025-06-17 11:26:11 -04:00
parent 5680b7cfd3
commit a251aee960
34 changed files with 3158 additions and 0 deletions

View File

@@ -613,6 +613,52 @@ paths:
500:
description: internal server error
/secrets/access:
post:
tags:
- admin
security:
- key: []
operationId: addSecretsAccess
parameters:
- name: body
in: body
schema:
properties:
secretsIdentityZId:
type: string
responses:
200:
description: ok
400:
description: access not added
401:
description: unauthorized
500:
description: internal server error
delete:
tags:
- admin
security:
- key: []
operationId: deleteSecretsAccess
parameters:
- name: body
in: body
schema:
properties:
secretsIdentityZId:
type: string
responses:
200:
description: ok
400:
description: access not removed
401:
description: unauthorized
500:
description: internal server error
#
# agent
#