Class: Azure::Graph::Mgmt::V1_6::Models::GroupAddMemberParameters
- Inherits:
-
Object
- Object
- Azure::Graph::Mgmt::V1_6::Models::GroupAddMemberParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/1.6/generated/azure_mgmt_graph/models/group_add_member_parameters.rb
Overview
Request parameters for adding a member to a group.
Instance Attribute Summary collapse
-
#url ⇒ String
“graph.windows.net/0b1f9851-1bf0-433f-aec3-cb9272f093dc/directoryObjects/f260bbc4-c254-447b-94cf-293b5ec434dd”, where “0b1f9851-1bf0-433f-aec3-cb9272f093dc” is the tenantId and “f260bbc4-c254-447b-94cf-293b5ec434dd” is the objectId of the member (user, application, servicePrincipal, group) to be added.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GroupAddMemberParameters class as Ruby Hash.
Instance Attribute Details
#url ⇒ String
“graph.windows.net/0b1f9851-1bf0-433f-aec3-cb9272f093dc/directoryObjects/f260bbc4-c254-447b-94cf-293b5ec434dd”, where “0b1f9851-1bf0-433f-aec3-cb9272f093dc” is the tenantId and “f260bbc4-c254-447b-94cf-293b5ec434dd” is the objectId of the member (user, application, servicePrincipal, group) to be added.
20 21 22 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/group_add_member_parameters.rb', line 20 def url @url end |
Class Method Details
.mapper ⇒ Object
Mapper for GroupAddMemberParameters class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/group_add_member_parameters.rb', line 27 def self.mapper() { required: false, serialized_name: 'GroupAddMemberParameters', type: { name: 'Composite', class_name: 'GroupAddMemberParameters', model_properties: { url: { required: true, serialized_name: 'url', type: { name: 'String' } } } } } end |