class Azure::Hdinsight::Mgmt::V2015_03_01_preview::Models::ClientGroupInfo

The information of AAD security group.

Attributes

group_id[RW]

@return [String] The AAD security group id.

group_name[RW]

@return [String] The AAD security group name.

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-03-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