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.
2082 2083 2084 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2082 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
2070 2071 2072 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2070 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
2075 2076 2077 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2075 def app_version @app_version end |
#report_time ⇒ String
Timestamp of when report was collected
Corresponds to the JSON property reportTime
2080 2081 2082 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2080 def report_time @report_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2087 2088 2089 2090 2091 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2087 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 |