Method: projects.locations.datasets.exportData

Exports dataset's data to the provided output location.

HTTP request

POST https://translate.googleapis.com/v3/{dataset=projects/*/locations/*/datasets/*}:exportData

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
dataset

string

Required. Name of the dataset. In form of projects/{project-number-or-id}/locations/{location-id}/datasets/{dataset-id}

Request body

The request body contains data with the following structure:

JSON representation
{
  "outputConfig": {
    object (DatasetOutputConfig)
  }
}
Fields
outputConfig

object (DatasetOutputConfig)

Required. The config for the output content.

Response body

If successful, the response body contains an instance of Operation.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/cloud-translation
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

DatasetOutputConfig

Output configuration for datasets.

JSON representation
{

  // Union field destination can be only one of the following:
  "gcsDestination": {
    object (GcsOutputDestination)
  }
  // End of list of possible types for union field destination.
}
Fields
Union field destination. Required. Specify the output. destination can be only one of the following:
gcsDestination

object (GcsOutputDestination)

Google Cloud Storage destination to write the output.

GcsOutputDestination

The Google Cloud Storage location for the output content.

JSON representation
{
  "outputUriPrefix": string
}
Fields
outputUriPrefix

string

Required. Google Cloud Storage URI to output directory. For example, gs://bucket/directory. The requesting user must have write permission to the bucket. The directory will be created if it doesn't exist.