BulkDataTableRows

Response message for Bulk Operations on Data Tables.

JSON representation
{
  "data_table_rows": [
    {
      object (DataTableRow)
    }
  ]
}
Fields
data_table_rows[]

object (DataTableRow)

DataTableRows created/updated/replaced in bulk.

DataTableRow

DataTableRow represents a single row in a data table.

JSON representation
{
  "name": string,
  "values": [
    string
  ],
  "create_time": string,
  "update_time": string
}
Fields
name

string

Identifier. The resource name of the data table Format: projects/{project}/locations/{location}/instances/{instance}/dataTables/{data_table}/dataTableRows/{data_table_row}

values[]

string

Required. All column values for a single row. The values should be in the same order as the columns of the data tables.

create_time

string (Timestamp format)

Output only. DataTableRow create time

Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

update_time

string (Timestamp format)

Output only. DataTableRow update time

Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".