1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# OpenbaoClient::AuthTuneConfigurationParametersRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **allowed_response_headers** | **Array<String>** | A list of headers to whitelist and allow a plugin to set on responses. | [optional] |
| **audit_non_hmac_request_keys** | **Array<String>** | The list of keys in the request data object that will not be HMAC'ed by audit devices. | [optional] |
| **audit_non_hmac_response_keys** | **Array<String>** | The list of keys in the response data object that will not be HMAC'ed by audit devices. | [optional] |
| **default_lease_ttl** | **String** | The default lease TTL for this mount. | [optional] |
| **description** | **String** | User-friendly description for this credential backend. | [optional] |
| **listing_visibility** | **String** | Determines the visibility of the mount in the UI-specific listing endpoint. Accepted value are 'unauth' and 'hidden', with the empty default ('') behaving like 'hidden'. | [optional] |
| **max_lease_ttl** | **String** | The max lease TTL for this mount. | [optional] |
| **options** | **Object** | The options to pass into the backend. Should be a json object with string keys and values. | [optional] |
| **passthrough_request_headers** | **Array<String>** | A list of headers to whitelist and pass from the request to the plugin. | [optional] |
| **plugin_version** | **String** | The semantic version of the plugin to use. | [optional] |
| **token_type** | **String** | The type of token to issue (service or batch). | [optional] |
| **user_lockout_config** | **Object** | The user lockout configuration to pass into the backend. Should be a json object with string keys and values. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::AuthTuneConfigurationParametersRequest.new(
allowed_response_headers: null,
audit_non_hmac_request_keys: null,
audit_non_hmac_response_keys: null,
default_lease_ttl: null,
description: null,
listing_visibility: null,
max_lease_ttl: null,
options: null,
passthrough_request_headers: null,
plugin_version: null,
token_type: null,
user_lockout_config: null
)
```
|