Class: Azure::Security::Mgmt::V2020_01_01::Models::AadSolutionProperties
- Inherits:
-
Object
- Object
- Azure::Security::Mgmt::V2020_01_01::Models::AadSolutionProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-01-01/generated/azure_mgmt_security/models/aad_solution_properties.rb
Overview
The external security solution properties for AAD solutions
Instance Attribute Summary collapse
-
#connectivity_state ⇒ AadConnectivityState
AAD solution .
- #device_type ⇒ String
- #device_vendor ⇒ String
- #workspace ⇒ ConnectedWorkspace
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AadSolutionProperties class as Ruby Hash.
Instance Attribute Details
#connectivity_state ⇒ AadConnectivityState
AAD solution . Possible values include: ‘Discovered’, ‘NotLicensed’, ‘Connected’
28 29 30 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/aad_solution_properties.rb', line 28 def connectivity_state @connectivity_state end |
#device_type ⇒ String
20 21 22 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/aad_solution_properties.rb', line 20 def device_type @device_type end |
#device_vendor ⇒ String
17 18 19 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/aad_solution_properties.rb', line 17 def device_vendor @device_vendor end |
#workspace ⇒ ConnectedWorkspace
23 24 25 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/aad_solution_properties.rb', line 23 def workspace @workspace end |
Class Method Details
.mapper ⇒ Object
Mapper for AadSolutionProperties 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 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/aad_solution_properties.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AadSolutionProperties', type: { name: 'Composite', class_name: 'AadSolutionProperties', model_properties: { 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' } }, connectivity_state: { client_side_validation: true, required: false, serialized_name: 'connectivityState', type: { name: 'String' } } } } } end |