Package com.google.privacy.dlp.v2
Interface TransformationDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TransformationDetails,TransformationDetails.Builder
public interface TransformationDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetContainerName()The top level name of the container where the transformation is located (this will be the source file name or table name).com.google.protobuf.ByteStringgetContainerNameBytes()The top level name of the container where the transformation is located (this will be the source file name or table name).StringgetResourceName()The name of the job that completed the transformation.com.google.protobuf.ByteStringgetResourceNameBytes()The name of the job that completed the transformation.TransformationResultStatusgetStatusDetails()Status of the transformation, if transformation was not successful, this will specify what caused it to fail, otherwise it will show that the transformation was successful.TransformationResultStatusOrBuildergetStatusDetailsOrBuilder()Status of the transformation, if transformation was not successful, this will specify what caused it to fail, otherwise it will show that the transformation was successful.TransformationDescriptiongetTransformation(int index)Description of transformation.intgetTransformationCount()Description of transformation.List<TransformationDescription>getTransformationList()Description of transformation.TransformationLocationgetTransformationLocation()The precise location of the transformed content in the original container.TransformationLocationOrBuildergetTransformationLocationOrBuilder()The precise location of the transformed content in the original container.TransformationDescriptionOrBuildergetTransformationOrBuilder(int index)Description of transformation.List<? extends TransformationDescriptionOrBuilder>getTransformationOrBuilderList()Description of transformation.longgetTransformedBytes()The number of bytes that were transformed.booleanhasStatusDetails()Status of the transformation, if transformation was not successful, this will specify what caused it to fail, otherwise it will show that the transformation was successful.booleanhasTransformationLocation()The precise location of the transformed content in the original container.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResourceName
String getResourceName()
The name of the job that completed the transformation.
string resource_name = 1;- Returns:
- The resourceName.
-
getResourceNameBytes
com.google.protobuf.ByteString getResourceNameBytes()
The name of the job that completed the transformation.
string resource_name = 1;- Returns:
- The bytes for resourceName.
-
getContainerName
String getContainerName()
The top level name of the container where the transformation is located (this will be the source file name or table name).
string container_name = 2;- Returns:
- The containerName.
-
getContainerNameBytes
com.google.protobuf.ByteString getContainerNameBytes()
The top level name of the container where the transformation is located (this will be the source file name or table name).
string container_name = 2;- Returns:
- The bytes for containerName.
-
getTransformationList
List<TransformationDescription> getTransformationList()
Description of transformation. This would only contain more than one element if there were multiple matching transformations and which one to apply was ambiguous. Not set for states that contain no transformation, currently only state that contains no transformation is TransformationResultStateType.METADATA_UNRETRIEVABLE.
repeated .google.privacy.dlp.v2.TransformationDescription transformation = 3;
-
getTransformation
TransformationDescription getTransformation(int index)
Description of transformation. This would only contain more than one element if there were multiple matching transformations and which one to apply was ambiguous. Not set for states that contain no transformation, currently only state that contains no transformation is TransformationResultStateType.METADATA_UNRETRIEVABLE.
repeated .google.privacy.dlp.v2.TransformationDescription transformation = 3;
-
getTransformationCount
int getTransformationCount()
Description of transformation. This would only contain more than one element if there were multiple matching transformations and which one to apply was ambiguous. Not set for states that contain no transformation, currently only state that contains no transformation is TransformationResultStateType.METADATA_UNRETRIEVABLE.
repeated .google.privacy.dlp.v2.TransformationDescription transformation = 3;
-
getTransformationOrBuilderList
List<? extends TransformationDescriptionOrBuilder> getTransformationOrBuilderList()
Description of transformation. This would only contain more than one element if there were multiple matching transformations and which one to apply was ambiguous. Not set for states that contain no transformation, currently only state that contains no transformation is TransformationResultStateType.METADATA_UNRETRIEVABLE.
repeated .google.privacy.dlp.v2.TransformationDescription transformation = 3;
-
getTransformationOrBuilder
TransformationDescriptionOrBuilder getTransformationOrBuilder(int index)
Description of transformation. This would only contain more than one element if there were multiple matching transformations and which one to apply was ambiguous. Not set for states that contain no transformation, currently only state that contains no transformation is TransformationResultStateType.METADATA_UNRETRIEVABLE.
repeated .google.privacy.dlp.v2.TransformationDescription transformation = 3;
-
hasStatusDetails
boolean hasStatusDetails()
Status of the transformation, if transformation was not successful, this will specify what caused it to fail, otherwise it will show that the transformation was successful.
.google.privacy.dlp.v2.TransformationResultStatus status_details = 4;- Returns:
- Whether the statusDetails field is set.
-
getStatusDetails
TransformationResultStatus getStatusDetails()
Status of the transformation, if transformation was not successful, this will specify what caused it to fail, otherwise it will show that the transformation was successful.
.google.privacy.dlp.v2.TransformationResultStatus status_details = 4;- Returns:
- The statusDetails.
-
getStatusDetailsOrBuilder
TransformationResultStatusOrBuilder getStatusDetailsOrBuilder()
Status of the transformation, if transformation was not successful, this will specify what caused it to fail, otherwise it will show that the transformation was successful.
.google.privacy.dlp.v2.TransformationResultStatus status_details = 4;
-
getTransformedBytes
long getTransformedBytes()
The number of bytes that were transformed. If transformation was unsuccessful or did not take place because there was no content to transform, this will be zero.
int64 transformed_bytes = 5;- Returns:
- The transformedBytes.
-
hasTransformationLocation
boolean hasTransformationLocation()
The precise location of the transformed content in the original container.
.google.privacy.dlp.v2.TransformationLocation transformation_location = 6;- Returns:
- Whether the transformationLocation field is set.
-
getTransformationLocation
TransformationLocation getTransformationLocation()
The precise location of the transformed content in the original container.
.google.privacy.dlp.v2.TransformationLocation transformation_location = 6;- Returns:
- The transformationLocation.
-
getTransformationLocationOrBuilder
TransformationLocationOrBuilder getTransformationLocationOrBuilder()
The precise location of the transformed content in the original container.
.google.privacy.dlp.v2.TransformationLocation transformation_location = 6;
-
-