1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# OpenbaoClient::TransitTrimKeyRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **min_available_version** | **Integer** | The minimum available version for the key ring. All versions before this version will be permanently deleted. This value can at most be equal to the lesser of 'min_decryption_version' and 'min_encryption_version'. This is not allowed to be set when either 'min_encryption_version' or 'min_decryption_version' is set to zero. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::TransitTrimKeyRequest.new(
min_available_version: null
)
```
|