com.pulumi.azure.arc.outputs.GetResourceBridgeApplianceIdentity 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.azure.arc.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetResourceBridgeApplianceIdentity {
/**
* @return The Principal ID associated with this Managed Service Identity.
*
*/
private String principalId;
/**
* @return The Tenant ID associated with this Managed Service Identity.
*
*/
private String tenantId;
/**
* @return The type of this Managed Service Identity.
*
*/
private String type;
private GetResourceBridgeApplianceIdentity() {}
/**
* @return The Principal ID associated with this Managed Service Identity.
*
*/
public String principalId() {
return this.principalId;
}
/**
* @return The Tenant ID associated with this Managed Service Identity.
*
*/
public String tenantId() {
return this.tenantId;
}
/**
* @return The type of this Managed Service Identity.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetResourceBridgeApplianceIdentity defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String principalId;
private String tenantId;
private String type;
public Builder() {}
public Builder(GetResourceBridgeApplianceIdentity defaults) {
Objects.requireNonNull(defaults);
this.principalId = defaults.principalId;
this.tenantId = defaults.tenantId;
this.type = defaults.type;
}
@CustomType.Setter
public Builder principalId(String principalId) {
if (principalId == null) {
throw new MissingRequiredPropertyException("GetResourceBridgeApplianceIdentity", "principalId");
}
this.principalId = principalId;
return this;
}
@CustomType.Setter
public Builder tenantId(String tenantId) {
if (tenantId == null) {
throw new MissingRequiredPropertyException("GetResourceBridgeApplianceIdentity", "tenantId");
}
this.tenantId = tenantId;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetResourceBridgeApplianceIdentity", "type");
}
this.type = type;
return this;
}
public GetResourceBridgeApplianceIdentity build() {
final var _resultValue = new GetResourceBridgeApplianceIdentity();
_resultValue.principalId = principalId;
_resultValue.tenantId = tenantId;
_resultValue.type = type;
return _resultValue;
}
}
}