Class: Azure::Security::Mgmt::V2020_01_01::Models::DiscoveredSecuritySolution
- Inherits:
-
Object
- Object
- Azure::Security::Mgmt::V2020_01_01::Models::DiscoveredSecuritySolution
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#id ⇒ String
Resource Id.
-
#location ⇒ String
Location where the resource is stored.
-
#name ⇒ String
Resource name.
-
#offer ⇒ String
The security solutions’ image offer.
-
#publisher ⇒ String
The security solutions’ image publisher.
-
#security_family ⇒ SecurityFamily
solution.
-
#sku ⇒ String
The security solutions’ image sku.
-
#type ⇒ String
Resource type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DiscoveredSecuritySolution class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Returns Resource Id.
17 18 19 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 17 def id @id end |
#location ⇒ String
Returns Location where the resource is stored.
26 27 28 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 26 def location @location end |
#name ⇒ String
Returns Resource name.
20 21 22 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 20 def name @name end |
#offer ⇒ String
Returns The security solutions’ image offer.
33 34 35 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 33 def offer @offer end |
#publisher ⇒ String
Returns The security solutions’ image publisher.
36 37 38 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 36 def publisher @publisher end |
#security_family ⇒ SecurityFamily
solution. Possible values include: ‘Waf’, ‘Ngfw’, ‘SaasWaf’, ‘Va’
30 31 32 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 30 def security_family @security_family end |
#sku ⇒ String
Returns The security solutions’ image sku.
39 40 41 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 39 def sku @sku end |
#type ⇒ String
Returns Resource type.
23 24 25 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 23 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for DiscoveredSecuritySolution class as Ruby Hash. This will be used for serialization/deserialization.
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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/discovered_security_solution.rb', line 46 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DiscoveredSecuritySolution', type: { name: 'Composite', class_name: 'DiscoveredSecuritySolution', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: false, read_only: true, serialized_name: 'location', type: { name: 'String' } }, security_family: { client_side_validation: true, required: true, serialized_name: 'properties.securityFamily', type: { name: 'String' } }, offer: { client_side_validation: true, required: true, serialized_name: 'properties.offer', type: { name: 'String' } }, publisher: { client_side_validation: true, required: true, serialized_name: 'properties.publisher', type: { name: 'String' } }, sku: { client_side_validation: true, required: true, serialized_name: 'properties.sku', type: { name: 'String' } } } } } end |