com.azure.resourcemanager.network.models.ManagedServiceIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/**
* Identity for the resource.
*/
@Fluent
public final class ManagedServiceIdentity {
/*
* The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
*/
@JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY)
private String principalId;
/*
* The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.
*/
@JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY)
private String tenantId;
/*
* The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
*/
@JsonProperty(value = "type")
private ResourceIdentityType type;
/*
* The list of user identities associated with 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")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map userAssignedIdentities;
/**
* Creates an instance of ManagedServiceIdentity class.
*/
public ManagedServiceIdentity() {
}
/**
* Get the principalId property: The principal id of the system assigned identity. This property will only be
* provided for a system assigned identity.
*
* @return the principalId value.
*/
public String principalId() {
return this.principalId;
}
/**
* Get the tenantId property: The tenant id of the system assigned identity. This property will only be provided for
* a system assigned identity.
*
* @return the tenantId value.
*/
public String tenantId() {
return this.tenantId;
}
/**
* Get the type property: The type of identity used for the resource. The type 'SystemAssigned, UserAssigned'
* includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove
* any identities from the virtual machine.
*
* @return the type value.
*/
public ResourceIdentityType type() {
return this.type;
}
/**
* Set the type property: The type of identity used for the resource. The type 'SystemAssigned, UserAssigned'
* includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove
* any identities from the virtual machine.
*
* @param type the type value to set.
* @return the ManagedServiceIdentity object itself.
*/
public ManagedServiceIdentity withType(ResourceIdentityType type) {
this.type = type;
return this;
}
/**
* Get the userAssignedIdentities property: The list of user identities associated with 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 userAssignedIdentities() {
return this.userAssignedIdentities;
}
/**
* Set the userAssignedIdentities property: The list of user identities associated with 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 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();
}
});
}
}
}