class TablesRows extends Resource (View source)

The "rows" collection of methods.

Typical usage is:

 $area120tablesService = new Google\Service\Area120Tables(...);
 $rows = $area120tablesService->tables_rows;

Methods

batchCreate(string $parent, BatchCreateRowsRequest $postBody, array $optParams = [])

Creates multiple rows. (rows.batchCreate)

batchDelete(string $parent, BatchDeleteRowsRequest $postBody, array $optParams = [])

Deletes multiple rows. (rows.batchDelete)

batchUpdate(string $parent, BatchUpdateRowsRequest $postBody, array $optParams = [])

Updates multiple rows. (rows.batchUpdate)

Row
create(string $parent, Row $postBody, array $optParams = [])

Creates a row. (rows.create)

delete(string $name, array $optParams = [])

Deletes a row. (rows.delete)

Row
get(string $name, array $optParams = [])

Gets a row. Returns NOT_FOUND if the row does not exist in the table.

listTablesRows(string $parent, array $optParams = [])

Lists rows in a table. Returns NOT_FOUND if the table does not exist.

Row
patch(string $name, Row $postBody, array $optParams = [])

Updates a row. (rows.patch)

Details

BatchCreateRowsResponse batchCreate(string $parent, BatchCreateRowsRequest $postBody, array $optParams = [])

Creates multiple rows. (rows.batchCreate)

Parameters

string $parent

Required. The parent table where the rows will be created. Format: tables/{table}

BatchCreateRowsRequest $postBody
array $optParams

Optional parameters.

Return Value

BatchCreateRowsResponse

Exceptions

Exception

Area120tablesEmpty batchDelete(string $parent, BatchDeleteRowsRequest $postBody, array $optParams = [])

Deletes multiple rows. (rows.batchDelete)

Parameters

string $parent

Required. The parent table shared by all rows being deleted. Format: tables/{table}

BatchDeleteRowsRequest $postBody
array $optParams

Optional parameters.

Return Value

Area120tablesEmpty

Exceptions

Exception

BatchUpdateRowsResponse batchUpdate(string $parent, BatchUpdateRowsRequest $postBody, array $optParams = [])

Updates multiple rows. (rows.batchUpdate)

Parameters

string $parent

Required. The parent table shared by all rows being updated. Format: tables/{table}

BatchUpdateRowsRequest $postBody
array $optParams

Optional parameters.

Return Value

BatchUpdateRowsResponse

Exceptions

Exception

Row create(string $parent, Row $postBody, array $optParams = [])

Creates a row. (rows.create)

Parameters

string $parent

Required. The parent table where this row will be created. Format: tables/{table}

Row $postBody
array $optParams

Optional parameters.

Return Value

Row

Exceptions

Exception

Area120tablesEmpty delete(string $name, array $optParams = [])

Deletes a row. (rows.delete)

Parameters

string $name

Required. The name of the row to delete. Format: tables/{table}/rows/{row}

array $optParams

Optional parameters.

Return Value

Area120tablesEmpty

Exceptions

Exception

Row get(string $name, array $optParams = [])

Gets a row. Returns NOT_FOUND if the row does not exist in the table.

(rows.get)

Parameters

string $name

Required. The name of the row to retrieve. Format: tables/{table}/rows/{row}

array $optParams

Optional parameters.

Return Value

Row

Exceptions

Exception

ListRowsResponse listTablesRows(string $parent, array $optParams = [])

Lists rows in a table. Returns NOT_FOUND if the table does not exist.

(rows.listTablesRows)

Parameters

string $parent

Required. The parent table. Format: tables/{table}

array $optParams

Optional parameters.

Return Value

ListRowsResponse

Exceptions

Exception

Row patch(string $name, Row $postBody, array $optParams = [])

Updates a row. (rows.patch)

Parameters

string $name

The resource name of the row. Row names have the form tables/{table}/rows/{row}. The name is ignored when creating a row.

Row $postBody
array $optParams

Optional parameters.

Return Value

Row

Exceptions

Exception