Class: Azure::GraphRbac::V1_6::Models::CheckGroupMembershipParameters
- Inherits:
-
Object
- Object
- Azure::GraphRbac::V1_6::Models::CheckGroupMembershipParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/1.6/generated/azure_graph_rbac/models/check_group_membership_parameters.rb
Overview
Request parameters for IsMemberOf API call.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
collection.
-
#group_id ⇒ String
The object ID of the group to check.
-
#member_id ⇒ String
principal to check for membership in the specified group.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CheckGroupMembershipParameters class as Ruby Hash.
Instance Attribute Details
#additional_properties ⇒ Object
collection
17 18 19 |
# File 'lib/1.6/generated/azure_graph_rbac/models/check_group_membership_parameters.rb', line 17 def additional_properties @additional_properties end |
#group_id ⇒ String
Returns The object ID of the group to check.
20 21 22 |
# File 'lib/1.6/generated/azure_graph_rbac/models/check_group_membership_parameters.rb', line 20 def group_id @group_id end |
#member_id ⇒ String
principal to check for membership in the specified group.
24 25 26 |
# File 'lib/1.6/generated/azure_graph_rbac/models/check_group_membership_parameters.rb', line 24 def member_id @member_id end |
Class Method Details
.mapper ⇒ Object
Mapper for CheckGroupMembershipParameters class as Ruby Hash. This will be used for serialization/deserialization.
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 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/1.6/generated/azure_graph_rbac/models/check_group_membership_parameters.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CheckGroupMembershipParameters', type: { name: 'Composite', class_name: 'CheckGroupMembershipParameters', 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' } } } }, group_id: { client_side_validation: true, required: true, serialized_name: 'groupId', type: { name: 'String' } }, member_id: { client_side_validation: true, required: true, serialized_name: 'memberId', type: { name: 'String' } } } } } end |