class Azure::Security::Mgmt::V2017_08_01_preview::Models::IoTSecurityAggregatedRecommendation

Security Solution Recommendation Information

Attributes

description[RW]

@return [String] Description of the incident and what it means

detected_by[RW]

@return [String] Name of the vendor that discovered the issue

healthy_devices[RW]

@return [Integer] the number of the healthy devices within the solution

id[RW]

@return [String] Resource Id

log_analytics_query[RW]

@return [String] query in log analytics to get the list of affected devices/alerts

name[RW]

@return [String] Resource name

recommendation_display_name[RW]

@return [String] Display name of the recommendation type.

recommendation_name[RW]

@return [String] Name of the recommendation

recommendation_type_id[RW]

@return [String] The recommendation-type GUID.

remediation_steps[RW]

@return [String] Recommended steps for remediation

reported_severity[RW]

@return [ReportedSeverity] Estimated severity of this recommendation. Possible values include: 'Informational', 'Low', 'Medium', 'High'

tags[RW]

@return [Hash{String => String}] Resource tags

type[RW]

@return [String] Resource type

unhealthy_device_count[RW]

@return [Integer] the number of the unhealthy devices within the solution

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-08-01-preview/generated/azure_mgmt_security/models/io_tsecurity_aggregated_recommendation.rb, line 65
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IoTSecurityAggregatedRecommendation',
    type: {
      name: 'Composite',
      class_name: 'IoTSecurityAggregatedRecommendation',
      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'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        recommendation_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.recommendationName',
          type: {
            name: 'String'
          }
        },
        recommendation_display_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.recommendationDisplayName',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.description',
          type: {
            name: 'String'
          }
        },
        recommendation_type_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.recommendationTypeId',
          type: {
            name: 'String'
          }
        },
        detected_by: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.detectedBy',
          type: {
            name: 'String'
          }
        },
        remediation_steps: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.remediationSteps',
          type: {
            name: 'String'
          }
        },
        reported_severity: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.reportedSeverity',
          type: {
            name: 'String'
          }
        },
        healthy_devices: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.healthyDevices',
          type: {
            name: 'Number'
          }
        },
        unhealthy_device_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.unhealthyDeviceCount',
          type: {
            name: 'Number'
          }
        },
        log_analytics_query: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.logAnalyticsQuery',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end