Package com.microsoft.graph.models
Class FederatedIdentityCredential
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.FederatedIdentityCredential
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class FederatedIdentityCredential
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Federated Identity Credential.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Audiences.The Description.The Issuer.The Name.The Subject. -
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
-
audiences
@SerializedName(value="audiences", alternate="Audiences") @Expose @Nullable public List<String> audiencesThe Audiences. The audience that can appear in the external token. This field is mandatory and should be set to api://AzureADTokenExchange for Azure AD. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. This field can only accept a single value and has a limit of 600 characters. Required. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. The un-validated, user-provided description of the federated identity credential. It has a limit of 600 characters. Optional. -
issuer
The Issuer. The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. It has a limit of 600 characters. Required. -
name
The Name. is the unique identifier for the federated identity credential, which has a limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). -
subject
The Subject. Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. It has a limit of 600 characters. Supports $filter (eq).
-
-
Constructor Details
-
FederatedIdentityCredential
public FederatedIdentityCredential()
-
-
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 classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-