openapi: Add display attributes for cubbyhole/ (#19880)

This commit is contained in:
Anton Averchenkov 2023-04-13 11:33:21 -04:00 committed by GitHub
parent 14ac4fc045
commit 7e12300d7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 4 deletions

View File

@ -50,6 +50,10 @@ func (b *CubbyholeBackend) paths() []*framework.Path {
{
Pattern: framework.MatchAllRegex("path"),
DisplayAttrs: &framework.DisplayAttributes{
OperationPrefix: "cubbyhole",
},
Fields: map[string]*framework.FieldSchema{
"path": {
Type: framework.TypeString,
@ -60,21 +64,36 @@ func (b *CubbyholeBackend) paths() []*framework.Path {
Operations: map[logical.Operation]framework.OperationHandler{
logical.ReadOperation: &framework.PathOperation{
Callback: b.handleRead,
Summary: "Retrieve the secret at the specified location.",
DisplayAttrs: &framework.DisplayAttributes{
OperationVerb: "read",
},
Summary: "Retrieve the secret at the specified location.",
},
logical.UpdateOperation: &framework.PathOperation{
Callback: b.handleWrite,
Summary: "Store a secret at the specified location.",
DisplayAttrs: &framework.DisplayAttributes{
OperationVerb: "write",
},
Summary: "Store a secret at the specified location.",
},
logical.CreateOperation: &framework.PathOperation{
Callback: b.handleWrite,
DisplayAttrs: &framework.DisplayAttributes{
OperationVerb: "write",
},
},
logical.DeleteOperation: &framework.PathOperation{
Callback: b.handleDelete,
Summary: "Deletes the secret at the specified location.",
DisplayAttrs: &framework.DisplayAttributes{
OperationVerb: "delete",
},
Summary: "Deletes the secret at the specified location.",
},
logical.ListOperation: &framework.PathOperation{
Callback: b.handleList,
Callback: b.handleList,
DisplayAttrs: &framework.DisplayAttributes{
OperationVerb: "list",
},
Summary: "List secret entries at the specified location.",
Description: "Folders are suffixed with /. The input must be a folder; list on a file will not return a value. The values themselves are not accessible via this command.",
},