Show / Hide Table of Contents

Class Argument

Input/output argument of a function or a stored procedure.

Inheritance
object
Argument
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 Argument : IDirectResponseSchema

Properties

ArgumentKind

Optional. Defaults to FIXED_TYPE.

Declaration
[JsonProperty("argumentKind")]
public virtual string ArgumentKind { get; set; }
Property Value
Type Description
string

DataType

Required unless argument_kind = ANY_TYPE.

Declaration
[JsonProperty("dataType")]
public virtual StandardSqlDataType DataType { get; set; }
Property Value
Type Description
StandardSqlDataType

ETag

The ETag of the item.

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

IsAggregate

Optional. Whether the argument is an aggregate function parameter. Must be Unset for routine types other than AGGREGATE_FUNCTION. For AGGREGATE_FUNCTION, if set to false, it is equivalent to adding "NOT AGGREGATE" clause in DDL; Otherwise, it is equivalent to omitting "NOT AGGREGATE" clause in DDL.

Declaration
[JsonProperty("isAggregate")]
public virtual bool? IsAggregate { get; set; }
Property Value
Type Description
bool?

Mode

Optional. Specifies whether the argument is input or output. Can be set for procedures only.

Declaration
[JsonProperty("mode")]
public virtual string Mode { get; set; }
Property Value
Type Description
string

Name

Optional. The name of this argument. Can be absent for function return argument.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX