Class: Google::Apis::AdminDirectoryV1::OsUpdateStatus
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::OsUpdateStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
Overview
Contains information regarding the current OS update status.
Instance Attribute Summary collapse
-
#reboot_time ⇒ String
Date and time of the last reboot.
-
#state ⇒ String
The update state of an OS update.
-
#target_kiosk_app_version ⇒ String
New required platform version from the pending updated kiosk app.
-
#target_os_version ⇒ String
New platform version of the OS image being downloaded and applied.
-
#update_check_time ⇒ String
Date and time of the last update check.
-
#update_time ⇒ String
Date and time of the last successful OS update.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OsUpdateStatus
constructor
A new instance of OsUpdateStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OsUpdateStatus
Returns a new instance of OsUpdateStatus.
3538 3539 3540 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3538 def initialize(**args) update!(**args) end |
Instance Attribute Details
#reboot_time ⇒ String
Date and time of the last reboot.
Corresponds to the JSON property rebootTime
3507 3508 3509 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3507 def reboot_time @reboot_time end |
#state ⇒ String
The update state of an OS update.
Corresponds to the JSON property state
3512 3513 3514 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3512 def state @state end |
#target_kiosk_app_version ⇒ String
New required platform version from the pending updated kiosk app.
Corresponds to the JSON property targetKioskAppVersion
3517 3518 3519 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3517 def target_kiosk_app_version @target_kiosk_app_version end |
#target_os_version ⇒ String
New platform version of the OS image being downloaded and applied. It is only
set when update status is UPDATE_STATUS_DOWNLOAD_IN_PROGRESS or
UPDATE_STATUS_NEED_REBOOT. Note this could be a dummy "0.0.0.0" for
UPDATE_STATUS_NEED_REBOOT for some edge cases, e.g. update engine is restarted
without a reboot.
Corresponds to the JSON property targetOsVersion
3526 3527 3528 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3526 def target_os_version @target_os_version end |
#update_check_time ⇒ String
Date and time of the last update check.
Corresponds to the JSON property updateCheckTime
3531 3532 3533 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3531 def update_check_time @update_check_time end |
#update_time ⇒ String
Date and time of the last successful OS update.
Corresponds to the JSON property updateTime
3536 3537 3538 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3536 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3543 3544 3545 3546 3547 3548 3549 3550 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3543 def update!(**args) @reboot_time = args[:reboot_time] if args.key?(:reboot_time) @state = args[:state] if args.key?(:state) @target_kiosk_app_version = args[:target_kiosk_app_version] if args.key?(:target_kiosk_app_version) @target_os_version = args[:target_os_version] if args.key?(:target_os_version) @update_check_time = args[:update_check_time] if args.key?(:update_check_time) @update_time = args[:update_time] if args.key?(:update_time) end |