
com.pulumi.azurenative.confluent.outputs.ClusterByokEntityResponse 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.confluent.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ClusterByokEntityResponse {
/**
* @return ID of the referred resource
*
*/
private @Nullable String id;
/**
* @return API URL for accessing or modifying the referred object
*
*/
private @Nullable String related;
/**
* @return CRN reference to the referred resource
*
*/
private @Nullable String resourceName;
private ClusterByokEntityResponse() {}
/**
* @return ID of the referred resource
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* @return API URL for accessing or modifying the referred object
*
*/
public Optional related() {
return Optional.ofNullable(this.related);
}
/**
* @return CRN reference to the referred resource
*
*/
public Optional resourceName() {
return Optional.ofNullable(this.resourceName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ClusterByokEntityResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String id;
private @Nullable String related;
private @Nullable String resourceName;
public Builder() {}
public Builder(ClusterByokEntityResponse defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.related = defaults.related;
this.resourceName = defaults.resourceName;
}
@CustomType.Setter
public Builder id(@Nullable String id) {
this.id = id;
return this;
}
@CustomType.Setter
public Builder related(@Nullable String related) {
this.related = related;
return this;
}
@CustomType.Setter
public Builder resourceName(@Nullable String resourceName) {
this.resourceName = resourceName;
return this;
}
public ClusterByokEntityResponse build() {
final var _resultValue = new ClusterByokEntityResponse();
_resultValue.id = id;
_resultValue.related = related;
_resultValue.resourceName = resourceName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy