Update ACME endpoint help synopsis and description (#20624)

- Use generic help synopsis and help description values for the various ACME endpoints defined.
 - Add missing values for the Vault ACME EAB apis
This commit is contained in:
Steven Clark 2023-05-17 09:59:30 -04:00 committed by GitHub
parent b2468d3481
commit e3a99fdaab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 35 additions and 28 deletions

View File

@ -98,8 +98,8 @@ func patternAcmeNewAccount(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: pathOcspHelpSyn,
HelpDescription: pathOcspHelpDesc,
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}

View File

@ -41,8 +41,8 @@ func patternAcmeAuthorization(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}

View File

@ -48,8 +48,8 @@ func patternAcmeChallenge(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}

View File

@ -13,8 +13,11 @@ import (
)
const (
pathAcmeDirectoryHelpSync = `Read the proper URLs for various ACME operations`
pathAcmeDirectoryHelpDesc = `Provide an ACME directory response that contains URLS for various ACME operations.`
pathAcmeHelpSync = `An endpoint implementing the standard ACME protocol`
pathAcmeHelpDesc = `This API endpoint implementing a subset of the ACME protocol
defined in RFC 8555, with its own authentication and argument syntax that
does not follow conventional Vault operations. An ACME client tool or library
should be used to interact with these endpoints.`
)
func pathAcmeDirectory(b *backend) []*framework.Path {
@ -36,8 +39,8 @@ func patternAcmeDirectory(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: pathAcmeDirectoryHelpSync,
HelpDescription: pathAcmeDirectoryHelpDesc,
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}

View File

@ -51,8 +51,9 @@ func pathAcmeEabCreateList(b *backend) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: "Generate or list external account bindings to be used for ACME",
HelpDescription: `Generate single use id/key pairs to be used for ACME EAB or list
identifiers that have been generated but yet to be used.`,
}
}
@ -83,8 +84,11 @@ func pathAcmeEabDelete(b *backend) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: "Delete an external account binding id prior to its use within an ACME account",
HelpDescription: `Allows an operator to delete an external account binding,
before its bound to a new ACME account. If the identifier provided does not exist or
was already consumed by an ACME account a successful response is returned along with
a warning that it did not exist.`,
}
}

View File

@ -35,8 +35,8 @@ func patternAcmeNonce(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: pathAcmeDirectoryHelpSync,
HelpDescription: pathAcmeDirectoryHelpDesc,
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}

View File

@ -58,8 +58,8 @@ func patternAcmeNewOrder(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}
@ -79,8 +79,8 @@ func patternAcmeListOrders(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}
@ -101,8 +101,8 @@ func patternAcmeGetOrder(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}
@ -123,8 +123,8 @@ func patternAcmeFinalizeOrder(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}
@ -145,8 +145,8 @@ func patternAcmeFetchOrderCert(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}

View File

@ -35,8 +35,8 @@ func patternAcmeRevoke(b *backend, pattern string) *framework.Path {
},
},
HelpSynopsis: "",
HelpDescription: "",
HelpSynopsis: pathAcmeHelpSync,
HelpDescription: pathAcmeHelpDesc,
}
}