Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsStatusReport
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsStatusReport
- 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
Information of the graphics subsystem. * This field is telemetry information and this will change over time as the device is utilized. * Data for this field is controlled via policy: ReportDeviceGraphicsInfo * Data Collection Frequency: 3 hours. * 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_GRAPHICS_REPORT
Instance Attribute Summary collapse
-
#displays ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DisplayInfo>
Output only.
-
#report_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1GraphicsStatusReport
constructor
A new instance of GoogleChromeManagementV1GraphicsStatusReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1GraphicsStatusReport
Returns a new instance of GoogleChromeManagementV1GraphicsStatusReport.
2043 2044 2045 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2043 def initialize(**args) update!(**args) end |
Instance Attribute Details
#displays ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DisplayInfo>
Output only. Information about the displays for the device.
Corresponds to the JSON property displays
2036 2037 2038 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2036 def displays @displays end |
#report_time ⇒ String
Output only. Time at which the graphics data was reported.
Corresponds to the JSON property reportTime
2041 2042 2043 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2041 def report_time @report_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2048 2049 2050 2051 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2048 def update!(**args) @displays = args[:displays] if args.key?(:displays) @report_time = args[:report_time] if args.key?(:report_time) end |