class Azure::GraphRbac::V1_6::Models::Domain

Active Directory Domain information.

Attributes

additional_properties[RW]

@return Unmatched properties from the message are deserialized this collection

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_graph_rbac/models/domain.rb, line 36
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Domain',
    type: {
      name: 'Composite',
      class_name: 'Domain',
      model_properties: {
        additional_properties: {
          client_side_validation: true,
          required: false,
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ObjectElementType',
                type: {
                  name: 'Object'
                }
            }
          }
        },
        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