class Azure::Graph::Mgmt::V1_6::Models::Domain

Active Directory Domain information.

Attributes

authentication_type[RW]

@return [String] the type of the authentication into the domain.

is_default[RW]

@return [Boolean] if this is the default domain in the tenant.

is_verified[RW]

@return [Boolean] if this domain's ownership is verified.

name[RW]

@return [String] the domain name.

Private Class Methods

mapper() click to toggle source

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

# File lib/1.6/generated/azure_mgmt_graph/models/domain.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Domain',
    type: {
      name: 'Composite',
      class_name: 'Domain',
      model_properties: {
        authentication_type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'authenticationType',
          type: {
            name: 'String'
          }
        },
        is_default: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'isDefault',
          type: {
            name: 'Boolean'
          }
        },
        is_verified: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'isVerified',
          type: {
            name: 'Boolean'
          }
        },
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end