Class: Google::Apis::AndroidmanagementV1::NonComplianceDetailCondition

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

Overview

A compliance rule condition which is satisfied if there exists any matching NonComplianceDetail for the device. A NonComplianceDetail matches a NonComplianceDetailCondition if all the fields which are set within the NonComplianceDetailCondition match the corresponding NonComplianceDetail fields.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NonComplianceDetailCondition

Returns a new instance of NonComplianceDetailCondition.



2017
2018
2019
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2017

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

Instance Attribute Details

#non_compliance_reasonString

The reason the device is not in compliance with the setting. If not set, then this condition matches any reason. Corresponds to the JSON property nonComplianceReason

Returns:

  • (String)


2003
2004
2005
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2003

def non_compliance_reason
  @non_compliance_reason
end

#package_nameString

The package name of the app that's out of compliance. If not set, then this condition matches any package name. Corresponds to the JSON property packageName

Returns:

  • (String)


2009
2010
2011
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2009

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. If not set, then this condition matches any setting name. Corresponds to the JSON property settingName

Returns:

  • (String)


2015
2016
2017
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2015

def setting_name
  @setting_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2022
2023
2024
2025
2026
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2022

def update!(**args)
  @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)
end