1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# OpenbaoClient::AppRoleLoginRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **role_id** | **String** | Unique identifier of the Role. Required to be supplied when the 'bind_secret_id' constraint is set. | [optional] |
| **secret_id** | **String** | SecretID belong to the App role | [optional][default to ''] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::AppRoleLoginRequest.new(
role_id: null,
secret_id: null
)
```
|