Package com.pulumi.automation
Class ProjectConfigType
- java.lang.Object
-
- com.pulumi.automation.ProjectConfigType
-
public class ProjectConfigType extends java.lang.Object
The project configuration type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ProjectConfigType.Builder
Builder forProjectConfigType
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProjectConfigType.Builder
builder()
Returns a new builder forProjectConfigType
.java.lang.Object
default_()
The default value of the configuration.java.lang.String
description()
The description of the configuration.boolean
equals(java.lang.Object o)
int
hashCode()
boolean
isSecret()
Whether the configuration is secret.ProjectConfigItemsType
items()
The configuration items type.ProjectConfigType.Builder
toBuilder()
Creates a newProjectConfigType.Builder
initialized with the values from this instance.java.lang.String
type()
The type of the configuration.java.lang.Object
value()
The value of the configuration.
-
-
-
Method Detail
-
builder
public static ProjectConfigType.Builder builder()
Returns a new builder forProjectConfigType
.- Returns:
- the builder
-
type
@Nullable public java.lang.String type()
The type of the configuration.- Returns:
- the type of the configuration
-
description
@Nullable public java.lang.String description()
The description of the configuration.- Returns:
- the description of the configuration
-
items
@Nullable public ProjectConfigItemsType items()
The configuration items type.- Returns:
- the configuration items
-
default_
@Nullable public java.lang.Object default_()
The default value of the configuration.- Returns:
- the default value of the configuration
-
value
@Nullable public java.lang.Object value()
The value of the configuration.- Returns:
- the value of the configuration
-
isSecret
public boolean isSecret()
Whether the configuration is secret.- Returns:
- whether the configuration is secret
-
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 ProjectConfigType.Builder toBuilder()
Creates a newProjectConfigType.Builder
initialized with the values from this instance.- Returns:
- a new
ProjectConfigType.Builder
with values copied from this instance
-
-