Class BigQuerySource
The BigQuery location for the input content. This data type is not supported in Gemini API.
public record BigQuerySource : IEquatable<BigQuerySource>
- Inheritance
-
BigQuerySource
- Implements
- Inherited Members
Properties
InputUri
BigQuery URI to a table, up to 2000 characters long. Accepted forms: * BigQuery path. For
example: bq://projectId.bqDatasetId.bqTableId.
[JsonPropertyName("inputUri")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? InputUri { get; set; }
Property Value
Methods
FromJson(string, JsonSerializerOptions?)
Deserializes a JSON string to a BigQuerySource object.
public static BigQuerySource? FromJson(string jsonString, JsonSerializerOptions? options = null)
Parameters
jsonStringstringThe JSON string to deserialize.
optionsJsonSerializerOptionsOptional JsonSerializerOptions.
Returns
- BigQuerySource
The deserialized BigQuerySource object, or null if deserialization fails.