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::GroupCreateAliasRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **canonical_id** | **String** | ID of the group to which this is an alias. | [optional] |
| **id** | **String** | ID of the group alias. | [optional] |
| **mount_accessor** | **String** | Mount accessor to which this alias belongs to. | [optional] |
| **name** | **String** | Alias of the group. | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::GroupCreateAliasRequest.new(
canonical_id: null,
id: null,
mount_accessor: null,
name: null
)
```
|