1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# OpenbaoClient::AppRoleReadSecretIdNumUsesResponse
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **secret_id_num_uses** | **Integer** | Number of times a secret ID can access the role, after which the SecretID will expire. Defaults to 0 meaning that the secret ID is of unlimited use. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::AppRoleReadSecretIdNumUsesResponse.new(
secret_id_num_uses: null
)
```
|