class Azure::Security::Mgmt::V2020_01_01::Models::SecuritySolution
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
protection_status[RW]
@return [String] The security solutions' status
provisioning_state[RW]
@return [ProvisioningState] The security family provisioning State. Possible values include: 'Succeeded', 'Failed', 'Updating'
security_family[RW]
@return [SecurityFamily] The security family of the security solution. Possible values include: 'Waf', 'Ngfw', 'SaasWaf', 'Va'
template[RW]
@return [String] The security solutions' template
type[RW]
@return [String] Resource
type
Private Class Methods
mapper()
click to toggle source
Mapper for SecuritySolution
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb, line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SecuritySolution', type: { name: 'Composite', class_name: 'SecuritySolution', 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' } }, provisioning_state: { client_side_validation: true, required: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, template: { client_side_validation: true, required: true, serialized_name: 'properties.template', type: { name: 'String' } }, protection_status: { client_side_validation: true, required: true, serialized_name: 'properties.protectionStatus', type: { name: 'String' } } } } } end