Class RemoteFunctionOptions
Options for a remote user-defined function.
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class RemoteFunctionOptions : IDirectResponseSchema
Properties
Connection
Fully qualified name of the user-provided connection object which holds the authentication information to send requests to the remote service. Format:
"projects/{projectId}/locations/{locationId}/connections/{connectionId}"
Declaration
[JsonProperty("connection")]
public virtual string Connection { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Endpoint
Endpoint of the user-provided remote service, e.g.
https://us-east1-my_gcf_project.cloudfunctions.net/remote_add
Declaration
[JsonProperty("endpoint")]
public virtual string Endpoint { get; set; }
Property Value
Type | Description |
---|---|
string |
MaxBatchingRows
Max number of rows in each batch sent to the remote service. If absent or if 0, BigQuery dynamically decides the number of rows in a batch.
Declaration
[JsonProperty("maxBatchingRows")]
public virtual long? MaxBatchingRows { get; set; }
Property Value
Type | Description |
---|---|
long? |
UserDefinedContext
User-defined context as a set of key/value pairs, which will be sent as function invocation context together with batched arguments in the requests to the remote service. The total number of bytes of keys and values must be less than 8KB.
Declaration
[JsonProperty("userDefinedContext")]
public virtual IDictionary<string, string> UserDefinedContext { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |