Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_infoGoogle::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_devicesArray<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_supportedBoolean Also known as: eprivacy_supported?

Output only. Is ePrivacy screen supported or not. Corresponds to the JSON property eprivacySupported

Returns:

  • (Boolean)


1851
1852
1853
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1851

def eprivacy_supported
  @eprivacy_supported
end

#touch_screen_infoGoogle::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