Package com.microsoft.graph.models
Class DeviceEnrollmentWindowsHelloForBusinessConfiguration
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.DeviceEnrollmentConfiguration
com.microsoft.graph.models.DeviceEnrollmentWindowsHelloForBusinessConfiguration
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class DeviceEnrollmentWindowsHelloForBusinessConfiguration
extends DeviceEnrollmentConfiguration
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Device Enrollment Windows Hello For Business Configuration.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Enhanced Biometrics State.The Pin Expiration In Days.The Pin Lowercase Characters Usage.The Pin Maximum Length.The Pin Minimum Length.The Pin Previous Block Count.The Pin Special Characters Usage.The Pin Uppercase Characters Usage.The Remote Passport Enabled.The Security Device Required.The State.The Unlock With Biometrics Enabled.Fields inherited from class com.microsoft.graph.models.DeviceEnrollmentConfiguration
assignments, createdDateTime, description, displayName, lastModifiedDateTime, priority, version
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
enhancedBiometricsState
@SerializedName(value="enhancedBiometricsState", alternate="EnhancedBiometricsState") @Expose @Nullable public Enablement enhancedBiometricsStateThe Enhanced Biometrics State. Controls the ability to use the anti-spoofing features for facial recognition on devices which support it. If set to disabled, anti-spoofing features are not allowed. If set to Not Configured, the user can choose whether they want to use anti-spoofing. Possible values are: notConfigured, enabled, disabled. -
pinExpirationInDays
@SerializedName(value="pinExpirationInDays", alternate="PinExpirationInDays") @Expose @Nullable public Integer pinExpirationInDaysThe Pin Expiration In Days. Controls the period of time (in days) that a PIN can be used before the system requires the user to change it. This must be set between 0 and 730, inclusive. If set to 0, the user's PIN will never expire -
pinLowercaseCharactersUsage
@SerializedName(value="pinLowercaseCharactersUsage", alternate="PinLowercaseCharactersUsage") @Expose @Nullable public WindowsHelloForBusinessPinUsage pinLowercaseCharactersUsageThe Pin Lowercase Characters Usage. Controls the ability to use lowercase letters in the Windows Hello for Business PIN. Allowed permits the use of lowercase letter(s), whereas Required ensures they are present. If set to Not Allowed, lowercase letters will not be permitted. Possible values are: allowed, required, disallowed. -
pinMaximumLength
@SerializedName(value="pinMaximumLength", alternate="PinMaximumLength") @Expose @Nullable public Integer pinMaximumLengthThe Pin Maximum Length. Controls the maximum number of characters allowed for the Windows Hello for Business PIN. This value must be between 4 and 127, inclusive. This value must be greater than or equal to the value set for the minimum PIN. -
pinMinimumLength
@SerializedName(value="pinMinimumLength", alternate="PinMinimumLength") @Expose @Nullable public Integer pinMinimumLengthThe Pin Minimum Length. Controls the minimum number of characters required for the Windows Hello for Business PIN. This value must be between 4 and 127, inclusive, and less than or equal to the value set for the maximum PIN. -
pinPreviousBlockCount
@SerializedName(value="pinPreviousBlockCount", alternate="PinPreviousBlockCount") @Expose @Nullable public Integer pinPreviousBlockCountThe Pin Previous Block Count. Controls the ability to prevent users from using past PINs. This must be set between 0 and 50, inclusive, and the current PIN of the user is included in that count. If set to 0, previous PINs are not stored. PIN history is not preserved through a PIN reset. -
pinSpecialCharactersUsage
@SerializedName(value="pinSpecialCharactersUsage", alternate="PinSpecialCharactersUsage") @Expose @Nullable public WindowsHelloForBusinessPinUsage pinSpecialCharactersUsageThe Pin Special Characters Usage. Controls the ability to use special characters in the Windows Hello for Business PIN. Allowed permits the use of special character(s), whereas Required ensures they are present. If set to Not Allowed, special character(s) will not be permitted. Possible values are: allowed, required, disallowed. -
pinUppercaseCharactersUsage
@SerializedName(value="pinUppercaseCharactersUsage", alternate="PinUppercaseCharactersUsage") @Expose @Nullable public WindowsHelloForBusinessPinUsage pinUppercaseCharactersUsageThe Pin Uppercase Characters Usage. Controls the ability to use uppercase letters in the Windows Hello for Business PIN. Allowed permits the use of uppercase letter(s), whereas Required ensures they are present. If set to Not Allowed, uppercase letters will not be permitted. Possible values are: allowed, required, disallowed. -
remotePassportEnabled
@SerializedName(value="remotePassportEnabled", alternate="RemotePassportEnabled") @Expose @Nullable public Boolean remotePassportEnabledThe Remote Passport Enabled. Controls the use of Remote Windows Hello for Business. Remote Windows Hello for Business provides the ability for a portable, registered device to be usable as a companion for desktop authentication. The desktop must be Azure AD joined and the companion device must have a Windows Hello for Business PIN. -
securityDeviceRequired
@SerializedName(value="securityDeviceRequired", alternate="SecurityDeviceRequired") @Expose @Nullable public Boolean securityDeviceRequiredThe Security Device Required. Controls whether to require a Trusted Platform Module (TPM) for provisioning Windows Hello for Business. A TPM provides an additional security benefit in that data stored on it cannot be used on other devices. If set to False, all devices can provision Windows Hello for Business even if there is not a usable TPM. -
state
The State. Controls whether to allow the device to be configured for Windows Hello for Business. If set to disabled, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones if otherwise required. If set to Not Configured, Intune will not override client defaults. Possible values are: notConfigured, enabled, disabled. -
unlockWithBiometricsEnabled
@SerializedName(value="unlockWithBiometricsEnabled", alternate="UnlockWithBiometricsEnabled") @Expose @Nullable public Boolean unlockWithBiometricsEnabledThe Unlock With Biometrics Enabled. Controls the use of biometric gestures, such as face and fingerprint, as an alternative to the Windows Hello for Business PIN. If set to False, biometric gestures are not allowed. Users must still configure a PIN as a backup in case of failures.
-
-
Constructor Details
-
DeviceEnrollmentWindowsHelloForBusinessConfiguration
public DeviceEnrollmentWindowsHelloForBusinessConfiguration()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classDeviceEnrollmentConfiguration
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-