ParameterValue
Representa un valor de parámetro de BigQuery.
Representación JSON |
{
// Union field parameter_value can be only one of the following:
"value": string,
"arrayValue": {
object (ArrayValue )
},
"structValue": {
object (StructValue )
}
// End of list of possible types for union field parameter_value .
} |
Campos |
Campo de unión parameter_value . Valor del parámetro. Las direcciones (parameter_value ) solo pueden ser una de las siguientes opciones: |
value |
string
Valor para un parámetro que no es de estructura ni de arreglo.
|
arrayValue |
object (ArrayValue )
Valor de un parámetro de arreglo.
|
structValue |
object (StructValue )
Valor de un parámetro de struct.
|
ArrayValue
Define un valor de parámetro de arreglo.
Valor de estructura
Define un valor de parámetro de struct.
Representación JSON |
{
"values": {
string: {
object (ParameterValue )
},
...
}
} |
Campos |
values |
map (key: string, value: object (ParameterValue ))
Valores del campo struct con clave por nombre de campo. Es un objeto que contiene una lista de pares "key": value . Ejemplo: { "name": "wrench", "mass": "1.3kg", "count": "3" } .
|
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2022-09-26 (UTC)
[null,null,["Última actualización: 2022-09-26 (UTC)"],[[["This documentation describes the `ParameterValue` object, used to represent a BigQuery parameter value in Ads Data Hub."],["`ParameterValue` can hold a single value, an array of values (`ArrayValue`), or a struct of values (`StructValue`)."],["`ArrayValue` contains a list of `ParameterValue` objects."],["`StructValue` uses a map to store key-value pairs, where values are represented by `ParameterValue` objects."]]],["The content defines BigQuery parameter values, which can be represented as a string, an array, or a struct. A parameter value is represented in JSON format and can hold a single value, an `ArrayValue`, or a `StructValue`. `ArrayValue` contains an array of `ParameterValue` objects. `StructValue` contains a map where keys are strings and values are `ParameterValue` objects. The structure is detailed with specific JSON representations for each type.\n"]]