Class: Azure::Security::Mgmt::V2020_01_01::Models::ExternalSecuritySolutionProperties

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-01-01/generated/azure_mgmt_security/models/external_security_solution_properties.rb

Overview

The solution properties (correspond to the solution kind)

Direct Known Subclasses

AtaSolutionProperties, CefSolutionProperties

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#additional_propertiesObject

collection



17
18
19
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/external_security_solution_properties.rb', line 17

def additional_properties
  @additional_properties
end

#device_typeString



23
24
25
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/external_security_solution_properties.rb', line 23

def device_type
  @device_type
end

#device_vendorString



20
21
22
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/external_security_solution_properties.rb', line 20

def device_vendor
  @device_vendor
end

#workspaceConnectedWorkspace



26
27
28
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/external_security_solution_properties.rb', line 26

def workspace
  @workspace
end

Class Method Details

.mapperObject

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



33
34
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
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/external_security_solution_properties.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExternalSecuritySolutionProperties',
    type: {
      name: 'Composite',
      class_name: 'ExternalSecuritySolutionProperties',
      model_properties: {
        additional_properties: {
          client_side_validation: true,
          required: false,
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ObjectElementType',
                type: {
                  name: 'Object'
                }
            }
          }
        },
        device_vendor: {
          client_side_validation: true,
          required: false,
          serialized_name: 'deviceVendor',
          type: {
            name: 'String'
          }
        },
        device_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'deviceType',
          type: {
            name: 'String'
          }
        },
        workspace: {
          client_side_validation: true,
          required: false,
          serialized_name: 'workspace',
          type: {
            name: 'Composite',
            class_name: 'ConnectedWorkspace'
          }
        }
      }
    }
  }
end