Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent

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 reported by a managed device.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryEvent

Returns a new instance of GoogleChromeManagementV1TelemetryEvent.



2354
2355
2356
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2354

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

Instance Attribute Details

#audio_severe_underrun_eventGoogle::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent

TelemetryAudioSevereUnderrunEvent is triggered when a audio devices run out of buffer data for more than 5 seconds. Corresponds to the JSON property audioSevereUnderrunEvent



2314
2315
2316
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2314

def audio_severe_underrun_event
  @audio_severe_underrun_event
end

#deviceGoogle::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo

Information about a device associated with telemetry data. Corresponds to the JSON property device



2319
2320
2321
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2319

def device
  @device
end

#event_typeString

The event type of the current event. Corresponds to the JSON property eventType

Returns:

  • (String)


2324
2325
2326
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2324

def event_type
  @event_type
end

#https_latency_change_eventGoogle::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent

Https latency routine is run periodically and TelemetryHttpsLatencyChangeEvent is triggered if a latency problem was detected or if the device has recovered from a latency problem.. Corresponds to the JSON property httpsLatencyChangeEvent



2331
2332
2333
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2331

def https_latency_change_event
  @https_latency_change_event
end

#nameString

Output only. Resource name of the event. Corresponds to the JSON property name

Returns:

  • (String)


2336
2337
2338
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2336

def name
  @name
end

#network_connection_state_change_eventGoogle::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent

TelemetryNetworkConnectionStateChangeEvent is triggered on network connection state changes. Corresponds to the JSON property networkConnectionStateChangeEvent



2342
2343
2344
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2342

def network_connection_state_change_event
  @network_connection_state_change_event
end

#report_timeString

Timestamp that represents when the event was reported. Corresponds to the JSON property reportTime

Returns:

  • (String)


2347
2348
2349
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2347

def report_time
  @report_time
end

#userGoogle::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo

Information about a user associated with telemetry data. Corresponds to the JSON property user



2352
2353
2354
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2352

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2359

def update!(**args)
  @audio_severe_underrun_event = args[:audio_severe_underrun_event] if args.key?(:audio_severe_underrun_event)
  @device = args[:device] if args.key?(:device)
  @event_type = args[:event_type] if args.key?(:event_type)
  @https_latency_change_event = args[:https_latency_change_event] if args.key?(:https_latency_change_event)
  @name = args[:name] if args.key?(:name)
  @network_connection_state_change_event = args[:network_connection_state_change_event] if args.key?(:network_connection_state_change_event)
  @report_time = args[:report_time] if args.key?(:report_time)
  @user = args[:user] if args.key?(:user)
end