Class: Google::Apis::AndroidmanagementV1::StatusReportingSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb

Overview

Settings controlling the behavior of status reports.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StatusReportingSettings

Returns a new instance of StatusReportingSettings.



3534
3535
3536
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3534

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

Instance Attribute Details

#application_reporting_settingsGoogle::Apis::AndroidmanagementV1::ApplicationReportingSettings

Settings controlling the behavior of application reports. Corresponds to the JSON property applicationReportingSettings



3469
3470
3471
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3469

def application_reporting_settings
  @application_reporting_settings
end

#application_reports_enabledBoolean Also known as: application_reports_enabled?

Whether app reports are enabled. Corresponds to the JSON property applicationReportsEnabled

Returns:

  • (Boolean)


3474
3475
3476
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3474

def application_reports_enabled
  @application_reports_enabled
end

#common_criteria_mode_enabledBoolean Also known as: common_criteria_mode_enabled?

Whether Common Criteria Mode reporting is enabled. Corresponds to the JSON property commonCriteriaModeEnabled

Returns:

  • (Boolean)


3480
3481
3482
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3480

def common_criteria_mode_enabled
  @common_criteria_mode_enabled
end

#device_settings_enabledBoolean Also known as: device_settings_enabled?

Whether device settings reporting is enabled. Corresponds to the JSON property deviceSettingsEnabled

Returns:

  • (Boolean)


3486
3487
3488
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3486

def device_settings_enabled
  @device_settings_enabled
end

#display_info_enabledBoolean Also known as: display_info_enabled?

Whether displays reporting is enabled. Report data is not available for personally owned devices with work profiles. Corresponds to the JSON property displayInfoEnabled

Returns:

  • (Boolean)


3493
3494
3495
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3493

def display_info_enabled
  @display_info_enabled
end

#hardware_status_enabledBoolean Also known as: hardware_status_enabled?

Whether hardware status reporting is enabled. Report data is not available for personally owned devices with work profiles. Corresponds to the JSON property hardwareStatusEnabled

Returns:

  • (Boolean)


3500
3501
3502
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3500

def hardware_status_enabled
  @hardware_status_enabled
end

#memory_info_enabledBoolean Also known as: memory_info_enabled?

Whether memory reporting is enabled. Corresponds to the JSON property memoryInfoEnabled

Returns:

  • (Boolean)


3506
3507
3508
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3506

def memory_info_enabled
  @memory_info_enabled
end

#network_info_enabledBoolean Also known as: network_info_enabled?

Whether network info reporting is enabled. Corresponds to the JSON property networkInfoEnabled

Returns:

  • (Boolean)


3512
3513
3514
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3512

def network_info_enabled
  @network_info_enabled
end

#power_management_events_enabledBoolean Also known as: power_management_events_enabled?

Whether power management event reporting is enabled. Report data is not available for personally owned devices with work profiles. Corresponds to the JSON property powerManagementEventsEnabled

Returns:

  • (Boolean)


3519
3520
3521
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3519

def power_management_events_enabled
  @power_management_events_enabled
end

#software_info_enabledBoolean Also known as: software_info_enabled?

Whether software info reporting is enabled. Corresponds to the JSON property softwareInfoEnabled

Returns:

  • (Boolean)


3525
3526
3527
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3525

def software_info_enabled
  @software_info_enabled
end

#system_properties_enabledBoolean Also known as: system_properties_enabled?

Whether system properties reporting is enabled. Corresponds to the JSON property systemPropertiesEnabled

Returns:

  • (Boolean)


3531
3532
3533
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3531

def system_properties_enabled
  @system_properties_enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3539

def update!(**args)
  @application_reporting_settings = args[:application_reporting_settings] if args.key?(:application_reporting_settings)
  @application_reports_enabled = args[:application_reports_enabled] if args.key?(:application_reports_enabled)
  @common_criteria_mode_enabled = args[:common_criteria_mode_enabled] if args.key?(:common_criteria_mode_enabled)
  @device_settings_enabled = args[:device_settings_enabled] if args.key?(:device_settings_enabled)
  @display_info_enabled = args[:display_info_enabled] if args.key?(:display_info_enabled)
  @hardware_status_enabled = args[:hardware_status_enabled] if args.key?(:hardware_status_enabled)
  @memory_info_enabled = args[:memory_info_enabled] if args.key?(:memory_info_enabled)
  @network_info_enabled = args[:network_info_enabled] if args.key?(:network_info_enabled)
  @power_management_events_enabled = args[:power_management_events_enabled] if args.key?(:power_management_events_enabled)
  @software_info_enabled = args[:software_info_enabled] if args.key?(:software_info_enabled)
  @system_properties_enabled = args[:system_properties_enabled] if args.key?(:system_properties_enabled)
end