Class BetaManagedAgentsUnknownError.Builder
-
- All Implemented Interfaces:
public final class BetaManagedAgentsUnknownError.BuilderA builder for BetaManagedAgentsUnknownError.
-
-
Method Summary
-
-
Method Detail
-
message
final BetaManagedAgentsUnknownError.Builder message(String message)
Human-readable error description.
-
message
final BetaManagedAgentsUnknownError.Builder message(JsonField<String> message)
Sets Builder.message to an arbitrary JSON value.
You should usually call Builder.message with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
retryStatus
final BetaManagedAgentsUnknownError.Builder retryStatus(BetaManagedAgentsUnknownError.RetryStatus retryStatus)
What the client should do next in response to this error.
-
retryStatus
final BetaManagedAgentsUnknownError.Builder retryStatus(JsonField<BetaManagedAgentsUnknownError.RetryStatus> retryStatus)
Sets Builder.retryStatus to an arbitrary JSON value.
You should usually call Builder.retryStatus with a well-typed RetryStatus value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
retryStatus
final BetaManagedAgentsUnknownError.Builder retryStatus(BetaManagedAgentsRetryStatusRetrying retrying)
Alias for calling retryStatus with
RetryStatus.ofRetrying(retrying).
-
retryStatus
final BetaManagedAgentsUnknownError.Builder retryStatus(BetaManagedAgentsRetryStatusExhausted exhausted)
Alias for calling retryStatus with
RetryStatus.ofExhausted(exhausted).
-
retryStatus
final BetaManagedAgentsUnknownError.Builder retryStatus(BetaManagedAgentsRetryStatusTerminal terminal)
Alias for calling retryStatus with
RetryStatus.ofTerminal(terminal).
-
type
final BetaManagedAgentsUnknownError.Builder type(BetaManagedAgentsUnknownError.Type type)
-
type
final BetaManagedAgentsUnknownError.Builder type(JsonField<BetaManagedAgentsUnknownError.Type> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type with a well-typed Type value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaManagedAgentsUnknownError.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaManagedAgentsUnknownError.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaManagedAgentsUnknownError.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaManagedAgentsUnknownError.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaManagedAgentsUnknownError.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaManagedAgentsUnknownError build()
Returns an immutable instance of BetaManagedAgentsUnknownError.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.message() .retryStatus() .type()
-
-
-
-