
com.pulumi.azurenative.confluent.outputs.ClusterEnvironmentEntityResponse 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.
// *** 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 ClusterEnvironmentEntityResponse {
/**
* @return Environment of the referred resource
*
*/
private @Nullable String environment;
/**
* @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 ClusterEnvironmentEntityResponse() {}
/**
* @return Environment of the referred resource
*
*/
public Optional environment() {
return Optional.ofNullable(this.environment);
}
/**
* @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(ClusterEnvironmentEntityResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String environment;
private @Nullable String id;
private @Nullable String related;
private @Nullable String resourceName;
public Builder() {}
public Builder(ClusterEnvironmentEntityResponse defaults) {
Objects.requireNonNull(defaults);
this.environment = defaults.environment;
this.id = defaults.id;
this.related = defaults.related;
this.resourceName = defaults.resourceName;
}
@CustomType.Setter
public Builder environment(@Nullable String environment) {
this.environment = environment;
return this;
}
@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 ClusterEnvironmentEntityResponse build() {
final var _resultValue = new ClusterEnvironmentEntityResponse();
_resultValue.environment = environment;
_resultValue.id = id;
_resultValue.related = related;
_resultValue.resourceName = resourceName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy