com.pulumi.googlenative.dataflow.v1b3.outputs.BigTableIODetailsResponse 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.googlenative.dataflow.v1b3.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class BigTableIODetailsResponse {
/**
* @return InstanceId accessed in the connection.
*
*/
private String instanceId;
/**
* @return ProjectId accessed in the connection.
*
*/
private String project;
/**
* @return TableId accessed in the connection.
*
*/
private String tableId;
private BigTableIODetailsResponse() {}
/**
* @return InstanceId accessed in the connection.
*
*/
public String instanceId() {
return this.instanceId;
}
/**
* @return ProjectId accessed in the connection.
*
*/
public String project() {
return this.project;
}
/**
* @return TableId accessed in the connection.
*
*/
public String tableId() {
return this.tableId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(BigTableIODetailsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String instanceId;
private String project;
private String tableId;
public Builder() {}
public Builder(BigTableIODetailsResponse defaults) {
Objects.requireNonNull(defaults);
this.instanceId = defaults.instanceId;
this.project = defaults.project;
this.tableId = defaults.tableId;
}
@CustomType.Setter
public Builder instanceId(String instanceId) {
this.instanceId = Objects.requireNonNull(instanceId);
return this;
}
@CustomType.Setter
public Builder project(String project) {
this.project = Objects.requireNonNull(project);
return this;
}
@CustomType.Setter
public Builder tableId(String tableId) {
this.tableId = Objects.requireNonNull(tableId);
return this;
}
public BigTableIODetailsResponse build() {
final var o = new BigTableIODetailsResponse();
o.instanceId = instanceId;
o.project = project;
o.tableId = tableId;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy