Package com.pulumi.automation
Class ProjectPluginOptions
- java.lang.Object
-
- com.pulumi.automation.ProjectPluginOptions
-
public class ProjectPluginOptions extends java.lang.Object
Plugin options.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ProjectPluginOptions.Builder
Builder forProjectPluginOptions
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProjectPluginOptions.Builder
builder()
Returns a new builder forProjectPluginOptions
.boolean
equals(java.lang.Object o)
int
hashCode()
java.lang.String
name()
The name of the plugin.java.lang.String
path()
The path of the plugin.ProjectPluginOptions.Builder
toBuilder()
Creates a newProjectPluginOptions.Builder
initialized with the values from this instance.java.lang.String
version()
The version of the plugin.
-
-
-
Method Detail
-
builder
public static ProjectPluginOptions.Builder builder()
Returns a new builder forProjectPluginOptions
.- Returns:
- the builder
-
name
public java.lang.String name()
The name of the plugin.- Returns:
- the name of the plugin
-
version
@Nullable public java.lang.String version()
The version of the plugin.- Returns:
- the version of the plugin
-
path
public java.lang.String path()
The path of the plugin.- Returns:
- the path of the plugin
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toBuilder
public ProjectPluginOptions.Builder toBuilder()
Creates a newProjectPluginOptions.Builder
initialized with the values from this instance.- Returns:
- a new
ProjectPluginOptions.Builder
with values copied from this instance
-
-