Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::PasswordHashSyncConfiguration
- Inherits:
-
Object
- Object
- Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::PasswordHashSyncConfiguration
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/password_hash_sync_configuration.rb
Overview
The password has synchronization configuration settings.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
configuration settings is enabled.
-
#target ⇒ String
The target.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PasswordHashSyncConfiguration class as Ruby Hash.
Instance Attribute Details
#enabled ⇒ Boolean
configuration settings is enabled.
17 18 19 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/password_hash_sync_configuration.rb', line 17 def enabled @enabled end |
#target ⇒ String
20 21 22 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/password_hash_sync_configuration.rb', line 20 def target @target end |
Class Method Details
.mapper ⇒ Object
Mapper for PasswordHashSyncConfiguration class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# 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 |