Package com.microsoft.graph.models
Class TemporaryAccessPassAuthenticationMethodConfiguration
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AuthenticationMethodConfiguration
com.microsoft.graph.models.TemporaryAccessPassAuthenticationMethodConfiguration
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class TemporaryAccessPassAuthenticationMethodConfiguration
extends AuthenticationMethodConfiguration
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Temporary Access Pass Authentication Method Configuration.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Default Length.The Default Lifetime In Minutes.The Include Targets.The Is Usable Once.The Maximum Lifetime In Minutes.The Minimum Lifetime In Minutes.Fields inherited from class com.microsoft.graph.models.AuthenticationMethodConfiguration
state
-
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
-
defaultLength
@SerializedName(value="defaultLength", alternate="DefaultLength") @Expose @Nullable public Integer defaultLengthThe Default Length. Default length in characters of a Temporary Access Pass object. Must be between 8 and 48 characters. -
defaultLifetimeInMinutes
@SerializedName(value="defaultLifetimeInMinutes", alternate="DefaultLifetimeInMinutes") @Expose @Nullable public Integer defaultLifetimeInMinutesThe Default Lifetime In Minutes. Default lifetime in minutes for a Temporary Access Pass. Value can be any integer between the minimumLifetimeInMinutes and maximumLifetimeInMinutes. -
isUsableOnce
@SerializedName(value="isUsableOnce", alternate="IsUsableOnce") @Expose @Nullable public Boolean isUsableOnceThe Is Usable Once. If true, all the passes in the tenant will be restricted to one-time use. If false, passes in the tenant can be created to be either one-time use or reusable. -
maximumLifetimeInMinutes
@SerializedName(value="maximumLifetimeInMinutes", alternate="MaximumLifetimeInMinutes") @Expose @Nullable public Integer maximumLifetimeInMinutesThe Maximum Lifetime In Minutes. Maximum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days). -
minimumLifetimeInMinutes
@SerializedName(value="minimumLifetimeInMinutes", alternate="MinimumLifetimeInMinutes") @Expose @Nullable public Integer minimumLifetimeInMinutesThe Minimum Lifetime In Minutes. Minimum lifetime in minutes for any Temporary Access Pass created in the tenant. Value can be between 10 and 43200 minutes (equivalent to 30 days). -
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
-
TemporaryAccessPassAuthenticationMethodConfiguration
public TemporaryAccessPassAuthenticationMethodConfiguration()
-
-
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 classAuthenticationMethodConfiguration
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-