5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 17:12:31 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/WindowsIdentityProtectionConfigurationModel.go

38 lines
4.1 KiB
Go

// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// WindowsIdentityProtectionConfiguration This entity provides descriptions of the declared methods, properties and relationships exposed by Windows Hello for Business.
type WindowsIdentityProtectionConfiguration struct {
// DeviceConfiguration is the base model of WindowsIdentityProtectionConfiguration
DeviceConfiguration
// UseSecurityKeyForSignin Boolean value used to enable the Windows Hello security key as a logon credential.
UseSecurityKeyForSignin *bool `json:"useSecurityKeyForSignin,omitempty"`
// EnhancedAntiSpoofingForFacialFeaturesEnabled Boolean value used to enable enhanced anti-spoofing for facial feature recognition on Windows Hello face authentication.
EnhancedAntiSpoofingForFacialFeaturesEnabled *bool `json:"enhancedAntiSpoofingForFacialFeaturesEnabled,omitempty"`
// PinMinimumLength Integer value that sets the minimum number of characters required for the Windows Hello for Business PIN. Valid values are 4 to 127 inclusive and less than or equal to the value set for the maximum PIN. Valid values 4 to 127
PinMinimumLength *int `json:"pinMinimumLength,omitempty"`
// PinMaximumLength Integer value that sets the maximum number of characters allowed for the work PIN. Valid values are 4 to 127 inclusive and greater than or equal to the value set for the minimum PIN. Valid values 4 to 127
PinMaximumLength *int `json:"pinMaximumLength,omitempty"`
// PinUppercaseCharactersUsage This value configures the use of uppercase characters in the Windows Hello for Business PIN.
PinUppercaseCharactersUsage *ConfigurationUsage `json:"pinUppercaseCharactersUsage,omitempty"`
// PinLowercaseCharactersUsage This value configures the use of lowercase characters in the Windows Hello for Business PIN.
PinLowercaseCharactersUsage *ConfigurationUsage `json:"pinLowercaseCharactersUsage,omitempty"`
// PinSpecialCharactersUsage Controls the ability to use special characters in the Windows Hello for Business PIN.
PinSpecialCharactersUsage *ConfigurationUsage `json:"pinSpecialCharactersUsage,omitempty"`
// PinExpirationInDays Integer value specifies the period (in days) that a PIN can be used before the system requires the user to change it. Valid values are 0 to 730 inclusive. Valid values 0 to 730
PinExpirationInDays *int `json:"pinExpirationInDays,omitempty"`
// PinPreviousBlockCount 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. Valid values 0 to 50
PinPreviousBlockCount *int `json:"pinPreviousBlockCount,omitempty"`
// PinRecoveryEnabled Boolean value that enables a user to change their PIN by using the Windows Hello for Business PIN recovery service.
PinRecoveryEnabled *bool `json:"pinRecoveryEnabled,omitempty"`
// SecurityDeviceRequired 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.
SecurityDeviceRequired *bool `json:"securityDeviceRequired,omitempty"`
// UnlockWithBiometricsEnabled 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.
UnlockWithBiometricsEnabled *bool `json:"unlockWithBiometricsEnabled,omitempty"`
// UseCertificatesForOnPremisesAuthEnabled Boolean value that enables Windows Hello for Business to use certificates to authenticate on-premise resources.
UseCertificatesForOnPremisesAuthEnabled *bool `json:"useCertificatesForOnPremisesAuthEnabled,omitempty"`
// WindowsHelloForBusinessBlocked Boolean value that blocks Windows Hello for Business as a method for signing into Windows.
WindowsHelloForBusinessBlocked *bool `json:"windowsHelloForBusinessBlocked,omitempty"`
}