Class: Google::Apis::AndroidmanagementV1::NonComplianceDetail

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

Provides detail about non-compliance with a policy setting.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NonComplianceDetail

Returns a new instance of NonComplianceDetail.



3716
3717
3718
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3716

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

Instance Attribute Details

#current_valueObject

If the policy setting could not be applied, the current value of the setting on the device. Corresponds to the JSON property currentValue

Returns:

  • (Object)


3670
3671
3672
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3670

def current_value
  @current_value
end

#field_pathString

For settings with nested fields, if a particular nested field is out of compliance, this specifies the full path to the offending field. The path is formatted in the same way the policy JSON field would be referenced in JavaScript, that is: 1) For object-typed fields, the field name is followed by a dot then by a subfield name. 2) For array-typed fields, the field name is followed by the array index enclosed in brackets. For example, to indicate a problem with the url field in the externalData field in the 3rd application, the path would be applications[2].externalData.url Corresponds to the JSON property fieldPath

Returns:

  • (String)


3682
3683
3684
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3682

def field_path
  @field_path
end

#installation_failure_reasonString

If package_name is set and the non-compliance reason is APP_NOT_INSTALLED or APP_NOT_UPDATED, the detailed reason the app can't be installed or updated. Corresponds to the JSON property installationFailureReason

Returns:

  • (String)


3688
3689
3690
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3688

def installation_failure_reason
  @installation_failure_reason
end

#non_compliance_reasonString

The reason the device is not in compliance with the setting. Corresponds to the JSON property nonComplianceReason

Returns:

  • (String)


3693
3694
3695
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3693

def non_compliance_reason
  @non_compliance_reason
end

#package_nameString

The package name indicating which app is out of compliance, if applicable. Corresponds to the JSON property packageName

Returns:

  • (String)


3698
3699
3700
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3698

def package_name
  @package_name
end

#setting_nameString

The name of the policy setting. This is the JSON field name of a top-level Policy field. Corresponds to the JSON property settingName

Returns:

  • (String)


3704
3705
3706
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3704

def setting_name
  @setting_name
end

#specific_non_compliance_contextGoogle::Apis::AndroidmanagementV1::SpecificNonComplianceContext

Additional context for SpecificNonComplianceReason. Corresponds to the JSON property specificNonComplianceContext



3709
3710
3711
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3709

def specific_non_compliance_context
  @specific_non_compliance_context
end

#specific_non_compliance_reasonString

The policy-specific reason the device is not in compliance with the setting. Corresponds to the JSON property specificNonComplianceReason

Returns:

  • (String)


3714
3715
3716
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3714

def specific_non_compliance_reason
  @specific_non_compliance_reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3721

def update!(**args)
  @current_value = args[:current_value] if args.key?(:current_value)
  @field_path = args[:field_path] if args.key?(:field_path)
  @installation_failure_reason = args[:installation_failure_reason] if args.key?(:installation_failure_reason)
  @non_compliance_reason = args[:non_compliance_reason] if args.key?(:non_compliance_reason)
  @package_name = args[:package_name] if args.key?(:package_name)
  @setting_name = args[:setting_name] if args.key?(:setting_name)
  @specific_non_compliance_context = args[:specific_non_compliance_context] if args.key?(:specific_non_compliance_context)
  @specific_non_compliance_reason = args[:specific_non_compliance_reason] if args.key?(:specific_non_compliance_reason)
end