We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d55455 commit d7d4b15Copy full SHA for d7d4b15
1 file changed
core/src/main/java/com/google/adk/models/VertexCredentials.java
@@ -38,16 +38,11 @@ public static Builder builder() {
38
/** Builder for {@link VertexCredentials}. */
39
@AutoValue.Builder
40
public abstract static class Builder {
41
- public abstract Builder setProject(Optional<String> value);
42
43
public abstract Builder setProject(@Nullable String value);
44
45
- public abstract Builder setLocation(Optional<String> value);
46
-
47
public abstract Builder setLocation(@Nullable String value);
48
49
- public abstract Builder setCredentials(Optional<GoogleCredentials> value);
50
51
public abstract Builder setCredentials(@Nullable GoogleCredentials value);
52
53
public abstract VertexCredentials build();
0 commit comments