Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion sdk/resourcemanager/azure-resourcemanager-msi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@

--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
</javaModulesSurefireArgLine>
<doclintMissingInclusion>-</doclintMissingInclusion>
</properties>

<developers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ private MsiManager(HttpPipeline httpPipeline, AzureProfile profile) {
}

/**
* Gets entry point to Azure MSI Identity resource management API.
*
* @return entry point to Azure MSI Identity resource management API
*/
public Identities identities() {
Expand All @@ -107,6 +109,8 @@ public Identities identities() {
}

/**
* Gets the authorization manager.
*
* @return the authorization manager.
*/
public AuthorizationManager authorizationManager() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,22 @@
public interface Identity
extends GroupableResource<MsiManager, IdentityInner>, Refreshable<Identity>, Updatable<Identity.Update> {
/**
* Gets id of the Azure Active Directory tenant to which the identity belongs to.
*
* @return id of the Azure Active Directory tenant to which the identity belongs to
*/
String tenantId();

/**
* Gets id of the Azure Active Directory service principal object associated with the identity.
*
* @return id of the Azure Active Directory service principal object associated with the identity
*/
String principalId();

/**
* Gets id of the Azure Active Directory application associated with the identity.
*
* @return id of the Azure Active Directory application associated with the identity
*/
String clientId();
Expand Down
Loading