Small fixes for OpenAPI display attributes (#20285)
This commit is contained in:
parent
3c8c46e172
commit
3c76d90156
|
@ -21,7 +21,7 @@ func pathLogin(b *backend) *framework.Path {
|
|||
Pattern: "login$",
|
||||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixAppRole,
|
||||
OperationVerb: "log-in",
|
||||
OperationVerb: "login",
|
||||
},
|
||||
Fields: map[string]*framework.FieldSchema{
|
||||
"role_id": {
|
||||
|
|
|
@ -27,7 +27,7 @@ func (b *backend) pathConfigRotateRoot() *framework.Path {
|
|||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixAWS,
|
||||
OperationVerb: "rotate",
|
||||
OperationSuffix: "auth-root-credentials",
|
||||
OperationSuffix: "root-credentials",
|
||||
},
|
||||
|
||||
Operations: map[logical.Operation]framework.OperationHandler{
|
||||
|
|
|
@ -57,7 +57,7 @@ func (b *backend) pathLogin() *framework.Path {
|
|||
Pattern: "login$",
|
||||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixAWS,
|
||||
OperationVerb: "log-in",
|
||||
OperationVerb: "login",
|
||||
},
|
||||
Fields: map[string]*framework.FieldSchema{
|
||||
"role": {
|
||||
|
|
|
@ -38,7 +38,7 @@ func pathLogin(b *backend) *framework.Path {
|
|||
Pattern: "login",
|
||||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixCert,
|
||||
OperationVerb: "log-in",
|
||||
OperationVerb: "login",
|
||||
},
|
||||
Fields: map[string]*framework.FieldSchema{
|
||||
"name": {
|
||||
|
|
|
@ -22,7 +22,7 @@ func pathLogin(b *backend) *framework.Path {
|
|||
|
||||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixGithub,
|
||||
OperationVerb: "log-in",
|
||||
OperationVerb: "login",
|
||||
},
|
||||
|
||||
Fields: map[string]*framework.FieldSchema{
|
||||
|
|
|
@ -19,7 +19,7 @@ func pathLogin(b *backend) *framework.Path {
|
|||
|
||||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixLDAP,
|
||||
OperationVerb: "log-in",
|
||||
OperationVerb: "login",
|
||||
},
|
||||
|
||||
Fields: map[string]*framework.FieldSchema{
|
||||
|
|
|
@ -26,7 +26,7 @@ func pathLogin(b *backend) *framework.Path {
|
|||
|
||||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixOkta,
|
||||
OperationVerb: "log-in",
|
||||
OperationVerb: "login",
|
||||
},
|
||||
|
||||
Fields: map[string]*framework.FieldSchema{
|
||||
|
|
|
@ -26,7 +26,7 @@ func pathLogin(b *backend) *framework.Path {
|
|||
|
||||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixRadius,
|
||||
OperationVerb: "log-in",
|
||||
OperationVerb: "login",
|
||||
OperationSuffix: "|with-username",
|
||||
},
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ func pathLogin(b *backend) *framework.Path {
|
|||
|
||||
DisplayAttrs: &framework.DisplayAttributes{
|
||||
OperationPrefix: operationPrefixUserpass,
|
||||
OperationVerb: "log-in",
|
||||
OperationVerb: "login",
|
||||
},
|
||||
|
||||
Fields: map[string]*framework.FieldSchema{
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
openapi: Small fixes for OpenAPI display attributes. Changed "log-in" to "login"
|
||||
```
|
Loading…
Reference in New Issue