TransformationDetails

Details about a single transformation. This object contains a description of the transformation, information about whether the transformation was successfully applied, and the precise location where the transformation occurred. These details are stored in a user-specified BigQuery table.

JSON representation
{
  "resourceName": string,
  "containerName": string,
  "transformation": [
    {
      object (TransformationDescription)
    }
  ],
  "statusDetails": {
    object (TransformationResultStatus)
  },
  "transformedBytes": string,
  "transformationLocation": {
    object (TransformationLocation)
  }
}
Fields
resourceName

string

The name of the job that completed the transformation.

containerName

string

The top level name of the container where the transformation is located (this will be the source file name or table name).

transformation[]

object (TransformationDescription)

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.

statusDetails

object (TransformationResultStatus)

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.

transformedBytes

string (int64 format)

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.

transformationLocation

object (TransformationLocation)

The precise location of the transformed content in the original container.

TransformationResultStatus

The outcome of a transformation.

JSON representation
{
  "resultStatusType": enum (TransformationResultStatusType),
  "details": {
    object (Status)
  }
}
Fields
resultStatusType

enum (TransformationResultStatusType)

Transformation result status type, this will be either SUCCESS, or it will be the reason for why the transformation was not completely successful.

details

object (Status)

Detailed error codes and messages

TransformationLocation

Specifies the location of a transformation.

JSON representation
{
  "containerType": enum (TransformationContainerType),

  // Union field location_type can be only one of the following:
  "findingId": string,
  "recordTransformation": {
    object (RecordTransformation)
  }
  // End of list of possible types for union field location_type.
}
Fields
containerType

enum (TransformationContainerType)

Information about the functionality of the container where this finding occurred, if available.

Union field location_type. Location type. location_type can be only one of the following:
findingId

string

For infotype transformations, link to the corresponding findings ID so that location information does not need to be duplicated. Each findings ID correlates to an entry in the findings output table, this table only gets created when users specify to save findings (add the save findings action to the request).

recordTransformation

object (RecordTransformation)

For record transformations, provide a field and container information.