Page Summary
-
A ParameterValue represents a BigQuery parameter value.
-
It can hold a single value, an array of values (ArrayValue), or a struct (StructValue).
-
ArrayValue defines an array parameter value with a list of ParameterValue objects.
-
StructValue defines a struct parameter value with field values keyed by name.
Represents a BigQuery parameter value.
| JSON representation |
|---|
{ // Union field |
parameter_value
. Parameter value. parameter_value
can be only one of the following:value
string
Value for a non-array, non-struct parameter.
arrayValue
object (
ArrayValue
)
Value for an array parameter.
structValue
object (
StructValue
)
Value for a struct parameter.
ArrayValue
Defines an array parameter value.
| JSON representation |
|---|
{
"values"
:
[
{
object (
|
| Fields | |
|---|---|
values[]
|
The array values. |
StructValue
Defines a struct parameter value.
| JSON representation |
|---|
{
"values"
:
{
string
:
{
object (
|
| Fields | |
|---|---|
values
|
The struct field values keyed by field name. An object containing a list of |


