Class: Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecuritySettingsPatch

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#chap_settingsChapSettings

Returns The device CHAP and reverse-CHAP settings.

Returns:

  • (ChapSettings)

    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_settingsCloudApplianceSettings

Returns The cloud appliance settings.

Returns:



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_passwordAsymmetricEncryptedSecret

Returns The device administrator password.

Returns:



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_settingsRemoteManagementSettingsPatch

Returns The remote management settings.

Returns:



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_passwordAsymmetricEncryptedSecret

Returns The snapshot manager password.

Returns:



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

.mapperObject

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