1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# OpenbaoClient::OidcWriteProviderRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **allowed_client_ids** | **Array<String>** | The client IDs that are permitted to use the provider | [optional] |
| **issuer** | **String** | Specifies what will be used for the iss claim of ID tokens. | [optional] |
| **scopes_supported** | **Array<String>** | The scopes supported for requesting on the provider | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::OidcWriteProviderRequest.new(
allowed_client_ids: null,
issuer: null,
scopes_supported: null
)
```
|