Struct google_androidmanagement1::NonComplianceDetailCondition[][src]

pub struct NonComplianceDetailCondition {
    pub package_name: Option<String>,
    pub setting_name: Option<String>,
    pub non_compliance_reason: Option<String>,
}

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.

This type is not used in any activity, and only used as part of another schema.

Fields

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

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.

The reason the device is not in compliance with the setting. If not set, then this condition matches any reason.

Trait Implementations

impl Default for NonComplianceDetailCondition
[src]

Returns the "default value" for a type. Read more

impl Clone for NonComplianceDetailCondition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NonComplianceDetailCondition
[src]

Formats the value using the given formatter. Read more

impl Part for NonComplianceDetailCondition
[src]

Auto Trait Implementations