Class: Azure::GraphRbac::V1_6::Models::GroupGetMemberGroupsParameters
- Inherits:
-
Object
- Object
- Azure::GraphRbac::V1_6::Models::GroupGetMemberGroupsParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/1.6/generated/azure_graph_rbac/models/group_get_member_groups_parameters.rb
Overview
Request parameters for GetMemberGroups API call.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
collection.
-
#security_enabled_only ⇒ Boolean
should be checked.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GroupGetMemberGroupsParameters class as Ruby Hash.
Instance Attribute Details
#additional_properties ⇒ Object
collection
17 18 19 |
# File 'lib/1.6/generated/azure_graph_rbac/models/group_get_member_groups_parameters.rb', line 17 def additional_properties @additional_properties end |
#security_enabled_only ⇒ Boolean
should be checked. Otherwise, membership in all groups should be checked.
22 23 24 |
# File 'lib/1.6/generated/azure_graph_rbac/models/group_get_member_groups_parameters.rb', line 22 def security_enabled_only @security_enabled_only end |
Class Method Details
.mapper ⇒ Object
Mapper for GroupGetMemberGroupsParameters class as Ruby Hash. This will be used for serialization/deserialization.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/1.6/generated/azure_graph_rbac/models/group_get_member_groups_parameters.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GroupGetMemberGroupsParameters', type: { name: 'Composite', class_name: 'GroupGetMemberGroupsParameters', model_properties: { additional_properties: { client_side_validation: true, required: false, type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } }, security_enabled_only: { client_side_validation: true, required: true, serialized_name: 'securityEnabledOnly', type: { name: 'Boolean' } } } } } end |