com.pulumi.digitalocean.inputs.GetProjectPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digitalocean Show documentation
Show all versions of digitalocean Show documentation
A Pulumi package for creating and managing DigitalOcean cloud 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.digitalocean.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 GetProjectPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetProjectPlainArgs Empty = new GetProjectPlainArgs();
/**
* the ID of the project to retrieve
*
*/
@Import(name="id")
private @Nullable String id;
/**
* @return the ID of the project to retrieve
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* the name of the project to retrieve. The data source will raise an error if more than
* one project has the provided name or if no project has that name.
*
*/
@Import(name="name")
private @Nullable String name;
/**
* @return the name of the project to retrieve. The data source will raise an error if more than
* one project has the provided name or if no project has that name.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
private GetProjectPlainArgs() {}
private GetProjectPlainArgs(GetProjectPlainArgs $) {
this.id = $.id;
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetProjectPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetProjectPlainArgs $;
public Builder() {
$ = new GetProjectPlainArgs();
}
public Builder(GetProjectPlainArgs defaults) {
$ = new GetProjectPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param id the ID of the project to retrieve
*
* @return builder
*
*/
public Builder id(@Nullable String id) {
$.id = id;
return this;
}
/**
* @param name the name of the project to retrieve. The data source will raise an error if more than
* one project has the provided name or if no project has that name.
*
* @return builder
*
*/
public Builder name(@Nullable String name) {
$.name = name;
return this;
}
public GetProjectPlainArgs build() {
return $;
}
}
}