Class VertexMultimodalDatasetDestination
This class is experimental and may change in future versions. The specification for an output Vertex AI multimodal dataset.
public record VertexMultimodalDatasetDestination : IEquatable<VertexMultimodalDatasetDestination>
- Inheritance
-
VertexMultimodalDatasetDestination
- Implements
- Inherited Members
Properties
BigqueryDestination
The BigQuery destination for the multimodal dataset.
[JsonPropertyName("bigqueryDestination")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? BigqueryDestination { get; set; }
Property Value
DisplayName
The display name of the multimodal dataset.
[JsonPropertyName("displayName")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? DisplayName { get; set; }
Property Value
Methods
FromJson(string, JsonSerializerOptions?)
Deserializes a JSON string to a VertexMultimodalDatasetDestination object.
public static VertexMultimodalDatasetDestination? FromJson(string jsonString, JsonSerializerOptions? options = null)
Parameters
jsonStringstringThe JSON string to deserialize.
optionsJsonSerializerOptionsOptional JsonSerializerOptions.
Returns
- VertexMultimodalDatasetDestination
The deserialized VertexMultimodalDatasetDestination object, or null if deserialization fails.