Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.appservice; import java.util.Map; import com.fasterxml.jackson.annotation.JsonProperty;
Managed service identity.
/** * Managed service identity. */
public class ManagedServiceIdentity {
Type of managed service identity. Possible values include: 'None', 'SystemAssigned', 'UserAssigned'.
/** * Type of managed service identity. Possible values include: 'None', * 'SystemAssigned', 'UserAssigned'. */
@JsonProperty(value = "type") private ManagedServiceIdentityType type;
Tenant of managed service identity.
/** * Tenant of managed service identity. */
@JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY) private String tenantId;
Principal Id of managed service identity.
/** * Principal Id of managed service identity. */
@JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY) private String principalId;
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}.
/** * The list of user assigned identities associated with the resource. The * user identity dictionary key references will be ARM resource ids in the * form: * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. */
@JsonProperty(value = "userAssignedIdentities") private Map<String, ManagedServiceIdentityUserAssignedIdentitiesValue> userAssignedIdentities;
Get type of managed service identity. Possible values include: 'None', 'SystemAssigned', 'UserAssigned'.
Returns:the type value
/** * Get type of managed service identity. Possible values include: 'None', 'SystemAssigned', 'UserAssigned'. * * @return the type value */
public ManagedServiceIdentityType type() { return this.type; }
Set type of managed service identity. Possible values include: 'None', 'SystemAssigned', 'UserAssigned'.
Params:
  • type – the type value to set
Returns:the ManagedServiceIdentity object itself.
/** * Set type of managed service identity. Possible values include: 'None', 'SystemAssigned', 'UserAssigned'. * * @param type the type value to set * @return the ManagedServiceIdentity object itself. */
public ManagedServiceIdentity withType(ManagedServiceIdentityType type) { this.type = type; return this; }
Get tenant of managed service identity.
Returns:the tenantId value
/** * Get tenant of managed service identity. * * @return the tenantId value */
public String tenantId() { return this.tenantId; }
Get principal Id of managed service identity.
Returns:the principalId value
/** * Get principal Id of managed service identity. * * @return the principalId value */
public String principalId() { return this.principalId; }
Get the list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}.
Returns:the userAssignedIdentities value
/** * Get the list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. * * @return the userAssignedIdentities value */
public Map<String, ManagedServiceIdentityUserAssignedIdentitiesValue> userAssignedIdentities() { return this.userAssignedIdentities; }
Set the list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}.
Params:
  • userAssignedIdentities – the userAssignedIdentities value to set
Returns:the ManagedServiceIdentity object itself.
/** * Set the list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. * * @param userAssignedIdentities the userAssignedIdentities value to set * @return the ManagedServiceIdentity object itself. */
public ManagedServiceIdentity withUserAssignedIdentities(Map<String, ManagedServiceIdentityUserAssignedIdentitiesValue> userAssignedIdentities) { this.userAssignedIdentities = userAssignedIdentities; return this; } }