File: KvWriteMetadataPathRequest.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 (28 lines) | stat: -rw-r--r-- 1,455 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
# OpenbaoClient::KvWriteMetadataPathRequest

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **after** | **String** | Optional entry to list begin listing after, not required to exist. Only used for listing. | [optional] |
| **cas_required** | **Boolean** | If true the key will require the cas parameter to be set on all write requests. If false, the backend’s configuration will be used. | [optional] |
| **custom_metadata** | **Object** | User-provided key-value pairs that are used to describe arbitrary and version-agnostic information about a secret. | [optional] |
| **delete_version_after** | **Integer** | The length of time before a version is deleted. If not set, the backend's configured delete_version_after is used. Cannot be greater than the backend's delete_version_after. A zero duration clears the current setting. A negative duration will cause an error. | [optional] |
| **limit** | **Integer** | Optional number of entries to return; defaults to all entries. Only used for listing. | [optional] |
| **max_versions** | **Integer** | The number of versions to keep. If not set, the backend’s configured max version is used. | [optional] |

## Example

```ruby
require 'openbao_client'

instance = OpenbaoClient::KvWriteMetadataPathRequest.new(
  after: null,
  cas_required: null,
  custom_metadata: null,
  delete_version_after: null,
  limit: null,
  max_versions: null
)
```