Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1KioskAppStatusReport
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1KioskAppStatusReport
- 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
Kiosk app status report of a device. * Available for Kiosks * This field provides the app id and version number running on a kiosk device and the timestamp of when the report was last updated * Data for this field is controlled via policy: ReportDeviceSessionStatus * Data Collection Frequency: Only at Upload * Default Data Reporting Frequency: 3 hours - Policy Controlled: Yes
- Cache: If the device is offline, the collected data is stored locally, and will be reported when the device is next online: No * Reported for affiliated users only: N/A * Granular permission needed: TELEMETRY_API_APPS_REPORT
Instance Attribute Summary collapse
-
#app_id ⇒ String
App id of kiosk app for example "mdmkkicfmmkgmpkmkdikhlbggogpicma" Corresponds to the JSON property
appId. -
#app_version ⇒ String
App version number of kiosk app for example "1.10.118" Corresponds to the JSON property
appVersion. -
#report_time ⇒ String
Timestamp of when report was collected Corresponds to the JSON property
reportTime.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1KioskAppStatusReport
constructor
A new instance of GoogleChromeManagementV1KioskAppStatusReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1KioskAppStatusReport
Returns a new instance of GoogleChromeManagementV1KioskAppStatusReport.
1743 1744 1745 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1743 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_id ⇒ String
App id of kiosk app for example "mdmkkicfmmkgmpkmkdikhlbggogpicma"
Corresponds to the JSON property appId
1731 1732 1733 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1731 def app_id @app_id end |
#app_version ⇒ String
App version number of kiosk app for example "1.10.118"
Corresponds to the JSON property appVersion
1736 1737 1738 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1736 def app_version @app_version end |
#report_time ⇒ String
Timestamp of when report was collected
Corresponds to the JSON property reportTime
1741 1742 1743 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1741 def report_time @report_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1748 1749 1750 1751 1752 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1748 def update!(**args) @app_id = args[:app_id] if args.key?(:app_id) @app_version = args[:app_version] if args.key?(:app_version) @report_time = args[:report_time] if args.key?(:report_time) end |