com.pulumi.azurenative.resources.outputs.IdentityResponseUserAssignedIdentities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.resources.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class IdentityResponseUserAssignedIdentities {
/**
* @return The client id of user assigned identity.
*
*/
private String clientId;
/**
* @return The principal id of user assigned identity.
*
*/
private String principalId;
private IdentityResponseUserAssignedIdentities() {}
/**
* @return The client id of user assigned identity.
*
*/
public String clientId() {
return this.clientId;
}
/**
* @return The principal id of user assigned identity.
*
*/
public String principalId() {
return this.principalId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IdentityResponseUserAssignedIdentities defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String clientId;
private String principalId;
public Builder() {}
public Builder(IdentityResponseUserAssignedIdentities defaults) {
Objects.requireNonNull(defaults);
this.clientId = defaults.clientId;
this.principalId = defaults.principalId;
}
@CustomType.Setter
public Builder clientId(String clientId) {
if (clientId == null) {
throw new MissingRequiredPropertyException("IdentityResponseUserAssignedIdentities", "clientId");
}
this.clientId = clientId;
return this;
}
@CustomType.Setter
public Builder principalId(String principalId) {
if (principalId == null) {
throw new MissingRequiredPropertyException("IdentityResponseUserAssignedIdentities", "principalId");
}
this.principalId = principalId;
return this;
}
public IdentityResponseUserAssignedIdentities build() {
final var _resultValue = new IdentityResponseUserAssignedIdentities();
_resultValue.clientId = clientId;
_resultValue.principalId = principalId;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy