class Azure::Graph::Mgmt::V1_6::Models::PasswordProfile

The password profile associated with a user.

Attributes

force_change_password_next_login[RW]

@return [Boolean] Whether to force a password change on next login.

password[RW]

@return [String] Password

Private Class Methods

mapper() click to toggle source

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

# File lib/1.6/generated/azure_mgmt_graph/models/password_profile.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PasswordProfile',
    type: {
      name: 'Composite',
      class_name: 'PasswordProfile',
      model_properties: {
        password: {
          client_side_validation: true,
          required: true,
          serialized_name: 'password',
          type: {
            name: 'String'
          }
        },
        force_change_password_next_login: {
          client_side_validation: true,
          required: false,
          serialized_name: 'forceChangePasswordNextLogin',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end