Google BigQuery v2 API - Class Filters (3.5.0)

public static class Filters

Reference documentation and code samples for the Google BigQuery v2 API class Filters.

Helper method to build filter strings.

Inheritance

object > Filters

Namespace

Google.Cloud.BigQuery.V2

Assembly

Google.Cloud.BigQuery.V2.dll

Methods

FromLabel(string, string)

public static string FromLabel(string name, string value)

Creates a filter for a single label.

Parameters
NameDescription
namestring

The name of the label to filter on. Must not be null or empty.

valuestring

The value for the label. May be null or empty.

Returns
TypeDescription
string

A string of the form "labels.{name}:{value}" when value is non-null and non-empty, or "labels.{name}" when value is null.

FromLabels(IDictionary<string, string>)

public static string FromLabels(IDictionary<string, string> labels)

Creates a filter for the given labels.

Parameter
NameDescription
labelsIDictionarystringstring

The labels to filter by. Must not be null.

Returns
TypeDescription
string

A filter for the given labels.

Remarks

See FromLabel(string, string) for the format of a single label; this method joins multiple labels together with spaces.