1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# OpenbaoClient::EntityMergeRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **conflicting_alias_ids_to_keep** | **Array<String>** | Alias IDs to keep in case of conflicting aliases. Ignored if no conflicting aliases found | [optional] |
| **force** | **Boolean** | Setting this will follow the 'mine' strategy for merging MFA secrets. If there are secrets of the same type both in entities that are merged from and in entity into which all others are getting merged, secrets in the destination will be unaltered. If not set, this API will throw an error containing all the conflicts. | [optional] |
| **from_entity_ids** | **Array<String>** | Entity IDs which need to get merged | [optional] |
| **to_entity_id** | **String** | Entity ID into which all the other entities need to get merged | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::EntityMergeRequest.new(
conflicting_alias_ids_to_keep: null,
force: null,
from_entity_ids: null,
to_entity_id: null
)
```
|