Package com.microsoft.graph.models
Class Fido2AuthenticationMethodConfiguration
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AuthenticationMethodConfiguration
com.microsoft.graph.models.Fido2AuthenticationMethodConfiguration
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class Fido2AuthenticationMethodConfiguration
extends AuthenticationMethodConfiguration
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Fido2Authentication Method Configuration.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Include Targets.The Is Attestation Enforced.The Is Self Service Registration Allowed.The Key Restrictions.Fields inherited from class com.microsoft.graph.models.AuthenticationMethodConfiguration
state -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
isAttestationEnforced
@SerializedName(value="isAttestationEnforced", alternate="IsAttestationEnforced") @Expose @Nullable public Boolean isAttestationEnforcedThe Is Attestation Enforced. Determines whether attestation must be enforced for FIDO2 security key registration. -
isSelfServiceRegistrationAllowed
@SerializedName(value="isSelfServiceRegistrationAllowed", alternate="IsSelfServiceRegistrationAllowed") @Expose @Nullable public Boolean isSelfServiceRegistrationAllowedThe Is Self Service Registration Allowed. Determines if users can register new FIDO2 security keys. -
keyRestrictions
@SerializedName(value="keyRestrictions", alternate="KeyRestrictions") @Expose @Nullable public Fido2KeyRestrictions keyRestrictionsThe Key Restrictions. Controls whether key restrictions are enforced on FIDO2 security keys, either allowing or disallowing certain key types as defined by Authenticator Attestation GUID (AAGUID), an identifier that indicates the type (e.g. make and model) of the authenticator. -
includeTargets
@SerializedName(value="includeTargets", alternate="IncludeTargets") @Expose @Nullable public AuthenticationMethodTargetCollectionPage includeTargetsThe Include Targets. A collection of users or groups who are enabled to use the authentication method.
-
-
Constructor Details
-
Fido2AuthenticationMethodConfiguration
public Fido2AuthenticationMethodConfiguration()
-
-
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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classAuthenticationMethodConfiguration- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-