1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# OpenbaoClient::SshConfigureZeroAddressRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **roles** | **Array<String>** | [Required] Comma separated list of role names which allows credentials to be requested for any IP address. CIDR blocks previously registered under these roles will be ignored. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::SshConfigureZeroAddressRequest.new(
roles: null
)
```
|