1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# OpenbaoClient::MfaWriteLoginEnforcementRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **auth_method_accessors** | **Array<String>** | Array of auth mount accessor IDs | [optional] |
| **auth_method_types** | **Array<String>** | Array of auth mount types | [optional] |
| **identity_entity_ids** | **Array<String>** | Array of identity entity IDs | [optional] |
| **identity_group_ids** | **Array<String>** | Array of identity group IDs | [optional] |
| **mfa_method_ids** | **Array<String>** | Array of Method IDs that determine what methods will be enforced | |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::MfaWriteLoginEnforcementRequest.new(
auth_method_accessors: null,
auth_method_types: null,
identity_entity_ids: null,
identity_group_ids: null,
mfa_method_ids: null
)
```
|