Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsInfo
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsInfo
- 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 provides device information, which is static and will not change over time. * Data for this field is controlled via policy: ReportDeviceGraphicsStatus * 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_GRAPHICS_INFO
Instance Attribute Summary collapse
-
#adapter_info ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsAdapterInfo
Information of a graphics adapter (GPU).
-
#display_devices ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DisplayDevice>
Output only.
-
#eprivacy_supported ⇒ Boolean
(also: #eprivacy_supported?)
Output only.
-
#touch_screen_info ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TouchScreenInfo
Information on the device touch screen.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1GraphicsInfo
constructor
A new instance of GoogleChromeManagementV1GraphicsInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1GraphicsInfo
Returns a new instance of GoogleChromeManagementV1GraphicsInfo.
1859 1860 1861 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1859 def initialize(**args) update!(**args) end |
Instance Attribute Details
#adapter_info ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsAdapterInfo
Information of a graphics adapter (GPU).
Corresponds to the JSON property adapterInfo
1841 1842 1843 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1841 def adapter_info @adapter_info end |
#display_devices ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DisplayDevice>
Output only. Information about the display(s) of the device.
Corresponds to the JSON property displayDevices
1846 1847 1848 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1846 def display_devices @display_devices end |
#eprivacy_supported ⇒ Boolean Also known as: eprivacy_supported?
Output only. Is ePrivacy screen supported or not.
Corresponds to the JSON property eprivacySupported
1851 1852 1853 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1851 def eprivacy_supported @eprivacy_supported end |
#touch_screen_info ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TouchScreenInfo
Information on the device touch screen.
Corresponds to the JSON property touchScreenInfo
1857 1858 1859 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1857 def touch_screen_info @touch_screen_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1864 1865 1866 1867 1868 1869 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1864 def update!(**args) @adapter_info = args[:adapter_info] if args.key?(:adapter_info) @display_devices = args[:display_devices] if args.key?(:display_devices) @eprivacy_supported = args[:eprivacy_supported] if args.key?(:eprivacy_supported) @touch_screen_info = args[:touch_screen_info] if args.key?(:touch_screen_info) end |