Show / Hide Table of Contents

Class UserDefinedFunctionResource

Inheritance
System.Object
UserDefinedFunctionResource
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class UserDefinedFunctionResource : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

InlineCode

[Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.

Declaration
[JsonProperty("inlineCode")]
public virtual string InlineCode { get; set; }
Property Value
Type Description
System.String

ResourceUri

[Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).

Declaration
[JsonProperty("resourceUri")]
public virtual string ResourceUri { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top