BatchDocumentsInputConfig

The common config to specify a set of documents used as input.

JSON representation
{

  // Union field source can be only one of the following:
  "gcsPrefix": {
    object (GcsPrefix)
  },
  "gcsDocuments": {
    object (GcsDocuments)
  }
  // End of list of possible types for union field source.
}
Fields
Union field source. The source. source can be only one of the following:
gcsPrefix

object (GcsPrefix)

The set of documents that match the specified Cloud Storage gcsPrefix.

gcsDocuments

object (GcsDocuments)

The set of documents individually specified on Cloud Storage.

GcsPrefix

Specifies all documents on Cloud Storage with a common prefix.

JSON representation
{
  "gcsUriPrefix": string
}
Fields
gcsUriPrefix

string

The URI prefix.

GcsDocuments

Specifies a set of documents on Cloud Storage.

JSON representation
{
  "documents": [
    {
      object (GcsDocument)
    }
  ]
}
Fields
documents[]

object (GcsDocument)

The list of documents.