Class ExternalRuntimeOptions
Options for the runtime of the external system.
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ExternalRuntimeOptions : IDirectResponseSchema
Properties
ContainerCpu
Optional. Amount of CPU provisioned for a Python UDF container instance. For more information, see Configure container limits for Python UDFs
Declaration
[JsonProperty("containerCpu")]
public virtual double? ContainerCpu { get; set; }
Property Value
| Type | Description |
|---|---|
| double? |
ContainerMemory
Optional. Amount of memory provisioned for a Python UDF container instance. Format: {number}{unit} where unit is one of "M", "G", "Mi" and "Gi" (e.g. 1G, 512Mi). If not specified, the default value is 512Mi. For more information, see Configure container limits for Python UDFs
Declaration
[JsonProperty("containerMemory")]
public virtual string ContainerMemory { 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 |
MaxBatchingRows
Optional. Maximum number of rows in each batch sent to the external runtime. 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? |
RuntimeConnection
Optional. Fully qualified name of the connection whose service account will be used to execute the code in the container. Format:
"projects/{project_id}/locations/{location_id}/connections/{connection_id}"
Declaration
[JsonProperty("runtimeConnection")]
public virtual string RuntimeConnection { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RuntimeVersion
Optional. Language runtime version. Example: python-3.11.
Declaration
[JsonProperty("runtimeVersion")]
public virtual string RuntimeVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| string |