
com.pulumi.azurenative.iotoperations.outputs.DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse Maven / Gradle / Ivy
// *** 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.iotoperations.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse {
/**
* @return Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
*
*/
private String audience;
/**
* @return Client ID for the user-assigned managed identity.
*
*/
private String clientId;
/**
* @return Tenant ID.
*
*/
private String tenantId;
private DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse() {}
/**
* @return Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
*
*/
public String audience() {
return this.audience;
}
/**
* @return Client ID for the user-assigned managed identity.
*
*/
public String clientId() {
return this.clientId;
}
/**
* @return Tenant ID.
*
*/
public String tenantId() {
return this.tenantId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String audience;
private String clientId;
private String tenantId;
public Builder() {}
public Builder(DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse defaults) {
Objects.requireNonNull(defaults);
this.audience = defaults.audience;
this.clientId = defaults.clientId;
this.tenantId = defaults.tenantId;
}
@CustomType.Setter
public Builder audience(String audience) {
if (audience == null) {
throw new MissingRequiredPropertyException("DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse", "audience");
}
this.audience = audience;
return this;
}
@CustomType.Setter
public Builder clientId(String clientId) {
if (clientId == null) {
throw new MissingRequiredPropertyException("DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse", "clientId");
}
this.clientId = clientId;
return this;
}
@CustomType.Setter
public Builder tenantId(String tenantId) {
if (tenantId == null) {
throw new MissingRequiredPropertyException("DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse", "tenantId");
}
this.tenantId = tenantId;
return this;
}
public DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse build() {
final var _resultValue = new DataFlowEndpointAuthenticationUserAssignedManagedIdentityResponse();
_resultValue.audience = audience;
_resultValue.clientId = clientId;
_resultValue.tenantId = tenantId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy