- 1.105.1 (latest)
- 1.105.0
- 1.104.1
- 1.103.0
- 1.102.0
- 1.101.0
- 1.100.0
- 1.98.0
- 1.97.0
- 1.96.0
- 1.95.0
- 1.94.0
- 1.93.1
- 1.92.1
- 1.91.0
- 1.90.0
- 1.89.0
- 1.88.0
- 1.87.0
- 1.86.0
- 1.85.0
- 1.84.0
- 1.83.0
- 1.82.0
- 1.81.0
- 1.80.0
- 1.79.0
- 1.78.0
- 1.77.0
- 1.76.1
- 1.68.0
- 1.67.0
- 1.66.0
- 1.65.0
- 1.64.0
- 1.63.2
- 1.62.1
- 1.61.0
- 1.60.0
- 1.59.0
- 1.58.4
- 1.57.0
- 1.56.0
- 1.55.0
- 1.54.2
Reference documentation and code samples for the Cloud Spanner V1 Client class Write.
Arguments to insert, update, insert_or_update, and replace operations.
Generated from protobuf message google.spanner.v1.Mutation.Write
Namespace
Google \ Cloud \ Spanner \ V1 \ MutationMethods
__construct
Constructor.
Parameters | |
---|---|
Name | Description |
data |
array
Optional. Data for populating the Message object. |
↳ table |
string
Required. The table whose rows will be written. |
↳ columns |
array
The names of the columns in table to be written. The list of columns must contain enough columns to allow Cloud Spanner to derive values for all primary key columns in the row(s) to be modified. |
↳ values |
array<Google\Protobuf\ListValue>
The values to be written. |
getTable
Required. The table whose rows will be written.
Returns | |
---|---|
Type | Description |
string |
setTable
Required. The table whose rows will be written.
Parameter | |
---|---|
Name | Description |
var |
string
|
Returns | |
---|---|
Type | Description |
$this |
getColumns
The names of the columns in table to be written.
The list of columns must contain enough columns to allow Cloud Spanner to derive values for all primary key columns in the row(s) to be modified.
Returns | |
---|---|
Type | Description |
Google\Protobuf\Internal\RepeatedField |
setColumns
The names of the columns in table to be written.
The list of columns must contain enough columns to allow Cloud Spanner to derive values for all primary key columns in the row(s) to be modified.
Parameter | |
---|---|
Name | Description |
var |
string[]
|
Returns | |
---|---|
Type | Description |
$this |
getValues
The values to be written. values
can contain more than one
list of values. If it does, then multiple rows are written, one
for each entry in values
. Each list in values
must have
exactly as many entries as there are entries in
columns above. Sending
multiple lists is equivalent to sending multiple Mutation
s, each
containing one values
entry and repeating
table and
columns. Individual values in
each list are encoded as described here.
Returns | |
---|---|
Type | Description |
Google\Protobuf\Internal\RepeatedField |
setValues
The values to be written. values
can contain more than one
list of values. If it does, then multiple rows are written, one
for each entry in values
. Each list in values
must have
exactly as many entries as there are entries in
columns above. Sending
multiple lists is equivalent to sending multiple Mutation
s, each
containing one values
entry and repeating
table and
columns. Individual values in
each list are encoded as described here.
Parameter | |
---|---|
Name | Description |
var |
array<Google\Protobuf\ListValue>
|
Returns | |
---|---|
Type | Description |
$this |