class Google::Apis::AndroidmanagementV1::SystemUpdateInfo
Information about a potential pending system update.
Attributes
update_received_time[RW]
The time when the update was first available. A zero value indicates that this field is not set. This field is set only if an update is available (that is, updateStatus is neither UPDATE_STATUS_UNKNOWN nor UP_TO_DATE). Corresponds to the JSON property `updateReceivedTime` @return [String]
update_status[RW]
The status of an update: whether an update exists and what type it is. Corresponds to the JSON property `updateStatus` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 3788 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 3793 def update!(**args) @update_received_time = args[:update_received_time] if args.key?(:update_received_time) @update_status = args[:update_status] if args.key?(:update_status) end