Class DatasetVersionRequest
- Namespace
 - FoundationaLLM.Common.Models.AzureAIService
 
- Assembly
 - FoundationaLLM.Common.dll
 
A data set version request.
public class DatasetVersionRequest
  - Inheritance
 - 
      
      DatasetVersionRequest
 
- Inherited Members
 
- Extension Methods
 
Properties
DataContainerName
The container to save the data to.
[JsonPropertyName("dataContainerName")]
public string DataContainerName { get; set; }
  Property Value
DataType
The data type of the data.
[JsonPropertyName("dataType")]
public string DataType { get; set; }
  Property Value
DataUri
The uri to the data set.
[JsonPropertyName("dataUri")]
public string DataUri { get; set; }
  Property Value
IsRegistered
Using registered data.
[JsonPropertyName("isRegistered")]
public bool IsRegistered { get; set; }
  Property Value
MutableProps
Any mutable properties to pass to the data
[JsonPropertyName("mutableProps")]
public Dictionary<string, string>? MutableProps { get; set; }