class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::PasswordHashSyncConfiguration

The password has synchronization configuration settings.

Attributes

enabled[RW]

@return [Boolean] Indicates if the password hash synchronization configuration settings is enabled.

target[RW]

@return [String] The target.

Private Class Methods

mapper() click to toggle source

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

# File lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/password_hash_sync_configuration.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PasswordHashSyncConfiguration',
    type: {
      name: 'Composite',
      class_name: 'PasswordHashSyncConfiguration',
      model_properties: {
        enabled: {
          client_side_validation: true,
          required: false,
          serialized_name: 'enabled',
          type: {
            name: 'Boolean'
          }
        },
        target: {
          client_side_validation: true,
          required: false,
          serialized_name: 'target',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end