
com.pulumi.azurenative.hybridcontainerservice.outputs.ProvisionedClusterIdentityResponse 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.hybridcontainerservice.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ProvisionedClusterIdentityResponse {
/**
* @return The principal id of provisioned cluster identity. This property will only be provided for a system assigned identity.
*
*/
private String principalId;
/**
* @return The tenant id associated with the provisioned cluster. This property will only be provided for a system assigned identity.
*
*/
private String tenantId;
/**
* @return The type of identity used for the provisioned cluster. The type SystemAssigned, includes a system created identity. The type None means no identity is assigned to the provisioned cluster.
*
*/
private String type;
private ProvisionedClusterIdentityResponse() {}
/**
* @return The principal id of provisioned cluster identity. This property will only be provided for a system assigned identity.
*
*/
public String principalId() {
return this.principalId;
}
/**
* @return The tenant id associated with the provisioned cluster. This property will only be provided for a system assigned identity.
*
*/
public String tenantId() {
return this.tenantId;
}
/**
* @return The type of identity used for the provisioned cluster. The type SystemAssigned, includes a system created identity. The type None means no identity is assigned to the provisioned cluster.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ProvisionedClusterIdentityResponse 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(ProvisionedClusterIdentityResponse 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("ProvisionedClusterIdentityResponse", "principalId");
}
this.principalId = principalId;
return this;
}
@CustomType.Setter
public Builder tenantId(String tenantId) {
if (tenantId == null) {
throw new MissingRequiredPropertyException("ProvisionedClusterIdentityResponse", "tenantId");
}
this.tenantId = tenantId;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("ProvisionedClusterIdentityResponse", "type");
}
this.type = type;
return this;
}
public ProvisionedClusterIdentityResponse build() {
final var _resultValue = new ProvisionedClusterIdentityResponse();
_resultValue.principalId = principalId;
_resultValue.tenantId = tenantId;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy