Interface ActiveDirectoryApplication
-
- All Superinterfaces:
ActiveDirectoryObject
,HasId
,HasInnerModel<MicrosoftGraphApplicationInner>
,HasManager<AuthorizationManager>
,HasName
,Indexable
,Updatable<ActiveDirectoryApplication.Update>
public interface ActiveDirectoryApplication extends ActiveDirectoryObject, HasInnerModel<MicrosoftGraphApplicationInner>, Updatable<ActiveDirectoryApplication.Update>
An immutable client-side representation of an Azure AD application.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ActiveDirectoryApplication.Definition
Container interface for all the definitions that need to be implemented.static interface
ActiveDirectoryApplication.DefinitionStages
Grouping of all the application definition stages.static interface
ActiveDirectoryApplication.Update
The template for an application update operation, containing all the settings that can be modified.static interface
ActiveDirectoryApplication.UpdateStages
Grouping of all the application update stages.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ApplicationAccountType
accountType()
String
applicationId()
boolean
availableToOtherTenants()
Deprecated.useaccountType()
, false only when account type is "AzureADMyOrg"Map<String,CertificateCredential>
certificateCredentials()
Set<String>
identifierUris()
Map<String,PasswordCredential>
passwordCredentials()
Set<String>
replyUrls()
URL
signOnUrl()
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModel
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager
manager
-
-
-
-
Method Detail
-
applicationId
String applicationId()
- Returns:
- the application ID
-
availableToOtherTenants
@Deprecated boolean availableToOtherTenants()
Deprecated.useaccountType()
, false only when account type is "AzureADMyOrg"- Returns:
- whether the application is be available to other tenants
-
accountType
ApplicationAccountType accountType()
- Returns:
- the application account type
-
signOnUrl
URL signOnUrl()
- Returns:
- the home page of the application
-
passwordCredentials
Map<String,PasswordCredential> passwordCredentials()
- Returns:
- the mapping of password credentials from their names
-
certificateCredentials
Map<String,CertificateCredential> certificateCredentials()
- Returns:
- the mapping of certificate credentials from their names
-
-