Interface AddOfflineUserDataJobOperationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AddOfflineUserDataJobOperationsResponse,AddOfflineUserDataJobOperationsResponse.Builder
public interface AddOfflineUserDataJobOperationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.rpc.StatusgetPartialFailureError()Errors that pertain to operation failures in the partial failure mode.com.google.rpc.StatusOrBuildergetPartialFailureErrorOrBuilder()Errors that pertain to operation failures in the partial failure mode.com.google.rpc.StatusgetWarning()Non blocking errors that pertain to operation failures in the warnings mode.com.google.rpc.StatusOrBuildergetWarningOrBuilder()Non blocking errors that pertain to operation failures in the warnings mode.booleanhasPartialFailureError()Errors that pertain to operation failures in the partial failure mode.booleanhasWarning()Non blocking errors that pertain to operation failures in the warnings mode.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasPartialFailureError
boolean hasPartialFailureError()
Errors that pertain to operation failures in the partial failure mode. Returned only when partial_failure = true and all errors occur inside the operations. If any errors occur outside the operations (e.g. auth errors), we return an RPC level error.
.google.rpc.Status partial_failure_error = 1;- Returns:
- Whether the partialFailureError field is set.
-
getPartialFailureError
com.google.rpc.Status getPartialFailureError()
Errors that pertain to operation failures in the partial failure mode. Returned only when partial_failure = true and all errors occur inside the operations. If any errors occur outside the operations (e.g. auth errors), we return an RPC level error.
.google.rpc.Status partial_failure_error = 1;- Returns:
- The partialFailureError.
-
getPartialFailureErrorOrBuilder
com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder()
Errors that pertain to operation failures in the partial failure mode. Returned only when partial_failure = true and all errors occur inside the operations. If any errors occur outside the operations (e.g. auth errors), we return an RPC level error.
.google.rpc.Status partial_failure_error = 1;
-
hasWarning
boolean hasWarning()
Non blocking errors that pertain to operation failures in the warnings mode. Returned only when enable_warnings = true.
.google.rpc.Status warning = 2;- Returns:
- Whether the warning field is set.
-
getWarning
com.google.rpc.Status getWarning()
Non blocking errors that pertain to operation failures in the warnings mode. Returned only when enable_warnings = true.
.google.rpc.Status warning = 2;- Returns:
- The warning.
-
getWarningOrBuilder
com.google.rpc.StatusOrBuilder getWarningOrBuilder()
Non blocking errors that pertain to operation failures in the warnings mode. Returned only when enable_warnings = true.
.google.rpc.Status warning = 2;
-
-