Class: Azure::Graph::Mgmt::V1_6::Models::ADGroup
- Inherits:
-
Object
- Object
- Azure::Graph::Mgmt::V1_6::Models::ADGroup
- Includes:
- MsRestAzure
- Defined in:
- lib/1.6/generated/azure_mgmt_graph/models/adgroup.rb
Overview
Active Directory group information.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The display name of the group.
-
#mail ⇒ String
The primary email address of the group.
-
#object_id ⇒ String
The object ID.
-
#object_type ⇒ String
The object type.
-
#security_enabled ⇒ Boolean
Whether the group is security-enable.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ADGroup class as Ruby Hash.
Instance Attribute Details
#display_name ⇒ String
Returns The display name of the group.
22 23 24 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/adgroup.rb', line 22 def display_name @display_name end |
#mail ⇒ String
Returns The primary email address of the group.
28 29 30 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/adgroup.rb', line 28 def mail @mail end |
#object_id ⇒ String
Returns The object ID.
16 17 18 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/adgroup.rb', line 16 def object_id @object_id end |
#object_type ⇒ String
Returns The object type.
19 20 21 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/adgroup.rb', line 19 def object_type @object_type end |
#security_enabled ⇒ Boolean
Returns Whether the group is security-enable.
25 26 27 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/adgroup.rb', line 25 def security_enabled @security_enabled end |
Class Method Details
.mapper ⇒ Object
Mapper for ADGroup class as Ruby Hash. This will be used for serialization/deserialization.
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 75 76 77 78 79 80 81 |
# File 'lib/1.6/generated/azure_mgmt_graph/models/adgroup.rb', line 35 def self.mapper() { required: false, serialized_name: 'ADGroup', type: { name: 'Composite', class_name: 'ADGroup', model_properties: { object_id: { required: false, serialized_name: 'objectId', type: { name: 'String' } }, object_type: { required: false, serialized_name: 'objectType', type: { name: 'String' } }, display_name: { required: false, serialized_name: 'displayName', type: { name: 'String' } }, security_enabled: { required: false, serialized_name: 'securityEnabled', type: { name: 'Boolean' } }, mail: { required: false, serialized_name: 'mail', type: { name: 'String' } } } } } end |