Class PythonOptions
Options for a user-defined Python function.
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class PythonOptions : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EntryPoint
Required. The name of the function defined in Python code as the entry point when the Python UDF is invoked.
Declaration
[JsonProperty("entryPoint")]
public virtual string EntryPoint { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Packages
Optional. A list of Python package names along with versions to be installed. Example: ["pandas>=2.1", "google-cloud-translate==3.11"]. For more information, see Use third-party packages.
Declaration
[JsonProperty("packages")]
public virtual IList<string> Packages { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |