Package com.pulumi.automation
Class ProjectBackend
- java.lang.Object
-
- com.pulumi.automation.ProjectBackend
-
public class ProjectBackend extends java.lang.Object
Configuration for the project's Pulumi state storage backend.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ProjectBackend.Builder
Builder forProjectBackend
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProjectBackend.Builder
builder()
Returns a new builder forProjectBackend
.boolean
equals(java.lang.Object o)
int
hashCode()
ProjectBackend.Builder
toBuilder()
Creates a newProjectBackend.Builder
initialized with the values from this instance.java.lang.String
url()
The backend URL.
-
-
-
Method Detail
-
builder
public static ProjectBackend.Builder builder()
Returns a new builder forProjectBackend
.- Returns:
- the builder
-
url
@Nullable public java.lang.String url()
The backend URL. Use the same URL format that is passed to "pulumi login", see https://www.pulumi.com/docs/cli/commands/pulumi_login/To explicitly use the Pulumi Cloud backend, use URL "https://api.pulumi.com"
- Returns:
- the backend URL
-
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 ProjectBackend.Builder toBuilder()
Creates a newProjectBackend.Builder
initialized with the values from this instance.- Returns:
- a new
ProjectBackend.Builder
with values copied from this instance
-
-