Identity.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.resources.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/** Identity for the resource. */
@Fluent
public class Identity {
@JsonIgnore private final ClientLogger logger = new ClientLogger(Identity.class);
/*
* The principal ID of resource identity.
*/
@JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY)
private String principalId;
/*
* The tenant ID of resource.
*/
@JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY)
private String tenantId;
/*
* The identity type.
*/
@JsonProperty(value = "type")
private ResourceIdentityType type;
/*
* The list of user 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, IdentityUserAssignedIdentitiesValue> userAssignedIdentities;
/**
* Get the principalId property: The principal ID of resource identity.
*
* @return the principalId value.
*/
public String principalId() {
return this.principalId;
}
/**
* Get the tenantId property: The tenant ID of resource.
*
* @return the tenantId value.
*/
public String tenantId() {
return this.tenantId;
}
/**
* Get the type property: The identity type.
*
* @return the type value.
*/
public ResourceIdentityType type() {
return this.type;
}
/**
* Set the type property: The identity type.
*
* @param type the type value to set.
* @return the Identity object itself.
*/
public Identity withType(ResourceIdentityType type) {
this.type = type;
return this;
}
/**
* Get the userAssignedIdentities property: The list of user 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, IdentityUserAssignedIdentitiesValue> userAssignedIdentities() {
return this.userAssignedIdentities;
}
/**
* Set the userAssignedIdentities property: The list of user 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 Identity object itself.
*/
public Identity withUserAssignedIdentities(
Map<String, IdentityUserAssignedIdentitiesValue> userAssignedIdentities) {
this.userAssignedIdentities = userAssignedIdentities;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (userAssignedIdentities() != null) {
userAssignedIdentities()
.values()
.forEach(
e -> {
if (e != null) {
e.validate();
}
});
}
}
}