Class: Google::Apis::AndroidmanagementV1::SecurityPosture

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SecurityPosture

Returns a new instance of SecurityPosture.



5309
5310
5311
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5309

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#device_postureString

Device's security posture value. Corresponds to the JSON property devicePosture

Returns:

  • (String)


5302
5303
5304
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5302

def device_posture
  @device_posture
end

#posture_detailsArray<Google::Apis::AndroidmanagementV1::PostureDetail>

Additional details regarding the security posture of the device. Corresponds to the JSON property postureDetails



5307
5308
5309
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5307

def posture_details
  @posture_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5314
5315
5316
5317
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5314

def update!(**args)
  @device_posture = args[:device_posture] if args.key?(:device_posture)
  @posture_details = args[:posture_details] if args.key?(:posture_details)
end