Class: Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecuritySettingsPatch
- Inherits:
-
Object
- Object
- Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecuritySettingsPatch
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/security_settings_patch.rb
Overview
Represents the patch request for the security settings of a device.
Instance Attribute Summary collapse
-
#chap_settings ⇒ ChapSettings
The device CHAP and reverse-CHAP settings.
-
#cloud_appliance_settings ⇒ CloudApplianceSettings
The cloud appliance settings.
-
#device_admin_password ⇒ AsymmetricEncryptedSecret
The device administrator password.
-
#remote_management_settings ⇒ RemoteManagementSettingsPatch
The remote management settings.
-
#snapshot_password ⇒ AsymmetricEncryptedSecret
The snapshot manager password.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SecuritySettingsPatch class as Ruby Hash.
Instance Attribute Details
#chap_settings ⇒ ChapSettings
Returns The device CHAP and reverse-CHAP settings.
25 26 27 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/security_settings_patch.rb', line 25 def chap_settings @chap_settings end |
#cloud_appliance_settings ⇒ CloudApplianceSettings
Returns The cloud appliance settings.
28 29 30 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/security_settings_patch.rb', line 28 def cloud_appliance_settings @cloud_appliance_settings end |
#device_admin_password ⇒ AsymmetricEncryptedSecret
Returns The device administrator password.
19 20 21 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/security_settings_patch.rb', line 19 def device_admin_password @device_admin_password end |
#remote_management_settings ⇒ RemoteManagementSettingsPatch
Returns The remote management settings.
16 17 18 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/security_settings_patch.rb', line 16 def remote_management_settings @remote_management_settings end |
#snapshot_password ⇒ AsymmetricEncryptedSecret
Returns The snapshot manager password.
22 23 24 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/security_settings_patch.rb', line 22 def snapshot_password @snapshot_password end |
Class Method Details
.mapper ⇒ Object
Mapper for SecuritySettingsPatch class as Ruby Hash. This will be used for serialization/deserialization.
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/security_settings_patch.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SecuritySettingsPatch', type: { name: 'Composite', class_name: 'SecuritySettingsPatch', model_properties: { remote_management_settings: { client_side_validation: true, required: false, serialized_name: 'properties.remoteManagementSettings', type: { name: 'Composite', class_name: 'RemoteManagementSettingsPatch' } }, device_admin_password: { client_side_validation: true, required: false, serialized_name: 'properties.deviceAdminPassword', type: { name: 'Composite', class_name: 'AsymmetricEncryptedSecret' } }, snapshot_password: { client_side_validation: true, required: false, serialized_name: 'properties.snapshotPassword', type: { name: 'Composite', class_name: 'AsymmetricEncryptedSecret' } }, chap_settings: { client_side_validation: true, required: false, serialized_name: 'properties.chapSettings', type: { name: 'Composite', class_name: 'ChapSettings' } }, cloud_appliance_settings: { client_side_validation: true, required: false, serialized_name: 'properties.cloudApplianceSettings', type: { name: 'Composite', class_name: 'CloudApplianceSettings' } } } } } end |