Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClientGroupInfo

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/client_group_info.rb

Overview

The information of AAD security group.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#group_idString

Returns The AAD security group id.

Returns:

  • (String)

    The AAD security group id.



19
20
21
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/client_group_info.rb', line 19

def group_id
  @group_id
end

#group_nameString

Returns The AAD security group name.

Returns:

  • (String)

    The AAD security group name.



16
17
18
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/client_group_info.rb', line 16

def group_name
  @group_name
end

Class Method Details

.mapperObject

Mapper for ClientGroupInfo class as Ruby Hash. This will be used for serialization/deserialization.



26
27
28
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
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/client_group_info.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ClientGroupInfo',
    type: {
      name: 'Composite',
      class_name: 'ClientGroupInfo',
      model_properties: {
        group_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'groupName',
          type: {
            name: 'String'
          }
        },
        group_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'groupId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end