Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport

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

Boot performance report of a device. * This field is telemetry information and this will change over time as the device is utilized. * Data for this field is controlled via policy: ReportDeviceBootMode * Data Collection Frequency: On every boot up event * 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: Yes * Reported for affiliated users only: N/A * Granular permission needed: TELEMETRY_API_OS_REPORT

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1BootPerformanceReport

Returns a new instance of GoogleChromeManagementV1BootPerformanceReport.



498
499
500
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 498

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

Instance Attribute Details

#boot_up_durationString

Total time to boot up. Corresponds to the JSON property bootUpDuration

Returns:

  • (String)


471
472
473
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 471

def boot_up_duration
  @boot_up_duration
end

#boot_up_timeString

The timestamp when power came on. Corresponds to the JSON property bootUpTime

Returns:

  • (String)


476
477
478
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 476

def boot_up_time
  @boot_up_time
end

#report_timeString

Timestamp when the report was collected. Corresponds to the JSON property reportTime

Returns:

  • (String)


481
482
483
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 481

def report_time
  @report_time
end

#shutdown_durationString

Total time since shutdown start to power off. Corresponds to the JSON property shutdownDuration

Returns:

  • (String)


486
487
488
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 486

def shutdown_duration
  @shutdown_duration
end

#shutdown_reasonString

The shutdown reason. Corresponds to the JSON property shutdownReason

Returns:

  • (String)


491
492
493
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 491

def shutdown_reason
  @shutdown_reason
end

#shutdown_timeString

The timestamp when shutdown. Corresponds to the JSON property shutdownTime

Returns:

  • (String)


496
497
498
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 496

def shutdown_time
  @shutdown_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



503
504
505
506
507
508
509
510
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 503

def update!(**args)
  @boot_up_duration = args[:boot_up_duration] if args.key?(:boot_up_duration)
  @boot_up_time = args[:boot_up_time] if args.key?(:boot_up_time)
  @report_time = args[:report_time] if args.key?(:report_time)
  @shutdown_duration = args[:shutdown_duration] if args.key?(:shutdown_duration)
  @shutdown_reason = args[:shutdown_reason] if args.key?(:shutdown_reason)
  @shutdown_time = args[:shutdown_time] if args.key?(:shutdown_time)
end