QueryResponse

  • The response for successful query execution jobs includes details like row count, output artifacts, privacy messages, and destination tables.

  • This response is found within the response field of the google.longrunning.Operation and is structured as a JSON object.

  • rowCount may be 0 or unavailable, output artifacts provide details about generated files, privacy messages contain relevant alerts, and destination tables describe exported data.

Response returned for successful query execution jobs. This is stored in the response field of the google.longrunning.Operation returned by a query execution request.

JSON representation
{
  "rowCount": string,
  "outputArtifacts": {
    object (OutputArtifacts)
  },
  "privacyMessages": [
    {
      object (PrivacyMessage)
    }
  ],
  "destinationTables": [
    {
      object (DestinationTableInfo)
    }
  ]
}
Fields
rowCount

string (Int64Value format)

Row count in the final output table. A wrapped value is used to distinguish between the case where row count is 0 and the case where this information is not available.

outputArtifacts

object (OutputArtifacts)

Output artifacts generated during query execution

privacyMessages[]

object (PrivacyMessage)

List of privacy related information or warning messages.

destinationTables[]

object (DestinationTableInfo)

List of output tables exported by the query.