
com.pulumi.azurenative.datareplication.outputs.IdentityModelResponse 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.datareplication.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class IdentityModelResponse {
/**
* @return Gets or sets the authority of the SPN with which Dra communicates to service.
*
*/
private String aadAuthority;
/**
* @return Gets or sets the client/application Id of the SPN with which Dra communicates to
* service.
*
*/
private String applicationId;
/**
* @return Gets or sets the audience of the SPN with which Dra communicates to service.
*
*/
private String audience;
/**
* @return Gets or sets the object Id of the SPN with which Dra communicates to service.
*
*/
private String objectId;
/**
* @return Gets or sets the tenant Id of the SPN with which Dra communicates to service.
*
*/
private String tenantId;
private IdentityModelResponse() {}
/**
* @return Gets or sets the authority of the SPN with which Dra communicates to service.
*
*/
public String aadAuthority() {
return this.aadAuthority;
}
/**
* @return Gets or sets the client/application Id of the SPN with which Dra communicates to
* service.
*
*/
public String applicationId() {
return this.applicationId;
}
/**
* @return Gets or sets the audience of the SPN with which Dra communicates to service.
*
*/
public String audience() {
return this.audience;
}
/**
* @return Gets or sets the object Id of the SPN with which Dra communicates to service.
*
*/
public String objectId() {
return this.objectId;
}
/**
* @return Gets or sets the tenant Id of the SPN with which Dra communicates to service.
*
*/
public String tenantId() {
return this.tenantId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IdentityModelResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String aadAuthority;
private String applicationId;
private String audience;
private String objectId;
private String tenantId;
public Builder() {}
public Builder(IdentityModelResponse defaults) {
Objects.requireNonNull(defaults);
this.aadAuthority = defaults.aadAuthority;
this.applicationId = defaults.applicationId;
this.audience = defaults.audience;
this.objectId = defaults.objectId;
this.tenantId = defaults.tenantId;
}
@CustomType.Setter
public Builder aadAuthority(String aadAuthority) {
if (aadAuthority == null) {
throw new MissingRequiredPropertyException("IdentityModelResponse", "aadAuthority");
}
this.aadAuthority = aadAuthority;
return this;
}
@CustomType.Setter
public Builder applicationId(String applicationId) {
if (applicationId == null) {
throw new MissingRequiredPropertyException("IdentityModelResponse", "applicationId");
}
this.applicationId = applicationId;
return this;
}
@CustomType.Setter
public Builder audience(String audience) {
if (audience == null) {
throw new MissingRequiredPropertyException("IdentityModelResponse", "audience");
}
this.audience = audience;
return this;
}
@CustomType.Setter
public Builder objectId(String objectId) {
if (objectId == null) {
throw new MissingRequiredPropertyException("IdentityModelResponse", "objectId");
}
this.objectId = objectId;
return this;
}
@CustomType.Setter
public Builder tenantId(String tenantId) {
if (tenantId == null) {
throw new MissingRequiredPropertyException("IdentityModelResponse", "tenantId");
}
this.tenantId = tenantId;
return this;
}
public IdentityModelResponse build() {
final var _resultValue = new IdentityModelResponse();
_resultValue.aadAuthority = aadAuthority;
_resultValue.applicationId = applicationId;
_resultValue.audience = audience;
_resultValue.objectId = objectId;
_resultValue.tenantId = tenantId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy