Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport of UI: update openapi for auth-config/ldap model into release/1.19.x #29644

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions ui/tests/helpers/openapi/expected-auth-attrs.js
Original file line number Diff line number Diff line change
Expand Up @@ -898,6 +898,13 @@ const ldap = {
fieldGroup: 'default',
type: 'string',
},
disableAutomatedRotation: {
editType: 'boolean',
fieldGroup: 'default',
helpText:
'If set to true, will deregister all registered rotation jobs from the RotationManager for the plugin.',
type: 'boolean',
},
discoverdn: {
editType: 'boolean',
helpText: 'Use anonymous bind to discover the bind DN of a user (optional)',
Expand Down Expand Up @@ -962,6 +969,27 @@ const ldap = {
'Timeout, in seconds, for the connection when making requests against the server before returning back an error.',
fieldGroup: 'default',
},
rotationPeriod: {
editType: 'number',
fieldGroup: 'default',
helpText:
'TTL for automatic credential rotation of the given username. Mutually exclusive with rotation_schedule',
type: 'number',
},
rotationSchedule: {
editType: 'string',
fieldGroup: 'default',
helpText:
'CRON-style string that will define the schedule on which rotations should occur. Mutually exclusive with rotation_period',
type: 'string',
},
rotationWindow: {
editType: 'number',
fieldGroup: 'default',
helpText:
'Specifies the amount of time in which the rotation is allowed to occur starting from a given rotation_schedule',
type: 'number',
},
starttls: {
editType: 'boolean',
helpText: 'Issue a StartTLS command after establishing unencrypted connection (optional)',
Expand Down
Loading