class Google::Apis::AndroidmanagementV1::SecurityPosture

The security posture of the device, as determined by the current device state and the policies applied.

Attributes

device_posture[RW]

Device's security posture value. Corresponds to the JSON property `devicePosture` @return [String]

posture_details[RW]

Additional details regarding the security posture of the device. Corresponds to the JSON property `postureDetails` @return [Array<Google::Apis::AndroidmanagementV1::PostureDetail>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 3389
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 3394
def update!(**args)
  @device_posture = args[:device_posture] if args.key?(:device_posture)
  @posture_details = args[:posture_details] if args.key?(:posture_details)
end