Method: dataTables.upload

Full name: projects.locations.instances.dataTables.upload

Create data table from a bulk file.

HTTP request

  • Upload URI, for media upload requests:
    POST https://chronicle.googleapis.com/upload/v1alpha/{parent}/dataTables:bulkCreateDataTableAsync
  • Metadata URI, for metadata-only requests:
    POST https://chronicle.googleapis.com/v1alpha/{parent}/dataTables:bulkCreateDataTableAsync

Path parameters

Parameters
parent

string

Required. The parent resource where this data table will be created. Format: projects/{project}/locations/{location}/instances/{instance}

Request body

The request body contains data with the following structure:

JSON representation
{
  "data_table": {
    object (DataTable)
  },
  "data_table_id": string
}
Fields
data_table

object (DataTable)

Required. The data table to create.

data_table_id

string

Required. The ID to use for the data table. This is also the display name for the data table. It must satisfy the following requirements: - Starts with letter. - Contains only letters, numbers and underscore. - Must be unique and has length < 256.

Response body

The response to upload an artifact.

If successful, the response body contains data with the following structure:

JSON representation
{
  "operation": {
    object (Operation)
  }
}
Fields
operation

object (Operation)

Long-running Operation that tracks the creation of the data table and population of its rows.

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • chronicle.dataTables.bulkCreateDataTableAsync

For more information, see the IAM documentation.