Struct google_accesscontextmanager1_beta::DevicePolicy[][src]

pub struct DevicePolicy {
    pub allowed_encryption_statuses: Option<Vec<String>>,
    pub allowed_device_management_levels: Option<Vec<String>>,
    pub require_screenlock: Option<bool>,
    pub os_constraints: Option<Vec<OsConstraint>>,
}

DevicePolicy specifies device specific restrictions necessary to acquire a given access level. A DevicePolicy specifies requirements for requests from devices to be granted access levels, it does not do any enforcement on the device. DevicePolicy acts as an AND over all specified fields, and each repeated field is an OR over its elements. Any unset fields are ignored. For example, if the proto is { os_type : DESKTOP_WINDOWS, os_type : DESKTOP_LINUX, encryption_status: ENCRYPTED}, then the DevicePolicy will be true for requests originating from encrypted Linux desktops and encrypted Windows desktops.

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

Fields

Allowed encryptions statuses, an empty list allows all statuses.

Allowed device management levels, an empty list allows all management levels.

Whether or not screenlock is required for the DevicePolicy to be true. Defaults to false.

Allowed OS versions, an empty list allows all types and all versions.

Trait Implementations

impl Default for DevicePolicy
[src]

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

impl Clone for DevicePolicy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DevicePolicy
[src]

Formats the value using the given formatter. Read more

impl Part for DevicePolicy
[src]

Auto Trait Implementations