1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# OpenbaoClient::RekeyVerificationUpdateRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **key** | **String** | Specifies a single unseal share key from the new set of shares. | [optional] |
| **nonce** | **String** | Specifies the nonce of the rekey verification operation. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::RekeyVerificationUpdateRequest.new(
key: null,
nonce: null
)
```
|