MicrosoftGraphApiApplication Class
- java.
lang. Object - com.
azure. resourcemanager. authorization. fluent. models. MicrosoftGraphApiApplication
- com.
Implements
public final class MicrosoftGraphApiApplication
implements JsonSerializable<MicrosoftGraphApiApplication>
apiApplication.
Constructor Summary
Constructor | Description |
---|---|
MicrosoftGraphApiApplication() |
Creates an instance of Microsoft |
Method Summary
Modifier and Type | Method and Description |
---|---|
Boolean |
acceptMappedClaims()
Get the accept |
Map<String,Object> |
additionalProperties()
Get the additional |
static
Microsoft |
fromJson(JsonReader jsonReader)
Reads an instance of Microsoft |
List<UUID> |
knownClientApplications()
Get the known |
List<Microsoft |
oauth2PermissionScopes()
Get the oauth2Permission |
List<Microsoft |
preAuthorizedApplications()
Get the pre |
Integer |
requestedAccessTokenVersion()
Get the requested |
Json |
toJson(JsonWriter jsonWriter) |
void |
validate()
Validates the instance. |
Microsoft |
withAcceptMappedClaims(Boolean acceptMappedClaims)
Set the accept |
Microsoft |
withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additional |
Microsoft |
withKnownClientApplications(List<UUID> knownClientApplications)
Set the known |
Microsoft |
withOauth2PermissionScopes(List<MicrosoftGraphPermissionScope> oauth2PermissionScopes)
Set the oauth2Permission |
Microsoft |
withPreAuthorizedApplications(List<MicrosoftGraphPreAuthorizedApplication> preAuthorizedApplications)
Set the pre |
Microsoft |
withRequestedAccessTokenVersion(Integer requestedAccessTokenVersion)
Set the requested |
Methods inherited from java.lang.Object
Constructor Details
MicrosoftGraphApiApplication
public MicrosoftGraphApiApplication()
Creates an instance of MicrosoftGraphApiApplication class.
Method Details
acceptMappedClaims
public Boolean acceptMappedClaims()
Get the acceptMappedClaims property: When true, allows an application to use claims mapping without specifying a custom signing key.
Returns:
additionalProperties
public Map
Get the additionalProperties property: apiApplication.
Returns:
fromJson
public static MicrosoftGraphApiApplication fromJson(JsonReader jsonReader)
Reads an instance of MicrosoftGraphApiApplication from the JsonReader.
Parameters:
Returns:
Throws:
knownClientApplications
public List
Get the knownClientApplications property: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant.
Returns:
oauth2PermissionScopes
public List
Get the oauth2PermissionScopes property: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes.
Returns:
preAuthorizedApplications
public List
Get the preAuthorizedApplications property: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent.
Returns:
requestedAccessTokenVersion
public Integer requestedAccessTokenVersion()
Get the requestedAccessTokenVersion property: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2.
Returns:
toJson
validate
public void validate()
Validates the instance.
withAcceptMappedClaims
public MicrosoftGraphApiApplication withAcceptMappedClaims(Boolean acceptMappedClaims)
Set the acceptMappedClaims property: When true, allows an application to use claims mapping without specifying a custom signing key.
Parameters:
Returns:
withAdditionalProperties
public MicrosoftGraphApiApplication withAdditionalProperties(Map
Set the additionalProperties property: apiApplication.
Parameters:
Returns:
withKnownClientApplications
public MicrosoftGraphApiApplication withKnownClientApplications(List
Set the knownClientApplications property: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant.
Parameters:
Returns:
withOauth2PermissionScopes
public MicrosoftGraphApiApplication withOauth2PermissionScopes(List
Set the oauth2PermissionScopes property: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes.
Parameters:
Returns:
withPreAuthorizedApplications
public MicrosoftGraphApiApplication withPreAuthorizedApplications(List
Set the preAuthorizedApplications property: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent.
Parameters:
Returns:
withRequestedAccessTokenVersion
public MicrosoftGraphApiApplication withRequestedAccessTokenVersion(Integer requestedAccessTokenVersion)
Set the requestedAccessTokenVersion property: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2.
Parameters:
Returns:
Applies to
Azure SDK for Java