class Google::Apis::AndroidmanagementV1::PostureDetail

Additional details regarding the security posture of the device.

Attributes

advice[RW]

Corresponding admin-facing advice to mitigate this security risk and improve the security posture of the device. Corresponds to the JSON property `advice` @return [Array<Google::Apis::AndroidmanagementV1::UserFacingMessage>]

security_risk[RW]

A specific security risk that negatively affects the security posture of the device. Corresponds to the JSON property `securityRisk` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 3293
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidmanagement_v1/classes.rb, line 3298
def update!(**args)
  @advice = args[:advice] if args.key?(:advice)
  @security_risk = args[:security_risk] if args.key?(:security_risk)
end