Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1OsUpdateStatus
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1OsUpdateStatus
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
Contains information regarding the current OS update status.
Instance Attribute Summary collapse
-
#last_reboot_time ⇒ String
Output only.
-
#last_update_check_time ⇒ String
Output only.
-
#last_update_time ⇒ String
Output only.
-
#new_platform_version ⇒ String
Output only.
-
#new_requested_platform_version ⇒ String
Output only.
-
#update_state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1OsUpdateStatus
constructor
A new instance of GoogleChromeManagementV1OsUpdateStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1OsUpdateStatus
Returns a new instance of GoogleChromeManagementV1OsUpdateStatus.
1576 1577 1578 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1576 def initialize(**args) update!(**args) end |
Instance Attribute Details
#last_reboot_time ⇒ String
Output only. Timestamp of the last reboot.
Corresponds to the JSON property lastRebootTime
1545 1546 1547 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1545 def last_reboot_time @last_reboot_time end |
#last_update_check_time ⇒ String
Output only. Timestamp of the last update check.
Corresponds to the JSON property lastUpdateCheckTime
1550 1551 1552 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1550 def last_update_check_time @last_update_check_time end |
#last_update_time ⇒ String
Output only. Timestamp of the last successful update.
Corresponds to the JSON property lastUpdateTime
1555 1556 1557 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1555 def last_update_time @last_update_time end |
#new_platform_version ⇒ String
Output only. New platform version of the os image being downloaded and applied.
It is only set when update status is OS_IMAGE_DOWNLOAD_IN_PROGRESS or
OS_UPDATE_NEED_REBOOT. Note this could be a dummy "0.0.0.0" for
OS_UPDATE_NEED_REBOOT status for some edge cases, e.g. update engine is
restarted without a reboot.
Corresponds to the JSON property newPlatformVersion
1564 1565 1566 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1564 def new_platform_version @new_platform_version end |
#new_requested_platform_version ⇒ String
Output only. New requested platform version from the pending updated kiosk app.
Corresponds to the JSON property newRequestedPlatformVersion
1569 1570 1571 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1569 def new_requested_platform_version @new_requested_platform_version end |
#update_state ⇒ String
Output only. Current state of the os update.
Corresponds to the JSON property updateState
1574 1575 1576 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1574 def update_state @update_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1581 1582 1583 1584 1585 1586 1587 1588 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1581 def update!(**args) @last_reboot_time = args[:last_reboot_time] if args.key?(:last_reboot_time) @last_update_check_time = args[:last_update_check_time] if args.key?(:last_update_check_time) @last_update_time = args[:last_update_time] if args.key?(:last_update_time) @new_platform_version = args[:new_platform_version] if args.key?(:new_platform_version) @new_requested_platform_version = args[:new_requested_platform_version] if args.key?(:new_requested_platform_version) @update_state = args[:update_state] if args.key?(:update_state) end |