com.pulumi.azurenative.documentdb.outputs.ManagedCassandraManagedServiceIdentityResponse 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.
The newest version!
// *** 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.documentdb.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ManagedCassandraManagedServiceIdentityResponse {
/**
* @return The object id of the identity resource.
*
*/
private String principalId;
/**
* @return The tenant id of the resource.
*
*/
private String tenantId;
/**
* @return The type of the resource.
*
*/
private @Nullable String type;
private ManagedCassandraManagedServiceIdentityResponse() {}
/**
* @return The object id of the identity resource.
*
*/
public String principalId() {
return this.principalId;
}
/**
* @return The tenant id of the resource.
*
*/
public String tenantId() {
return this.tenantId;
}
/**
* @return The type of the resource.
*
*/
public Optional type() {
return Optional.ofNullable(this.type);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ManagedCassandraManagedServiceIdentityResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String principalId;
private String tenantId;
private @Nullable String type;
public Builder() {}
public Builder(ManagedCassandraManagedServiceIdentityResponse 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("ManagedCassandraManagedServiceIdentityResponse", "principalId");
}
this.principalId = principalId;
return this;
}
@CustomType.Setter
public Builder tenantId(String tenantId) {
if (tenantId == null) {
throw new MissingRequiredPropertyException("ManagedCassandraManagedServiceIdentityResponse", "tenantId");
}
this.tenantId = tenantId;
return this;
}
@CustomType.Setter
public Builder type(@Nullable String type) {
this.type = type;
return this;
}
public ManagedCassandraManagedServiceIdentityResponse build() {
final var _resultValue = new ManagedCassandraManagedServiceIdentityResponse();
_resultValue.principalId = principalId;
_resultValue.tenantId = tenantId;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy