pub struct DevicePolicy {
pub allowed_device_management_levels: Option<Vec<String>>,
pub allowed_encryption_statuses: Option<Vec<String>>,
pub os_constraints: Option<Vec<OsConstraint>>,
pub require_admin_approval: Option<bool>,
pub require_corp_owned: Option<bool>,
pub require_screenlock: Option<bool>,
}
Expand description
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_device_management_levels: Option<Vec<String>>
Allowed device management levels, an empty list allows all management levels.
allowed_encryption_statuses: Option<Vec<String>>
Allowed encryptions statuses, an empty list allows all statuses.
os_constraints: Option<Vec<OsConstraint>>
Allowed OS versions, an empty list allows all types and all versions.
require_admin_approval: Option<bool>
Whether the device needs to be approved by the customer admin.
require_corp_owned: Option<bool>
Whether the device needs to be corp owned.
require_screenlock: Option<bool>
Whether or not screenlock is required for the DevicePolicy to be true. Defaults to false
.
Trait Implementations§
Source§impl Clone for DevicePolicy
impl Clone for DevicePolicy
Source§fn clone(&self) -> DevicePolicy
fn clone(&self) -> DevicePolicy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DevicePolicy
impl Debug for DevicePolicy
Source§impl Default for DevicePolicy
impl Default for DevicePolicy
Source§fn default() -> DevicePolicy
fn default() -> DevicePolicy
Source§impl<'de> Deserialize<'de> for DevicePolicy
impl<'de> Deserialize<'de> for DevicePolicy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for DevicePolicy
impl Serialize for DevicePolicy
impl Part for DevicePolicy
Auto Trait Implementations§
impl Freeze for DevicePolicy
impl RefUnwindSafe for DevicePolicy
impl Send for DevicePolicy
impl Sync for DevicePolicy
impl Unpin for DevicePolicy
impl UnwindSafe for DevicePolicy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more