com.pulumi.googlenative.dataplex.v1.inputs.GetZonePlainArgs 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.dataplex.v1.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetZonePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetZonePlainArgs Empty = new GetZonePlainArgs();
@Import(name="lakeId", required=true)
private String lakeId;
public String lakeId() {
return this.lakeId;
}
@Import(name="location", required=true)
private String location;
public String location() {
return this.location;
}
@Import(name="project")
private @Nullable String project;
public Optional project() {
return Optional.ofNullable(this.project);
}
@Import(name="zone", required=true)
private String zone;
public String zone() {
return this.zone;
}
private GetZonePlainArgs() {}
private GetZonePlainArgs(GetZonePlainArgs $) {
this.lakeId = $.lakeId;
this.location = $.location;
this.project = $.project;
this.zone = $.zone;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetZonePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetZonePlainArgs $;
public Builder() {
$ = new GetZonePlainArgs();
}
public Builder(GetZonePlainArgs defaults) {
$ = new GetZonePlainArgs(Objects.requireNonNull(defaults));
}
public Builder lakeId(String lakeId) {
$.lakeId = lakeId;
return this;
}
public Builder location(String location) {
$.location = location;
return this;
}
public Builder project(@Nullable String project) {
$.project = project;
return this;
}
public Builder zone(String zone) {
$.zone = zone;
return this;
}
public GetZonePlainArgs build() {
$.lakeId = Objects.requireNonNull($.lakeId, "expected parameter 'lakeId' to be non-null");
$.location = Objects.requireNonNull($.location, "expected parameter 'location' to be non-null");
$.zone = Objects.requireNonNull($.zone, "expected parameter 'zone' to be non-null");
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy