class Azure::Security::Mgmt::V2015_06_01_preview::Models::DiscoveredSecuritySolution
Model object.
Attributes
id[RW]
@return [String] Resource
Id
location[RW]
@return [String] Location
where the resource is stored
name[RW]
@return [String] Resource
name
offer[RW]
@return [String] The security solutions' image offer
publisher[RW]
@return [String] The security solutions' image publisher
security_family[RW]
@return [SecurityFamily] The security family of the discovered solution. Possible values include: 'Waf', 'Ngfw', 'SaasWaf', 'Va'
sku[RW]
@return [String] The security solutions' image sku
type[RW]
@return [String] Resource
type
Public Class Methods
mapper()
click to toggle source
Mapper for DiscoveredSecuritySolution
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-06-01-preview/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