diff --git a/src/libs/Instill/Generated/Instill.Models.AppV1alphaMessage.g.cs b/src/libs/Instill/Generated/Instill.Models.AppV1alphaMessage.g.cs
index 6295f56..1e4183f 100644
--- a/src/libs/Instill/Generated/Instill.Models.AppV1alphaMessage.g.cs
+++ b/src/libs/Instill/Generated/Instill.Models.AppV1alphaMessage.g.cs
@@ -68,14 +68,14 @@ public sealed partial class AppV1alphaMessage
///
/// Included only in responses
///
- [global::System.Text.Json.Serialization.JsonPropertyName("chunks")]
- public global::System.Collections.Generic.IList? Chunks { get; set; }
+ [global::System.Text.Json.Serialization.JsonPropertyName("standaloneQuestion")]
+ public string? StandaloneQuestion { get; set; }
///
/// Included only in responses
///
- [global::System.Text.Json.Serialization.JsonPropertyName("standaloneQuestion")]
- public string? StandaloneQuestion { get; set; }
+ [global::System.Text.Json.Serialization.JsonPropertyName("citations")]
+ public global::System.Collections.Generic.IList? Citations { get; set; }
///
/// Additional properties that are not explicitly defined in the schema
@@ -107,10 +107,10 @@ public sealed partial class AppV1alphaMessage
///
/// Included only in responses
///
- ///
+ ///
/// Included only in responses
///
- ///
+ ///
/// Included only in responses
///
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -124,8 +124,8 @@ public AppV1alphaMessage(
global::System.DateTime? createTime,
global::System.DateTime? updateTime,
string? msgSenderUid,
- global::System.Collections.Generic.IList? chunks,
- string? standaloneQuestion)
+ string? standaloneQuestion,
+ global::System.Collections.Generic.IList? citations)
{
this.Content = content ?? throw new global::System.ArgumentNullException(nameof(content));
this.Role = role ?? throw new global::System.ArgumentNullException(nameof(role));
@@ -136,8 +136,8 @@ public AppV1alphaMessage(
this.CreateTime = createTime;
this.UpdateTime = updateTime;
this.MsgSenderUid = msgSenderUid;
- this.Chunks = chunks;
this.StandaloneQuestion = standaloneQuestion;
+ this.Citations = citations;
}
///
diff --git a/src/libs/Instill/Generated/Instill.Models.Citation.Json.g.cs b/src/libs/Instill/Generated/Instill.Models.Citation.Json.g.cs
new file mode 100644
index 0000000..bbbc550
--- /dev/null
+++ b/src/libs/Instill/Generated/Instill.Models.Citation.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Instill
+{
+ public sealed partial class Citation
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Instill.Citation? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Instill.Citation),
+ jsonSerializerContext) as global::Instill.Citation;
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Instill.Citation? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Instill.Citation),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Instill.Citation;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Instill/Generated/Instill.Models.Citation.g.cs b/src/libs/Instill/Generated/Instill.Models.Citation.g.cs
new file mode 100644
index 0000000..8766aa0
--- /dev/null
+++ b/src/libs/Instill/Generated/Instill.Models.Citation.g.cs
@@ -0,0 +1,86 @@
+
+#nullable enable
+
+namespace Instill
+{
+ ///
+ ///
+ ///
+ public sealed partial class Citation
+ {
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Instill.JsonConverters.CitationsTypeJsonConverter))]
+ public global::Instill.CitationsType? Type { get; set; }
+
+ ///
+ /// Included only in responses
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("name")]
+ public string? Name { get; set; }
+
+ ///
+ /// Included only in responses
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("url")]
+ public string? Url { get; set; }
+
+ ///
+ /// Included only in responses
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("chunkUid")]
+ public string? ChunkUid { get; set; }
+
+ ///
+ /// Included only in responses
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("fileUid")]
+ public string? FileUid { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ ///
+ /// Included only in responses
+ ///
+ ///
+ /// Included only in responses
+ ///
+ ///
+ /// Included only in responses
+ ///
+ ///
+ /// Included only in responses
+ ///
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+ public Citation(
+ global::Instill.CitationsType? type,
+ string? name,
+ string? url,
+ string? chunkUid,
+ string? fileUid)
+ {
+ this.Type = type;
+ this.Name = name;
+ this.Url = url;
+ this.ChunkUid = chunkUid;
+ this.FileUid = fileUid;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public Citation()
+ {
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Instill/Generated/Instill.Models.CitationsType.g.cs b/src/libs/Instill/Generated/Instill.Models.CitationsType.g.cs
new file mode 100644
index 0000000..b24fb9e
--- /dev/null
+++ b/src/libs/Instill/Generated/Instill.Models.CitationsType.g.cs
@@ -0,0 +1,52 @@
+
+#nullable enable
+
+namespace Instill
+{
+ ///
+ /// - CITATIONS_TYPE_CHUNK: Chunk-based citation
+ /// - CITATIONS_TYPE_URL: URL-based citation
+ ///
+ public enum CitationsType
+ {
+ ///
+ /// Chunk-based citation
+ ///
+ CHUNK,
+ ///
+ /// URL-based citation
+ ///
+ URL,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class CitationsTypeExtensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this CitationsType value)
+ {
+ return value switch
+ {
+ CitationsType.CHUNK => "CITATIONS_TYPE_CHUNK",
+ CitationsType.URL => "CITATIONS_TYPE_URL",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static CitationsType? ToEnum(string value)
+ {
+ return value switch
+ {
+ "CITATIONS_TYPE_CHUNK" => CitationsType.CHUNK,
+ "CITATIONS_TYPE_URL" => CitationsType.URL,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Instill/Generated/Instill.Models.LookUpConnectionAdminResponse.Json.g.cs b/src/libs/Instill/Generated/Instill.Models.LookUpConnectionAdminResponse.Json.g.cs
new file mode 100644
index 0000000..a88f984
--- /dev/null
+++ b/src/libs/Instill/Generated/Instill.Models.LookUpConnectionAdminResponse.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Instill
+{
+ public sealed partial class LookUpConnectionAdminResponse
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Instill.LookUpConnectionAdminResponse? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Instill.LookUpConnectionAdminResponse),
+ jsonSerializerContext) as global::Instill.LookUpConnectionAdminResponse;
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Instill.LookUpConnectionAdminResponse? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Instill.LookUpConnectionAdminResponse),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Instill.LookUpConnectionAdminResponse;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Instill/Generated/Instill.Models.LookUpConnectionAdminResponse.g.cs b/src/libs/Instill/Generated/Instill.Models.LookUpConnectionAdminResponse.g.cs
new file mode 100644
index 0000000..950bee0
--- /dev/null
+++ b/src/libs/Instill/Generated/Instill.Models.LookUpConnectionAdminResponse.g.cs
@@ -0,0 +1,45 @@
+
+#nullable enable
+
+namespace Instill
+{
+ ///
+ /// LookUpConnectionAdminResponse contains the requested connection.
+ ///
+ public sealed partial class LookUpConnectionAdminResponse
+ {
+ ///
+ /// The requested connection.
+ /// Included only in responses
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("connection")]
+ public global::Instill.Connection? Connection { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// The requested connection.
+ /// Included only in responses
+ ///
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+ public LookUpConnectionAdminResponse(
+ global::Instill.Connection? connection)
+ {
+ this.Connection = connection;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public LookUpConnectionAdminResponse()
+ {
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Instill/Generated/Instill.Models.TriggerData.g.cs b/src/libs/Instill/Generated/Instill.Models.TriggerData.g.cs
index 8e671a1..e78958e 100644
--- a/src/libs/Instill/Generated/Instill.Models.TriggerData.g.cs
+++ b/src/libs/Instill/Generated/Instill.Models.TriggerData.g.cs
@@ -4,22 +4,44 @@
namespace Instill
{
///
- ///
+ /// TriggerData contains the input data for a pipeline run.
///
public sealed partial class TriggerData
{
///
- ///
+ /// The values of the pipeline variables.
///
[global::System.Text.Json.Serialization.JsonPropertyName("variable")]
public object? Variable { get; set; }
///
- ///
+ /// A collection of secrets. By default, if a pipeline references any secret
+ /// (`${secret.<id>}`), its value is read from the namespace's secrets.
+ /// This object provides a way to override these secret values: if one of its
+ /// keys matches the ID of a reference secret, its value will be read from
+ /// here instead of from the namespace secret collection.
///
[global::System.Text.Json.Serialization.JsonPropertyName("secret")]
public global::System.Collections.Generic.Dictionary? Secret { get; set; }
+ ///
+ /// A collection of connection references. By default, connection references
+ /// (`${connection.<id>}`) in a pipeline will be resolved by fetching the
+ /// value from the requester's connections. Connections contain sensitive data
+ /// and can't be shared across namespaces, so this means that, in order to
+ /// successfully run a pipeline owned by another namespace, the requester will
+ /// need to have a connection with the same ID.
+ /// This object provides a way to override the connection references with
+ /// connections that the requester owns. Each element in the object maps a
+ /// connection ID present in the pipeline (key) to the ID of a connection
+ /// owned by the requester (value).
+ /// Note that, since only references are accepted (this object shouldn't
+ /// contain connection **values**), the reference syntax shouldn't be used
+ /// here.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("connectionReferences")]
+ public global::System.Collections.Generic.Dictionary? ConnectionReferences { get; set; }
+
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -29,15 +51,40 @@ public sealed partial class TriggerData
///
/// Initializes a new instance of the class.
///
- ///
- ///
+ ///
+ /// The values of the pipeline variables.
+ ///
+ ///
+ /// A collection of secrets. By default, if a pipeline references any secret
+ /// (`${secret.<id>}`), its value is read from the namespace's secrets.
+ /// This object provides a way to override these secret values: if one of its
+ /// keys matches the ID of a reference secret, its value will be read from
+ /// here instead of from the namespace secret collection.
+ ///
+ ///
+ /// A collection of connection references. By default, connection references
+ /// (`${connection.<id>}`) in a pipeline will be resolved by fetching the
+ /// value from the requester's connections. Connections contain sensitive data
+ /// and can't be shared across namespaces, so this means that, in order to
+ /// successfully run a pipeline owned by another namespace, the requester will
+ /// need to have a connection with the same ID.
+ /// This object provides a way to override the connection references with
+ /// connections that the requester owns. Each element in the object maps a
+ /// connection ID present in the pipeline (key) to the ID of a connection
+ /// owned by the requester (value).
+ /// Note that, since only references are accepted (this object shouldn't
+ /// contain connection **values**), the reference syntax shouldn't be used
+ /// here.
+ ///
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
public TriggerData(
object? variable,
- global::System.Collections.Generic.Dictionary? secret)
+ global::System.Collections.Generic.Dictionary? secret,
+ global::System.Collections.Generic.Dictionary? connectionReferences)
{
this.Variable = variable;
this.Secret = secret;
+ this.ConnectionReferences = connectionReferences;
}
///
diff --git a/src/libs/Instill/Generated/Instill.Models.TriggerDataConnectionReferences.Json.g.cs b/src/libs/Instill/Generated/Instill.Models.TriggerDataConnectionReferences.Json.g.cs
new file mode 100644
index 0000000..f41caae
--- /dev/null
+++ b/src/libs/Instill/Generated/Instill.Models.TriggerDataConnectionReferences.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Instill
+{
+ public sealed partial class TriggerDataConnectionReferences
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Instill.TriggerDataConnectionReferences? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Instill.TriggerDataConnectionReferences),
+ jsonSerializerContext) as global::Instill.TriggerDataConnectionReferences;
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Instill.TriggerDataConnectionReferences? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Instill.TriggerDataConnectionReferences),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Instill.TriggerDataConnectionReferences;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Instill/Generated/Instill.Models.TriggerDataConnectionReferences.g.cs b/src/libs/Instill/Generated/Instill.Models.TriggerDataConnectionReferences.g.cs
new file mode 100644
index 0000000..78048d9
--- /dev/null
+++ b/src/libs/Instill/Generated/Instill.Models.TriggerDataConnectionReferences.g.cs
@@ -0,0 +1,39 @@
+
+#nullable enable
+
+namespace Instill
+{
+ ///
+ /// A collection of connection references. By default, connection references
+ /// (`${connection.<id>}`) in a pipeline will be resolved by fetching the
+ /// value from the requester's connections. Connections contain sensitive data
+ /// and can't be shared across namespaces, so this means that, in order to
+ /// successfully run a pipeline owned by another namespace, the requester will
+ /// need to have a connection with the same ID.
+ /// This object provides a way to override the connection references with
+ /// connections that the requester owns. Each element in the object maps a
+ /// connection ID present in the pipeline (key) to the ID of a connection
+ /// owned by the requester (value).
+ /// Note that, since only references are accepted (this object shouldn't
+ /// contain connection **values**), the reference syntax shouldn't be used
+ /// here.
+ ///
+ public sealed partial class TriggerDataConnectionReferences
+ {
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+ public TriggerDataConnectionReferences(
+ )
+ {
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Instill/Generated/Instill.Models.TriggerDataSecret.g.cs b/src/libs/Instill/Generated/Instill.Models.TriggerDataSecret.g.cs
index 1e16f91..c2562e6 100644
--- a/src/libs/Instill/Generated/Instill.Models.TriggerDataSecret.g.cs
+++ b/src/libs/Instill/Generated/Instill.Models.TriggerDataSecret.g.cs
@@ -4,7 +4,11 @@
namespace Instill
{
///
- ///
+ /// A collection of secrets. By default, if a pipeline references any secret
+ /// (`${secret.<id>}`), its value is read from the namespace's secrets.
+ /// This object provides a way to override these secret values: if one of its
+ /// keys matches the ID of a reference secret, its value will be read from
+ /// here instead of from the namespace secret collection.
///
public sealed partial class TriggerDataSecret
{
diff --git a/src/libs/Instill/Generated/Instill.Models.TriggerDataVariable.g.cs b/src/libs/Instill/Generated/Instill.Models.TriggerDataVariable.g.cs
index ad2c16f..7c75502 100644
--- a/src/libs/Instill/Generated/Instill.Models.TriggerDataVariable.g.cs
+++ b/src/libs/Instill/Generated/Instill.Models.TriggerDataVariable.g.cs
@@ -4,7 +4,7 @@
namespace Instill
{
///
- ///
+ /// The values of the pipeline variables.
///
public sealed partial class TriggerDataVariable
{
diff --git a/src/libs/Instill/Generated/JsonConverters.CitationsType.g.cs b/src/libs/Instill/Generated/JsonConverters.CitationsType.g.cs
new file mode 100644
index 0000000..4eb6f0a
--- /dev/null
+++ b/src/libs/Instill/Generated/JsonConverters.CitationsType.g.cs
@@ -0,0 +1,49 @@
+#nullable enable
+
+namespace Instill.JsonConverters
+{
+ ///
+ public sealed class CitationsTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Instill.CitationsType Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Instill.CitationsTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Instill.CitationsType)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Instill.CitationsType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Instill.CitationsTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Instill/Generated/JsonConverters.CitationsTypeNullable.g.cs b/src/libs/Instill/Generated/JsonConverters.CitationsTypeNullable.g.cs
new file mode 100644
index 0000000..38658c2
--- /dev/null
+++ b/src/libs/Instill/Generated/JsonConverters.CitationsTypeNullable.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace Instill.JsonConverters
+{
+ ///
+ public sealed class CitationsTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Instill.CitationsType? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Instill.CitationsTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Instill.CitationsType)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Instill.CitationsType? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Instill.CitationsTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Instill/Generated/JsonSerializerContext.g.cs b/src/libs/Instill/Generated/JsonSerializerContext.g.cs
index 4049a32..e65fe46 100644
--- a/src/libs/Instill/Generated/JsonSerializerContext.g.cs
+++ b/src/libs/Instill/Generated/JsonSerializerContext.g.cs
@@ -35,6 +35,8 @@ namespace Instill
typeof(global::Instill.JsonConverters.CheckNamespaceResponseNamespaceNullableJsonConverter),
typeof(global::Instill.JsonConverters.ChunkTypeJsonConverter),
typeof(global::Instill.JsonConverters.ChunkTypeNullableJsonConverter),
+ typeof(global::Instill.JsonConverters.CitationsTypeJsonConverter),
+ typeof(global::Instill.JsonConverters.CitationsTypeNullableJsonConverter),
typeof(global::Instill.JsonConverters.RoleJsonConverter),
typeof(global::Instill.JsonConverters.RoleNullableJsonConverter),
typeof(global::Instill.JsonConverters.ComponentTypeJsonConverter),
diff --git a/src/libs/Instill/Generated/JsonSerializerContextTypes.g.cs b/src/libs/Instill/Generated/JsonSerializerContextTypes.g.cs
index ea969c2..79c412a 100644
--- a/src/libs/Instill/Generated/JsonSerializerContextTypes.g.cs
+++ b/src/libs/Instill/Generated/JsonSerializerContextTypes.g.cs
@@ -202,1290 +202,1306 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Instill.CloneNamespacePipelineBody? Type46 { get; set; }
+ public global::Instill.Citation? Type46 { get; set; }
///
///
///
- public global::Instill.Sharing? Type47 { get; set; }
+ public global::Instill.CitationsType? Type47 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type48 { get; set; }
+ public global::Instill.CloneNamespacePipelineBody? Type48 { get; set; }
///
///
///
- public global::Instill.SharingUser? Type49 { get; set; }
+ public global::Instill.Sharing? Type49 { get; set; }
///
///
///
- public global::Instill.Role? Type50 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type50 { get; set; }
///
///
///
- public global::Instill.ShareCode? Type51 { get; set; }
+ public global::Instill.SharingUser? Type51 { get; set; }
///
///
///
- public global::Instill.CloneNamespacePipelineReleaseBody? Type52 { get; set; }
+ public global::Instill.Role? Type52 { get; set; }
///
///
///
- public global::Instill.ComponentDefinition? Type53 { get; set; }
+ public global::Instill.ShareCode? Type53 { get; set; }
///
///
///
- public global::Instill.Spec? Type54 { get; set; }
+ public global::Instill.CloneNamespacePipelineReleaseBody? Type54 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type55 { get; set; }
+ public global::Instill.ComponentDefinition? Type55 { get; set; }
///
///
///
- public global::Instill.DataSpecification? Type56 { get; set; }
+ public global::Instill.Spec? Type56 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type57 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type57 { get; set; }
///
///
///
- public global::Instill.EventSpecification? Type58 { get; set; }
+ public global::Instill.DataSpecification? Type58 { get; set; }
///
///
///
- public global::Instill.ComponentType? Type59 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type59 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type60 { get; set; }
+ public global::Instill.EventSpecification? Type60 { get; set; }
///
///
///
- public global::Instill.ComponentTask? Type61 { get; set; }
+ public global::Instill.ComponentType? Type61 { get; set; }
///
///
///
- public global::Instill.ComponentDefinitionReleaseStage? Type62 { get; set; }
+ public global::System.Collections.Generic.IList? Type62 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type63 { get; set; }
+ public global::Instill.ComponentTask? Type63 { get; set; }
///
///
///
- public global::Instill.ComponentEvent? Type64 { get; set; }
+ public global::Instill.ComponentDefinitionReleaseStage? Type64 { get; set; }
///
///
///
- public global::Instill.ComponentDefinitionView? Type65 { get; set; }
+ public global::System.Collections.Generic.IList? Type65 { get; set; }
///
///
///
- public global::Instill.ComponentRun? Type66 { get; set; }
+ public global::Instill.ComponentEvent? Type66 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type67 { get; set; }
+ public global::Instill.ComponentDefinitionView? Type67 { get; set; }
///
///
///
- public global::Instill.FileReference? Type68 { get; set; }
+ public global::Instill.ComponentRun? Type68 { get; set; }
///
///
///
- public global::Instill.Connection? Type69 { get; set; }
+ public global::System.Collections.Generic.IList? Type69 { get; set; }
///
///
///
- public global::Instill.Method? Type70 { get; set; }
+ public global::Instill.FileReference? Type70 { get; set; }
///
///
///
- public global::Instill.PipelineV1betaView? Type71 { get; set; }
+ public global::Instill.Connection? Type71 { get; set; }
///
///
///
- public global::Instill.Conversation? Type72 { get; set; }
+ public global::Instill.Method? Type72 { get; set; }
///
///
///
- public global::Instill.CreateAgentBody? Type73 { get; set; }
+ public global::Instill.PipelineV1betaView? Type73 { get; set; }
///
///
///
- public global::Instill.CreateAgentResponse? Type74 { get; set; }
+ public global::Instill.Conversation? Type74 { get; set; }
///
///
///
- public global::Instill.CreateAppBody? Type75 { get; set; }
+ public global::Instill.CreateAgentBody? Type75 { get; set; }
///
///
///
- public global::Instill.CreateAppResponse? Type76 { get; set; }
+ public global::Instill.CreateAgentResponse? Type76 { get; set; }
///
///
///
- public global::Instill.CreateCatalogBody? Type77 { get; set; }
+ public global::Instill.CreateAppBody? Type77 { get; set; }
///
///
///
- public global::Instill.CreateCatalogResponse? Type78 { get; set; }
+ public global::Instill.CreateAppResponse? Type78 { get; set; }
///
///
///
- public global::Instill.CreateChatBody? Type79 { get; set; }
+ public global::Instill.CreateCatalogBody? Type79 { get; set; }
///
///
///
- public global::Instill.CreateChatResponse? Type80 { get; set; }
+ public global::Instill.CreateCatalogResponse? Type80 { get; set; }
///
///
///
- public global::Instill.Chat? Type81 { get; set; }
+ public global::Instill.CreateChatBody? Type81 { get; set; }
///
///
///
- public global::Instill.CreateConversationBody? Type82 { get; set; }
+ public global::Instill.CreateChatResponse? Type82 { get; set; }
///
///
///
- public global::Instill.CreateConversationResponse? Type83 { get; set; }
+ public global::Instill.Chat? Type83 { get; set; }
///
///
///
- public global::Instill.CreateMessageBody? Type84 { get; set; }
+ public global::Instill.CreateConversationBody? Type84 { get; set; }
///
///
///
- public global::Instill.MessageType? Type85 { get; set; }
+ public global::Instill.CreateConversationResponse? Type85 { get; set; }
///
///
///
- public global::Instill.CreateMessageResponse? Type86 { get; set; }
+ public global::Instill.CreateMessageBody? Type86 { get; set; }
///
///
///
- public global::Instill.AppV1alphaMessage? Type87 { get; set; }
+ public global::Instill.MessageType? Type87 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type88 { get; set; }
+ public global::Instill.CreateMessageResponse? Type88 { get; set; }
///
///
///
- public global::Instill.CreateNamespaceConnectionResponse? Type89 { get; set; }
+ public global::Instill.AppV1alphaMessage? Type89 { get; set; }
///
///
///
- public global::Instill.CreateNamespaceModelResponse? Type90 { get; set; }
+ public global::System.Collections.Generic.IList? Type90 { get; set; }
///
///
///
- public global::Instill.Model? Type91 { get; set; }
+ public global::Instill.CreateNamespaceConnectionResponse? Type91 { get; set; }
///
///
///
- public global::Instill.AITask? Type92 { get; set; }
+ public global::Instill.CreateNamespaceModelResponse? Type92 { get; set; }
///
///
///
- public global::Instill.ModelVisibility? Type93 { get; set; }
+ public global::Instill.Model? Type93 { get; set; }
///
///
///
- public global::Instill.Owner? Type94 { get; set; }
+ public global::Instill.AITask? Type94 { get; set; }
///
///
///
- public global::Instill.Permission? Type95 { get; set; }
+ public global::Instill.ModelVisibility? Type95 { get; set; }
///
///
///
- public global::Instill.ModelStats? Type96 { get; set; }
+ public global::Instill.Owner? Type96 { get; set; }
///
///
///
- public global::Instill.CreateNamespacePipelineReleaseResponse? Type97 { get; set; }
+ public global::Instill.Permission? Type97 { get; set; }
///
///
///
- public global::Instill.PipelineRelease? Type98 { get; set; }
+ public global::Instill.ModelStats? Type98 { get; set; }
///
///
///
- public global::Instill.Endpoints? Type99 { get; set; }
+ public global::Instill.CreateNamespacePipelineReleaseResponse? Type99 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type100 { get; set; }
+ public global::Instill.PipelineRelease? Type100 { get; set; }
///
///
///
- public global::Instill.WebhookEndpoint? Type101 { get; set; }
+ public global::Instill.Endpoints? Type101 { get; set; }
///
///
///
- public global::Instill.CreateNamespacePipelineResponse? Type102 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type102 { get; set; }
///
///
///
- public global::Instill.Pipeline? Type103 { get; set; }
+ public global::Instill.WebhookEndpoint? Type103 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type104 { get; set; }
+ public global::Instill.CreateNamespacePipelineResponse? Type104 { get; set; }
///
///
///
- public global::Instill.PipelineV1betaPermission? Type105 { get; set; }
+ public global::Instill.Pipeline? Type105 { get; set; }
///
///
///
- public global::Instill.PipelineVisibility? Type106 { get; set; }
+ public global::System.Collections.Generic.IList? Type106 { get; set; }
///
///
///
- public global::Instill.PipelineStats? Type107 { get; set; }
+ public global::Instill.PipelineV1betaPermission? Type107 { get; set; }
///
///
///
- public global::Instill.CreateNamespaceSecretResponse? Type108 { get; set; }
+ public global::Instill.PipelineVisibility? Type108 { get; set; }
///
///
///
- public global::Instill.Secret? Type109 { get; set; }
+ public global::Instill.PipelineStats? Type109 { get; set; }
///
///
///
- public global::Instill.CreateOrganizationResponse? Type110 { get; set; }
+ public global::Instill.CreateNamespaceSecretResponse? Type110 { get; set; }
///
///
///
- public global::Instill.CreateRepositoryTagResponse? Type111 { get; set; }
+ public global::Instill.Secret? Type111 { get; set; }
///
///
///
- public global::Instill.RepositoryTag? Type112 { get; set; }
+ public global::Instill.CreateOrganizationResponse? Type112 { get; set; }
///
///
///
- public global::Instill.CreateTokenResponse? Type113 { get; set; }
+ public global::Instill.CreateRepositoryTagResponse? Type113 { get; set; }
///
///
///
- public global::Instill.CreditConsumptionChartRecord? Type114 { get; set; }
+ public global::Instill.RepositoryTag? Type114 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type115 { get; set; }
+ public global::Instill.CreateTokenResponse? Type115 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type116 { get; set; }
+ public global::Instill.CreditConsumptionChartRecord? Type116 { get; set; }
///
///
///
- public global::Instill.DeleteCatalogFileResponse? Type117 { get; set; }
+ public global::System.Collections.Generic.IList? Type117 { get; set; }
///
///
///
- public global::Instill.DeleteCatalogResponse? Type118 { get; set; }
+ public global::System.Collections.Generic.IList? Type118 { get; set; }
///
///
///
- public global::Instill.ErrPipelineValidation? Type119 { get; set; }
+ public global::Instill.DeleteCatalogFileResponse? Type119 { get; set; }
///
///
///
- public global::Instill.File? Type120 { get; set; }
+ public global::Instill.DeleteCatalogResponse? Type120 { get; set; }
///
///
///
- public global::Instill.FileType? Type121 { get; set; }
+ public global::Instill.ErrPipelineValidation? Type121 { get; set; }
///
///
///
- public global::Instill.FileProcessStatus? Type122 { get; set; }
+ public global::Instill.File? Type122 { get; set; }
///
///
///
- public global::Instill.GetAuthenticatedUserResponse? Type123 { get; set; }
+ public global::Instill.FileType? Type123 { get; set; }
///
///
///
- public global::Instill.GetAuthenticatedUserSubscriptionResponse? Type124 { get; set; }
+ public global::Instill.FileProcessStatus? Type124 { get; set; }
///
///
///
- public global::Instill.UserSubscription? Type125 { get; set; }
+ public global::Instill.GetAuthenticatedUserResponse? Type125 { get; set; }
///
///
///
- public global::Instill.UserSubscriptionPlan? Type126 { get; set; }
+ public global::Instill.GetAuthenticatedUserSubscriptionResponse? Type126 { get; set; }
///
///
///
- public global::Instill.StripeSubscriptionDetail? Type127 { get; set; }
+ public global::Instill.UserSubscription? Type127 { get; set; }
///
///
///
- public global::Instill.StripeSubscriptionDetailStatus? Type128 { get; set; }
+ public global::Instill.UserSubscriptionPlan? Type128 { get; set; }
///
///
///
- public global::Instill.GetFileCatalogResponse? Type129 { get; set; }
+ public global::Instill.StripeSubscriptionDetail? Type129 { get; set; }
///
///
///
- public global::Instill.Metadata? Type130 { get; set; }
+ public global::Instill.StripeSubscriptionDetailStatus? Type130 { get; set; }
///
///
///
- public global::Instill.Text? Type131 { get; set; }
+ public global::Instill.GetFileCatalogResponse? Type131 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type132 { get; set; }
+ public global::Instill.Metadata? Type132 { get; set; }
///
///
///
- public global::Instill.GetFileCatalogResponseChunk? Type133 { get; set; }
+ public global::Instill.Text? Type133 { get; set; }
///
///
///
- public global::Instill.GetIntegrationResponse? Type134 { get; set; }
+ public global::System.Collections.Generic.IList? Type134 { get; set; }
///
///
///
- public global::Instill.Integration? Type135 { get; set; }
+ public global::Instill.GetFileCatalogResponseChunk? Type135 { get; set; }
///
///
///
- public global::Instill.Link? Type136 { get; set; }
+ public global::Instill.GetIntegrationResponse? Type136 { get; set; }
///
///
///
- public global::Instill.OAuthConfig? Type137 { get; set; }
+ public global::Instill.Integration? Type137 { get; set; }
///
///
///
- public global::Instill.GetModelDefinitionResponse? Type138 { get; set; }
+ public global::Instill.Link? Type138 { get; set; }
///
///
///
- public global::Instill.ModelDefinition? Type139 { get; set; }
+ public global::Instill.OAuthConfig? Type139 { get; set; }
///
///
///
- public global::Instill.ReleaseStage? Type140 { get; set; }
+ public global::Instill.GetModelDefinitionResponse? Type140 { get; set; }
///
///
///
- public global::Instill.GetModelOperationResponse? Type141 { get; set; }
+ public global::Instill.ModelDefinition? Type141 { get; set; }
///
///
///
- public global::Instill.LongrunningOperation? Type142 { get; set; }
+ public global::Instill.ReleaseStage? Type142 { get; set; }
///
///
///
- public global::Instill.RpcStatus? Type143 { get; set; }
+ public global::Instill.GetModelOperationResponse? Type143 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type144 { get; set; }
+ public global::Instill.LongrunningOperation? Type144 { get; set; }
///
///
///
- public global::Instill.GetNamespaceConnectionResponse? Type145 { get; set; }
+ public global::Instill.RpcStatus? Type145 { get; set; }
///
///
///
- public global::Instill.GetNamespaceLatestModelOperationResponse? Type146 { get; set; }
+ public global::System.Collections.Generic.IList? Type146 { get; set; }
///
///
///
- public global::Instill.GetNamespaceModelOperationResponse? Type147 { get; set; }
+ public global::Instill.GetNamespaceConnectionResponse? Type147 { get; set; }
///
///
///
- public global::Instill.GetNamespaceModelResponse? Type148 { get; set; }
+ public global::Instill.GetNamespaceLatestModelOperationResponse? Type148 { get; set; }
///
///
///
- public global::Instill.GetNamespacePipelineReleaseResponse? Type149 { get; set; }
+ public global::Instill.GetNamespaceModelOperationResponse? Type149 { get; set; }
///
///
///
- public global::Instill.GetNamespacePipelineResponse? Type150 { get; set; }
+ public global::Instill.GetNamespaceModelResponse? Type150 { get; set; }
///
///
///
- public global::Instill.GetNamespaceSecretResponse? Type151 { get; set; }
+ public global::Instill.GetNamespacePipelineReleaseResponse? Type151 { get; set; }
///
///
///
- public global::Instill.GetObjectDownloadURLResponse? Type152 { get; set; }
+ public global::Instill.GetNamespacePipelineResponse? Type152 { get; set; }
///
///
///
- public global::Instill.AIObject? Type153 { get; set; }
+ public global::Instill.GetNamespaceSecretResponse? Type153 { get; set; }
///
///
///
- public global::Instill.GetObjectResponse? Type154 { get; set; }
+ public global::Instill.GetObjectDownloadURLResponse? Type154 { get; set; }
///
///
///
- public global::Instill.GetObjectURLResponse? Type155 { get; set; }
+ public global::Instill.AIObject? Type155 { get; set; }
///
///
///
- public global::Instill.ObjectURL? Type156 { get; set; }
+ public global::Instill.GetObjectResponse? Type156 { get; set; }
///
///
///
- public global::Instill.GetObjectUploadURLResponse? Type157 { get; set; }
+ public global::Instill.GetObjectURLResponse? Type157 { get; set; }
///
///
///
- public global::Instill.GetOperationResponse? Type158 { get; set; }
+ public global::Instill.ObjectURL? Type158 { get; set; }
///
///
///
- public global::Instill.GetOrganizationAdminResponse? Type159 { get; set; }
+ public global::Instill.GetObjectUploadURLResponse? Type159 { get; set; }
///
///
///
- public global::Instill.GetOrganizationMembershipResponse? Type160 { get; set; }
+ public global::Instill.GetOperationResponse? Type160 { get; set; }
///
///
///
- public global::Instill.OrganizationMembership? Type161 { get; set; }
+ public global::Instill.GetOrganizationAdminResponse? Type161 { get; set; }
///
///
///
- public global::Instill.MembershipState? Type162 { get; set; }
+ public global::Instill.GetOrganizationMembershipResponse? Type162 { get; set; }
///
///
///
- public global::Instill.GetOrganizationResponse? Type163 { get; set; }
+ public global::Instill.OrganizationMembership? Type163 { get; set; }
///
///
///
- public global::Instill.GetOrganizationSubscriptionAdminResponse? Type164 { get; set; }
+ public global::Instill.MembershipState? Type164 { get; set; }
///
///
///
- public global::Instill.OrganizationSubscription? Type165 { get; set; }
+ public global::Instill.GetOrganizationResponse? Type165 { get; set; }
///
///
///
- public global::Instill.OrganizationSubscriptionPlan? Type166 { get; set; }
+ public global::Instill.GetOrganizationSubscriptionAdminResponse? Type166 { get; set; }
///
///
///
- public global::Instill.GetOrganizationSubscriptionResponse? Type167 { get; set; }
+ public global::Instill.OrganizationSubscription? Type167 { get; set; }
///
///
///
- public global::Instill.GetPlaygroundConversationResponse? Type168 { get; set; }
+ public global::Instill.OrganizationSubscriptionPlan? Type168 { get; set; }
///
///
///
- public global::Instill.GetRemainingCreditAdminResponse? Type169 { get; set; }
+ public global::Instill.GetOrganizationSubscriptionResponse? Type169 { get; set; }
///
///
///
- public global::Instill.GetRemainingCreditResponse? Type170 { get; set; }
+ public global::Instill.GetPlaygroundConversationResponse? Type170 { get; set; }
///
///
///
- public global::Instill.GetRepositoryTagResponse? Type171 { get; set; }
+ public global::Instill.GetRemainingCreditAdminResponse? Type171 { get; set; }
///
///
///
- public global::Instill.GetSourceFileResponse? Type172 { get; set; }
+ public global::Instill.GetRemainingCreditResponse? Type172 { get; set; }
///
///
///
- public global::Instill.SourceFile? Type173 { get; set; }
+ public global::Instill.GetRepositoryTagResponse? Type173 { get; set; }
///
///
///
- public global::Instill.GetTokenResponse? Type174 { get; set; }
+ public global::Instill.GetSourceFileResponse? Type174 { get; set; }
///
///
///
- public global::Instill.GetUserAdminResponse? Type175 { get; set; }
+ public global::Instill.SourceFile? Type175 { get; set; }
///
///
///
- public global::Instill.GetUserMembershipResponse? Type176 { get; set; }
+ public global::Instill.GetTokenResponse? Type176 { get; set; }
///
///
///
- public global::Instill.UserMembership? Type177 { get; set; }
+ public global::Instill.GetUserAdminResponse? Type177 { get; set; }
///
///
///
- public global::Instill.GetUserResponse? Type178 { get; set; }
+ public global::Instill.GetUserMembershipResponse? Type178 { get; set; }
///
///
///
- public global::Instill.GetUserSubscriptionAdminResponse? Type179 { get; set; }
+ public global::Instill.UserMembership? Type179 { get; set; }
///
///
///
- public global::Instill.ListAgentsResponse? Type180 { get; set; }
+ public global::Instill.GetUserResponse? Type180 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type181 { get; set; }
+ public global::Instill.GetUserSubscriptionAdminResponse? Type181 { get; set; }
///
///
///
- public global::Instill.ListAppsResponse? Type182 { get; set; }
+ public global::Instill.ListAgentsResponse? Type182 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type183 { get; set; }
+ public global::System.Collections.Generic.IList? Type183 { get; set; }
///
///
///
- public global::Instill.ListAvailableRegionsResponse? Type184 { get; set; }
+ public global::Instill.ListAppsResponse? Type184 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type185 { get; set; }
+ public global::System.Collections.Generic.IList? Type185 { get; set; }
///
///
///
- public global::Instill.Region? Type186 { get; set; }
+ public global::Instill.ListAvailableRegionsResponse? Type186 { get; set; }
///
///
///
- public global::Instill.ListCatalogFilesFilter? Type187 { get; set; }
+ public global::System.Collections.Generic.IList? Type187 { get; set; }
///
///
///
- public global::Instill.ListCatalogFilesResponse? Type188 { get; set; }
+ public global::Instill.Region? Type188 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type189 { get; set; }
+ public global::Instill.ListCatalogFilesFilter? Type189 { get; set; }
///
///
///
- public global::Instill.ListCatalogRunsResponse? Type190 { get; set; }
+ public global::Instill.ListCatalogFilesResponse? Type190 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type191 { get; set; }
+ public global::System.Collections.Generic.IList? Type191 { get; set; }
///
///
///
- public global::Instill.ListCatalogsResponse? Type192 { get; set; }
+ public global::Instill.ListCatalogRunsResponse? Type192 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type193 { get; set; }
+ public global::System.Collections.Generic.IList? Type193 { get; set; }
///
///
///
- public global::Instill.ListChatMessagesResponse? Type194 { get; set; }
+ public global::Instill.ListCatalogsResponse? Type194 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type195 { get; set; }
+ public global::System.Collections.Generic.IList? Type195 { get; set; }
///
///
///
- public global::Instill.ListChatsResponse? Type196 { get; set; }
+ public global::Instill.ListChatMessagesResponse? Type196 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type197 { get; set; }
+ public global::System.Collections.Generic.IList? Type197 { get; set; }
///
///
///
- public global::Instill.ListChunksResponse? Type198 { get; set; }
+ public global::Instill.ListChatsResponse? Type198 { get; set; }
///
///
///
- public global::Instill.ListComponentDefinitionsResponse? Type199 { get; set; }
+ public global::System.Collections.Generic.IList? Type199 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type200 { get; set; }
+ public global::Instill.ListChunksResponse? Type200 { get; set; }
///
///
///
- public global::Instill.ListComponentRunsResponse? Type201 { get; set; }
+ public global::System.Collections.Generic.IList? Type201 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type202 { get; set; }
+ public global::Instill.ListComponentDefinitionsResponse? Type202 { get; set; }
///
///
///
- public global::Instill.ListConversationsResponse? Type203 { get; set; }
+ public global::System.Collections.Generic.IList? Type203 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type204 { get; set; }
+ public global::Instill.ListComponentRunsResponse? Type204 { get; set; }
///
///
///
- public global::Instill.ListCreditConsumptionChartRecordsResponse? Type205 { get; set; }
+ public global::System.Collections.Generic.IList? Type205 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type206 { get; set; }
+ public global::Instill.ListConversationsResponse? Type206 { get; set; }
///
///
///
- public global::Instill.ListIntegrationsResponse? Type207 { get; set; }
+ public global::System.Collections.Generic.IList? Type207 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type208 { get; set; }
+ public global::Instill.ListCreditConsumptionChartRecordsResponse? Type208 { get; set; }
///
///
///
- public global::Instill.ListMessagesResponse? Type209 { get; set; }
+ public global::System.Collections.Generic.IList? Type209 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type210 { get; set; }
+ public global::Instill.ListIntegrationsResponse? Type210 { get; set; }
///
///
///
- public global::Instill.MessageSenderProfile? Type211 { get; set; }
+ public global::System.Collections.Generic.IList? Type211 { get; set; }
///
///
///
- public global::Instill.ListModelDefinitionsResponse? Type212 { get; set; }
+ public global::Instill.ListMessagesResponse? Type212 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type213 { get; set; }
+ public global::System.Collections.Generic.IList? Type213 { get; set; }
///
///
///
- public global::Instill.ListModelRunsByRequesterResponse? Type214 { get; set; }
+ public global::Instill.MessageSenderProfile? Type214 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type215 { get; set; }
+ public global::Instill.ListModelDefinitionsResponse? Type215 { get; set; }
///
///
///
- public global::Instill.ModelRun? Type216 { get; set; }
+ public global::System.Collections.Generic.IList? Type216 { get; set; }
///
///
///
- public global::Instill.ListModelRunsResponse? Type217 { get; set; }
+ public global::Instill.ListModelRunsByRequesterResponse? Type217 { get; set; }
///
///
///
- public global::Instill.ListModelTriggerChartRecordsResponse? Type218 { get; set; }
+ public global::System.Collections.Generic.IList? Type218 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type219 { get; set; }
+ public global::Instill.ModelRun? Type219 { get; set; }
///
///
///
- public global::Instill.ModelTriggerChartRecord? Type220 { get; set; }
+ public global::Instill.ListModelRunsResponse? Type220 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type221 { get; set; }
+ public global::Instill.ListModelTriggerChartRecordsResponse? Type221 { get; set; }
///
///
///
- public global::Instill.ListModelsAdminResponse? Type222 { get; set; }
+ public global::System.Collections.Generic.IList? Type222 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type223 { get; set; }
+ public global::Instill.ModelTriggerChartRecord? Type223 { get; set; }
///
///
///
- public global::Instill.ListModelsResponse? Type224 { get; set; }
+ public global::System.Collections.Generic.IList? Type224 { get; set; }
///
///
///
- public global::Instill.ListNamespaceConnectionsResponse? Type225 { get; set; }
+ public global::Instill.ListModelsAdminResponse? Type225 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type226 { get; set; }
+ public global::System.Collections.Generic.IList? Type226 { get; set; }
///
///
///
- public global::Instill.ListNamespaceModelVersionsResponse? Type227 { get; set; }
+ public global::Instill.ListModelsResponse? Type227 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type228 { get; set; }
+ public global::Instill.ListNamespaceConnectionsResponse? Type228 { get; set; }
///
///
///
- public global::Instill.ModelVersion? Type229 { get; set; }
+ public global::System.Collections.Generic.IList? Type229 { get; set; }
///
///
///
- public global::Instill.State? Type230 { get; set; }
+ public global::Instill.ListNamespaceModelVersionsResponse? Type230 { get; set; }
///
///
///
- public global::Instill.ListNamespaceModelsResponse? Type231 { get; set; }
+ public global::System.Collections.Generic.IList? Type231 { get; set; }
///
///
///
- public global::Instill.ListNamespacePipelineReleasesResponse? Type232 { get; set; }
+ public global::Instill.ModelVersion? Type232 { get; set; }
///
///
///
- public global::Instill.ListNamespacePipelinesResponse? Type233 { get; set; }
+ public global::Instill.State? Type233 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type234 { get; set; }
+ public global::Instill.ListNamespaceModelsResponse? Type234 { get; set; }
///
///
///
- public global::Instill.ListNamespaceSecretsResponse? Type235 { get; set; }
+ public global::Instill.ListNamespacePipelineReleasesResponse? Type235 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type236 { get; set; }
+ public global::Instill.ListNamespacePipelinesResponse? Type236 { get; set; }
///
///
///
- public global::Instill.ListOrganizationMembershipsResponse? Type237 { get; set; }
+ public global::System.Collections.Generic.IList? Type237 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type238 { get; set; }
+ public global::Instill.ListNamespaceSecretsResponse? Type238 { get; set; }
///
///
///
- public global::Instill.ListOrganizationsAdminResponse? Type239 { get; set; }
+ public global::System.Collections.Generic.IList? Type239 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type240 { get; set; }
+ public global::Instill.ListOrganizationMembershipsResponse? Type240 { get; set; }
///
///
///
- public global::Instill.ListOrganizationsResponse? Type241 { get; set; }
+ public global::System.Collections.Generic.IList? Type241 { get; set; }
///
///
///
- public global::Instill.ListPipelineIDsByConnectionIDResponse? Type242 { get; set; }
+ public global::Instill.ListOrganizationsAdminResponse? Type242 { get; set; }
///
///
///
- public global::Instill.ListPipelineReleasesAdminResponse? Type243 { get; set; }
+ public global::System.Collections.Generic.IList? Type243 { get; set; }
///
///
///
- public global::Instill.ListPipelineRunsByRequesterResponse? Type244 { get; set; }
+ public global::Instill.ListOrganizationsResponse? Type244 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type245 { get; set; }
+ public global::Instill.ListPipelineIDsByConnectionIDResponse? Type245 { get; set; }
///
///
///
- public global::Instill.PipelineRun? Type246 { get; set; }
+ public global::Instill.ListPipelineReleasesAdminResponse? Type246 { get; set; }
///
///
///
- public global::Instill.ListPipelineRunsResponse? Type247 { get; set; }
+ public global::Instill.ListPipelineRunsByRequesterResponse? Type247 { get; set; }
///
///
///
- public global::Instill.ListPipelineTriggerChartRecordsResponse? Type248 { get; set; }
+ public global::System.Collections.Generic.IList? Type248 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type249 { get; set; }
+ public global::Instill.PipelineRun? Type249 { get; set; }
///
///
///
- public global::Instill.PipelineTriggerChartRecord? Type250 { get; set; }
+ public global::Instill.ListPipelineRunsResponse? Type250 { get; set; }
///
///
///
- public global::Instill.ListPipelinesAdminResponse? Type251 { get; set; }
+ public global::Instill.ListPipelineTriggerChartRecordsResponse? Type251 { get; set; }
///
///
///
- public global::Instill.ListPipelinesResponse? Type252 { get; set; }
+ public global::System.Collections.Generic.IList? Type252 { get; set; }
///
///
///
- public global::Instill.ListRepositoryTagsResponse? Type253 { get; set; }
+ public global::Instill.PipelineTriggerChartRecord? Type253 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type254 { get; set; }
+ public global::Instill.ListPipelinesAdminResponse? Type254 { get; set; }
///
///
///
- public global::Instill.ListTokensResponse? Type255 { get; set; }
+ public global::Instill.ListPipelinesResponse? Type255 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type256 { get; set; }
+ public global::Instill.ListRepositoryTagsResponse? Type256 { get; set; }
///
///
///
- public global::Instill.ListToolsResponse? Type257 { get; set; }
+ public global::System.Collections.Generic.IList? Type257 { get; set; }
///
///
///
- public global::Instill.ListUserMembershipsResponse? Type258 { get; set; }
+ public global::Instill.ListTokensResponse? Type258 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type259 { get; set; }
+ public global::System.Collections.Generic.IList? Type259 { get; set; }
///
///
///
- public global::Instill.ListUsersAdminResponse? Type260 { get; set; }
+ public global::Instill.ListToolsResponse? Type260 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type261 { get; set; }
+ public global::Instill.ListUserMembershipsResponse? Type261 { get; set; }
///
///
///
- public global::Instill.ListUsersResponse? Type262 { get; set; }
+ public global::System.Collections.Generic.IList? Type262 { get; set; }
///
///
///
- public global::Instill.LookUpModelAdminResponse? Type263 { get; set; }
+ public global::Instill.ListUsersAdminResponse? Type263 { get; set; }
///
///
///
- public global::Instill.LookUpOrganizationAdminResponse? Type264 { get; set; }
+ public global::System.Collections.Generic.IList? Type264 { get; set; }
///
///
///
- public global::Instill.LookUpPipelineAdminResponse? Type265 { get; set; }
+ public global::Instill.ListUsersResponse? Type265 { get; set; }
///
///
///
- public global::Instill.LookUpUserAdminResponse? Type266 { get; set; }
+ public global::Instill.LookUpConnectionAdminResponse? Type266 { get; set; }
///
///
///
- public global::Instill.PatchAuthenticatedUserResponse? Type267 { get; set; }
+ public global::Instill.LookUpModelAdminResponse? Type267 { get; set; }
///
///
///
- public global::Instill.PipelineView? Type268 { get; set; }
+ public global::Instill.LookUpOrganizationAdminResponse? Type268 { get; set; }
///
///
///
- public global::Instill.ProcessCatalogFilesRequest? Type269 { get; set; }
+ public global::Instill.LookUpPipelineAdminResponse? Type269 { get; set; }
///
///
///
- public global::Instill.ProcessCatalogFilesResponse? Type270 { get; set; }
+ public global::Instill.LookUpUserAdminResponse? Type270 { get; set; }
///
///
///
- public global::Instill.QuestionAnsweringBody? Type271 { get; set; }
+ public global::Instill.PatchAuthenticatedUserResponse? Type271 { get; set; }
///
///
///
- public global::Instill.QuestionAnsweringResponse? Type272 { get; set; }
+ public global::Instill.PipelineView? Type272 { get; set; }
///
///
///
- public global::Instill.RenameNamespaceModelBody? Type273 { get; set; }
+ public global::Instill.ProcessCatalogFilesRequest? Type273 { get; set; }
///
///
///
- public global::Instill.RenameNamespaceModelResponse? Type274 { get; set; }
+ public global::Instill.ProcessCatalogFilesResponse? Type274 { get; set; }
///
///
///
- public global::Instill.RenameNamespacePipelineBody? Type275 { get; set; }
+ public global::Instill.QuestionAnsweringBody? Type275 { get; set; }
///
///
///
- public global::Instill.RenameNamespacePipelineResponse? Type276 { get; set; }
+ public global::Instill.QuestionAnsweringResponse? Type276 { get; set; }
///
///
///
- public global::Instill.RestartPlaygroundConversationResponse? Type277 { get; set; }
+ public global::Instill.RenameNamespaceModelBody? Type277 { get; set; }
///
///
///
- public global::Instill.SimilarityChunksSearchBody? Type278 { get; set; }
+ public global::Instill.RenameNamespaceModelResponse? Type278 { get; set; }
///
///
///
- public global::Instill.SimilarityChunksSearchResponse? Type279 { get; set; }
+ public global::Instill.RenameNamespacePipelineBody? Type279 { get; set; }
///
///
///
- public global::Instill.SubtractCreditAdminResponse? Type280 { get; set; }
+ public global::Instill.RenameNamespacePipelineResponse? Type280 { get; set; }
///
///
///
- public global::Instill.Trace? Type281 { get; set; }
+ public global::Instill.RestartPlaygroundConversationResponse? Type281 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type282 { get; set; }
+ public global::Instill.SimilarityChunksSearchBody? Type282 { get; set; }
///
///
///
- public global::Instill.TraceStatus? Type283 { get; set; }
+ public global::Instill.SimilarityChunksSearchResponse? Type283 { get; set; }
///
///
///
- public global::Instill.TriggerAsyncNamespaceLatestModelBody? Type284 { get; set; }
+ public global::Instill.SubtractCreditAdminResponse? Type284 { get; set; }
///
///
///
- public global::Instill.TriggerAsyncNamespaceLatestModelResponse? Type285 { get; set; }
+ public global::Instill.Trace? Type285 { get; set; }
///
///
///
- public global::Instill.TriggerAsyncNamespaceModelBody? Type286 { get; set; }
+ public global::System.Collections.Generic.IList? Type286 { get; set; }
///
///
///
- public global::Instill.TriggerAsyncNamespaceModelResponse? Type287 { get; set; }
+ public global::Instill.TraceStatus? Type287 { get; set; }
///
///
///
- public global::Instill.TriggerAsyncNamespacePipelineBody? Type288 { get; set; }
+ public global::Instill.TriggerAsyncNamespaceLatestModelBody? Type288 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type289 { get; set; }
+ public global::Instill.TriggerAsyncNamespaceLatestModelResponse? Type289 { get; set; }
///
///
///
- public global::Instill.TriggerData? Type290 { get; set; }
+ public global::Instill.TriggerAsyncNamespaceModelBody? Type290 { get; set; }
///
///
///
- public global::Instill.TriggerAsyncNamespacePipelineReleaseBody? Type291 { get; set; }
+ public global::Instill.TriggerAsyncNamespaceModelResponse? Type291 { get; set; }
///
///
///
- public global::Instill.TriggerAsyncNamespacePipelineReleaseResponse? Type292 { get; set; }
+ public global::Instill.TriggerAsyncNamespacePipelineBody? Type292 { get; set; }
///
///
///
- public global::Instill.TriggerAsyncNamespacePipelineResponse? Type293 { get; set; }
+ public global::System.Collections.Generic.IList? Type293 { get; set; }
///
///
///
- public global::Instill.TriggerMetadata? Type294 { get; set; }
+ public global::Instill.TriggerData? Type294 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type295 { get; set; }
+ public global::Instill.TriggerAsyncNamespacePipelineReleaseBody? Type295 { get; set; }
///
///
///
- public global::Instill.TriggerNamespaceLatestModelBinaryFileUploadResponse? Type296 { get; set; }
+ public global::Instill.TriggerAsyncNamespacePipelineReleaseResponse? Type296 { get; set; }
///
///
///
- public global::Instill.TriggerNamespaceLatestModelBody? Type297 { get; set; }
+ public global::Instill.TriggerAsyncNamespacePipelineResponse? Type297 { get; set; }
///
///
///
- public global::Instill.TriggerNamespaceLatestModelResponse? Type298 { get; set; }
+ public global::Instill.TriggerMetadata? Type298 { get; set; }
///
///
///
- public global::Instill.TriggerNamespaceModelBinaryFileUploadResponse? Type299 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type299 { get; set; }
///
///
///
- public global::Instill.TriggerNamespaceModelBody? Type300 { get; set; }
+ public global::Instill.TriggerNamespaceLatestModelBinaryFileUploadResponse? Type300 { get; set; }
///
///
///
- public global::Instill.TriggerNamespaceModelResponse? Type301 { get; set; }
+ public global::Instill.TriggerNamespaceLatestModelBody? Type301 { get; set; }
///
///
///
- public global::Instill.TriggerNamespacePipelineBody? Type302 { get; set; }
+ public global::Instill.TriggerNamespaceLatestModelResponse? Type302 { get; set; }
///
///
///
- public global::Instill.TriggerNamespacePipelineReleaseBody? Type303 { get; set; }
+ public global::Instill.TriggerNamespaceModelBinaryFileUploadResponse? Type303 { get; set; }
///
///
///
- public global::Instill.TriggerNamespacePipelineReleaseResponse? Type304 { get; set; }
+ public global::Instill.TriggerNamespaceModelBody? Type304 { get; set; }
///
///
///
- public global::Instill.TriggerNamespacePipelineResponse? Type305 { get; set; }
+ public global::Instill.TriggerNamespaceModelResponse? Type305 { get; set; }
///
///
///
- public global::Instill.TriggerNamespacePipelineWithStreamBody? Type306 { get; set; }
+ public global::Instill.TriggerNamespacePipelineBody? Type306 { get; set; }
///
///
///
- public global::Instill.TriggerNamespacePipelineWithStreamResponse? Type307 { get; set; }
+ public global::Instill.TriggerNamespacePipelineReleaseBody? Type307 { get; set; }
///
///
///
- public global::Instill.UpdateAgentBody? Type308 { get; set; }
+ public global::Instill.TriggerNamespacePipelineReleaseResponse? Type308 { get; set; }
///
///
///
- public global::Instill.UpdateAgentResponse? Type309 { get; set; }
+ public global::Instill.TriggerNamespacePipelineResponse? Type309 { get; set; }
///
///
///
- public global::Instill.UpdateAppBody? Type310 { get; set; }
+ public global::Instill.TriggerNamespacePipelineWithStreamBody? Type310 { get; set; }
///
///
///
- public global::Instill.UpdateAppResponse? Type311 { get; set; }
+ public global::Instill.TriggerNamespacePipelineWithStreamResponse? Type311 { get; set; }
///
///
///
- public global::Instill.UpdateCatalogBody? Type312 { get; set; }
+ public global::Instill.UpdateAgentBody? Type312 { get; set; }
///
///
///
- public global::Instill.UpdateCatalogResponse? Type313 { get; set; }
+ public global::Instill.UpdateAgentResponse? Type313 { get; set; }
///
///
///
- public global::Instill.UpdateChatBody? Type314 { get; set; }
+ public global::Instill.UpdateAppBody? Type314 { get; set; }
///
///
///
- public global::Instill.UpdateChatResponse? Type315 { get; set; }
+ public global::Instill.UpdateAppResponse? Type315 { get; set; }
///
///
///
- public global::Instill.UpdateChunkBody? Type316 { get; set; }
+ public global::Instill.UpdateCatalogBody? Type316 { get; set; }
///
///
///
- public global::Instill.UpdateChunkResponse? Type317 { get; set; }
+ public global::Instill.UpdateCatalogResponse? Type317 { get; set; }
///
///
///
- public global::Instill.UpdateConversationBody? Type318 { get; set; }
+ public global::Instill.UpdateChatBody? Type318 { get; set; }
///
///
///
- public global::Instill.UpdateConversationResponse? Type319 { get; set; }
+ public global::Instill.UpdateChatResponse? Type319 { get; set; }
///
///
///
- public global::Instill.UpdateMessageBody? Type320 { get; set; }
+ public global::Instill.UpdateChunkBody? Type320 { get; set; }
///
///
///
- public global::Instill.UpdateMessageResponse? Type321 { get; set; }
+ public global::Instill.UpdateChunkResponse? Type321 { get; set; }
///
///
///
- public global::Instill.UpdateNamespaceConnectionResponse? Type322 { get; set; }
+ public global::Instill.UpdateConversationBody? Type322 { get; set; }
///
///
///
- public global::Instill.UpdateNamespaceModelResponse? Type323 { get; set; }
+ public global::Instill.UpdateConversationResponse? Type323 { get; set; }
///
///
///
- public global::Instill.UpdateNamespacePipelineReleaseResponse? Type324 { get; set; }
+ public global::Instill.UpdateMessageBody? Type324 { get; set; }
///
///
///
- public global::Instill.UpdateNamespacePipelineResponse? Type325 { get; set; }
+ public global::Instill.UpdateMessageResponse? Type325 { get; set; }
///
///
///
- public global::Instill.UpdateNamespaceSecretResponse? Type326 { get; set; }
+ public global::Instill.UpdateNamespaceConnectionResponse? Type326 { get; set; }
///
///
///
- public global::Instill.UpdateObjectResponse? Type327 { get; set; }
+ public global::Instill.UpdateNamespaceModelResponse? Type327 { get; set; }
///
///
///
- public global::Instill.UpdateOrganizationMembershipResponse? Type328 { get; set; }
+ public global::Instill.UpdateNamespacePipelineReleaseResponse? Type328 { get; set; }
///
///
///
- public global::Instill.UpdateOrganizationResponse? Type329 { get; set; }
+ public global::Instill.UpdateNamespacePipelineResponse? Type329 { get; set; }
///
///
///
- public global::Instill.UpdateUserMembershipResponse? Type330 { get; set; }
+ public global::Instill.UpdateNamespaceSecretResponse? Type330 { get; set; }
///
///
///
- public global::Instill.UploadCatalogFileResponse? Type331 { get; set; }
+ public global::Instill.UpdateObjectResponse? Type331 { get; set; }
///
///
///
- public global::Instill.ValidateNamespacePipelineResponse? Type332 { get; set; }
+ public global::Instill.UpdateOrganizationMembershipResponse? Type332 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type333 { get; set; }
+ public global::Instill.UpdateOrganizationResponse? Type333 { get; set; }
///
///
///
- public global::Instill.ValidateTokenResponse? Type334 { get; set; }
+ public global::Instill.UpdateUserMembershipResponse? Type334 { get; set; }
///
///
///
- public global::Instill.WatchNamespaceLatestModelResponse? Type335 { get; set; }
+ public global::Instill.UploadCatalogFileResponse? Type335 { get; set; }
///
///
///
- public global::Instill.WatchNamespaceModelResponse? Type336 { get; set; }
+ public global::Instill.ValidateNamespacePipelineResponse? Type336 { get; set; }
///
///
///
- public global::Instill.MgmtV1betaView? Type337 { get; set; }
+ public global::System.Collections.Generic.IList? Type337 { get; set; }
///
///
///
- public global::Instill.View? Type338 { get; set; }
+ public global::Instill.ValidateTokenResponse? Type338 { get; set; }
///
///
///
- public global::Instill.AppPublicServiceListAppsAppType? Type339 { get; set; }
+ public global::Instill.WatchNamespaceLatestModelResponse? Type339 { get; set; }
///
///
///
- public global::Instill.ListUsersView? Type340 { get; set; }
+ public global::Instill.WatchNamespaceModelResponse? Type340 { get; set; }
///
///
///
- public global::Instill.GetUserView? Type341 { get; set; }
+ public global::Instill.MgmtV1betaView? Type341 { get; set; }
///
///
///
- public global::Instill.ListOrganizationsView? Type342 { get; set; }
+ public global::Instill.View? Type342 { get; set; }
///
///
///
- public global::Instill.GetOrganizationView? Type343 { get; set; }
+ public global::Instill.AppPublicServiceListAppsAppType? Type343 { get; set; }
///
///
///
- public global::Instill.GetUserMembershipView? Type344 { get; set; }
+ public global::Instill.ListUsersView? Type344 { get; set; }
///
///
///
- public global::Instill.GetOrganizationMembershipView? Type345 { get; set; }
+ public global::Instill.GetUserView? Type345 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceListModelDefinitionsView? Type346 { get; set; }
+ public global::Instill.ListOrganizationsView? Type346 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceGetModelDefinitionView? Type347 { get; set; }
+ public global::Instill.GetOrganizationView? Type347 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceListModelsView? Type348 { get; set; }
+ public global::Instill.GetUserMembershipView? Type348 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceListModelsVisibility? Type349 { get; set; }
+ public global::Instill.GetOrganizationMembershipView? Type349 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceListNamespaceModelsView? Type350 { get; set; }
+ public global::Instill.ModelPublicServiceListModelDefinitionsView? Type350 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceListNamespaceModelsVisibility? Type351 { get; set; }
+ public global::Instill.ModelPublicServiceGetModelDefinitionView? Type351 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceGetNamespaceModelView? Type352 { get; set; }
+ public global::Instill.ModelPublicServiceListModelsView? Type352 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceGetNamespaceModelOperationView? Type353 { get; set; }
+ public global::Instill.ModelPublicServiceListModelsVisibility? Type353 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceGetNamespaceLatestModelOperationView? Type354 { get; set; }
+ public global::Instill.ModelPublicServiceListNamespaceModelsView? Type354 { get; set; }
///
///
///
- public global::Instill.ModelPublicServiceGetModelOperationView? Type355 { get; set; }
+ public global::Instill.ModelPublicServiceListNamespaceModelsVisibility? Type355 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceListPipelinesView? Type356 { get; set; }
+ public global::Instill.ModelPublicServiceGetNamespaceModelView? Type356 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceListPipelinesVisibility? Type357 { get; set; }
+ public global::Instill.ModelPublicServiceGetNamespaceModelOperationView? Type357 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceListNamespacePipelinesView? Type358 { get; set; }
+ public global::Instill.ModelPublicServiceGetNamespaceLatestModelOperationView? Type358 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceListNamespacePipelinesVisibility? Type359 { get; set; }
+ public global::Instill.ModelPublicServiceGetModelOperationView? Type359 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceGetNamespacePipelineView? Type360 { get; set; }
+ public global::Instill.PipelinePublicServiceListPipelinesView? Type360 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceListNamespacePipelineReleasesView? Type361 { get; set; }
+ public global::Instill.PipelinePublicServiceListPipelinesVisibility? Type361 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceGetNamespacePipelineReleaseView? Type362 { get; set; }
+ public global::Instill.PipelinePublicServiceListNamespacePipelinesView? Type362 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceListComponentDefinitionsView? Type363 { get; set; }
+ public global::Instill.PipelinePublicServiceListNamespacePipelinesVisibility? Type363 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceListComponentRunsView? Type364 { get; set; }
+ public global::Instill.PipelinePublicServiceGetNamespacePipelineView? Type364 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceGetNamespaceConnectionView? Type365 { get; set; }
+ public global::Instill.PipelinePublicServiceListNamespacePipelineReleasesView? Type365 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceGetIntegrationView? Type366 { get; set; }
+ public global::Instill.PipelinePublicServiceGetNamespacePipelineReleaseView? Type366 { get; set; }
///
///
///
- public global::Instill.PipelinePublicServiceTriggerNamespacePipelineWithStreamResponse? Type367 { get; set; }
+ public global::Instill.PipelinePublicServiceListComponentDefinitionsView? Type367 { get; set; }
+ ///
+ ///
+ ///
+ public global::Instill.PipelinePublicServiceListComponentRunsView? Type368 { get; set; }
+ ///
+ ///
+ ///
+ public global::Instill.PipelinePublicServiceGetNamespaceConnectionView? Type369 { get; set; }
+ ///
+ ///
+ ///
+ public global::Instill.PipelinePublicServiceGetIntegrationView? Type370 { get; set; }
+ ///
+ ///
+ ///
+ public global::Instill.PipelinePublicServiceTriggerNamespacePipelineWithStreamResponse? Type371 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/Instill/openapi.yaml b/src/libs/Instill/openapi.yaml
index 4e3d700..f2509ec 100644
--- a/src/libs/Instill/openapi.yaml
+++ b/src/libs/Instill/openapi.yaml
@@ -6696,6 +6696,37 @@ components:
- CHUNK_TYPE_VIDEO
type: string
description: "- CHUNK_TYPE_TEXT: text\n - CHUNK_TYPE_IMAGE: image\n - CHUNK_TYPE_AUDIO: audio\n - CHUNK_TYPE_VIDEO: video"
+ Citation:
+ title: Citation message
+ type: object
+ properties:
+ type:
+ title: Type of citation
+ allOf:
+ - $ref: '#/components/schemas/CitationsType'
+ name:
+ title: Name of the citation
+ type: string
+ readOnly: true
+ url:
+ title: URL of the citation (only applicable for URL-type citations)
+ type: string
+ readOnly: true
+ chunkUid:
+ title: Chunk UID (only applicable for chunk-type citations)
+ type: string
+ readOnly: true
+ fileUid:
+ title: File UID (only applicable for chunk-type citations)
+ type: string
+ readOnly: true
+ CitationsType:
+ title: type of the citations message
+ enum:
+ - CITATIONS_TYPE_CHUNK
+ - CITATIONS_TYPE_URL
+ type: string
+ description: "- CITATIONS_TYPE_CHUNK: Chunk-based citation\n - CITATIONS_TYPE_URL: URL-based citation"
CloneNamespacePipelineBody:
required:
- targetNamespaceId
@@ -8748,6 +8779,15 @@ components:
format: int32
readOnly: true
description: ListUsersResponse contains a list of users.
+ LookUpConnectionAdminResponse:
+ type: object
+ properties:
+ connection:
+ allOf:
+ - $ref: '#/components/schemas/Connection'
+ description: The requested connection.
+ readOnly: true
+ description: LookUpConnectionAdminResponse contains the requested connection.
LookUpModelAdminResponse:
title: LookUpModelResponse represents a response for a model
type: object
@@ -10255,17 +10295,22 @@ components:
readOnly: true
description: "TriggerAsyncNamespacePipelineResponse contains the information to access the\nstatus of an asynchronous pipeline execution."
TriggerData:
- title: Data
type: object
properties:
variable:
- title: Variables
type: object
+ description: The values of the pipeline variables.
secret:
- title: Variables
type: object
additionalProperties:
type: string
+ description: "A collection of secrets. By default, if a pipeline references any secret\n(`${secret.}`), its value is read from the namespace's secrets.\nThis object provides a way to override these secret values: if one of its\nkeys matches the ID of a reference secret, its value will be read from\nhere instead of from the namespace secret collection."
+ connectionReferences:
+ type: object
+ additionalProperties:
+ type: string
+ description: "A collection of connection references. By default, connection references\n(`${connection.}`) in a pipeline will be resolved by fetching the\nvalue from the requester's connections. Connections contain sensitive data\nand can't be shared across namespaces, so this means that, in order to\nsuccessfully run a pipeline owned by another namespace, the requester will\nneed to have a connection with the same ID.\nThis object provides a way to override the connection references with\nconnections that the requester owns. Each element in the object maps a\nconnection ID present in the pipeline (key) to the ID of a connection\nowned by the requester (value).\nNote that, since only references are accepted (this object shouldn't\ncontain connection **values**), the reference syntax shouldn't be used\nhere."
+ description: TriggerData contains the input data for a pipeline run.
TriggerMetadata:
type: object
properties:
@@ -10884,19 +10929,19 @@ components:
format: date-time
readOnly: true
msgSenderUid:
- title: message sender uid
+ title: message sender uid(only for user messages)
type: string
readOnly: true
- chunks:
- title: the chunks attached to the message
- type: array
- items:
- $ref: '#/components/schemas/.Chunk'
- readOnly: true
standaloneQuestion:
- title: standalone question
+ title: standalone question(only for user messages)
type: string
readOnly: true
+ citations:
+ title: citations(only for agent messages)
+ type: array
+ items:
+ $ref: '#/components/schemas/Citation'
+ readOnly: true
longrunning.Operation:
type: object
properties: