Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserDevice

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

Telemetry data collected for a managed user and device. * Granular permission needed: TELEMETRY_API_DEVICE

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryUserDevice

Returns a new instance of GoogleChromeManagementV1TelemetryUserDevice.



2933
2934
2935
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2933

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#audio_status_reportArray<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport>

Output only. Audio reports collected periodically sorted in a decreasing order of report_time. Corresponds to the JSON property audioStatusReport



2913
2914
2915
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2913

def audio_status_report
  @audio_status_report
end

#device_activity_reportArray<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DeviceActivityReport>

Output only. Device activity reports collected periodically sorted in a decreasing order of report_time. Corresponds to the JSON property deviceActivityReport



2919
2920
2921
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2919

def device_activity_report
  @device_activity_report
end

#device_idString

The unique Directory API ID of the device. This value is the same as the Admin Console's Directory API ID in the ChromeOS Devices tab. Corresponds to the JSON property deviceId

Returns:

  • (String)


2925
2926
2927
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2925

def device_id
  @device_id
end

#peripherals_reportArray<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1PeripheralsReport>

Output only. Peripherals reports collected periodically sorted in a decreasing order of report_time. Corresponds to the JSON property peripheralsReport



2931
2932
2933
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2931

def peripherals_report
  @peripherals_report
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2938
2939
2940
2941
2942
2943
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2938

def update!(**args)
  @audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
  @device_activity_report = args[:device_activity_report] if args.key?(:device_activity_report)
  @device_id = args[:device_id] if args.key?(:device_id)
  @peripherals_report = args[:peripherals_report] if args.key?(:peripherals_report)
end