com.azure.resourcemanager.servicebus.models.Identity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-servicebus Show documentation
Show all versions of azure-resourcemanager-servicebus Show documentation
This package contains Microsoft Azure ServiceBus 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.servicebus.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/** Properties to configure User Assigned Identities for Bring your Own Keys. */
@Fluent
public class Identity {
/*
* ObjectId from the KeyVault
*/
@JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY)
private String principalId;
/*
* TenantId from the KeyVault
*/
@JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY)
private String tenantId;
/*
* Type of managed service identity.
*/
@JsonProperty(value = "type")
private ManagedServiceIdentityType type;
/*
* Properties for User Assigned Identities
*/
@JsonProperty(value = "userAssignedIdentities")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map userAssignedIdentities;
/**
* Get the principalId property: ObjectId from the KeyVault.
*
* @return the principalId value.
*/
public String principalId() {
return this.principalId;
}
/**
* Get the tenantId property: TenantId from the KeyVault.
*
* @return the tenantId value.
*/
public String tenantId() {
return this.tenantId;
}
/**
* Get the type property: Type of managed service identity.
*
* @return the type value.
*/
public ManagedServiceIdentityType type() {
return this.type;
}
/**
* Set the type property: Type of managed service identity.
*
* @param type the type value to set.
* @return the Identity object itself.
*/
public Identity withType(ManagedServiceIdentityType type) {
this.type = type;
return this;
}
/**
* Get the userAssignedIdentities property: Properties for User Assigned Identities.
*
* @return the userAssignedIdentities value.
*/
public Map userAssignedIdentities() {
return this.userAssignedIdentities;
}
/**
* Set the userAssignedIdentities property: Properties for User Assigned Identities.
*
* @param userAssignedIdentities the userAssignedIdentities value to set.
* @return the Identity object itself.
*/
public Identity 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();
}
});
}
}
}