File: MountsReadTuningInformationResponse.md

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (52 lines) | stat: -rw-r--r-- 2,276 bytes parent folder | download
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
41
42
43
44
45
46
47
48
49
50
51
52
# OpenbaoClient::MountsReadTuningInformationResponse

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **allowed_managed_keys** | **Array<String>** |  | [optional] |
| **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>** |  | [optional] |
| **audit_non_hmac_response_keys** | **Array<String>** |  | [optional] |
| **default_lease_ttl** | **Integer** | The default lease TTL for this mount. | [optional] |
| **description** | **String** | User-friendly description for this credential backend. | [optional] |
| **external_entropy_access** | **Boolean** |  | [optional] |
| **force_no_cache** | **Boolean** |  | [optional] |
| **listing_visibility** | **String** |  | [optional] |
| **max_lease_ttl** | **Integer** | 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>** |  | [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_counter_reset_duration** | **Integer** |  | [optional] |
| **user_lockout_disable** | **Boolean** |  | [optional] |
| **user_lockout_duration** | **Integer** |  | [optional] |
| **user_lockout_threshold** | **Integer** |  | [optional] |

## Example

```ruby
require 'openbao_client'

instance = OpenbaoClient::MountsReadTuningInformationResponse.new(
  allowed_managed_keys: null,
  allowed_response_headers: null,
  audit_non_hmac_request_keys: null,
  audit_non_hmac_response_keys: null,
  default_lease_ttl: null,
  description: null,
  external_entropy_access: null,
  force_no_cache: null,
  listing_visibility: null,
  max_lease_ttl: null,
  options: null,
  passthrough_request_headers: null,
  plugin_version: null,
  token_type: null,
  user_lockout_counter_reset_duration: null,
  user_lockout_disable: null,
  user_lockout_duration: null,
  user_lockout_threshold: null
)
```