Package com.google.privacy.dlp.v2
Interface TransformationResultStatusOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TransformationResultStatus,TransformationResultStatus.Builder
public interface TransformationResultStatusOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.rpc.StatusgetDetails()Detailed error codes and messagescom.google.rpc.StatusOrBuildergetDetailsOrBuilder()Detailed error codes and messagesTransformationResultStatusTypegetResultStatusType()Transformation result status type, this will be either SUCCESS, or it will be the reason for why the transformation was not completely successful.intgetResultStatusTypeValue()Transformation result status type, this will be either SUCCESS, or it will be the reason for why the transformation was not completely successful.booleanhasDetails()Detailed error codes and messages-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResultStatusTypeValue
int getResultStatusTypeValue()
Transformation result status type, this will be either SUCCESS, or it will be the reason for why the transformation was not completely successful.
.google.privacy.dlp.v2.TransformationResultStatusType result_status_type = 1;- Returns:
- The enum numeric value on the wire for resultStatusType.
-
getResultStatusType
TransformationResultStatusType getResultStatusType()
Transformation result status type, this will be either SUCCESS, or it will be the reason for why the transformation was not completely successful.
.google.privacy.dlp.v2.TransformationResultStatusType result_status_type = 1;- Returns:
- The resultStatusType.
-
hasDetails
boolean hasDetails()
Detailed error codes and messages
.google.rpc.Status details = 2;- Returns:
- Whether the details field is set.
-
getDetails
com.google.rpc.Status getDetails()
Detailed error codes and messages
.google.rpc.Status details = 2;- Returns:
- The details.
-
getDetailsOrBuilder
com.google.rpc.StatusOrBuilder getDetailsOrBuilder()
Detailed error codes and messages
.google.rpc.Status details = 2;
-
-