1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# OpenbaoClient::LeasesRevokeLease2Request
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **lease_id** | **String** | The lease identifier to renew. This is included with a lease. | [optional] |
| **sync** | **Boolean** | Whether or not to perform the revocation synchronously | [optional][default to true] |
| **url_lease_id** | **String** | The lease identifier to renew. This is included with a lease. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::LeasesRevokeLease2Request.new(
lease_id: null,
sync: null,
url_lease_id: null
)
```
|