Package com.microsoft.graph.models
Class DeviceLocalCredential
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.DeviceLocalCredential
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class DeviceLocalCredential
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Device Local Credential.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Account Name.The Account Sid.The Backup Date Time.The Password Base64. -
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
-
accountName
@SerializedName(value="accountName", alternate="AccountName") @Expose @Nullable public String accountNameThe Account Name. The name of the local admin account for which LAPS is enabled. -
accountSid
@SerializedName(value="accountSid", alternate="AccountSid") @Expose @Nullable public String accountSidThe Account Sid. The SID of the local admin account for which LAPS is enabled. -
backupDateTime
@SerializedName(value="backupDateTime", alternate="BackupDateTime") @Expose @Nullable public OffsetDateTime backupDateTimeThe Backup Date Time. When the local administrator account credential for the device object was backed up to Azure Active Directory. -
passwordBase64
@SerializedName(value="passwordBase64", alternate="PasswordBase64") @Expose @Nullable public String passwordBase64The Password Base64. The password for the local administrator account that is backed up to Azure Active Directory and returned as a Base64 encoded value.
-
-
Constructor Details
-
DeviceLocalCredential
public DeviceLocalCredential()
-
-
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 classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-