Show / Hide Table of Contents

Class PythonOptions

Options for a user-defined Python function.

Inheritance
object
PythonOptions
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX